@public-ui/solid 2.0.15 → 2.1.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/dist/index.cjs +4 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -41,6 +41,7 @@ const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
|
41
41
|
const KolButtonGroup = /* @__PURE__ */ createSolidComponent("kol-button-group");
|
|
42
42
|
const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
43
43
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
44
|
+
const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
|
|
44
45
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
45
46
|
const KolForm = /* @__PURE__ */ createSolidComponent("kol-form");
|
|
46
47
|
const KolHeading = /* @__PURE__ */ createSolidComponent("kol-heading");
|
|
@@ -79,6 +80,7 @@ const KolTableStateless = /* @__PURE__ */ createSolidComponent("kol-table-statel
|
|
|
79
80
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
80
81
|
const KolTextarea = /* @__PURE__ */ createSolidComponent("kol-textarea");
|
|
81
82
|
const KolToastContainer = /* @__PURE__ */ createSolidComponent("kol-toast-container");
|
|
83
|
+
const KolToolbar = /* @__PURE__ */ createSolidComponent("kol-toolbar");
|
|
82
84
|
const KolTree = /* @__PURE__ */ createSolidComponent("kol-tree");
|
|
83
85
|
const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
|
|
84
86
|
const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
|
|
@@ -95,6 +97,7 @@ exports.KolButton = KolButton;
|
|
|
95
97
|
exports.KolButtonGroup = KolButtonGroup;
|
|
96
98
|
exports.KolButtonLink = KolButtonLink;
|
|
97
99
|
exports.KolCard = KolCard;
|
|
100
|
+
exports.KolCombobox = KolCombobox;
|
|
98
101
|
exports.KolDetails = KolDetails;
|
|
99
102
|
exports.KolForm = KolForm;
|
|
100
103
|
exports.KolHeading = KolHeading;
|
|
@@ -133,6 +136,7 @@ exports.KolTableStateless = KolTableStateless;
|
|
|
133
136
|
exports.KolTabs = KolTabs;
|
|
134
137
|
exports.KolTextarea = KolTextarea;
|
|
135
138
|
exports.KolToastContainer = KolToastContainer;
|
|
139
|
+
exports.KolToolbar = KolToolbar;
|
|
136
140
|
exports.KolTree = KolTree;
|
|
137
141
|
exports.KolTreeItem = KolTreeItem;
|
|
138
142
|
exports.KolTreeItemWc = KolTreeItemWc;
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ declare const KolButton: (props: solid_js.PropsWithChildren<JSX.KolButton & soli
|
|
|
14
14
|
declare const KolButtonGroup: (props: solid_js.PropsWithChildren<JSX.KolButtonGroup & solid_js.JSX.HTMLAttributes<HTMLKolButtonGroupElement>>) => HTMLKolButtonGroupElement;
|
|
15
15
|
declare const KolButtonLink: (props: solid_js.PropsWithChildren<JSX.KolButtonLink & solid_js.JSX.HTMLAttributes<HTMLKolButtonLinkElement>>) => HTMLKolButtonLinkElement;
|
|
16
16
|
declare const KolCard: (props: solid_js.PropsWithChildren<JSX.KolCard & solid_js.JSX.HTMLAttributes<HTMLKolCardElement>>) => HTMLKolCardElement;
|
|
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 KolForm: (props: solid_js.PropsWithChildren<JSX.KolForm & solid_js.JSX.HTMLAttributes<HTMLKolFormElement>>) => HTMLKolFormElement;
|
|
19
20
|
declare const KolHeading: (props: solid_js.PropsWithChildren<JSX.KolHeading & solid_js.JSX.HTMLAttributes<HTMLKolHeadingElement>>) => HTMLKolHeadingElement;
|
|
@@ -52,10 +53,11 @@ declare const KolTableStateless: (props: solid_js.PropsWithChildren<JSX.KolTable
|
|
|
52
53
|
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
53
54
|
declare const KolTextarea: (props: solid_js.PropsWithChildren<JSX.KolTextarea & solid_js.JSX.HTMLAttributes<HTMLKolTextareaElement>>) => HTMLKolTextareaElement;
|
|
54
55
|
declare const KolToastContainer: (props: solid_js.PropsWithChildren<JSX.KolToastContainer & solid_js.JSX.HTMLAttributes<HTMLKolToastContainerElement>>) => HTMLKolToastContainerElement;
|
|
56
|
+
declare const KolToolbar: (props: solid_js.PropsWithChildren<JSX.KolToolbar & solid_js.JSX.HTMLAttributes<HTMLKolToolbarElement>>) => HTMLKolToolbarElement;
|
|
55
57
|
declare const KolTree: (props: solid_js.PropsWithChildren<JSX.KolTree & solid_js.JSX.HTMLAttributes<HTMLKolTreeElement>>) => HTMLKolTreeElement;
|
|
56
58
|
declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemElement>>) => HTMLKolTreeItemElement;
|
|
57
59
|
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
58
60
|
declare const KolTreeWc: (props: solid_js.PropsWithChildren<JSX.KolTreeWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeWcElement>>) => HTMLKolTreeWcElement;
|
|
59
61
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
60
62
|
|
|
61
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
|
63
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -39,6 +39,7 @@ const KolButton = /* @__PURE__ */ createSolidComponent("kol-button");
|
|
|
39
39
|
const KolButtonGroup = /* @__PURE__ */ createSolidComponent("kol-button-group");
|
|
40
40
|
const KolButtonLink = /* @__PURE__ */ createSolidComponent("kol-button-link");
|
|
41
41
|
const KolCard = /* @__PURE__ */ createSolidComponent("kol-card");
|
|
42
|
+
const KolCombobox = /* @__PURE__ */ createSolidComponent("kol-combobox");
|
|
42
43
|
const KolDetails = /* @__PURE__ */ createSolidComponent("kol-details");
|
|
43
44
|
const KolForm = /* @__PURE__ */ createSolidComponent("kol-form");
|
|
44
45
|
const KolHeading = /* @__PURE__ */ createSolidComponent("kol-heading");
|
|
@@ -77,10 +78,11 @@ const KolTableStateless = /* @__PURE__ */ createSolidComponent("kol-table-statel
|
|
|
77
78
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
78
79
|
const KolTextarea = /* @__PURE__ */ createSolidComponent("kol-textarea");
|
|
79
80
|
const KolToastContainer = /* @__PURE__ */ createSolidComponent("kol-toast-container");
|
|
81
|
+
const KolToolbar = /* @__PURE__ */ createSolidComponent("kol-toolbar");
|
|
80
82
|
const KolTree = /* @__PURE__ */ createSolidComponent("kol-tree");
|
|
81
83
|
const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
|
|
82
84
|
const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
|
|
83
85
|
const KolTreeWc = /* @__PURE__ */ createSolidComponent("kol-tree-wc");
|
|
84
86
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
85
87
|
|
|
86
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
|
88
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText, KolInputCheckbox, KolInputColor, KolInputDate, KolInputEmail, KolInputFile, KolInputNumber, KolInputPassword, KolInputRadio, KolInputRange, KolInputText, KolKolibri, KolLink, KolLinkButton, KolLinkGroup, KolLogo, KolModal, KolNav, KolPagination, KolProgress, KolQuote, KolSelect, KolSkipNav, KolSpan, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion, setTagNameTransformer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/solid",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -45,18 +45,18 @@
|
|
|
45
45
|
"solidjs"
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@public-ui/components": "2.0.15",
|
|
49
48
|
"@types/minimatch": "5.1.2",
|
|
50
49
|
"@types/minimist": "1.2.5",
|
|
51
50
|
"@types/node": "ts5.4",
|
|
52
51
|
"@types/normalize-package-data": "2.4.4",
|
|
53
52
|
"solid-js": "1.8.17",
|
|
54
53
|
"typescript": "5.4.5",
|
|
55
|
-
"unbuild": "1.2.1"
|
|
54
|
+
"unbuild": "1.2.1",
|
|
55
|
+
"@public-ui/components": "2.1.1"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"
|
|
59
|
-
"
|
|
58
|
+
"solid-js": ">=1.8.17",
|
|
59
|
+
"@public-ui/components": "2.1.1"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
62
|
"type": "module",
|