@public-ui/react-standalone 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.mjs +8 -0
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -214,6 +214,10 @@ const KolTable = /* @__PURE__ */ createReactComponent("kol-table");
|
|
|
214
214
|
const KolTabs = /* @__PURE__ */ createReactComponent("kol-tabs");
|
|
215
215
|
const KolTextarea = /* @__PURE__ */ createReactComponent("kol-textarea");
|
|
216
216
|
const KolToastContainer = /* @__PURE__ */ createReactComponent("kol-toast-container");
|
|
217
|
+
const KolTree = /* @__PURE__ */ createReactComponent("kol-tree");
|
|
218
|
+
const KolTreeItem = /* @__PURE__ */ createReactComponent("kol-tree-item");
|
|
219
|
+
const KolTreeItemWc = /* @__PURE__ */ createReactComponent("kol-tree-item-wc");
|
|
220
|
+
const KolTreeWc = /* @__PURE__ */ createReactComponent("kol-tree-wc");
|
|
217
221
|
const KolVersion = /* @__PURE__ */ createReactComponent("kol-version");
|
|
218
222
|
|
|
219
223
|
window.KolAbbr = KolAbbr;
|
|
@@ -262,4 +266,8 @@ window.KolTable = KolTable;
|
|
|
262
266
|
window.KolTabs = KolTabs;
|
|
263
267
|
window.KolTextarea = KolTextarea;
|
|
264
268
|
window.KolToastContainer = KolToastContainer;
|
|
269
|
+
window.KolTree = KolTree;
|
|
270
|
+
window.KolTreeItem = KolTreeItem;
|
|
271
|
+
window.KolTreeItemWc = KolTreeItemWc;
|
|
272
|
+
window.KolTreeWc = KolTreeWc;
|
|
265
273
|
window.KolVersion = KolVersion;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react-standalone",
|
|
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,12 +42,12 @@
|
|
|
42
42
|
"react"
|
|
43
43
|
],
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@public-ui/react": "2.0.
|
|
45
|
+
"@public-ui/react": "2.0.6",
|
|
46
46
|
"cpy-cli": "5.0.0",
|
|
47
47
|
"rimraf": "3.0.2"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@public-ui/components": "2.0.
|
|
50
|
+
"@public-ui/components": "2.0.6",
|
|
51
51
|
"react": ">=16.14.0",
|
|
52
52
|
"react-dom": ">=16.14.0"
|
|
53
53
|
},
|