@public-ui/solid 3.0.2-rc.0 → 3.0.2-rc.2
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 -0
- package/dist/index.d.cts +2 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -64,6 +64,7 @@ const KolLinkButton = /* @__PURE__ */ createSolidComponent("kol-link-button");
|
|
|
64
64
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
65
65
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
66
66
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
67
|
+
const KolPaginationWc = /* @__PURE__ */ createSolidComponent("kol-pagination-wc");
|
|
67
68
|
const KolPopoverButton = /* @__PURE__ */ createSolidComponent("kol-popover-button");
|
|
68
69
|
const KolPopoverButtonWc = /* @__PURE__ */ createSolidComponent("kol-popover-button-wc");
|
|
69
70
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
@@ -117,6 +118,7 @@ exports.KolLinkButton = KolLinkButton;
|
|
|
117
118
|
exports.KolModal = KolModal;
|
|
118
119
|
exports.KolNav = KolNav;
|
|
119
120
|
exports.KolPagination = KolPagination;
|
|
121
|
+
exports.KolPaginationWc = KolPaginationWc;
|
|
120
122
|
exports.KolPopoverButton = KolPopoverButton;
|
|
121
123
|
exports.KolPopoverButtonWc = KolPopoverButtonWc;
|
|
122
124
|
exports.KolProgress = KolProgress;
|
package/dist/index.d.cts
CHANGED
|
@@ -37,6 +37,7 @@ declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButto
|
|
|
37
37
|
declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
|
|
38
38
|
declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
|
|
39
39
|
declare const KolPagination: (props: solid_js.PropsWithChildren<JSX.KolPagination & solid_js.JSX.HTMLAttributes<HTMLKolPaginationElement>>) => HTMLKolPaginationElement;
|
|
40
|
+
declare const KolPaginationWc: (props: solid_js.PropsWithChildren<JSX.KolPaginationWc & solid_js.JSX.HTMLAttributes<HTMLKolPaginationWcElement>>) => HTMLKolPaginationWcElement;
|
|
40
41
|
declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
|
|
41
42
|
declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
|
|
42
43
|
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
@@ -57,4 +58,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
|
|
|
57
58
|
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
58
59
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
59
60
|
|
|
60
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
61
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, 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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.d.mts
CHANGED
|
@@ -37,6 +37,7 @@ declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButto
|
|
|
37
37
|
declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
|
|
38
38
|
declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
|
|
39
39
|
declare const KolPagination: (props: solid_js.PropsWithChildren<JSX.KolPagination & solid_js.JSX.HTMLAttributes<HTMLKolPaginationElement>>) => HTMLKolPaginationElement;
|
|
40
|
+
declare const KolPaginationWc: (props: solid_js.PropsWithChildren<JSX.KolPaginationWc & solid_js.JSX.HTMLAttributes<HTMLKolPaginationWcElement>>) => HTMLKolPaginationWcElement;
|
|
40
41
|
declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
|
|
41
42
|
declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
|
|
42
43
|
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
@@ -57,4 +58,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
|
|
|
57
58
|
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
58
59
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
59
60
|
|
|
60
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
61
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, 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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButto
|
|
|
37
37
|
declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
|
|
38
38
|
declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
|
|
39
39
|
declare const KolPagination: (props: solid_js.PropsWithChildren<JSX.KolPagination & solid_js.JSX.HTMLAttributes<HTMLKolPaginationElement>>) => HTMLKolPaginationElement;
|
|
40
|
+
declare const KolPaginationWc: (props: solid_js.PropsWithChildren<JSX.KolPaginationWc & solid_js.JSX.HTMLAttributes<HTMLKolPaginationWcElement>>) => HTMLKolPaginationWcElement;
|
|
40
41
|
declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
|
|
41
42
|
declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
|
|
42
43
|
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
@@ -57,4 +58,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
|
|
|
57
58
|
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
58
59
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
59
60
|
|
|
60
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
61
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, 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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -62,6 +62,7 @@ const KolLinkButton = /* @__PURE__ */ createSolidComponent("kol-link-button");
|
|
|
62
62
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
63
63
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
64
64
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
65
|
+
const KolPaginationWc = /* @__PURE__ */ createSolidComponent("kol-pagination-wc");
|
|
65
66
|
const KolPopoverButton = /* @__PURE__ */ createSolidComponent("kol-popover-button");
|
|
66
67
|
const KolPopoverButtonWc = /* @__PURE__ */ createSolidComponent("kol-popover-button-wc");
|
|
67
68
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
@@ -82,4 +83,4 @@ const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
|
|
|
82
83
|
const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
|
|
83
84
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
84
85
|
|
|
85
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolModal, KolNav, KolPagination, KolPopoverButton, KolPopoverButtonWc, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
86
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, KolCardWc, KolCombobox, KolDetails, 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, KolSingleSelect, 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": "3.0.2-rc.
|
|
3
|
+
"version": "3.0.2-rc.2",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"solid-js": "1.9.7",
|
|
52
52
|
"typescript": "5.8.3",
|
|
53
53
|
"unbuild": "3.5.0",
|
|
54
|
-
"@public-ui/components": "3.0.2-rc.
|
|
54
|
+
"@public-ui/components": "3.0.2-rc.2"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"solid-js": ">=1.9.7",
|
|
58
|
-
"@public-ui/components": "3.0.2-rc.
|
|
58
|
+
"@public-ui/components": "3.0.2-rc.2"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
61
|
"type": "module",
|