@public-ui/vue 2.1.0 → 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 +30 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +29 -2
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -202,6 +202,28 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
202
202
|
"_label",
|
|
203
203
|
"_level"
|
|
204
204
|
]);
|
|
205
|
+
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
206
|
+
"_accessKey",
|
|
207
|
+
"_placeholder",
|
|
208
|
+
"_alert",
|
|
209
|
+
"_disabled",
|
|
210
|
+
"_hideError",
|
|
211
|
+
"_hideLabel",
|
|
212
|
+
"_hint",
|
|
213
|
+
"_icons",
|
|
214
|
+
"_id",
|
|
215
|
+
"_label",
|
|
216
|
+
"_msg",
|
|
217
|
+
"_name",
|
|
218
|
+
"_on",
|
|
219
|
+
"_suggestions",
|
|
220
|
+
"_required",
|
|
221
|
+
"_syncValueBySelector",
|
|
222
|
+
"_tabIndex",
|
|
223
|
+
"_tooltipAlign",
|
|
224
|
+
"_touched",
|
|
225
|
+
"_value"
|
|
226
|
+
]);
|
|
205
227
|
const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
206
228
|
"_disabled",
|
|
207
229
|
"_label",
|
|
@@ -669,7 +691,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
669
691
|
"_headerCells",
|
|
670
692
|
"_label",
|
|
671
693
|
"_minWidth",
|
|
672
|
-
"_on"
|
|
694
|
+
"_on",
|
|
695
|
+
"_selection"
|
|
673
696
|
]);
|
|
674
697
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
675
698
|
"_align",
|
|
@@ -706,6 +729,10 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
706
729
|
"_value"
|
|
707
730
|
]);
|
|
708
731
|
const KolToastContainer = /* @__PURE__ */ defineContainer("kol-toast-container", void 0);
|
|
732
|
+
const KolToolbar = /* @__PURE__ */ defineContainer("kol-toolbar", void 0, [
|
|
733
|
+
"_label",
|
|
734
|
+
"_items"
|
|
735
|
+
]);
|
|
709
736
|
const KolTree = /* @__PURE__ */ defineContainer("kol-tree", void 0, [
|
|
710
737
|
"_label"
|
|
711
738
|
]);
|
|
@@ -738,6 +765,7 @@ exports.KolButton = KolButton;
|
|
|
738
765
|
exports.KolButtonGroup = KolButtonGroup;
|
|
739
766
|
exports.KolButtonLink = KolButtonLink;
|
|
740
767
|
exports.KolCard = KolCard;
|
|
768
|
+
exports.KolCombobox = KolCombobox;
|
|
741
769
|
exports.KolDetails = KolDetails;
|
|
742
770
|
exports.KolForm = KolForm;
|
|
743
771
|
exports.KolHeading = KolHeading;
|
|
@@ -776,6 +804,7 @@ exports.KolTableStateless = KolTableStateless;
|
|
|
776
804
|
exports.KolTabs = KolTabs;
|
|
777
805
|
exports.KolTextarea = KolTextarea;
|
|
778
806
|
exports.KolToastContainer = KolToastContainer;
|
|
807
|
+
exports.KolToolbar = KolToolbar;
|
|
779
808
|
exports.KolTree = KolTree;
|
|
780
809
|
exports.KolTreeItem = KolTreeItem;
|
|
781
810
|
exports.KolTreeItemWc = KolTreeItemWc;
|
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ declare const KolButton: vue.DefineSetupFnComponent<JSX.KolButton & InputProps<s
|
|
|
18
18
|
declare const KolButtonGroup: vue.DefineSetupFnComponent<JSX.KolButtonGroup & InputProps<string | number | boolean>, {}, {}, JSX.KolButtonGroup & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
19
19
|
declare const KolButtonLink: vue.DefineSetupFnComponent<JSX.KolButtonLink & InputProps<string | number | boolean>, {}, {}, JSX.KolButtonLink & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
20
20
|
declare const KolCard: vue.DefineSetupFnComponent<JSX.KolCard & InputProps<string | number | boolean>, {}, {}, JSX.KolCard & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
21
|
+
declare const KolCombobox: vue.DefineSetupFnComponent<JSX.KolCombobox & InputProps<string | number | boolean>, {}, {}, JSX.KolCombobox & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
21
22
|
declare const KolDetails: vue.DefineSetupFnComponent<JSX.KolDetails & InputProps<string | number | boolean>, {}, {}, JSX.KolDetails & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
22
23
|
declare const KolForm: vue.DefineSetupFnComponent<JSX.KolForm & InputProps<string | number | boolean>, {}, {}, JSX.KolForm & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
23
24
|
declare const KolHeading: vue.DefineSetupFnComponent<JSX.KolHeading & InputProps<string | number | boolean>, {}, {}, JSX.KolHeading & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
@@ -56,10 +57,11 @@ declare const KolTableStateless: vue.DefineSetupFnComponent<JSX.KolTableStateles
|
|
|
56
57
|
declare const KolTabs: vue.DefineSetupFnComponent<JSX.KolTabs & InputProps<string | number | boolean>, {}, {}, JSX.KolTabs & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
57
58
|
declare const KolTextarea: vue.DefineSetupFnComponent<JSX.KolTextarea & InputProps<string | number | boolean>, {}, {}, JSX.KolTextarea & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
58
59
|
declare const KolToastContainer: vue.DefineSetupFnComponent<JSX.KolToastContainer & InputProps<string | number | boolean>, {}, {}, JSX.KolToastContainer & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
60
|
+
declare const KolToolbar: vue.DefineSetupFnComponent<JSX.KolToolbar & InputProps<string | number | boolean>, {}, {}, JSX.KolToolbar & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
59
61
|
declare const KolTree: vue.DefineSetupFnComponent<JSX.KolTree & InputProps<string | number | boolean>, {}, {}, JSX.KolTree & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
60
62
|
declare const KolTreeItem: vue.DefineSetupFnComponent<JSX.KolTreeItem & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeItem & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
61
63
|
declare const KolTreeItemWc: vue.DefineSetupFnComponent<JSX.KolTreeItemWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeItemWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
62
64
|
declare const KolTreeWc: vue.DefineSetupFnComponent<JSX.KolTreeWc & InputProps<string | number | boolean>, {}, {}, JSX.KolTreeWc & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
63
65
|
declare const KolVersion: vue.DefineSetupFnComponent<JSX.KolVersion & InputProps<string | number | boolean>, {}, {}, JSX.KolVersion & InputProps<string | number | boolean> & {}, vue.PublicProps>;
|
|
64
66
|
|
|
65
|
-
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 };
|
|
67
|
+
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
|
@@ -200,6 +200,28 @@ const KolCard = /* @__PURE__ */ defineContainer("kol-card", void 0, [
|
|
|
200
200
|
"_label",
|
|
201
201
|
"_level"
|
|
202
202
|
]);
|
|
203
|
+
const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
204
|
+
"_accessKey",
|
|
205
|
+
"_placeholder",
|
|
206
|
+
"_alert",
|
|
207
|
+
"_disabled",
|
|
208
|
+
"_hideError",
|
|
209
|
+
"_hideLabel",
|
|
210
|
+
"_hint",
|
|
211
|
+
"_icons",
|
|
212
|
+
"_id",
|
|
213
|
+
"_label",
|
|
214
|
+
"_msg",
|
|
215
|
+
"_name",
|
|
216
|
+
"_on",
|
|
217
|
+
"_suggestions",
|
|
218
|
+
"_required",
|
|
219
|
+
"_syncValueBySelector",
|
|
220
|
+
"_tabIndex",
|
|
221
|
+
"_tooltipAlign",
|
|
222
|
+
"_touched",
|
|
223
|
+
"_value"
|
|
224
|
+
]);
|
|
203
225
|
const KolDetails = /* @__PURE__ */ defineContainer("kol-details", void 0, [
|
|
204
226
|
"_disabled",
|
|
205
227
|
"_label",
|
|
@@ -667,7 +689,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
|
|
|
667
689
|
"_headerCells",
|
|
668
690
|
"_label",
|
|
669
691
|
"_minWidth",
|
|
670
|
-
"_on"
|
|
692
|
+
"_on",
|
|
693
|
+
"_selection"
|
|
671
694
|
]);
|
|
672
695
|
const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
|
|
673
696
|
"_align",
|
|
@@ -704,6 +727,10 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
704
727
|
"_value"
|
|
705
728
|
]);
|
|
706
729
|
const KolToastContainer = /* @__PURE__ */ defineContainer("kol-toast-container", void 0);
|
|
730
|
+
const KolToolbar = /* @__PURE__ */ defineContainer("kol-toolbar", void 0, [
|
|
731
|
+
"_label",
|
|
732
|
+
"_items"
|
|
733
|
+
]);
|
|
707
734
|
const KolTree = /* @__PURE__ */ defineContainer("kol-tree", void 0, [
|
|
708
735
|
"_label"
|
|
709
736
|
]);
|
|
@@ -726,4 +753,4 @@ const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
|
|
|
726
753
|
"_label"
|
|
727
754
|
]);
|
|
728
755
|
|
|
729
|
-
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 };
|
|
756
|
+
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/vue",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -46,18 +46,18 @@
|
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@babel/types": "7.24.0",
|
|
49
|
-
"@public-ui/components": "2.1.0",
|
|
50
49
|
"@types/minimatch": "5.1.2",
|
|
51
50
|
"@types/minimist": "1.2.5",
|
|
52
51
|
"@types/node": "ts5.4",
|
|
53
52
|
"@types/normalize-package-data": "2.4.4",
|
|
54
53
|
"typescript": "5.4.5",
|
|
55
54
|
"unbuild": "1.2.1",
|
|
56
|
-
"vue": "3.4.21"
|
|
55
|
+
"vue": "3.4.21",
|
|
56
|
+
"@public-ui/components": "2.1.1"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"
|
|
60
|
-
"
|
|
59
|
+
"vue": ">=3",
|
|
60
|
+
"@public-ui/components": "2.1.1"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|
|
63
63
|
"type": "module",
|