@public-ui/solid 2.0.4 → 2.0.6
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 +8 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -110,6 +110,10 @@ const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
|
110
110
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
111
111
|
const KolTextarea = /* @__PURE__ */ createSolidComponent("kol-textarea");
|
|
112
112
|
const KolToastContainer = /* @__PURE__ */ createSolidComponent("kol-toast-container");
|
|
113
|
+
const KolTree = /* @__PURE__ */ createSolidComponent("kol-tree");
|
|
114
|
+
const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
|
|
115
|
+
const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
|
|
116
|
+
const KolTreeWc = /* @__PURE__ */ createSolidComponent("kol-tree-wc");
|
|
113
117
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
114
118
|
|
|
115
119
|
exports.KolAbbr = KolAbbr;
|
|
@@ -158,4 +162,8 @@ exports.KolTable = KolTable;
|
|
|
158
162
|
exports.KolTabs = KolTabs;
|
|
159
163
|
exports.KolTextarea = KolTextarea;
|
|
160
164
|
exports.KolToastContainer = KolToastContainer;
|
|
165
|
+
exports.KolTree = KolTree;
|
|
166
|
+
exports.KolTreeItem = KolTreeItem;
|
|
167
|
+
exports.KolTreeItemWc = KolTreeItemWc;
|
|
168
|
+
exports.KolTreeWc = KolTreeWc;
|
|
161
169
|
exports.KolVersion = KolVersion;
|
package/dist/index.d.ts
CHANGED
|
@@ -47,6 +47,10 @@ declare const KolTable: (props: solid_js.PropsWithChildren<JSX.KolTable & solid_
|
|
|
47
47
|
declare const KolTabs: (props: solid_js.PropsWithChildren<JSX.KolTabs & solid_js.JSX.HTMLAttributes<HTMLKolTabsElement>>) => HTMLKolTabsElement;
|
|
48
48
|
declare const KolTextarea: (props: solid_js.PropsWithChildren<JSX.KolTextarea & solid_js.JSX.HTMLAttributes<HTMLKolTextareaElement>>) => HTMLKolTextareaElement;
|
|
49
49
|
declare const KolToastContainer: (props: solid_js.PropsWithChildren<JSX.KolToastContainer & solid_js.JSX.HTMLAttributes<HTMLKolToastContainerElement>>) => HTMLKolToastContainerElement;
|
|
50
|
+
declare const KolTree: (props: solid_js.PropsWithChildren<JSX.KolTree & solid_js.JSX.HTMLAttributes<HTMLKolTreeElement>>) => HTMLKolTreeElement;
|
|
51
|
+
declare const KolTreeItem: (props: solid_js.PropsWithChildren<JSX.KolTreeItem & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemElement>>) => HTMLKolTreeItemElement;
|
|
52
|
+
declare const KolTreeItemWc: (props: solid_js.PropsWithChildren<JSX.KolTreeItemWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeItemWcElement>>) => HTMLKolTreeItemWcElement;
|
|
53
|
+
declare const KolTreeWc: (props: solid_js.PropsWithChildren<JSX.KolTreeWc & solid_js.JSX.HTMLAttributes<HTMLKolTreeWcElement>>) => HTMLKolTreeWcElement;
|
|
50
54
|
declare const KolVersion: (props: solid_js.PropsWithChildren<JSX.KolVersion & solid_js.JSX.HTMLAttributes<HTMLKolVersionElement>>) => HTMLKolVersionElement;
|
|
51
55
|
|
|
52
|
-
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, KolTabs, KolTextarea, KolToastContainer, KolVersion };
|
|
56
|
+
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, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion };
|
package/dist/index.mjs
CHANGED
|
@@ -108,6 +108,10 @@ const KolTable = /* @__PURE__ */ createSolidComponent("kol-table");
|
|
|
108
108
|
const KolTabs = /* @__PURE__ */ createSolidComponent("kol-tabs");
|
|
109
109
|
const KolTextarea = /* @__PURE__ */ createSolidComponent("kol-textarea");
|
|
110
110
|
const KolToastContainer = /* @__PURE__ */ createSolidComponent("kol-toast-container");
|
|
111
|
+
const KolTree = /* @__PURE__ */ createSolidComponent("kol-tree");
|
|
112
|
+
const KolTreeItem = /* @__PURE__ */ createSolidComponent("kol-tree-item");
|
|
113
|
+
const KolTreeItemWc = /* @__PURE__ */ createSolidComponent("kol-tree-item-wc");
|
|
114
|
+
const KolTreeWc = /* @__PURE__ */ createSolidComponent("kol-tree-wc");
|
|
111
115
|
const KolVersion = /* @__PURE__ */ createSolidComponent("kol-version");
|
|
112
116
|
|
|
113
|
-
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, KolTabs, KolTextarea, KolToastContainer, KolVersion };
|
|
117
|
+
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, KolTabs, KolTextarea, KolToastContainer, KolTree, KolTreeItem, KolTreeItemWc, KolTreeWc, KolVersion };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/solid",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -42,17 +42,17 @@
|
|
|
42
42
|
"solidjs"
|
|
43
43
|
],
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@public-ui/components": "2.0.
|
|
45
|
+
"@public-ui/components": "2.0.6",
|
|
46
46
|
"@types/minimatch": "5.1.2",
|
|
47
47
|
"@types/minimist": "1.2.5",
|
|
48
48
|
"@types/node": "ts5.3",
|
|
49
49
|
"@types/normalize-package-data": "2.4.4",
|
|
50
|
-
"solid-js": "1.8.
|
|
50
|
+
"solid-js": "1.8.14",
|
|
51
51
|
"typescript": "5.3.3",
|
|
52
52
|
"unbuild": "1.2.1"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@public-ui/components": "2.0.
|
|
55
|
+
"@public-ui/components": "2.0.6",
|
|
56
56
|
"solid-js": ">=1.2.0"
|
|
57
57
|
},
|
|
58
58
|
"sideEffects": false,
|