Releases: lume/custom-attributes
v0.3.0
What's Changed
- fix package name in docs by @mayank99 in #6
- remove side effects from
CustomAttributeRegistry.js
by @mayank99 in #4
BREAKING
If you previously imported @lume/custom-attributes/dist/CustomAttributeRegistry.js
directly and relied on the side-effects for custom-attributes to work in Shadow DOM, you should now import from @lume/custom-attributes/dist/index.js
(or from @lume/custom-attributes
in Node.js or with an appropriate importmap
that already points to @lume/custom-attributes/dist/index.js
) instead or custom-attributes in Shadow DOM will not be instantiated.
New Contributors
Full Changelog: v0.2.4...v0.3.0
v0.2.4
v0.2.0 - Unglobalization
BREAKING: remove the global build.
Migration: if you import the global.js file with a script tag, instead use import
syntax to import custom-attributes
into your project.
v0.1.7 - What dist you say?
Commit dist/
output to make it easy to consume, prevent some people consuming from git from having to build in some setups where the build might not work (f.e. Windows PowerShell).