@public-ui/solid 3.0.1-rc.0 → 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 +5 -3
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +60 -0
- package/dist/index.d.mts +60 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +7 -7
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
|
|
21
|
-
pnpm i
|
|
22
|
-
yarn add
|
|
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
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as solid_js from 'solid-js';
|
|
2
|
+
import { JSX } from '@public-ui/components';
|
|
3
|
+
|
|
4
|
+
type TagNameTransformer = (tagName: string) => string;
|
|
5
|
+
declare const setTagNameTransformer: (_tagNameTransformer: TagNameTransformer) => void;
|
|
6
|
+
|
|
7
|
+
declare const KolAbbr: (props: solid_js.PropsWithChildren<JSX.KolAbbr & solid_js.JSX.HTMLAttributes<HTMLKolAbbrElement>>) => HTMLKolAbbrElement;
|
|
8
|
+
declare const KolAccordion: (props: solid_js.PropsWithChildren<JSX.KolAccordion & solid_js.JSX.HTMLAttributes<HTMLKolAccordionElement>>) => HTMLKolAccordionElement;
|
|
9
|
+
declare const KolAlert: (props: solid_js.PropsWithChildren<JSX.KolAlert & solid_js.JSX.HTMLAttributes<HTMLKolAlertElement>>) => HTMLKolAlertElement;
|
|
10
|
+
declare const KolAvatar: (props: solid_js.PropsWithChildren<JSX.KolAvatar & solid_js.JSX.HTMLAttributes<HTMLKolAvatarElement>>) => HTMLKolAvatarElement;
|
|
11
|
+
declare const KolBadge: (props: solid_js.PropsWithChildren<JSX.KolBadge & solid_js.JSX.HTMLAttributes<HTMLKolBadgeElement>>) => HTMLKolBadgeElement;
|
|
12
|
+
declare const KolBreadcrumb: (props: solid_js.PropsWithChildren<JSX.KolBreadcrumb & solid_js.JSX.HTMLAttributes<HTMLKolBreadcrumbElement>>) => HTMLKolBreadcrumbElement;
|
|
13
|
+
declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & solid_js.JSX.HTMLAttributes<HTMLKolButtonElement>>) => HTMLKolButtonElement;
|
|
14
|
+
declare const KolButtonLink: (props: solid_js.PropsWithChildren<JSX.KolButtonLink & solid_js.JSX.HTMLAttributes<HTMLKolButtonLinkElement>>) => HTMLKolButtonLinkElement;
|
|
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;
|
|
17
|
+
declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
|
|
18
|
+
declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
|
|
19
|
+
declare const KolDrawer: (props: solid_js.PropsWithChildren<JSX.KolDrawer & solid_js.JSX.HTMLAttributes<HTMLKolDrawerElement>>) => HTMLKolDrawerElement;
|
|
20
|
+
declare const KolForm: (props: solid_js.PropsWithChildren<JSX.KolForm & solid_js.JSX.HTMLAttributes<HTMLKolFormElement>>) => HTMLKolFormElement;
|
|
21
|
+
declare const KolHeading: (props: solid_js.PropsWithChildren<JSX.KolHeading & solid_js.JSX.HTMLAttributes<HTMLKolHeadingElement>>) => HTMLKolHeadingElement;
|
|
22
|
+
declare const KolIcon: (props: solid_js.PropsWithChildren<JSX.KolIcon & solid_js.JSX.HTMLAttributes<HTMLKolIconElement>>) => HTMLKolIconElement;
|
|
23
|
+
declare const KolImage: (props: solid_js.PropsWithChildren<JSX.KolImage & solid_js.JSX.HTMLAttributes<HTMLKolImageElement>>) => HTMLKolImageElement;
|
|
24
|
+
declare const KolInputCheckbox: (props: solid_js.PropsWithChildren<JSX.KolInputCheckbox & solid_js.JSX.HTMLAttributes<HTMLKolInputCheckboxElement>>) => HTMLKolInputCheckboxElement;
|
|
25
|
+
declare const KolInputColor: (props: solid_js.PropsWithChildren<JSX.KolInputColor & solid_js.JSX.HTMLAttributes<HTMLKolInputColorElement>>) => HTMLKolInputColorElement;
|
|
26
|
+
declare const KolInputDate: (props: solid_js.PropsWithChildren<JSX.KolInputDate & solid_js.JSX.HTMLAttributes<HTMLKolInputDateElement>>) => HTMLKolInputDateElement;
|
|
27
|
+
declare const KolInputEmail: (props: solid_js.PropsWithChildren<JSX.KolInputEmail & solid_js.JSX.HTMLAttributes<HTMLKolInputEmailElement>>) => HTMLKolInputEmailElement;
|
|
28
|
+
declare const KolInputFile: (props: solid_js.PropsWithChildren<JSX.KolInputFile & solid_js.JSX.HTMLAttributes<HTMLKolInputFileElement>>) => HTMLKolInputFileElement;
|
|
29
|
+
declare const KolInputNumber: (props: solid_js.PropsWithChildren<JSX.KolInputNumber & solid_js.JSX.HTMLAttributes<HTMLKolInputNumberElement>>) => HTMLKolInputNumberElement;
|
|
30
|
+
declare const KolInputPassword: (props: solid_js.PropsWithChildren<JSX.KolInputPassword & solid_js.JSX.HTMLAttributes<HTMLKolInputPasswordElement>>) => HTMLKolInputPasswordElement;
|
|
31
|
+
declare const KolInputRadio: (props: solid_js.PropsWithChildren<JSX.KolInputRadio & solid_js.JSX.HTMLAttributes<HTMLKolInputRadioElement>>) => HTMLKolInputRadioElement;
|
|
32
|
+
declare const KolInputRange: (props: solid_js.PropsWithChildren<JSX.KolInputRange & solid_js.JSX.HTMLAttributes<HTMLKolInputRangeElement>>) => HTMLKolInputRangeElement;
|
|
33
|
+
declare const KolInputText: (props: solid_js.PropsWithChildren<JSX.KolInputText & solid_js.JSX.HTMLAttributes<HTMLKolInputTextElement>>) => HTMLKolInputTextElement;
|
|
34
|
+
declare const KolKolibri: (props: solid_js.PropsWithChildren<JSX.KolKolibri & solid_js.JSX.HTMLAttributes<HTMLKolKolibriElement>>) => HTMLKolKolibriElement;
|
|
35
|
+
declare const KolLink: (props: solid_js.PropsWithChildren<JSX.KolLink & solid_js.JSX.HTMLAttributes<HTMLKolLinkElement>>) => HTMLKolLinkElement;
|
|
36
|
+
declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButton & solid_js.JSX.HTMLAttributes<HTMLKolLinkButtonElement>>) => HTMLKolLinkButtonElement;
|
|
37
|
+
declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
|
|
38
|
+
declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
|
|
39
|
+
declare const KolPagination: (props: solid_js.PropsWithChildren<JSX.KolPagination & solid_js.JSX.HTMLAttributes<HTMLKolPaginationElement>>) => HTMLKolPaginationElement;
|
|
40
|
+
declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
|
|
41
|
+
declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
|
|
42
|
+
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
43
|
+
declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
|
|
44
|
+
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
45
|
+
declare const KolSingleSelect: (props: solid_js.PropsWithChildren<JSX.KolSingleSelect & solid_js.JSX.HTMLAttributes<HTMLKolSingleSelectElement>>) => HTMLKolSingleSelectElement;
|
|
46
|
+
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
47
|
+
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
48
|
+
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
49
|
+
declare const KolTableStateful: (props: solid_js.PropsWithChildren<JSX.KolTableStateful & solid_js.JSX.HTMLAttributes<HTMLKolTableStatefulElement>>) => HTMLKolTableStatefulElement;
|
|
50
|
+
declare const KolTableStateless: (props: solid_js.PropsWithChildren<JSX.KolTableStateless & solid_js.JSX.HTMLAttributes<HTMLKolTableStatelessElement>>) => HTMLKolTableStatelessElement;
|
|
51
|
+
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
52
|
+
declare const KolTextarea: (props: solid_js.PropsWithChildren<JSX.KolTextarea & solid_js.JSX.HTMLAttributes<HTMLKolTextareaElement>>) => HTMLKolTextareaElement;
|
|
53
|
+
declare const KolToastContainer: (props: solid_js.PropsWithChildren<JSX.KolToastContainer & solid_js.JSX.HTMLAttributes<HTMLKolToastContainerElement>>) => HTMLKolToastContainerElement;
|
|
54
|
+
declare const KolToolbar: (props: solid_js.PropsWithChildren<JSX.KolToolbar & solid_js.JSX.HTMLAttributes<HTMLKolToolbarElement>>) => HTMLKolToolbarElement;
|
|
55
|
+
declare const KolTree: (props: solid_js.PropsWithChildren<JSX.KolTree & solid_js.JSX.HTMLAttributes<HTMLKolTreeElement>>) => HTMLKolTreeElement;
|
|
56
|
+
declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemElement>>) => HTMLKolTreeItemElement;
|
|
57
|
+
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
58
|
+
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
59
|
+
|
|
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
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as solid_js from 'solid-js';
|
|
2
|
+
import { JSX } from '@public-ui/components';
|
|
3
|
+
|
|
4
|
+
type TagNameTransformer = (tagName: string) => string;
|
|
5
|
+
declare const setTagNameTransformer: (_tagNameTransformer: TagNameTransformer) => void;
|
|
6
|
+
|
|
7
|
+
declare const KolAbbr: (props: solid_js.PropsWithChildren<JSX.KolAbbr & solid_js.JSX.HTMLAttributes<HTMLKolAbbrElement>>) => HTMLKolAbbrElement;
|
|
8
|
+
declare const KolAccordion: (props: solid_js.PropsWithChildren<JSX.KolAccordion & solid_js.JSX.HTMLAttributes<HTMLKolAccordionElement>>) => HTMLKolAccordionElement;
|
|
9
|
+
declare const KolAlert: (props: solid_js.PropsWithChildren<JSX.KolAlert & solid_js.JSX.HTMLAttributes<HTMLKolAlertElement>>) => HTMLKolAlertElement;
|
|
10
|
+
declare const KolAvatar: (props: solid_js.PropsWithChildren<JSX.KolAvatar & solid_js.JSX.HTMLAttributes<HTMLKolAvatarElement>>) => HTMLKolAvatarElement;
|
|
11
|
+
declare const KolBadge: (props: solid_js.PropsWithChildren<JSX.KolBadge & solid_js.JSX.HTMLAttributes<HTMLKolBadgeElement>>) => HTMLKolBadgeElement;
|
|
12
|
+
declare const KolBreadcrumb: (props: solid_js.PropsWithChildren<JSX.KolBreadcrumb & solid_js.JSX.HTMLAttributes<HTMLKolBreadcrumbElement>>) => HTMLKolBreadcrumbElement;
|
|
13
|
+
declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & solid_js.JSX.HTMLAttributes<HTMLKolButtonElement>>) => HTMLKolButtonElement;
|
|
14
|
+
declare const KolButtonLink: (props: solid_js.PropsWithChildren<JSX.KolButtonLink & solid_js.JSX.HTMLAttributes<HTMLKolButtonLinkElement>>) => HTMLKolButtonLinkElement;
|
|
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;
|
|
17
|
+
declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
|
|
18
|
+
declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
|
|
19
|
+
declare const KolDrawer: (props: solid_js.PropsWithChildren<JSX.KolDrawer & solid_js.JSX.HTMLAttributes<HTMLKolDrawerElement>>) => HTMLKolDrawerElement;
|
|
20
|
+
declare const KolForm: (props: solid_js.PropsWithChildren<JSX.KolForm & solid_js.JSX.HTMLAttributes<HTMLKolFormElement>>) => HTMLKolFormElement;
|
|
21
|
+
declare const KolHeading: (props: solid_js.PropsWithChildren<JSX.KolHeading & solid_js.JSX.HTMLAttributes<HTMLKolHeadingElement>>) => HTMLKolHeadingElement;
|
|
22
|
+
declare const KolIcon: (props: solid_js.PropsWithChildren<JSX.KolIcon & solid_js.JSX.HTMLAttributes<HTMLKolIconElement>>) => HTMLKolIconElement;
|
|
23
|
+
declare const KolImage: (props: solid_js.PropsWithChildren<JSX.KolImage & solid_js.JSX.HTMLAttributes<HTMLKolImageElement>>) => HTMLKolImageElement;
|
|
24
|
+
declare const KolInputCheckbox: (props: solid_js.PropsWithChildren<JSX.KolInputCheckbox & solid_js.JSX.HTMLAttributes<HTMLKolInputCheckboxElement>>) => HTMLKolInputCheckboxElement;
|
|
25
|
+
declare const KolInputColor: (props: solid_js.PropsWithChildren<JSX.KolInputColor & solid_js.JSX.HTMLAttributes<HTMLKolInputColorElement>>) => HTMLKolInputColorElement;
|
|
26
|
+
declare const KolInputDate: (props: solid_js.PropsWithChildren<JSX.KolInputDate & solid_js.JSX.HTMLAttributes<HTMLKolInputDateElement>>) => HTMLKolInputDateElement;
|
|
27
|
+
declare const KolInputEmail: (props: solid_js.PropsWithChildren<JSX.KolInputEmail & solid_js.JSX.HTMLAttributes<HTMLKolInputEmailElement>>) => HTMLKolInputEmailElement;
|
|
28
|
+
declare const KolInputFile: (props: solid_js.PropsWithChildren<JSX.KolInputFile & solid_js.JSX.HTMLAttributes<HTMLKolInputFileElement>>) => HTMLKolInputFileElement;
|
|
29
|
+
declare const KolInputNumber: (props: solid_js.PropsWithChildren<JSX.KolInputNumber & solid_js.JSX.HTMLAttributes<HTMLKolInputNumberElement>>) => HTMLKolInputNumberElement;
|
|
30
|
+
declare const KolInputPassword: (props: solid_js.PropsWithChildren<JSX.KolInputPassword & solid_js.JSX.HTMLAttributes<HTMLKolInputPasswordElement>>) => HTMLKolInputPasswordElement;
|
|
31
|
+
declare const KolInputRadio: (props: solid_js.PropsWithChildren<JSX.KolInputRadio & solid_js.JSX.HTMLAttributes<HTMLKolInputRadioElement>>) => HTMLKolInputRadioElement;
|
|
32
|
+
declare const KolInputRange: (props: solid_js.PropsWithChildren<JSX.KolInputRange & solid_js.JSX.HTMLAttributes<HTMLKolInputRangeElement>>) => HTMLKolInputRangeElement;
|
|
33
|
+
declare const KolInputText: (props: solid_js.PropsWithChildren<JSX.KolInputText & solid_js.JSX.HTMLAttributes<HTMLKolInputTextElement>>) => HTMLKolInputTextElement;
|
|
34
|
+
declare const KolKolibri: (props: solid_js.PropsWithChildren<JSX.KolKolibri & solid_js.JSX.HTMLAttributes<HTMLKolKolibriElement>>) => HTMLKolKolibriElement;
|
|
35
|
+
declare const KolLink: (props: solid_js.PropsWithChildren<JSX.KolLink & solid_js.JSX.HTMLAttributes<HTMLKolLinkElement>>) => HTMLKolLinkElement;
|
|
36
|
+
declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButton & solid_js.JSX.HTMLAttributes<HTMLKolLinkButtonElement>>) => HTMLKolLinkButtonElement;
|
|
37
|
+
declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
|
|
38
|
+
declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
|
|
39
|
+
declare const KolPagination: (props: solid_js.PropsWithChildren<JSX.KolPagination & solid_js.JSX.HTMLAttributes<HTMLKolPaginationElement>>) => HTMLKolPaginationElement;
|
|
40
|
+
declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
|
|
41
|
+
declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
|
|
42
|
+
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
43
|
+
declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
|
|
44
|
+
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
45
|
+
declare const KolSingleSelect: (props: solid_js.PropsWithChildren<JSX.KolSingleSelect & solid_js.JSX.HTMLAttributes<HTMLKolSingleSelectElement>>) => HTMLKolSingleSelectElement;
|
|
46
|
+
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
47
|
+
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
48
|
+
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
49
|
+
declare const KolTableStateful: (props: solid_js.PropsWithChildren<JSX.KolTableStateful & solid_js.JSX.HTMLAttributes<HTMLKolTableStatefulElement>>) => HTMLKolTableStatefulElement;
|
|
50
|
+
declare const KolTableStateless: (props: solid_js.PropsWithChildren<JSX.KolTableStateless & solid_js.JSX.HTMLAttributes<HTMLKolTableStatelessElement>>) => HTMLKolTableStatelessElement;
|
|
51
|
+
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
52
|
+
declare const KolTextarea: (props: solid_js.PropsWithChildren<JSX.KolTextarea & solid_js.JSX.HTMLAttributes<HTMLKolTextareaElement>>) => HTMLKolTextareaElement;
|
|
53
|
+
declare const KolToastContainer: (props: solid_js.PropsWithChildren<JSX.KolToastContainer & solid_js.JSX.HTMLAttributes<HTMLKolToastContainerElement>>) => HTMLKolToastContainerElement;
|
|
54
|
+
declare const KolToolbar: (props: solid_js.PropsWithChildren<JSX.KolToolbar & solid_js.JSX.HTMLAttributes<HTMLKolToolbarElement>>) => HTMLKolToolbarElement;
|
|
55
|
+
declare const KolTree: (props: solid_js.PropsWithChildren<JSX.KolTree & solid_js.JSX.HTMLAttributes<HTMLKolTreeElement>>) => HTMLKolTreeElement;
|
|
56
|
+
declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemElement>>) => HTMLKolTreeItemElement;
|
|
57
|
+
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
58
|
+
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
59
|
+
|
|
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.
|
|
3
|
+
"version": "3.0.2-6ae0104cda0b7b19a5b0d6bbc5f990b9fe544fa0.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"@types/minimatch": "5.1.2",
|
|
49
49
|
"@types/minimist": "1.2.5",
|
|
50
50
|
"@types/normalize-package-data": "2.4.4",
|
|
51
|
-
"solid-js": "1.9.
|
|
52
|
-
"typescript": "5.8.
|
|
53
|
-
"unbuild": "
|
|
54
|
-
"@public-ui/components": "3.0.
|
|
51
|
+
"solid-js": "1.9.7",
|
|
52
|
+
"typescript": "5.8.3",
|
|
53
|
+
"unbuild": "3.5.0",
|
|
54
|
+
"@public-ui/components": "3.0.2-6ae0104cda0b7b19a5b0d6bbc5f990b9fe544fa0.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"solid-js": ">=1.9.
|
|
58
|
-
"@public-ui/components": "3.0.
|
|
57
|
+
"solid-js": ">=1.9.7",
|
|
58
|
+
"@public-ui/components": "3.0.2-6ae0104cda0b7b19a5b0d6bbc5f990b9fe544fa0.0"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
61
|
"type": "module",
|