Merge pull request #1531 from ing-bank/feat/directives-export
feat(core): export latest added lit directives
This commit is contained in:
commit
5b79f10a4c
3 changed files with 11 additions and 2 deletions
5
.changeset/cuddly-ties-repeat.md
Normal file
5
.changeset/cuddly-ties-repeat.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@lion/core': patch
|
||||
---
|
||||
|
||||
Re-export latest added lit directives.
|
||||
|
|
@ -102,11 +102,11 @@
|
|||
"bundlesize": [
|
||||
{
|
||||
"path": "./bundlesize/dist/core/*.js",
|
||||
"maxSize": "11 kB"
|
||||
"maxSize": "12 kB"
|
||||
},
|
||||
{
|
||||
"path": "./bundlesize/dist/all/*.js",
|
||||
"maxSize": "46 kB"
|
||||
"maxSize": "47 kB"
|
||||
}
|
||||
],
|
||||
"prettier": {
|
||||
|
|
|
|||
|
|
@ -55,9 +55,13 @@ export { cache } from 'lit/directives/cache.js';
|
|||
export { classMap } from 'lit/directives/class-map.js';
|
||||
export { guard } from 'lit/directives/guard.js';
|
||||
export { ifDefined } from 'lit/directives/if-defined.js';
|
||||
export { live } from 'lit/directives/live.js';
|
||||
export { ref, createRef } from 'lit/directives/ref.js';
|
||||
export { repeat } from 'lit/directives/repeat.js';
|
||||
export { styleMap } from 'lit/directives/style-map.js';
|
||||
export { templateContent } from 'lit/directives/template-content.js';
|
||||
export { unsafeHTML } from 'lit/directives/unsafe-html.js';
|
||||
export { unsafeSVG } from 'lit/directives/unsafe-svg.js';
|
||||
export { until } from 'lit/directives/until.js';
|
||||
|
||||
// open-wc
|
||||
|
|
|
|||
Loading…
Reference in a new issue