@public-ui/vue 2.1.8 → 2.1.9
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 +1 -6
- package/dist/index.d.ts +1 -3
- package/dist/index.mjs +2 -5
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -229,6 +229,7 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
229
229
|
const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
230
230
|
"_disabled",
|
|
231
231
|
"_label",
|
|
232
|
+
"_level",
|
|
232
233
|
"_on",
|
|
233
234
|
"_open"
|
|
234
235
|
]);
|
|
@@ -262,7 +263,6 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
262
263
|
"_srcset"
|
|
263
264
|
]);
|
|
264
265
|
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
265
|
-
const KolIndentedTextWc = /* @__PURE__ */ defineContainer("kol-indented-text-wc", void 0);
|
|
266
266
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
267
267
|
"_accessKey",
|
|
268
268
|
"_alert",
|
|
@@ -784,9 +784,6 @@ const KolTreeItemWc = /* @__PURE__ */ defineContainer("kol-tree-item-wc", void 0
|
|
|
784
784
|
"_open",
|
|
785
785
|
"_href"
|
|
786
786
|
]);
|
|
787
|
-
const KolTreeWc = /* @__PURE__ */ defineContainer("kol-tree-wc", void 0, [
|
|
788
|
-
"_label"
|
|
789
|
-
]);
|
|
790
787
|
const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
791
788
|
"_label"
|
|
792
789
|
]);
|
|
@@ -809,7 +806,6 @@ exports.KolHeading = KolHeading;
|
|
|
809
806
|
exports.KolIcon = KolIcon;
|
|
810
807
|
exports.KolImage = KolImage;
|
|
811
808
|
exports.KolIndentedText = KolIndentedText;
|
|
812
|
-
exports.KolIndentedTextWc = KolIndentedTextWc;
|
|
813
809
|
exports.KolInputCheckbox = KolInputCheckbox;
|
|
814
810
|
exports.KolInputColor = KolInputColor;
|
|
815
811
|
exports.KolInputDate = KolInputDate;
|
|
@@ -846,6 +842,5 @@ exports.KolToolbar = KolToolbar;
|
|
|
846
842
|
exports.KolTree = KolTree;
|
|
847
843
|
exports.KolTreeItem = KolTreeItem;
|
|
848
844
|
exports.KolTreeItemWc = KolTreeItemWc;
|
|
849
|
-
exports.KolTreeWc = KolTreeWc;
|
|
850
845
|
exports.KolVersion = KolVersion;
|
|
851
846
|
exports.setTagNameTransformer = setTagNameTransformer;
|
package/dist/index.d.ts
CHANGED
|
@@ -26,7 +26,6 @@ declare const KolHeading: vue.DefineSetupFnComponent<JSX.KolHeading & InputProps
|
|
|
26
26
|
declare const KolIcon: vue.DefineSetupFnComponent<JSX.KolIcon & InputProps<string | number | boolean>, {}, {}, JSX.KolIcon & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
27
27
|
declare const KolImage: vue.DefineSetupFnComponent<JSX.KolImage & InputProps<string | number | boolean>, {}, {}, JSX.KolImage & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
28
28
|
declare const KolIndentedText: vue.DefineSetupFnComponent<JSX.KolIndentedText & InputProps<string | number | boolean>, {}, {}, JSX.KolIndentedText & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
29
|
-
declare const KolIndentedTextWc: vue.DefineSetupFnComponent<JSX.KolIndentedTextWc & InputProps<string | number | boolean>, {}, {}, JSX.KolIndentedTextWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
30
29
|
declare const KolInputCheckbox: vue.DefineSetupFnComponent<JSX.KolInputCheckbox & InputProps<string | number | boolean>, {}, {}, JSX.KolInputCheckbox & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
31
30
|
declare const KolInputColor: vue.DefineSetupFnComponent<JSX.KolInputColor & InputProps<string | number | boolean>, {}, {}, JSX.KolInputColor & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
32
31
|
declare const KolInputDate: vue.DefineSetupFnComponent<JSX.KolInputDate & InputProps<string | number | boolean>, {}, {}, JSX.KolInputDate & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -63,7 +62,6 @@ declare const KolToolbar: vue.DefineSetupFnComponent<JSX.KolToolbar & InputProps
|
|
|
63
62
|
declare const KolTree: vue.DefineSetupFnComponent<JSX.KolTree & InputProps<string | number | boolean>, {}, {}, JSX.KolTree & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
64
63
|
declare const KolTreeItem: vue.DefineSetupFnComponent<JSX.KolTreeItem & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeItem & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
65
64
|
declare const KolTreeItemWc: vue.DefineSetupFnComponent<JSX.KolTreeItemWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeItemWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
66
|
-
declare const KolTreeWc: vue.DefineSetupFnComponent<JSX.KolTreeWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
67
65
|
declare const KolVersion: vue.DefineSetupFnComponent<JSX.KolVersion & InputProps<string | number | boolean>, {}, {}, JSX.KolVersion & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
68
66
|
|
|
69
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText,
|
|
67
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, 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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, KolTableStateful, KolTableStateless, KolTabs, KolTextarea, KolToastContainer, KolToolbar, KolTree, KolTreeItem, KolTreeItemWc, KolVersion, setTagNameTransformer };
|
package/dist/index.mjs
CHANGED
|
@@ -227,6 +227,7 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
227
227
|
const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
228
228
|
"_disabled",
|
|
229
229
|
"_label",
|
|
230
|
+
"_level",
|
|
230
231
|
"_on",
|
|
231
232
|
"_open"
|
|
232
233
|
]);
|
|
@@ -260,7 +261,6 @@ const KolImage = /* @__PURE__ */ defineContainer("kol-image", void 0, [
|
|
|
260
261
|
"_srcset"
|
|
261
262
|
]);
|
|
262
263
|
const KolIndentedText = /* @__PURE__ */ defineContainer("kol-indented-text", void 0);
|
|
263
|
-
const KolIndentedTextWc = /* @__PURE__ */ defineContainer("kol-indented-text-wc", void 0);
|
|
264
264
|
const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", void 0, [
|
|
265
265
|
"_accessKey",
|
|
266
266
|
"_alert",
|
|
@@ -782,11 +782,8 @@ const KolTreeItemWc = /* @__PURE__ */ defineContainer("kol-tree-item-wc", void 0
|
|
|
782
782
|
"_open",
|
|
783
783
|
"_href"
|
|
784
784
|
]);
|
|
785
|
-
const KolTreeWc = /* @__PURE__ */ defineContainer("kol-tree-wc", void 0, [
|
|
786
|
-
"_label"
|
|
787
|
-
]);
|
|
788
785
|
const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
789
786
|
"_label"
|
|
790
787
|
]);
|
|
791
788
|
|
|
792
|
-
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, KolForm, KolHeading, KolIcon, KolImage, KolIndentedText,
|
|
789
|
+
export { KolAbbr, KolAccordion, KolAlert, KolAvatar, KolBadge, KolBreadcrumb, KolButton, KolButtonGroup, KolButtonLink, KolCard, KolCombobox, KolDetails, KolDrawer, 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, KolSingleSelect, KolSkipNav, KolSpin, KolSplitButton, KolSymbol, KolTable, 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/vue",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"typescript": "5.6.2",
|
|
53
53
|
"unbuild": "1.2.1",
|
|
54
54
|
"vue": "3.4.21",
|
|
55
|
-
"@public-ui/components": "2.1.
|
|
55
|
+
"@public-ui/components": "2.1.9"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"vue": ">=3",
|
|
59
|
-
"@public-ui/components": "2.1.
|
|
59
|
+
"@public-ui/components": "2.1.9"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
62
|
"type": "module",
|