@public-ui/solid 3.0.1 → 3.0.2-23b676ffff02d65bc7f05613310ad885935cd160.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/README.md CHANGED
@@ -17,9 +17,9 @@ Provide an adapter for [SolidJS](https://www.solidjs.com/) to use the KoliBri co
17
17
  You can install the adapter with `npm`, `pnpm` or `yarn`:
18
18
 
19
19
  ```bash
20
- npm i -g @public-ui/solid
21
- pnpm i -g @public-ui/solid
22
- yarn add -g @public-ui/solid
20
+ npm i @public-ui/solid
21
+ pnpm i @public-ui/solid
22
+ yarn add @public-ui/solid
23
23
  ```
24
24
 
25
25
  ## Usage
@@ -49,3 +49,5 @@ import { KolButton } from '@public-ui/solid';
49
49
 
50
50
  export const AppComponent: Component = () => <KolButton _label="Hello World" />;
51
51
  ```
52
+
53
+ For customization options read the [default theme README](../../themes/default/README.md).
package/dist/index.cjs CHANGED
@@ -40,6 +40,7 @@ const KolBreadcrumb = /* @__PURE__ */ createSolidComponent("kol-breadcrumb");
40
40
  const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
41
41
  const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
42
42
  const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
43
+ const KolCardWc = /* @__PURE__ */ createSolidComponent("kol-card-wc");
43
44
  const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
44
45
  const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
45
46
  const KolDrawer = /* @__PURE__ */ createSolidComponent("kol-drawer");
@@ -63,6 +64,7 @@ const KolLinkButton = /* @__PURE__ */ createSolidComponent("kol-link-button");
63
64
  const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
64
65
  const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
65
66
  const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
67
+ const KolPaginationWc = /* @__PURE__ */ createSolidComponent("kol-pagination-wc");
66
68
  const KolPopoverButton = /* @__PURE__ */ createSolidComponent("kol-popover-button");
67
69
  const KolPopoverButtonWc = /* @__PURE__ */ createSolidComponent("kol-popover-button-wc");
68
70
  const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
@@ -92,6 +94,7 @@ exports.KolBreadcrumb = KolBreadcrumb;
92
94
  exports.KolButton = KolButton;
93
95
  exports.KolButtonLink = KolButtonLink;
94
96
  exports.KolCard = KolCard;
97
+ exports.KolCardWc = KolCardWc;
95
98
  exports.KolCombobox = KolCombobox;
96
99
  exports.KolDetails = KolDetails;
97
100
  exports.KolDrawer = KolDrawer;
@@ -115,6 +118,7 @@ exports.KolLinkButton = KolLinkButton;
115
118
  exports.KolModal = KolModal;
116
119
  exports.KolNav = KolNav;
117
120
  exports.KolPagination = KolPagination;
121
+ exports.KolPaginationWc = KolPaginationWc;
118
122
  exports.KolPopoverButton = KolPopoverButton;
119
123
  exports.KolPopoverButtonWc = KolPopoverButtonWc;
120
124
  exports.KolProgress = KolProgress;
package/dist/index.d.cts CHANGED
@@ -13,6 +13,7 @@ declare const KolBreadcrumb: (props: solid_js.PropsWithChildren<JSX.KolBreadcrum
13
13
  declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & solid_js.JSX.HTMLAttributes<HTMLKolButtonElement>>) => HTMLKolButtonElement;
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
+ declare const KolCardWc: (props: solid_js.PropsWithChildren<JSX.KolCardWc & solid_js.JSX.HTMLAttributes<HTMLKolCardWcElement>>) => HTMLKolCardWcElement;
16
17
  declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
17
18
  declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
18
19
  declare const KolDrawer: (props: solid_js.PropsWithChildren<JSX.KolDrawer & solid_js.JSX.HTMLAttributes<HTMLKolDrawerElement>>) => HTMLKolDrawerElement;
@@ -36,6 +37,7 @@ declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButto
36
37
  declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
37
38
  declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
38
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;
39
41
  declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
40
42
  declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
41
43
  declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
@@ -56,4 +58,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
56
58
  declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
57
59
  declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
58
60
 
59
- export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, 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
@@ -13,6 +13,7 @@ declare const KolBreadcrumb: (props: solid_js.PropsWithChildren<JSX.KolBreadcrum
13
13
  declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & solid_js.JSX.HTMLAttributes<HTMLKolButtonElement>>) => HTMLKolButtonElement;
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
+ declare const KolCardWc: (props: solid_js.PropsWithChildren<JSX.KolCardWc & solid_js.JSX.HTMLAttributes<HTMLKolCardWcElement>>) => HTMLKolCardWcElement;
16
17
  declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
17
18
  declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
18
19
  declare const KolDrawer: (props: solid_js.PropsWithChildren<JSX.KolDrawer & solid_js.JSX.HTMLAttributes<HTMLKolDrawerElement>>) => HTMLKolDrawerElement;
@@ -36,6 +37,7 @@ declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButto
36
37
  declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
37
38
  declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
38
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;
39
41
  declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
40
42
  declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
41
43
  declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
@@ -56,4 +58,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
56
58
  declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
57
59
  declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
58
60
 
59
- export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, 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
@@ -13,6 +13,7 @@ declare const KolBreadcrumb: (props: solid_js.PropsWithChildren<JSX.KolBreadcrum
13
13
  declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & solid_js.JSX.HTMLAttributes<HTMLKolButtonElement>>) => HTMLKolButtonElement;
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
+ declare const KolCardWc: (props: solid_js.PropsWithChildren<JSX.KolCardWc & solid_js.JSX.HTMLAttributes<HTMLKolCardWcElement>>) => HTMLKolCardWcElement;
16
17
  declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
17
18
  declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
18
19
  declare const KolDrawer: (props: solid_js.PropsWithChildren<JSX.KolDrawer & solid_js.JSX.HTMLAttributes<HTMLKolDrawerElement>>) => HTMLKolDrawerElement;
@@ -36,6 +37,7 @@ declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButto
36
37
  declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
37
38
  declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
38
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;
39
41
  declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
40
42
  declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
41
43
  declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
@@ -56,4 +58,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
56
58
  declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
57
59
  declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
58
60
 
59
- export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, 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
@@ -38,6 +38,7 @@ const KolBreadcrumb = /* @__PURE__ */ createSolidComponent("kol-breadcrumb");
38
38
  const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
39
39
  const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
40
40
  const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
41
+ const KolCardWc = /* @__PURE__ */ createSolidComponent("kol-card-wc");
41
42
  const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
42
43
  const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
43
44
  const KolDrawer = /* @__PURE__ */ createSolidComponent("kol-drawer");
@@ -61,6 +62,7 @@ const KolLinkButton = /* @__PURE__ */ createSolidComponent("kol-link-button");
61
62
  const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
62
63
  const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
63
64
  const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
65
+ const KolPaginationWc = /* @__PURE__ */ createSolidComponent("kol-pagination-wc");
64
66
  const KolPopoverButton = /* @__PURE__ */ createSolidComponent("kol-popover-button");
65
67
  const KolPopoverButtonWc = /* @__PURE__ */ createSolidComponent("kol-popover-button-wc");
66
68
  const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
@@ -81,4 +83,4 @@ const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
81
83
  const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
82
84
  const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
83
85
 
84
- export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonLink, KolCard, 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.1",
3
+ "version": "3.0.2-23b676ffff02d65bc7f05613310ad885935cd160.0",
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.1"
54
+ "@public-ui/components": "3.0.2-23b676ffff02d65bc7f05613310ad885935cd160.0"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "solid-js": ">=1.9.7",
58
- "@public-ui/components": "3.0.1"
58
+ "@public-ui/components": "3.0.2-23b676ffff02d65bc7f05613310ad885935cd160.0"
59
59
  },
60
60
  "sideEffects": false,
61
61
  "type": "module",