@paperless/core 0.1.0-alpha.184 → 0.1.0-alpha.185
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/CHANGELOG.md +11 -0
- package/dist/build/{p-12dbc7c5.entry.js → p-7ddefd1f.entry.js} +1 -1
- package/dist/build/{p-e8cf4a8a.entry.js → p-be4b9c2b.entry.js} +1 -1
- package/dist/build/paperless.esm.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/p-helper_5.cjs.entry.js +25 -21
- package/dist/cjs/p-table-column_5.cjs.entry.js +1 -1
- package/dist/cjs/paperless.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/atoms/button/button.component.css +1 -1
- package/dist/collection/components/atoms/divider/divider.component.css +1 -1
- package/dist/collection/components/atoms/dropdown-menu-container/dropdown-menu-container.component.css +1 -1
- package/dist/collection/components/atoms/dropdown-menu-item/dropdown-menu-item.component.css +1 -1
- package/dist/collection/components/atoms/helper/helper.component.css +1 -1
- package/dist/collection/components/atoms/icon/icon.component.css +1 -1
- package/dist/collection/components/atoms/{tag/tag.component.css → label/label.component.css} +8 -2
- package/dist/collection/components/atoms/{tag/tag.component.js → label/label.component.js} +29 -7
- package/dist/collection/components/atoms/loader/loader.component.css +1 -1
- package/dist/collection/components/atoms/pagination-item/pagination-item.component.css +1 -1
- package/dist/collection/components/atoms/segment-container/segment-container.component.css +1 -1
- package/dist/collection/components/atoms/segment-item/segment-item.component.css +1 -1
- package/dist/collection/components/atoms/table-container/table-container.component.css +1 -1
- package/dist/collection/components/atoms/tooltip/tooltip.component.css +1 -1
- package/dist/collection/components/molecules/dropdown/dropdown.component.css +1 -1
- package/dist/collection/components/molecules/input-group/input-group.component.css +1 -1
- package/dist/collection/components/molecules/pagination/pagination.component.css +1 -1
- package/dist/collection/components/molecules/table-column/table-column.component.css +1 -1
- package/dist/collection/components/molecules/table-footer/table-footer.component.css +1 -1
- package/dist/collection/components/molecules/table-header/table-header.component.css +1 -1
- package/dist/collection/components/molecules/table-header/table-header.component.js +1 -1
- package/dist/collection/components/molecules/table-row/table-row.component.css +1 -1
- package/dist/collection/components/organisms/table/table.component.css +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.js +1 -1
- package/dist/components/label.component.js +46 -0
- package/dist/components/{p-tag.d.ts → p-label.d.ts} +4 -4
- package/dist/components/p-label.js +6 -0
- package/dist/components/p-table.js +25 -25
- package/dist/components/table-header.component.js +10 -10
- package/dist/esm/loader.js +1 -1
- package/dist/esm/p-helper_5.entry.js +25 -21
- package/dist/esm/p-table-column_5.entry.js +1 -1
- package/dist/esm/paperless.js +1 -1
- package/dist/index.html +1 -1
- package/dist/paperless/{p-12dbc7c5.entry.js → p-7ddefd1f.entry.js} +1 -1
- package/dist/paperless/{p-e8cf4a8a.entry.js → p-be4b9c2b.entry.js} +1 -1
- package/dist/paperless/paperless.esm.js +1 -1
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/dist/types/components/atoms/{tag/tag.component.d.ts → label/label.component.d.ts} +6 -2
- package/dist/types/components.d.ts +43 -35
- package/package.json +1 -1
- package/dist/components/p-tag.js +0 -6
- package/dist/components/tag.component.js +0 -41
|
@@ -314,6 +314,23 @@ export namespace Components {
|
|
|
314
314
|
*/
|
|
315
315
|
"suffix": string;
|
|
316
316
|
}
|
|
317
|
+
interface PLabel {
|
|
318
|
+
/**
|
|
319
|
+
* Wether to add the circle or not
|
|
320
|
+
*/
|
|
321
|
+
"circle": boolean;
|
|
322
|
+
/**
|
|
323
|
+
* The size of the label
|
|
324
|
+
*/
|
|
325
|
+
"size": 'small' | 'default';
|
|
326
|
+
/**
|
|
327
|
+
* Variant of the label
|
|
328
|
+
*/
|
|
329
|
+
"variant": | 'positive'
|
|
330
|
+
| 'unbiased'
|
|
331
|
+
| 'negative'
|
|
332
|
+
| 'info';
|
|
333
|
+
}
|
|
317
334
|
interface PLayout {
|
|
318
335
|
/**
|
|
319
336
|
* Variant of the layout
|
|
@@ -838,19 +855,6 @@ export namespace Components {
|
|
|
838
855
|
*/
|
|
839
856
|
"variant": 'default' | 'header';
|
|
840
857
|
}
|
|
841
|
-
interface PTag {
|
|
842
|
-
/**
|
|
843
|
-
* Wether to add the circle or not
|
|
844
|
-
*/
|
|
845
|
-
"circle": boolean;
|
|
846
|
-
/**
|
|
847
|
-
* Variant of the tag
|
|
848
|
-
*/
|
|
849
|
-
"variant": | 'positive'
|
|
850
|
-
| 'unbiased'
|
|
851
|
-
| 'negative'
|
|
852
|
-
| 'info';
|
|
853
|
-
}
|
|
854
858
|
interface PTooltip {
|
|
855
859
|
/**
|
|
856
860
|
* Wether to someone can manually close the popover
|
|
@@ -1035,6 +1039,12 @@ declare global {
|
|
|
1035
1039
|
prototype: HTMLPInputGroupElement;
|
|
1036
1040
|
new (): HTMLPInputGroupElement;
|
|
1037
1041
|
};
|
|
1042
|
+
interface HTMLPLabelElement extends Components.PLabel, HTMLStencilElement {
|
|
1043
|
+
}
|
|
1044
|
+
var HTMLPLabelElement: {
|
|
1045
|
+
prototype: HTMLPLabelElement;
|
|
1046
|
+
new (): HTMLPLabelElement;
|
|
1047
|
+
};
|
|
1038
1048
|
interface HTMLPLayoutElement extends Components.PLayout, HTMLStencilElement {
|
|
1039
1049
|
}
|
|
1040
1050
|
var HTMLPLayoutElement: {
|
|
@@ -1215,12 +1225,6 @@ declare global {
|
|
|
1215
1225
|
prototype: HTMLPTableRowElement;
|
|
1216
1226
|
new (): HTMLPTableRowElement;
|
|
1217
1227
|
};
|
|
1218
|
-
interface HTMLPTagElement extends Components.PTag, HTMLStencilElement {
|
|
1219
|
-
}
|
|
1220
|
-
var HTMLPTagElement: {
|
|
1221
|
-
prototype: HTMLPTagElement;
|
|
1222
|
-
new (): HTMLPTagElement;
|
|
1223
|
-
};
|
|
1224
1228
|
interface HTMLPTooltipElement extends Components.PTooltip, HTMLStencilElement {
|
|
1225
1229
|
}
|
|
1226
1230
|
var HTMLPTooltipElement: {
|
|
@@ -1246,6 +1250,7 @@ declare global {
|
|
|
1246
1250
|
"p-illustration": HTMLPIllustrationElement;
|
|
1247
1251
|
"p-info-panel": HTMLPInfoPanelElement;
|
|
1248
1252
|
"p-input-group": HTMLPInputGroupElement;
|
|
1253
|
+
"p-label": HTMLPLabelElement;
|
|
1249
1254
|
"p-layout": HTMLPLayoutElement;
|
|
1250
1255
|
"p-loader": HTMLPLoaderElement;
|
|
1251
1256
|
"p-modal": HTMLPModalElement;
|
|
@@ -1276,7 +1281,6 @@ declare global {
|
|
|
1276
1281
|
"p-table-footer": HTMLPTableFooterElement;
|
|
1277
1282
|
"p-table-header": HTMLPTableHeaderElement;
|
|
1278
1283
|
"p-table-row": HTMLPTableRowElement;
|
|
1279
|
-
"p-tag": HTMLPTagElement;
|
|
1280
1284
|
"p-tooltip": HTMLPTooltipElement;
|
|
1281
1285
|
}
|
|
1282
1286
|
}
|
|
@@ -1589,6 +1593,23 @@ declare namespace LocalJSX {
|
|
|
1589
1593
|
*/
|
|
1590
1594
|
"suffix"?: string;
|
|
1591
1595
|
}
|
|
1596
|
+
interface PLabel {
|
|
1597
|
+
/**
|
|
1598
|
+
* Wether to add the circle or not
|
|
1599
|
+
*/
|
|
1600
|
+
"circle"?: boolean;
|
|
1601
|
+
/**
|
|
1602
|
+
* The size of the label
|
|
1603
|
+
*/
|
|
1604
|
+
"size"?: 'small' | 'default';
|
|
1605
|
+
/**
|
|
1606
|
+
* Variant of the label
|
|
1607
|
+
*/
|
|
1608
|
+
"variant"?: | 'positive'
|
|
1609
|
+
| 'unbiased'
|
|
1610
|
+
| 'negative'
|
|
1611
|
+
| 'info';
|
|
1612
|
+
}
|
|
1592
1613
|
interface PLayout {
|
|
1593
1614
|
/**
|
|
1594
1615
|
* Variant of the layout
|
|
@@ -2209,19 +2230,6 @@ declare namespace LocalJSX {
|
|
|
2209
2230
|
*/
|
|
2210
2231
|
"variant"?: 'default' | 'header';
|
|
2211
2232
|
}
|
|
2212
|
-
interface PTag {
|
|
2213
|
-
/**
|
|
2214
|
-
* Wether to add the circle or not
|
|
2215
|
-
*/
|
|
2216
|
-
"circle"?: boolean;
|
|
2217
|
-
/**
|
|
2218
|
-
* Variant of the tag
|
|
2219
|
-
*/
|
|
2220
|
-
"variant"?: | 'positive'
|
|
2221
|
-
| 'unbiased'
|
|
2222
|
-
| 'negative'
|
|
2223
|
-
| 'info';
|
|
2224
|
-
}
|
|
2225
2233
|
interface PTooltip {
|
|
2226
2234
|
/**
|
|
2227
2235
|
* Wether to someone can manually close the popover
|
|
@@ -2271,6 +2279,7 @@ declare namespace LocalJSX {
|
|
|
2271
2279
|
"p-illustration": PIllustration;
|
|
2272
2280
|
"p-info-panel": PInfoPanel;
|
|
2273
2281
|
"p-input-group": PInputGroup;
|
|
2282
|
+
"p-label": PLabel;
|
|
2274
2283
|
"p-layout": PLayout;
|
|
2275
2284
|
"p-loader": PLoader;
|
|
2276
2285
|
"p-modal": PModal;
|
|
@@ -2301,7 +2310,6 @@ declare namespace LocalJSX {
|
|
|
2301
2310
|
"p-table-footer": PTableFooter;
|
|
2302
2311
|
"p-table-header": PTableHeader;
|
|
2303
2312
|
"p-table-row": PTableRow;
|
|
2304
|
-
"p-tag": PTag;
|
|
2305
2313
|
"p-tooltip": PTooltip;
|
|
2306
2314
|
}
|
|
2307
2315
|
}
|
|
@@ -2327,6 +2335,7 @@ declare module "@stencil/core" {
|
|
|
2327
2335
|
"p-illustration": LocalJSX.PIllustration & JSXBase.HTMLAttributes<HTMLPIllustrationElement>;
|
|
2328
2336
|
"p-info-panel": LocalJSX.PInfoPanel & JSXBase.HTMLAttributes<HTMLPInfoPanelElement>;
|
|
2329
2337
|
"p-input-group": LocalJSX.PInputGroup & JSXBase.HTMLAttributes<HTMLPInputGroupElement>;
|
|
2338
|
+
"p-label": LocalJSX.PLabel & JSXBase.HTMLAttributes<HTMLPLabelElement>;
|
|
2330
2339
|
"p-layout": LocalJSX.PLayout & JSXBase.HTMLAttributes<HTMLPLayoutElement>;
|
|
2331
2340
|
"p-loader": LocalJSX.PLoader & JSXBase.HTMLAttributes<HTMLPLoaderElement>;
|
|
2332
2341
|
"p-modal": LocalJSX.PModal & JSXBase.HTMLAttributes<HTMLPModalElement>;
|
|
@@ -2357,7 +2366,6 @@ declare module "@stencil/core" {
|
|
|
2357
2366
|
"p-table-footer": LocalJSX.PTableFooter & JSXBase.HTMLAttributes<HTMLPTableFooterElement>;
|
|
2358
2367
|
"p-table-header": LocalJSX.PTableHeader & JSXBase.HTMLAttributes<HTMLPTableHeaderElement>;
|
|
2359
2368
|
"p-table-row": LocalJSX.PTableRow & JSXBase.HTMLAttributes<HTMLPTableRowElement>;
|
|
2360
|
-
"p-tag": LocalJSX.PTag & JSXBase.HTMLAttributes<HTMLPTagElement>;
|
|
2361
2369
|
"p-tooltip": LocalJSX.PTooltip & JSXBase.HTMLAttributes<HTMLPTooltipElement>;
|
|
2362
2370
|
}
|
|
2363
2371
|
}
|
package/package.json
CHANGED
package/dist/components/p-tag.js
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
|
|
2
|
-
|
|
3
|
-
const tagComponentCss = ".visible{visibility:visible!important}.static{position:static!important}.fixed{position:fixed!important}.bottom-0{bottom:0!important}.left-0{left:0!important}.m-0{margin:0!important}.ml-1{margin-left:.25rem!important}.block{display:block!important}.flex{display:flex!important}.table{display:table!important}.hidden{display:none!important}.h-\\[1\\.625rem\\]{height:1.625rem!important}.h-2{height:.5rem!important}.h-6{height:1.5rem!important}.w-1{width:.25rem!important}.w-2{width:.5rem!important}.w-3{width:.75rem!important}.w-4{width:1rem!important}.w-5{width:1.25rem!important}.w-6{width:1.5rem!important}.w-7{width:1.75rem!important}.w-8{width:2rem!important}.w-9{width:2.25rem!important}.w-10{width:2.5rem!important}.w-11{width:2.75rem!important}.w-full{width:100%!important}.w-auto{width:auto!important}.flex-1{flex:1 1 0%!important}.flex-col{flex-direction:column!important}.items-center{align-items:center!important}.justify-start{justify-content:flex-start!important}.justify-end{justify-content:flex-end!important}.justify-center{justify-content:center!important}.gap-1{gap:.25rem!important}.gap-4{gap:1rem!important}.justify-self-end{justify-self:end!important}.rounded{border-radius:.25rem!important}.rounded-round{border-radius:100%!important}.border{border-width:1px!important}.border-solid{border-style:solid!important}.border-transparent{border-color:transparent!important}.border-t-mystic-dark{--tw-border-opacity:1!important;border-top-color:rgb(218 230 240/var(--tw-border-opacity))!important}.bg-white{--tw-bg-opacity:1!important;background-color:rgb(255 255 255/var(--tw-bg-opacity))!important}.p-4{padding:1rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.text-xs{font-size:.75rem!important;line-height:1rem!important}.font-semibold{font-weight:600!important}.text-storm-dark{--tw-text-opacity:1!important;color:rgb(39 40 56/var(--tw-text-opacity))!important}.blur{--tw-blur:blur(8px)!important}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}*{box-sizing:border-box}:host{align-items:center;border-radius:.25rem;display:flex;font-size:.75rem;font-weight:600;gap:.25rem;height:1.625rem;line-height:1rem;padding-left:.75rem;padding-right:.75rem}:host .circle{border-radius:100%;display:none;height:.5rem;width:.5rem}:host([circle]){padding-left:.5rem}:host([circle]) .circle{display:block}:host([circle=false]) .circle{display:none}:host([variant=info]){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(245 254 255/var(--tw-bg-opacity));color:rgb(30 218 227/var(--tw-text-opacity))}:host([variant=info]) .circle{--tw-bg-opacity:1;background-color:rgb(30 218 227/var(--tw-bg-opacity))}:host([variant=positive]){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 255 242/var(--tw-bg-opacity));color:rgb(40 209 124/var(--tw-text-opacity))}:host([variant=positive]) .circle{--tw-bg-opacity:1;background-color:rgb(40 209 124/var(--tw-bg-opacity))}:host([variant=unbiased]){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(255 246 220/var(--tw-bg-opacity));color:rgb(255 199 45/var(--tw-text-opacity))}:host([variant=unbiased]) .circle{--tw-bg-opacity:1;background-color:rgb(255 199 45/var(--tw-bg-opacity))}:host([variant=negative]){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(255 204 211/var(--tw-bg-opacity));color:rgb(185 30 40/var(--tw-text-opacity))}:host([variant=negative]) .circle{--tw-bg-opacity:1;background-color:rgb(185 30 40/var(--tw-bg-opacity))}.w-1\\/12{width:8.333333%!important}.w-2\\/12{width:16.666667%!important}.w-3\\/12{width:25%!important}.w-4\\/12{width:33.333333%!important}.w-5\\/12{width:41.666667%!important}.w-6\\/12{width:50%!important}.w-7\\/12{width:58.333333%!important}.w-8\\/12{width:66.666667%!important}.w-9\\/12{width:75%!important}.w-10\\/12{width:83.333333%!important}.w-11\\/12{width:91.666667%!important}@media (min-width:40rem){.tablet\\:w-1\\/12{width:8.333333%!important}.tablet\\:w-2\\/12{width:16.666667%!important}.tablet\\:w-3\\/12{width:25%!important}.tablet\\:w-4\\/12{width:33.333333%!important}.tablet\\:w-5\\/12{width:41.666667%!important}.tablet\\:w-6\\/12{width:50%!important}.tablet\\:w-7\\/12{width:58.333333%!important}.tablet\\:w-8\\/12{width:66.666667%!important}.tablet\\:w-9\\/12{width:75%!important}.tablet\\:w-10\\/12{width:83.333333%!important}.tablet\\:w-11\\/12{width:91.666667%!important}}@media (min-width:64rem){.desktop-xs\\:w-1\\/12{width:8.333333%!important}.desktop-xs\\:w-2\\/12{width:16.666667%!important}.desktop-xs\\:w-3\\/12{width:25%!important}.desktop-xs\\:w-4\\/12{width:33.333333%!important}.desktop-xs\\:w-5\\/12{width:41.666667%!important}.desktop-xs\\:w-6\\/12{width:50%!important}.desktop-xs\\:w-7\\/12{width:58.333333%!important}.desktop-xs\\:w-8\\/12{width:66.666667%!important}.desktop-xs\\:w-9\\/12{width:75%!important}.desktop-xs\\:w-10\\/12{width:83.333333%!important}.desktop-xs\\:w-11\\/12{width:91.666667%!important}}@media (min-width:80rem){.desktop-sm\\:w-1\\/12{width:8.333333%!important}.desktop-sm\\:w-2\\/12{width:16.666667%!important}.desktop-sm\\:w-3\\/12{width:25%!important}.desktop-sm\\:w-4\\/12{width:33.333333%!important}.desktop-sm\\:w-5\\/12{width:41.666667%!important}.desktop-sm\\:w-6\\/12{width:50%!important}.desktop-sm\\:w-7\\/12{width:58.333333%!important}.desktop-sm\\:w-8\\/12{width:66.666667%!important}.desktop-sm\\:w-9\\/12{width:75%!important}.desktop-sm\\:w-10\\/12{width:83.333333%!important}.desktop-sm\\:w-11\\/12{width:91.666667%!important}}@media (min-width:85.375rem){.desktop\\:w-1\\/12{width:8.333333%!important}.desktop\\:w-2\\/12{width:16.666667%!important}.desktop\\:w-3\\/12{width:25%!important}.desktop\\:w-4\\/12{width:33.333333%!important}.desktop\\:w-5\\/12{width:41.666667%!important}.desktop\\:w-6\\/12{width:50%!important}.desktop\\:w-7\\/12{width:58.333333%!important}.desktop\\:w-8\\/12{width:66.666667%!important}.desktop\\:w-9\\/12{width:75%!important}.desktop\\:w-10\\/12{width:83.333333%!important}.desktop\\:w-11\\/12{width:91.666667%!important}}@media (min-width:90rem){.desktop-lg\\:w-1\\/12{width:8.333333%!important}.desktop-lg\\:w-2\\/12{width:16.666667%!important}.desktop-lg\\:w-3\\/12{width:25%!important}.desktop-lg\\:w-4\\/12{width:33.333333%!important}.desktop-lg\\:w-5\\/12{width:41.666667%!important}.desktop-lg\\:w-6\\/12{width:50%!important}.desktop-lg\\:w-7\\/12{width:58.333333%!important}.desktop-lg\\:w-8\\/12{width:66.666667%!important}.desktop-lg\\:w-9\\/12{width:75%!important}.desktop-lg\\:w-10\\/12{width:83.333333%!important}.desktop-lg\\:w-11\\/12{width:91.666667%!important}}@media (min-width:120rem){.desktop-xl\\:w-1\\/12{width:8.333333%!important}.desktop-xl\\:w-2\\/12{width:16.666667%!important}.desktop-xl\\:w-3\\/12{width:25%!important}.desktop-xl\\:w-4\\/12{width:33.333333%!important}.desktop-xl\\:w-5\\/12{width:41.666667%!important}.desktop-xl\\:w-6\\/12{width:50%!important}.desktop-xl\\:w-7\\/12{width:58.333333%!important}.desktop-xl\\:w-8\\/12{width:66.666667%!important}.desktop-xl\\:w-9\\/12{width:75%!important}.desktop-xl\\:w-10\\/12{width:83.333333%!important}.desktop-xl\\:w-11\\/12{width:91.666667%!important}}@media (min-width:64rem){.desktop-xs\\:flex{display:flex!important}.desktop-xs\\:hidden{display:none!important}.desktop-xs\\:w-auto{width:auto!important}.desktop-xs\\:flex-row{flex-direction:row!important}}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}";
|
|
4
|
-
|
|
5
|
-
const Tag = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
6
|
-
constructor() {
|
|
7
|
-
super();
|
|
8
|
-
this.__registerHost();
|
|
9
|
-
this.__attachShadow();
|
|
10
|
-
/**
|
|
11
|
-
* Variant of the tag
|
|
12
|
-
*/
|
|
13
|
-
this.variant = 'info';
|
|
14
|
-
/**
|
|
15
|
-
* Wether to add the circle or not
|
|
16
|
-
*/
|
|
17
|
-
this.circle = true;
|
|
18
|
-
}
|
|
19
|
-
render() {
|
|
20
|
-
return (h(Host, { class: "p-tag" }, h("div", { class: "circle" }), h("slot", null)));
|
|
21
|
-
}
|
|
22
|
-
static get style() { return tagComponentCss; }
|
|
23
|
-
}, [1, "p-tag", {
|
|
24
|
-
"variant": [513],
|
|
25
|
-
"circle": [516]
|
|
26
|
-
}]);
|
|
27
|
-
function defineCustomElement() {
|
|
28
|
-
if (typeof customElements === "undefined") {
|
|
29
|
-
return;
|
|
30
|
-
}
|
|
31
|
-
const components = ["p-tag"];
|
|
32
|
-
components.forEach(tagName => { switch (tagName) {
|
|
33
|
-
case "p-tag":
|
|
34
|
-
if (!customElements.get(tagName)) {
|
|
35
|
-
customElements.define(tagName, Tag);
|
|
36
|
-
}
|
|
37
|
-
break;
|
|
38
|
-
} });
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export { Tag as T, defineCustomElement as d };
|