@utrecht/web-component-library-stencil 1.0.0-alpha.211 → 1.0.0-alpha.214
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/utrecht-heading-1.cjs.entry.js +2 -2
- package/dist/cjs/utrecht-heading-2_3.cjs.entry.js +4 -4
- package/dist/cjs/utrecht-heading-4.cjs.entry.js +2 -2
- package/dist/cjs/utrecht-heading-5.cjs.entry.js +2 -2
- package/dist/cjs/utrecht-heading-6.cjs.entry.js +2 -2
- package/dist/cjs/utrecht-heading.cjs.entry.js +2 -2
- package/dist/cjs/utrecht-html-content.cjs.entry.js +2 -2
- package/dist/collection/collection-manifest.json +8 -8
- package/dist/collection/heading/{stencil.css → web-component/index.css} +0 -0
- package/dist/collection/heading/{stencil.js → web-component/index.stencil.js} +2 -2
- package/dist/collection/heading/web-component/template.js +4 -0
- package/dist/collection/heading-1/{bem.js → css/template.js} +0 -0
- package/dist/collection/heading-1/html/template.js +4 -0
- package/dist/collection/heading-1/{stencil.css → web-component/index.css} +0 -0
- package/dist/collection/heading-1/{stencil.js → web-component/index.stencil.js} +2 -2
- package/dist/collection/heading-1/web-component/template.js +4 -0
- package/dist/collection/heading-2/{bem.js → css/template.js} +0 -0
- package/dist/collection/heading-2/html/template.js +4 -0
- package/dist/collection/heading-2/{stencil.css → web-component/index.css} +0 -0
- package/dist/collection/heading-2/{stencil.js → web-component/index.stencil.js} +2 -2
- package/dist/collection/heading-2/web-component/template.js +4 -0
- package/dist/collection/heading-3/{bem.js → css/template.js} +0 -0
- package/dist/collection/heading-3/html/template.js +4 -0
- package/dist/collection/heading-3/{stencil.css → web-component/index.css} +0 -0
- package/dist/collection/heading-3/{stencil.js → web-component/index.stencil.js} +2 -2
- package/dist/collection/heading-3/web-component/template.js +4 -0
- package/dist/collection/heading-4/{bem.js → css/template.js} +0 -0
- package/dist/collection/heading-4/html/template.js +4 -0
- package/dist/collection/heading-4/{stencil.css → web-component/index.css} +0 -0
- package/dist/collection/heading-4/{stencil.js → web-component/index.stencil.js} +2 -2
- package/dist/collection/heading-4/web-component/template.js +4 -0
- package/dist/collection/heading-5/{bem.js → css/template.js} +0 -0
- package/dist/collection/heading-5/html/template.js +4 -0
- package/dist/collection/heading-5/{stencil.css → web-component/index.css} +0 -0
- package/dist/collection/heading-5/{stencil.js → web-component/index.stencil.js} +2 -2
- package/dist/collection/heading-5/web-component/template.js +4 -0
- package/dist/collection/heading-6/{bem.js → css/template.js} +0 -0
- package/dist/collection/heading-6/html/template.js +4 -0
- package/dist/collection/heading-6/{stencil.css → web-component/index.css} +0 -0
- package/dist/collection/heading-6/{stencil.js → web-component/index.stencil.js} +2 -2
- package/dist/collection/heading-6/web-component/template.js +4 -0
- package/dist/collection/html-content/{stencil.css → web-component/index.css} +0 -0
- package/dist/collection/html-content/{stencil.js → web-component/index.stencil.js} +2 -2
- package/dist/collection/html-content/web-component/template.js +1 -0
- package/dist/custom-elements/index.js +56 -56
- package/dist/esm/utrecht-heading-1.entry.js +2 -2
- package/dist/esm/utrecht-heading-2_3.entry.js +4 -4
- package/dist/esm/utrecht-heading-4.entry.js +2 -2
- package/dist/esm/utrecht-heading-5.entry.js +2 -2
- package/dist/esm/utrecht-heading-6.entry.js +2 -2
- package/dist/esm/utrecht-heading.entry.js +2 -2
- package/dist/esm/utrecht-html-content.entry.js +2 -2
- package/dist/types/heading/{stencil.d.ts → web-component/index.stencil.d.ts} +0 -0
- package/dist/types/heading-1/{stencil.d.ts → web-component/index.stencil.d.ts} +0 -0
- package/dist/types/heading-2/{stencil.d.ts → web-component/index.stencil.d.ts} +0 -0
- package/dist/types/heading-3/{stencil.d.ts → web-component/index.stencil.d.ts} +0 -0
- package/dist/types/heading-4/{stencil.d.ts → web-component/index.stencil.d.ts} +0 -0
- package/dist/types/heading-5/{stencil.d.ts → web-component/index.stencil.d.ts} +0 -0
- package/dist/types/heading-6/{stencil.d.ts → web-component/index.stencil.d.ts} +0 -0
- package/dist/types/html-content/{stencil.d.ts → web-component/index.stencil.d.ts} +0 -0
- package/package.json +2 -2
- package/dist/collection/heading/bem.js +0 -36
|
@@ -10,9 +10,9 @@ export class HTMLContent {
|
|
|
10
10
|
}
|
|
11
11
|
static get is() { return "utrecht-html-content"; }
|
|
12
12
|
static get originalStyleUrls() { return {
|
|
13
|
-
"$": ["
|
|
13
|
+
"$": ["index.scss"]
|
|
14
14
|
}; }
|
|
15
15
|
static get styleUrls() { return {
|
|
16
|
-
"$": ["
|
|
16
|
+
"$": ["index.css"]
|
|
17
17
|
}; }
|
|
18
18
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const HTMLContent = ({ content }) => `<utrecht-html-content>${content}</utrecht-html-content>`;
|