@public-ui/solid 4.0.0-alpha.0 → 4.0.0-alpha.1
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 +15 -5
- package/dist/index.cjs +8 -12
- package/dist/index.d.cts +61 -0
- package/dist/index.d.mts +61 -0
- package/dist/index.d.ts +5 -7
- package/dist/index.mjs +5 -7
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# KoliBri - Solid-Adapter
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@public-ui/components)
|
|
4
|
+
[](https://github.com/public-ui/kolibri/blob/main/LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/@public-ui/solid)
|
|
6
|
+
[](https://github.com/public-ui/kolibri/issues)
|
|
7
|
+
[](https://github.com/public-ui/kolibri/pulls)
|
|
8
|
+
[](https://bundlephobia.com/result?p=@public-ui/solid)
|
|
9
|
+

|
|
10
|
+
|
|
3
11
|
## Motivation
|
|
4
12
|
|
|
5
13
|
Provide an adapter for [SolidJS](https://www.solidjs.com/) to use the KoliBri components.
|
|
@@ -9,19 +17,19 @@ Provide an adapter for [SolidJS](https://www.solidjs.com/) to use the KoliBri co
|
|
|
9
17
|
You can install the adapter with `npm`, `pnpm` or `yarn`:
|
|
10
18
|
|
|
11
19
|
```bash
|
|
12
|
-
npm i
|
|
13
|
-
pnpm i
|
|
14
|
-
yarn add
|
|
20
|
+
npm i @public-ui/solid
|
|
21
|
+
pnpm i @public-ui/solid
|
|
22
|
+
yarn add @public-ui/solid
|
|
15
23
|
```
|
|
16
24
|
|
|
17
25
|
## Usage
|
|
18
26
|
|
|
19
|
-
First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tree/develop/packages/
|
|
27
|
+
First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tree/develop/packages/solid) and create a Solid root:
|
|
20
28
|
|
|
21
29
|
```ts
|
|
22
30
|
import { defineCustomElements } from '@public-ui/components/dist/loader';
|
|
23
31
|
import { register } from '@public-ui/components';
|
|
24
|
-
import { DEFAULT } from '@public-ui/
|
|
32
|
+
import { DEFAULT } from '@public-ui/solid';
|
|
25
33
|
|
|
26
34
|
register(DEFAULT, defineCustomElements)
|
|
27
35
|
.then(() => {
|
|
@@ -41,3 +49,5 @@ import { KolButton } from '@public-ui/solid';
|
|
|
41
49
|
|
|
42
50
|
export const AppComponent: Component = () => <KolButton _label="Hello World" />;
|
|
43
51
|
```
|
|
52
|
+
|
|
53
|
+
For customization options read the [default theme README](../../themes/default/README.md).
|
package/dist/index.cjs
CHANGED
|
@@ -38,9 +38,9 @@ const KolAvatar = /* @__PURE__ */ createSolidComponent("kol-avatar");
|
|
|
38
38
|
const KolBadge = /* @__PURE__ */ createSolidComponent("kol-badge");
|
|
39
39
|
const KolBreadcrumb = /* @__PURE__ */ createSolidComponent("kol-breadcrumb");
|
|
40
40
|
const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
41
|
-
const KolButtonGroup = /* @__PURE__ */ createSolidComponent("kol-button-group");
|
|
42
41
|
const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
43
42
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
43
|
+
const KolCardWc = /* @__PURE__ */ createSolidComponent("kol-card-wc");
|
|
44
44
|
const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
|
|
45
45
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
46
46
|
const KolDrawer = /* @__PURE__ */ createSolidComponent("kol-drawer");
|
|
@@ -48,7 +48,6 @@ const KolForm = /* @__PURE__ */ createSolidComponent("kol-form");
|
|
|
48
48
|
const KolHeading = /* @__PURE__ */ createSolidComponent("kol-heading");
|
|
49
49
|
const KolIcon = /* @__PURE__ */ createSolidComponent("kol-icon");
|
|
50
50
|
const KolImage = /* @__PURE__ */ createSolidComponent("kol-image");
|
|
51
|
-
const KolIndentedText = /* @__PURE__ */ createSolidComponent("kol-indented-text");
|
|
52
51
|
const KolInputCheckbox = /* @__PURE__ */ createSolidComponent("kol-input-checkbox");
|
|
53
52
|
const KolInputColor = /* @__PURE__ */ createSolidComponent("kol-input-color");
|
|
54
53
|
const KolInputDate = /* @__PURE__ */ createSolidComponent("kol-input-date");
|
|
@@ -62,11 +61,12 @@ const KolInputText = /* @__PURE__ */ createSolidComponent("kol-input-text");
|
|
|
62
61
|
const KolKolibri = /* @__PURE__ */ createSolidComponent("kol-kolibri");
|
|
63
62
|
const KolLink = /* @__PURE__ */ createSolidComponent("kol-link");
|
|
64
63
|
const KolLinkButton = /* @__PURE__ */ createSolidComponent("kol-link-button");
|
|
65
|
-
const KolLinkGroup = /* @__PURE__ */ createSolidComponent("kol-link-group");
|
|
66
|
-
const KolLogo = /* @__PURE__ */ createSolidComponent("kol-logo");
|
|
67
64
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
68
65
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
69
66
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
67
|
+
const KolPaginationWc = /* @__PURE__ */ createSolidComponent("kol-pagination-wc");
|
|
68
|
+
const KolPopoverButton = /* @__PURE__ */ createSolidComponent("kol-popover-button");
|
|
69
|
+
const KolPopoverButtonWc = /* @__PURE__ */ createSolidComponent("kol-popover-button-wc");
|
|
70
70
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
71
71
|
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
72
72
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
@@ -74,8 +74,6 @@ const KolSingleSelect = /* @__PURE__ */ createSolidComponent("kol-single-select"
|
|
|
74
74
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
75
75
|
const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
|
|
76
76
|
const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
|
|
77
|
-
const KolSymbol = /* @__PURE__ */ createSolidComponent("kol-symbol");
|
|
78
|
-
const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
79
77
|
const KolTableStateful = /* @__PURE__ */ createSolidComponent("kol-table-stateful");
|
|
80
78
|
const KolTableStateless = /* @__PURE__ */ createSolidComponent("kol-table-stateless");
|
|
81
79
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
@@ -94,9 +92,9 @@ exports.KolAvatar = KolAvatar;
|
|
|
94
92
|
exports.KolBadge = KolBadge;
|
|
95
93
|
exports.KolBreadcrumb = KolBreadcrumb;
|
|
96
94
|
exports.KolButton = KolButton;
|
|
97
|
-
exports.KolButtonGroup = KolButtonGroup;
|
|
98
95
|
exports.KolButtonLink = KolButtonLink;
|
|
99
96
|
exports.KolCard = KolCard;
|
|
97
|
+
exports.KolCardWc = KolCardWc;
|
|
100
98
|
exports.KolCombobox = KolCombobox;
|
|
101
99
|
exports.KolDetails = KolDetails;
|
|
102
100
|
exports.KolDrawer = KolDrawer;
|
|
@@ -104,7 +102,6 @@ exports.KolForm = KolForm;
|
|
|
104
102
|
exports.KolHeading = KolHeading;
|
|
105
103
|
exports.KolIcon = KolIcon;
|
|
106
104
|
exports.KolImage = KolImage;
|
|
107
|
-
exports.KolIndentedText = KolIndentedText;
|
|
108
105
|
exports.KolInputCheckbox = KolInputCheckbox;
|
|
109
106
|
exports.KolInputColor = KolInputColor;
|
|
110
107
|
exports.KolInputDate = KolInputDate;
|
|
@@ -118,11 +115,12 @@ exports.KolInputText = KolInputText;
|
|
|
118
115
|
exports.KolKolibri = KolKolibri;
|
|
119
116
|
exports.KolLink = KolLink;
|
|
120
117
|
exports.KolLinkButton = KolLinkButton;
|
|
121
|
-
exports.KolLinkGroup = KolLinkGroup;
|
|
122
|
-
exports.KolLogo = KolLogo;
|
|
123
118
|
exports.KolModal = KolModal;
|
|
124
119
|
exports.KolNav = KolNav;
|
|
125
120
|
exports.KolPagination = KolPagination;
|
|
121
|
+
exports.KolPaginationWc = KolPaginationWc;
|
|
122
|
+
exports.KolPopoverButton = KolPopoverButton;
|
|
123
|
+
exports.KolPopoverButtonWc = KolPopoverButtonWc;
|
|
126
124
|
exports.KolProgress = KolProgress;
|
|
127
125
|
exports.KolQuote = KolQuote;
|
|
128
126
|
exports.KolSelect = KolSelect;
|
|
@@ -130,8 +128,6 @@ exports.KolSingleSelect = KolSingleSelect;
|
|
|
130
128
|
exports.KolSkipNav = KolSkipNav;
|
|
131
129
|
exports.KolSpin = KolSpin;
|
|
132
130
|
exports.KolSplitButton = KolSplitButton;
|
|
133
|
-
exports.KolSymbol = KolSymbol;
|
|
134
|
-
exports.KolTable = KolTable;
|
|
135
131
|
exports.KolTableStateful = KolTableStateful;
|
|
136
132
|
exports.KolTableStateless = KolTableStateless;
|
|
137
133
|
exports.KolTabs = KolTabs;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
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 KolPaginationWc: (props: solid_js.PropsWithChildren<JSX.KolPaginationWc & solid_js.JSX.HTMLAttributes<HTMLKolPaginationWcElement>>) => HTMLKolPaginationWcElement;
|
|
41
|
+
declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
|
|
42
|
+
declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
|
|
43
|
+
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
44
|
+
declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
|
|
45
|
+
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
46
|
+
declare const KolSingleSelect: (props: solid_js.PropsWithChildren<JSX.KolSingleSelect & solid_js.JSX.HTMLAttributes<HTMLKolSingleSelectElement>>) => HTMLKolSingleSelectElement;
|
|
47
|
+
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
48
|
+
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
49
|
+
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
50
|
+
declare const KolTableStateful: (props: solid_js.PropsWithChildren<JSX.KolTableStateful & solid_js.JSX.HTMLAttributes<HTMLKolTableStatefulElement>>) => HTMLKolTableStatefulElement;
|
|
51
|
+
declare const KolTableStateless: (props: solid_js.PropsWithChildren<JSX.KolTableStateless & solid_js.JSX.HTMLAttributes<HTMLKolTableStatelessElement>>) => HTMLKolTableStatelessElement;
|
|
52
|
+
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
53
|
+
declare const KolTextarea: (props: solid_js.PropsWithChildren<JSX.KolTextarea & solid_js.JSX.HTMLAttributes<HTMLKolTextareaElement>>) => HTMLKolTextareaElement;
|
|
54
|
+
declare const KolToastContainer: (props: solid_js.PropsWithChildren<JSX.KolToastContainer & solid_js.JSX.HTMLAttributes<HTMLKolToastContainerElement>>) => HTMLKolToastContainerElement;
|
|
55
|
+
declare const KolToolbar: (props: solid_js.PropsWithChildren<JSX.KolToolbar & solid_js.JSX.HTMLAttributes<HTMLKolToolbarElement>>) => HTMLKolToolbarElement;
|
|
56
|
+
declare const KolTree: (props: solid_js.PropsWithChildren<JSX.KolTree & solid_js.JSX.HTMLAttributes<HTMLKolTreeElement>>) => HTMLKolTreeElement;
|
|
57
|
+
declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemElement>>) => HTMLKolTreeItemElement;
|
|
58
|
+
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
59
|
+
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
60
|
+
|
|
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
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
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 KolPaginationWc: (props: solid_js.PropsWithChildren<JSX.KolPaginationWc & solid_js.JSX.HTMLAttributes<HTMLKolPaginationWcElement>>) => HTMLKolPaginationWcElement;
|
|
41
|
+
declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
|
|
42
|
+
declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
|
|
43
|
+
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
44
|
+
declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
|
|
45
|
+
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
46
|
+
declare const KolSingleSelect: (props: solid_js.PropsWithChildren<JSX.KolSingleSelect & solid_js.JSX.HTMLAttributes<HTMLKolSingleSelectElement>>) => HTMLKolSingleSelectElement;
|
|
47
|
+
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
48
|
+
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
49
|
+
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
50
|
+
declare const KolTableStateful: (props: solid_js.PropsWithChildren<JSX.KolTableStateful & solid_js.JSX.HTMLAttributes<HTMLKolTableStatefulElement>>) => HTMLKolTableStatefulElement;
|
|
51
|
+
declare const KolTableStateless: (props: solid_js.PropsWithChildren<JSX.KolTableStateless & solid_js.JSX.HTMLAttributes<HTMLKolTableStatelessElement>>) => HTMLKolTableStatelessElement;
|
|
52
|
+
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
53
|
+
declare const KolTextarea: (props: solid_js.PropsWithChildren<JSX.KolTextarea & solid_js.JSX.HTMLAttributes<HTMLKolTextareaElement>>) => HTMLKolTextareaElement;
|
|
54
|
+
declare const KolToastContainer: (props: solid_js.PropsWithChildren<JSX.KolToastContainer & solid_js.JSX.HTMLAttributes<HTMLKolToastContainerElement>>) => HTMLKolToastContainerElement;
|
|
55
|
+
declare const KolToolbar: (props: solid_js.PropsWithChildren<JSX.KolToolbar & solid_js.JSX.HTMLAttributes<HTMLKolToolbarElement>>) => HTMLKolToolbarElement;
|
|
56
|
+
declare const KolTree: (props: solid_js.PropsWithChildren<JSX.KolTree & solid_js.JSX.HTMLAttributes<HTMLKolTreeElement>>) => HTMLKolTreeElement;
|
|
57
|
+
declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemElement>>) => HTMLKolTreeItemElement;
|
|
58
|
+
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
59
|
+
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
60
|
+
|
|
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
|
@@ -11,9 +11,9 @@ declare const KolAvatar: (props: solid_js.PropsWithChildren<JSX.KolAvatar & soli
|
|
|
11
11
|
declare const KolBadge: (props: solid_js.PropsWithChildren<JSX.KolBadge & solid_js.JSX.HTMLAttributes<HTMLKolBadgeElement>>) => HTMLKolBadgeElement;
|
|
12
12
|
declare const KolBreadcrumb: (props: solid_js.PropsWithChildren<JSX.KolBreadcrumb & solid_js.JSX.HTMLAttributes<HTMLKolBreadcrumbElement>>) => HTMLKolBreadcrumbElement;
|
|
13
13
|
declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & solid_js.JSX.HTMLAttributes<HTMLKolButtonElement>>) => HTMLKolButtonElement;
|
|
14
|
-
declare const KolButtonGroup: (props: solid_js.PropsWithChildren<JSX.KolButtonGroup & solid_js.JSX.HTMLAttributes<HTMLKolButtonGroupElement>>) => HTMLKolButtonGroupElement;
|
|
15
14
|
declare const KolButtonLink: (props: solid_js.PropsWithChildren<JSX.KolButtonLink & solid_js.JSX.HTMLAttributes<HTMLKolButtonLinkElement>>) => HTMLKolButtonLinkElement;
|
|
16
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
17
|
declare const KolCombobox: (props: solid_js.PropsWithChildren<JSX.KolCombobox & solid_js.JSX.HTMLAttributes<HTMLKolComboboxElement>>) => HTMLKolComboboxElement;
|
|
18
18
|
declare const KolDetails: (props: solid_js.PropsWithChildren<JSX.KolDetails & solid_js.JSX.HTMLAttributes<HTMLKolDetailsElement>>) => HTMLKolDetailsElement;
|
|
19
19
|
declare const KolDrawer: (props: solid_js.PropsWithChildren<JSX.KolDrawer & solid_js.JSX.HTMLAttributes<HTMLKolDrawerElement>>) => HTMLKolDrawerElement;
|
|
@@ -21,7 +21,6 @@ declare const KolForm: (props: solid_js.PropsWithChildren<JSX.KolForm & solid_js
|
|
|
21
21
|
declare const KolHeading: (props: solid_js.PropsWithChildren<JSX.KolHeading & solid_js.JSX.HTMLAttributes<HTMLKolHeadingElement>>) => HTMLKolHeadingElement;
|
|
22
22
|
declare const KolIcon: (props: solid_js.PropsWithChildren<JSX.KolIcon & solid_js.JSX.HTMLAttributes<HTMLKolIconElement>>) => HTMLKolIconElement;
|
|
23
23
|
declare const KolImage: (props: solid_js.PropsWithChildren<JSX.KolImage & solid_js.JSX.HTMLAttributes<HTMLKolImageElement>>) => HTMLKolImageElement;
|
|
24
|
-
declare const KolIndentedText: (props: solid_js.PropsWithChildren<JSX.KolIndentedText & solid_js.JSX.HTMLAttributes<HTMLKolIndentedTextElement>>) => HTMLKolIndentedTextElement;
|
|
25
24
|
declare const KolInputCheckbox: (props: solid_js.PropsWithChildren<JSX.KolInputCheckbox & solid_js.JSX.HTMLAttributes<HTMLKolInputCheckboxElement>>) => HTMLKolInputCheckboxElement;
|
|
26
25
|
declare const KolInputColor: (props: solid_js.PropsWithChildren<JSX.KolInputColor & solid_js.JSX.HTMLAttributes<HTMLKolInputColorElement>>) => HTMLKolInputColorElement;
|
|
27
26
|
declare const KolInputDate: (props: solid_js.PropsWithChildren<JSX.KolInputDate & solid_js.JSX.HTMLAttributes<HTMLKolInputDateElement>>) => HTMLKolInputDateElement;
|
|
@@ -35,11 +34,12 @@ declare const KolInputText: (props: solid_js.PropsWithChildren<JSX.KolInputText
|
|
|
35
34
|
declare const KolKolibri: (props: solid_js.PropsWithChildren<JSX.KolKolibri & solid_js.JSX.HTMLAttributes<HTMLKolKolibriElement>>) => HTMLKolKolibriElement;
|
|
36
35
|
declare const KolLink: (props: solid_js.PropsWithChildren<JSX.KolLink & solid_js.JSX.HTMLAttributes<HTMLKolLinkElement>>) => HTMLKolLinkElement;
|
|
37
36
|
declare const KolLinkButton: (props: solid_js.PropsWithChildren<JSX.KolLinkButton & solid_js.JSX.HTMLAttributes<HTMLKolLinkButtonElement>>) => HTMLKolLinkButtonElement;
|
|
38
|
-
declare const KolLinkGroup: (props: solid_js.PropsWithChildren<JSX.KolLinkGroup & solid_js.JSX.HTMLAttributes<HTMLKolLinkGroupElement>>) => HTMLKolLinkGroupElement;
|
|
39
|
-
declare const KolLogo: (props: solid_js.PropsWithChildren<JSX.KolLogo & solid_js.JSX.HTMLAttributes<HTMLKolLogoElement>>) => HTMLKolLogoElement;
|
|
40
37
|
declare const KolModal: (props: solid_js.PropsWithChildren<JSX.KolModal & solid_js.JSX.HTMLAttributes<HTMLKolModalElement>>) => HTMLKolModalElement;
|
|
41
38
|
declare const KolNav: (props: solid_js.PropsWithChildren<JSX.KolNav & solid_js.JSX.HTMLAttributes<HTMLKolNavElement>>) => HTMLKolNavElement;
|
|
42
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;
|
|
41
|
+
declare const KolPopoverButton: (props: solid_js.PropsWithChildren<JSX.KolPopoverButton & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonElement>>) => HTMLKolPopoverButtonElement;
|
|
42
|
+
declare const KolPopoverButtonWc: (props: solid_js.PropsWithChildren<JSX.KolPopoverButtonWc & solid_js.JSX.HTMLAttributes<HTMLKolPopoverButtonWcElement>>) => HTMLKolPopoverButtonWcElement;
|
|
43
43
|
declare const KolProgress: (props: solid_js.PropsWithChildren<JSX.KolProgress & solid_js.JSX.HTMLAttributes<HTMLKolProgressElement>>) => HTMLKolProgressElement;
|
|
44
44
|
declare const KolQuote: (props: solid_js.PropsWithChildren<JSX.KolQuote & solid_js.JSX.HTMLAttributes<HTMLKolQuoteElement>>) => HTMLKolQuoteElement;
|
|
45
45
|
declare const KolSelect: (props: solid_js.PropsWithChildren<JSX.KolSelect & solid_js.JSX.HTMLAttributes<HTMLKolSelectElement>>) => HTMLKolSelectElement;
|
|
@@ -47,8 +47,6 @@ declare const KolSingleSelect: (props: solid_js.PropsWithChildren<JSX.KolSingleS
|
|
|
47
47
|
declare const KolSkipNav: (props: solid_js.PropsWithChildren<JSX.KolSkipNav & solid_js.JSX.HTMLAttributes<HTMLKolSkipNavElement>>) => HTMLKolSkipNavElement;
|
|
48
48
|
declare const KolSpin: (props: solid_js.PropsWithChildren<JSX.KolSpin & solid_js.JSX.HTMLAttributes<HTMLKolSpinElement>>) => HTMLKolSpinElement;
|
|
49
49
|
declare const KolSplitButton: (props: solid_js.PropsWithChildren<JSX.KolSplitButton & solid_js.JSX.HTMLAttributes<HTMLKolSplitButtonElement>>) => HTMLKolSplitButtonElement;
|
|
50
|
-
declare const KolSymbol: (props: solid_js.PropsWithChildren<JSX.KolSymbol & solid_js.JSX.HTMLAttributes<HTMLKolSymbolElement>>) => HTMLKolSymbolElement;
|
|
51
|
-
declare const KolTable: (props: solid_js.PropsWithChildren<JSX.KolTable & solid_js.JSX.HTMLAttributes<HTMLKolTableElement>>) => HTMLKolTableElement;
|
|
52
50
|
declare const KolTableStateful: (props: solid_js.PropsWithChildren<JSX.KolTableStateful & solid_js.JSX.HTMLAttributes<HTMLKolTableStatefulElement>>) => HTMLKolTableStatefulElement;
|
|
53
51
|
declare const KolTableStateless: (props: solid_js.PropsWithChildren<JSX.KolTableStateless & solid_js.JSX.HTMLAttributes<HTMLKolTableStatelessElement>>) => HTMLKolTableStatelessElement;
|
|
54
52
|
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
@@ -60,4 +58,4 @@ declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem &
|
|
|
60
58
|
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
61
59
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
62
60
|
|
|
63
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton,
|
|
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
|
@@ -36,9 +36,9 @@ const KolAvatar = /* @__PURE__ */ createSolidComponent("kol-avatar");
|
|
|
36
36
|
const KolBadge = /* @__PURE__ */ createSolidComponent("kol-badge");
|
|
37
37
|
const KolBreadcrumb = /* @__PURE__ */ createSolidComponent("kol-breadcrumb");
|
|
38
38
|
const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
39
|
-
const KolButtonGroup = /* @__PURE__ */ createSolidComponent("kol-button-group");
|
|
40
39
|
const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
41
40
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
41
|
+
const KolCardWc = /* @__PURE__ */ createSolidComponent("kol-card-wc");
|
|
42
42
|
const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
|
|
43
43
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
44
44
|
const KolDrawer = /* @__PURE__ */ createSolidComponent("kol-drawer");
|
|
@@ -46,7 +46,6 @@ const KolForm = /* @__PURE__ */ createSolidComponent("kol-form");
|
|
|
46
46
|
const KolHeading = /* @__PURE__ */ createSolidComponent("kol-heading");
|
|
47
47
|
const KolIcon = /* @__PURE__ */ createSolidComponent("kol-icon");
|
|
48
48
|
const KolImage = /* @__PURE__ */ createSolidComponent("kol-image");
|
|
49
|
-
const KolIndentedText = /* @__PURE__ */ createSolidComponent("kol-indented-text");
|
|
50
49
|
const KolInputCheckbox = /* @__PURE__ */ createSolidComponent("kol-input-checkbox");
|
|
51
50
|
const KolInputColor = /* @__PURE__ */ createSolidComponent("kol-input-color");
|
|
52
51
|
const KolInputDate = /* @__PURE__ */ createSolidComponent("kol-input-date");
|
|
@@ -60,11 +59,12 @@ const KolInputText = /* @__PURE__ */ createSolidComponent("kol-input-text");
|
|
|
60
59
|
const KolKolibri = /* @__PURE__ */ createSolidComponent("kol-kolibri");
|
|
61
60
|
const KolLink = /* @__PURE__ */ createSolidComponent("kol-link");
|
|
62
61
|
const KolLinkButton = /* @__PURE__ */ createSolidComponent("kol-link-button");
|
|
63
|
-
const KolLinkGroup = /* @__PURE__ */ createSolidComponent("kol-link-group");
|
|
64
|
-
const KolLogo = /* @__PURE__ */ createSolidComponent("kol-logo");
|
|
65
62
|
const KolModal = /* @__PURE__ */ createSolidComponent("kol-modal");
|
|
66
63
|
const KolNav = /* @__PURE__ */ createSolidComponent("kol-nav");
|
|
67
64
|
const KolPagination = /* @__PURE__ */ createSolidComponent("kol-pagination");
|
|
65
|
+
const KolPaginationWc = /* @__PURE__ */ createSolidComponent("kol-pagination-wc");
|
|
66
|
+
const KolPopoverButton = /* @__PURE__ */ createSolidComponent("kol-popover-button");
|
|
67
|
+
const KolPopoverButtonWc = /* @__PURE__ */ createSolidComponent("kol-popover-button-wc");
|
|
68
68
|
const KolProgress = /* @__PURE__ */ createSolidComponent("kol-progress");
|
|
69
69
|
const KolQuote = /* @__PURE__ */ createSolidComponent("kol-quote");
|
|
70
70
|
const KolSelect = /* @__PURE__ */ createSolidComponent("kol-select");
|
|
@@ -72,8 +72,6 @@ const KolSingleSelect = /* @__PURE__ */ createSolidComponent("kol-single-select"
|
|
|
72
72
|
const KolSkipNav = /* @__PURE__ */ createSolidComponent("kol-skip-nav");
|
|
73
73
|
const KolSpin = /* @__PURE__ */ createSolidComponent("kol-spin");
|
|
74
74
|
const KolSplitButton = /* @__PURE__ */ createSolidComponent("kol-split-button");
|
|
75
|
-
const KolSymbol = /* @__PURE__ */ createSolidComponent("kol-symbol");
|
|
76
|
-
const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
77
75
|
const KolTableStateful = /* @__PURE__ */ createSolidComponent("kol-table-stateful");
|
|
78
76
|
const KolTableStateless = /* @__PURE__ */ createSolidComponent("kol-table-stateless");
|
|
79
77
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
@@ -85,4 +83,4 @@ const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
|
|
|
85
83
|
const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
|
|
86
84
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
87
85
|
|
|
88
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton,
|
|
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": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -45,17 +45,17 @@
|
|
|
45
45
|
"solidjs"
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@types/minimatch": "
|
|
48
|
+
"@types/minimatch": "6.0.0",
|
|
49
49
|
"@types/minimist": "1.2.5",
|
|
50
50
|
"@types/normalize-package-data": "2.4.4",
|
|
51
|
-
"solid-js": "1.9.
|
|
52
|
-
"typescript": "5.
|
|
53
|
-
"unbuild": "
|
|
54
|
-
"@public-ui/components": "4.0.0-alpha.
|
|
51
|
+
"solid-js": "1.9.9",
|
|
52
|
+
"typescript": "5.9.2",
|
|
53
|
+
"unbuild": "3.6.1",
|
|
54
|
+
"@public-ui/components": "4.0.0-alpha.1"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"solid-js": ">=1.9.
|
|
58
|
-
"@public-ui/components": "4.0.0-alpha.
|
|
57
|
+
"solid-js": ">=1.9.9",
|
|
58
|
+
"@public-ui/components": "4.0.0-alpha.1"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
61
|
"type": "module",
|