Merge pull request #1531 from ing-bank/feat/directives-export

feat(core): export latest added lit directives
This commit is contained in:
Thijs Louisse 2021-11-09 15:24:07 +01:00 committed by GitHub
commit 5b79f10a4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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": [
{
"path": "./bundlesize/dist/core/*.js",
"maxSize": "11 kB"
"maxSize": "12 kB"
},
{
"path": "./bundlesize/dist/all/*.js",
"maxSize": "46 kB"
"maxSize": "47 kB"
}
],
"prettier": {

View file

@ -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