feat(core): export latest added lit directives

This commit is contained in:
jorenbroekema 2021-11-09 14:46:00 +01:00
parent 2995a5037f
commit 9b81b69e58
3 changed files with 11 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/core': patch
---
Re-export latest added lit directives.

View file

@ -102,11 +102,11 @@
"bundlesize": [ "bundlesize": [
{ {
"path": "./bundlesize/dist/core/*.js", "path": "./bundlesize/dist/core/*.js",
"maxSize": "11 kB" "maxSize": "12 kB"
}, },
{ {
"path": "./bundlesize/dist/all/*.js", "path": "./bundlesize/dist/all/*.js",
"maxSize": "46 kB" "maxSize": "47 kB"
} }
], ],
"prettier": { "prettier": {

View file

@ -55,9 +55,13 @@ export { cache } from 'lit/directives/cache.js';
export { classMap } from 'lit/directives/class-map.js'; export { classMap } from 'lit/directives/class-map.js';
export { guard } from 'lit/directives/guard.js'; export { guard } from 'lit/directives/guard.js';
export { ifDefined } from 'lit/directives/if-defined.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 { repeat } from 'lit/directives/repeat.js';
export { styleMap } from 'lit/directives/style-map.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 { unsafeHTML } from 'lit/directives/unsafe-html.js';
export { unsafeSVG } from 'lit/directives/unsafe-svg.js';
export { until } from 'lit/directives/until.js'; export { until } from 'lit/directives/until.js';
// open-wc // open-wc