Skip to content

v0.2.1

Compare
Choose a tag to compare
@wavesoft wavesoft released this 13 Feb 08:37
· 153 commits to master since this release

Starting from this release, the pre-defined set of HTML tags is now removed. You will now have to manually specify the tags you are going to use, by extracting them from H. For example:

// v0.1.0
R(div('Hello world'), document.body);

// v0.2.1
const {div} = H;
R(div('Hello world'), document.body);

Changelog

  • ADDED: Introduced child reconciliation algorithm
  • ADDED: Custom tag expansion shorthands
  • REMOVED: Pre-defined HTML Tag shorthands.