@public-ui/solid 4.0.3 → 4.0.4-rc.0
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 +4 -0
- package/dist/index.d.cts +3 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -41,6 +41,7 @@ const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
|
41
41
|
const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
42
42
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
43
43
|
const KolCardWc = /* @__PURE__ */ createSolidComponent("kol-card-wc");
|
|
44
|
+
const KolClickButton = /* @__PURE__ */ createSolidComponent("kol-click-button");
|
|
44
45
|
const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
|
|
45
46
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
46
47
|
const KolDialog = /* @__PURE__ */ createSolidComponent("kol-dialog");
|
|
@@ -73,6 +74,7 @@ const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
|
73
74
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
74
75
|
const KolSelectWc = /* @__PURE__ */ createSolidComponent("kol-select-wc");
|
|
75
76
|
const KolSingleSelect = /* @__PURE__ */ createSolidComponent("kol-single-select");
|
|
77
|
+
const KolSkeleton = /* @__PURE__ */ createSolidComponent("kol-skeleton");
|
|
76
78
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
77
79
|
const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
|
|
78
80
|
const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
|
|
@@ -97,6 +99,7 @@ exports.KolButton = KolButton;
|
|
|
97
99
|
exports.KolButtonLink = KolButtonLink;
|
|
98
100
|
exports.KolCard = KolCard;
|
|
99
101
|
exports.KolCardWc = KolCardWc;
|
|
102
|
+
exports.KolClickButton = KolClickButton;
|
|
100
103
|
exports.KolCombobox = KolCombobox;
|
|
101
104
|
exports.KolDetails = KolDetails;
|
|
102
105
|
exports.KolDialog = KolDialog;
|
|
@@ -129,6 +132,7 @@ exports.KolQuote = KolQuote;
|
|
|
129
132
|
exports.KolSelect = KolSelect;
|
|
130
133
|
exports.KolSelectWc = KolSelectWc;
|
|
131
134
|
exports.KolSingleSelect = KolSingleSelect;
|
|
135
|
+
exports.KolSkeleton = KolSkeleton;
|
|
132
136
|
exports.KolSkipNav = KolSkipNav;
|
|
133
137
|
exports.KolSpin = KolSpin;
|
|
134
138
|
exports.KolSplitButton = KolSplitButton;
|
package/dist/index.d.cts
CHANGED
|
@@ -14,6 +14,7 @@ declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & soli
|
|
|
14
14
|
declare const KolButtonLink: (props: solid_js.PropsWithChildren<JSX.KolButtonLink & solid_js.JSX.HTMLAttributes<HTMLKolButtonLinkElement>>) => HTMLKolButtonLinkElement;
|
|
15
15
|
declare const KolCard: (props: solid_js.PropsWithChildren<JSX.KolCard & solid_js.JSX.HTMLAttributes<HTMLKolCardElement>>) => HTMLKolCardElement;
|
|
16
16
|
declare const KolCardWc: (props: solid_js.PropsWithChildren<JSX.KolCardWc & solid_js.JSX.HTMLAttributes<HTMLKolCardWcElement>>) => HTMLKolCardWcElement;
|
|
17
|
+
declare const KolClickButton: (props: solid_js.PropsWithChildren<JSX.KolClickButton & solid_js.JSX.HTMLAttributes<HTMLKolClickButtonElement>>) => HTMLKolClickButtonElement;
|
|
17
18
|
declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
|
|
18
19
|
declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
|
|
19
20
|
declare const KolDialog: (props: solid_js.PropsWithChildren<JSX.KolDialog & solid_js.JSX.HTMLAttributes<HTMLKolDialogElement>>) => HTMLKolDialogElement;
|
|
@@ -46,6 +47,7 @@ declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_
|
|
|
46
47
|
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
47
48
|
declare const KolSelectWc: (props: solid_js.PropsWithChildren<JSX.KolSelectWc & solid_js.JSX.HTMLAttributes<HTMLKolSelectWcElement>>) => HTMLKolSelectWcElement;
|
|
48
49
|
declare const KolSingleSelect: (props: solid_js.PropsWithChildren<JSX.KolSingleSelect & solid_js.JSX.HTMLAttributes<HTMLKolSingleSelectElement>>) => HTMLKolSingleSelectElement;
|
|
50
|
+
declare const KolSkeleton: (props: solid_js.PropsWithChildren<JSX.KolSkeleton & solid_js.JSX.HTMLAttributes<HTMLKolSkeletonElement>>) => HTMLKolSkeletonElement;
|
|
49
51
|
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
50
52
|
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
51
53
|
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
@@ -60,4 +62,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
|
|
|
60
62
|
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
61
63
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
62
64
|
|
|
63
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
65
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolClickButton, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkeleton, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.d.mts
CHANGED
|
@@ -14,6 +14,7 @@ declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & soli
|
|
|
14
14
|
declare const KolButtonLink: (props: solid_js.PropsWithChildren<JSX.KolButtonLink & solid_js.JSX.HTMLAttributes<HTMLKolButtonLinkElement>>) => HTMLKolButtonLinkElement;
|
|
15
15
|
declare const KolCard: (props: solid_js.PropsWithChildren<JSX.KolCard & solid_js.JSX.HTMLAttributes<HTMLKolCardElement>>) => HTMLKolCardElement;
|
|
16
16
|
declare const KolCardWc: (props: solid_js.PropsWithChildren<JSX.KolCardWc & solid_js.JSX.HTMLAttributes<HTMLKolCardWcElement>>) => HTMLKolCardWcElement;
|
|
17
|
+
declare const KolClickButton: (props: solid_js.PropsWithChildren<JSX.KolClickButton & solid_js.JSX.HTMLAttributes<HTMLKolClickButtonElement>>) => HTMLKolClickButtonElement;
|
|
17
18
|
declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
|
|
18
19
|
declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
|
|
19
20
|
declare const KolDialog: (props: solid_js.PropsWithChildren<JSX.KolDialog & solid_js.JSX.HTMLAttributes<HTMLKolDialogElement>>) => HTMLKolDialogElement;
|
|
@@ -46,6 +47,7 @@ declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_
|
|
|
46
47
|
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
47
48
|
declare const KolSelectWc: (props: solid_js.PropsWithChildren<JSX.KolSelectWc & solid_js.JSX.HTMLAttributes<HTMLKolSelectWcElement>>) => HTMLKolSelectWcElement;
|
|
48
49
|
declare const KolSingleSelect: (props: solid_js.PropsWithChildren<JSX.KolSingleSelect & solid_js.JSX.HTMLAttributes<HTMLKolSingleSelectElement>>) => HTMLKolSingleSelectElement;
|
|
50
|
+
declare const KolSkeleton: (props: solid_js.PropsWithChildren<JSX.KolSkeleton & solid_js.JSX.HTMLAttributes<HTMLKolSkeletonElement>>) => HTMLKolSkeletonElement;
|
|
49
51
|
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
50
52
|
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
51
53
|
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
@@ -60,4 +62,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
|
|
|
60
62
|
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
61
63
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
62
64
|
|
|
63
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
65
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolClickButton, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkeleton, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & soli
|
|
|
14
14
|
declare const KolButtonLink: (props: solid_js.PropsWithChildren<JSX.KolButtonLink & solid_js.JSX.HTMLAttributes<HTMLKolButtonLinkElement>>) => HTMLKolButtonLinkElement;
|
|
15
15
|
declare const KolCard: (props: solid_js.PropsWithChildren<JSX.KolCard & solid_js.JSX.HTMLAttributes<HTMLKolCardElement>>) => HTMLKolCardElement;
|
|
16
16
|
declare const KolCardWc: (props: solid_js.PropsWithChildren<JSX.KolCardWc & solid_js.JSX.HTMLAttributes<HTMLKolCardWcElement>>) => HTMLKolCardWcElement;
|
|
17
|
+
declare const KolClickButton: (props: solid_js.PropsWithChildren<JSX.KolClickButton & solid_js.JSX.HTMLAttributes<HTMLKolClickButtonElement>>) => HTMLKolClickButtonElement;
|
|
17
18
|
declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
|
|
18
19
|
declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
|
|
19
20
|
declare const KolDialog: (props: solid_js.PropsWithChildren<JSX.KolDialog & solid_js.JSX.HTMLAttributes<HTMLKolDialogElement>>) => HTMLKolDialogElement;
|
|
@@ -46,6 +47,7 @@ declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_
|
|
|
46
47
|
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
47
48
|
declare const KolSelectWc: (props: solid_js.PropsWithChildren<JSX.KolSelectWc & solid_js.JSX.HTMLAttributes<HTMLKolSelectWcElement>>) => HTMLKolSelectWcElement;
|
|
48
49
|
declare const KolSingleSelect: (props: solid_js.PropsWithChildren<JSX.KolSingleSelect & solid_js.JSX.HTMLAttributes<HTMLKolSingleSelectElement>>) => HTMLKolSingleSelectElement;
|
|
50
|
+
declare const KolSkeleton: (props: solid_js.PropsWithChildren<JSX.KolSkeleton & solid_js.JSX.HTMLAttributes<HTMLKolSkeletonElement>>) => HTMLKolSkeletonElement;
|
|
49
51
|
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
50
52
|
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
51
53
|
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
@@ -60,4 +62,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
|
|
|
60
62
|
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
61
63
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
62
64
|
|
|
63
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
65
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolClickButton, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkeleton, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -39,6 +39,7 @@ const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
|
39
39
|
const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
40
40
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
41
41
|
const KolCardWc = /* @__PURE__ */ createSolidComponent("kol-card-wc");
|
|
42
|
+
const KolClickButton = /* @__PURE__ */ createSolidComponent("kol-click-button");
|
|
42
43
|
const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
|
|
43
44
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
44
45
|
const KolDialog = /* @__PURE__ */ createSolidComponent("kol-dialog");
|
|
@@ -71,6 +72,7 @@ const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
|
71
72
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
72
73
|
const KolSelectWc = /* @__PURE__ */ createSolidComponent("kol-select-wc");
|
|
73
74
|
const KolSingleSelect = /* @__PURE__ */ createSolidComponent("kol-single-select");
|
|
75
|
+
const KolSkeleton = /* @__PURE__ */ createSolidComponent("kol-skeleton");
|
|
74
76
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
75
77
|
const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
|
|
76
78
|
const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
|
|
@@ -85,4 +87,4 @@ const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
|
|
|
85
87
|
const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
|
|
86
88
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
87
89
|
|
|
88
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
90
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolClickButton, KolCombobox, KolDetails, KolDialog, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPaginationWc, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSelectWc, KolSingleSelect, KolSkeleton, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/solid",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4-rc.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -45,15 +45,15 @@
|
|
|
45
45
|
"solidjs"
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"minimatch": "10.
|
|
48
|
+
"minimatch": "10.2.3",
|
|
49
49
|
"solid-js": "1.9.11",
|
|
50
50
|
"typescript": "5.9.3",
|
|
51
51
|
"unbuild": "3.6.1",
|
|
52
|
-
"@public-ui/components": "4.0.
|
|
52
|
+
"@public-ui/components": "4.0.4-rc.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"solid-js": ">=1.9.11",
|
|
56
|
-
"@public-ui/components": "4.0.
|
|
56
|
+
"@public-ui/components": "4.0.4-rc.0"
|
|
57
57
|
},
|
|
58
58
|
"sideEffects": false,
|
|
59
59
|
"type": "module",
|