Releases: choojs/hyperx
Releases · choojs/hyperx
Release list
v3.0.0
This release contains some fixes for long-standing parsing issues:
- support direct descendant css selectors when parsing inline <style> tags. fixes #82
- handle optional closing tags for self-closing tags. fixes #41
- handle <style> tags that include attributes. fixes #82
Since these changes all modify parsing behavior it's prudent to bump the major package version.
v2.5.2
Fix template parts inside comments (#75)
Now you can do:
html`
<div>
<!-- ${someElementThatIWantHidden()} -->
${someElementThatIWantShown()}
</div>
`The someElementThatIWantHidden() call is still evaluated, but hyperx won't output it.