@public-ui/solid 2.2.6 → 2.2.7
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.ts +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -67,6 +67,7 @@ const KolLogo = /* @__PURE__ */ createSolidComponent("kol-logo");
|
|
|
67
67
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
68
68
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
69
69
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
70
|
+
const KolPopoverButton = /* @__PURE__ */ createSolidComponent("kol-popover-button");
|
|
70
71
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
71
72
|
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
72
73
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
@@ -123,6 +124,7 @@ exports.KolLogo = KolLogo;
|
|
|
123
124
|
exports.KolModal = KolModal;
|
|
124
125
|
exports.KolNav = KolNav;
|
|
125
126
|
exports.KolPagination = KolPagination;
|
|
127
|
+
exports.KolPopoverButton = KolPopoverButton;
|
|
126
128
|
exports.KolProgress = KolProgress;
|
|
127
129
|
exports.KolQuote = KolQuote;
|
|
128
130
|
exports.KolSelect = KolSelect;
|
package/dist/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ declare const KolLogo: (props: solid_js.PropsWithChildren<JSX.KolLogo & solid_js
|
|
|
40
40
|
declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
|
|
41
41
|
declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
|
|
42
42
|
declare const KolPagination: (props: solid_js.PropsWithChildren<JSX.KolPagination & solid_js.JSX.HTMLAttributes<HTMLKolPaginationElement>>) => HTMLKolPaginationElement;
|
|
43
|
+
declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
|
|
43
44
|
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
44
45
|
declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
|
|
45
46
|
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
@@ -60,4 +61,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
|
|
|
60
61
|
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
61
62
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
62
63
|
|
|
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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
64
|
+
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, KolPopoverButton, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -65,6 +65,7 @@ const KolLogo = /* @__PURE__ */ createSolidComponent("kol-logo");
|
|
|
65
65
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
66
66
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
67
67
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
68
|
+
const KolPopoverButton = /* @__PURE__ */ createSolidComponent("kol-popover-button");
|
|
68
69
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
69
70
|
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
70
71
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
@@ -85,4 +86,4 @@ const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
|
|
|
85
86
|
const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
|
|
86
87
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
87
88
|
|
|
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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
|
89
|
+
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, KolPopoverButton, KolProgress, KolQuote, KolSelect, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, 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": "2.2.
|
|
3
|
+
"version": "2.2.7",
|
|
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.4",
|
|
52
52
|
"typescript": "5.7.3",
|
|
53
53
|
"unbuild": "1.2.1",
|
|
54
|
-
"@public-ui/components": "2.2.
|
|
54
|
+
"@public-ui/components": "2.2.7"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"solid-js": ">=1.9.4",
|
|
58
|
-
"@public-ui/components": "2.2.
|
|
58
|
+
"@public-ui/components": "2.2.7"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
61
|
"type": "module",
|