@public-ui/vue 4.1.4 → 4.1.5-rc.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 +6 -2
- package/dist/index.mjs +6 -2
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -200,6 +200,7 @@ const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
|
200
200
|
]);
|
|
201
201
|
const KolDialog = /* @__PURE__ */ defineContainer("kol-dialog", void 0, [
|
|
202
202
|
"_label",
|
|
203
|
+
"_level",
|
|
203
204
|
"_on",
|
|
204
205
|
"_width",
|
|
205
206
|
"_variant"
|
|
@@ -209,6 +210,7 @@ const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
|
209
210
|
"_align",
|
|
210
211
|
"_hasCloser",
|
|
211
212
|
"_label",
|
|
213
|
+
"_level",
|
|
212
214
|
"_on"
|
|
213
215
|
]);
|
|
214
216
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -672,7 +674,8 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
|
|
|
672
674
|
"_paginationPosition",
|
|
673
675
|
"_selection",
|
|
674
676
|
"_on",
|
|
675
|
-
"_hasSettingsMenu"
|
|
677
|
+
"_hasSettingsMenu",
|
|
678
|
+
"_variant"
|
|
676
679
|
]);
|
|
677
680
|
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
678
681
|
"_data",
|
|
@@ -682,7 +685,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
682
685
|
"_label",
|
|
683
686
|
"_on",
|
|
684
687
|
"_selection",
|
|
685
|
-
"_hasSettingsMenu"
|
|
688
|
+
"_hasSettingsMenu",
|
|
689
|
+
"_variant"
|
|
686
690
|
]);
|
|
687
691
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
688
692
|
"_align",
|
package/dist/index.mjs
CHANGED
|
@@ -198,6 +198,7 @@ const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
|
198
198
|
]);
|
|
199
199
|
const KolDialog = /* @__PURE__ */ defineContainer("kol-dialog", void 0, [
|
|
200
200
|
"_label",
|
|
201
|
+
"_level",
|
|
201
202
|
"_on",
|
|
202
203
|
"_width",
|
|
203
204
|
"_variant"
|
|
@@ -207,6 +208,7 @@ const KolDrawer = /* @__PURE__ */ defineContainer("kol-drawer", void 0, [
|
|
|
207
208
|
"_align",
|
|
208
209
|
"_hasCloser",
|
|
209
210
|
"_label",
|
|
211
|
+
"_level",
|
|
210
212
|
"_on"
|
|
211
213
|
]);
|
|
212
214
|
const KolForm = /* @__PURE__ */ defineContainer("kol-form", void 0, [
|
|
@@ -670,7 +672,8 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
|
|
|
670
672
|
"_paginationPosition",
|
|
671
673
|
"_selection",
|
|
672
674
|
"_on",
|
|
673
|
-
"_hasSettingsMenu"
|
|
675
|
+
"_hasSettingsMenu",
|
|
676
|
+
"_variant"
|
|
674
677
|
]);
|
|
675
678
|
const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
|
|
676
679
|
"_data",
|
|
@@ -680,7 +683,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
680
683
|
"_label",
|
|
681
684
|
"_on",
|
|
682
685
|
"_selection",
|
|
683
|
-
"_hasSettingsMenu"
|
|
686
|
+
"_hasSettingsMenu",
|
|
687
|
+
"_variant"
|
|
684
688
|
]);
|
|
685
689
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
686
690
|
"_align",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/vue",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.5-rc.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"minimatch": "10.2.5",
|
|
50
50
|
"typescript": "5.9.3",
|
|
51
51
|
"unbuild": "3.6.1",
|
|
52
|
-
"vue": "3.5.
|
|
53
|
-
"@public-ui/components": "4.1.
|
|
52
|
+
"vue": "3.5.34",
|
|
53
|
+
"@public-ui/components": "4.1.5-rc.1"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"vue": "
|
|
57
|
-
"@public-ui/components": "4.1.
|
|
56
|
+
"vue": "3.x",
|
|
57
|
+
"@public-ui/components": "4.1.5-rc.1"
|
|
58
58
|
},
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"type": "module",
|