@public-ui/solid 3.0.1 → 3.0.2-6ae0104cda0b7b19a5b0d6bbc5f990b9fe544fa0.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");
@@ -92,6 +93,7 @@ exports.KolBreadcrumb = KolBreadcrumb;
92
93
  exports.KolButton = KolButton;
93
94
  exports.KolButtonLink = KolButtonLink;
94
95
  exports.KolCard = KolCard;
96
+ exports.KolCardWc = KolCardWc;
95
97
  exports.KolCombobox = KolCombobox;
96
98
  exports.KolDetails = KolDetails;
97
99
  exports.KolDrawer = KolDrawer;
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;
@@ -56,4 +57,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
56
57
  declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
57
58
  declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
58
59
 
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 };
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 };
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;
@@ -56,4 +57,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
56
57
  declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
57
58
  declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
58
59
 
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 };
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 };
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;
@@ -56,4 +57,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
56
57
  declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
57
58
  declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
58
59
 
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 };
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 };
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");
@@ -81,4 +82,4 @@ const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
81
82
  const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
82
83
  const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
83
84
 
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 };
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 };
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-6ae0104cda0b7b19a5b0d6bbc5f990b9fe544fa0.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-6ae0104cda0b7b19a5b0d6bbc5f990b9fe544fa0.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-6ae0104cda0b7b19a5b0d6bbc5f990b9fe544fa0.0"
59
59
  },
60
60
  "sideEffects": false,
61
61
  "type": "module",