@public-ui/solid 2.1.2 → 2.1.4-alpha.1
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/index.cjs +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -43,6 +43,7 @@ const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
|
43
43
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
44
44
|
const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
|
|
45
45
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
46
|
+
const KolDrawer = /* @__PURE__ */ createSolidComponent("kol-drawer");
|
|
46
47
|
const KolForm = /* @__PURE__ */ createSolidComponent("kol-form");
|
|
47
48
|
const KolHeading = /* @__PURE__ */ createSolidComponent("kol-heading");
|
|
48
49
|
const KolIcon = /* @__PURE__ */ createSolidComponent("kol-icon");
|
|
@@ -70,7 +71,6 @@ const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
|
70
71
|
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
71
72
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
72
73
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
73
|
-
const KolSpan = /* @__PURE__ */ createSolidComponent("kol-span");
|
|
74
74
|
const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
|
|
75
75
|
const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
|
|
76
76
|
const KolSymbol = /* @__PURE__ */ createSolidComponent("kol-symbol");
|
|
@@ -99,6 +99,7 @@ exports.KolButtonLink = KolButtonLink;
|
|
|
99
99
|
exports.KolCard = KolCard;
|
|
100
100
|
exports.KolCombobox = KolCombobox;
|
|
101
101
|
exports.KolDetails = KolDetails;
|
|
102
|
+
exports.KolDrawer = KolDrawer;
|
|
102
103
|
exports.KolForm = KolForm;
|
|
103
104
|
exports.KolHeading = KolHeading;
|
|
104
105
|
exports.KolIcon = KolIcon;
|
|
@@ -126,7 +127,6 @@ exports.KolProgress = KolProgress;
|
|
|
126
127
|
exports.KolQuote = KolQuote;
|
|
127
128
|
exports.KolSelect = KolSelect;
|
|
128
129
|
exports.KolSkipNav = KolSkipNav;
|
|
129
|
-
exports.KolSpan = KolSpan;
|
|
130
130
|
exports.KolSpin = KolSpin;
|
|
131
131
|
exports.KolSplitButton = KolSplitButton;
|
|
132
132
|
exports.KolSymbol = KolSymbol;
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ declare const KolButtonLink: (props: solid_js.PropsWithChildren<JSX.KolButtonLin
|
|
|
16
16
|
declare const KolCard: (props: solid_js.PropsWithChildren<JSX.KolCard & solid_js.JSX.HTMLAttributes<HTMLKolCardElement>>) => HTMLKolCardElement;
|
|
17
17
|
declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
|
|
18
18
|
declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
|
|
19
|
+
declare const KolDrawer: (props: solid_js.PropsWithChildren<JSX.KolDrawer & solid_js.JSX.HTMLAttributes<HTMLKolDrawerElement>>) => HTMLKolDrawerElement;
|
|
19
20
|
declare const KolForm: (props: solid_js.PropsWithChildren<JSX.KolForm & solid_js.JSX.HTMLAttributes<HTMLKolFormElement>>) => HTMLKolFormElement;
|
|
20
21
|
declare const KolHeading: (props: solid_js.PropsWithChildren<JSX.KolHeading & solid_js.JSX.HTMLAttributes<HTMLKolHeadingElement>>) => HTMLKolHeadingElement;
|
|
21
22
|
declare const KolIcon: (props: solid_js.PropsWithChildren<JSX.KolIcon & solid_js.JSX.HTMLAttributes<HTMLKolIconElement>>) => HTMLKolIconElement;
|
|
@@ -43,7 +44,6 @@ declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress &
|
|
|
43
44
|
declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
|
|
44
45
|
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
45
46
|
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
46
|
-
declare const KolSpan: (props: solid_js.PropsWithChildren<JSX.KolSpan & solid_js.JSX.HTMLAttributes<HTMLKolSpanElement>>) => HTMLKolSpanElement;
|
|
47
47
|
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
48
48
|
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
49
49
|
declare const KolSymbol: (props: solid_js.PropsWithChildren<JSX.KolSymbol & solid_js.JSX.HTMLAttributes<HTMLKolSymbolElement>>) => HTMLKolSymbolElement;
|
|
@@ -60,4 +60,4 @@ declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemW
|
|
|
60
60
|
declare const KolTreeWc: (props: solid_js.PropsWithChildren<JSX.KolTreeWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeWcElement>>) => HTMLKolTreeWcElement;
|
|
61
61
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
62
62
|
|
|
63
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav,
|
|
63
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -41,6 +41,7 @@ const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
|
41
41
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
42
42
|
const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
|
|
43
43
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
44
|
+
const KolDrawer = /* @__PURE__ */ createSolidComponent("kol-drawer");
|
|
44
45
|
const KolForm = /* @__PURE__ */ createSolidComponent("kol-form");
|
|
45
46
|
const KolHeading = /* @__PURE__ */ createSolidComponent("kol-heading");
|
|
46
47
|
const KolIcon = /* @__PURE__ */ createSolidComponent("kol-icon");
|
|
@@ -68,7 +69,6 @@ const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
|
68
69
|
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
69
70
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
70
71
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
71
|
-
const KolSpan = /* @__PURE__ */ createSolidComponent("kol-span");
|
|
72
72
|
const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
|
|
73
73
|
const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
|
|
74
74
|
const KolSymbol = /* @__PURE__ */ createSolidComponent("kol-symbol");
|
|
@@ -85,4 +85,4 @@ const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
|
|
|
85
85
|
const KolTreeWc = /* @__PURE__ */ createSolidComponent("kol-tree-wc");
|
|
86
86
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
87
87
|
|
|
88
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav,
|
|
88
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/solid",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4-alpha.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"@types/node": "ts5.4",
|
|
51
51
|
"@types/normalize-package-data": "2.4.4",
|
|
52
52
|
"solid-js": "1.8.17",
|
|
53
|
-
"typescript": "5.
|
|
53
|
+
"typescript": "5.5.2",
|
|
54
54
|
"unbuild": "1.2.1",
|
|
55
|
-
"@public-ui/components": "2.1.
|
|
55
|
+
"@public-ui/components": "2.1.4-alpha.1"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"solid-js": ">=1.8.17",
|
|
59
|
-
"@public-ui/components": "2.1.
|
|
59
|
+
"@public-ui/components": "2.1.4-alpha.1"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
62
|
"type": "module",
|