@public-ui/vue 2.1.0 → 2.1.2

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 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",
@@ -651,7 +673,9 @@ const KolTable = /* @__PURE__ */ defineContainer("kol-table", void 0, [
651
673
  "_label",
652
674
  "_minWidth",
653
675
  "_pagination",
654
- "_paginationPosition"
676
+ "_paginationPosition",
677
+ "_selection",
678
+ "_on"
655
679
  ]);
656
680
  const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
657
681
  "_allowMultiSort",
@@ -661,7 +685,9 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
661
685
  "_label",
662
686
  "_minWidth",
663
687
  "_pagination",
664
- "_paginationPosition"
688
+ "_paginationPosition",
689
+ "_selection",
690
+ "_on"
665
691
  ]);
666
692
  const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
667
693
  "_data",
@@ -669,7 +695,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
669
695
  "_headerCells",
670
696
  "_label",
671
697
  "_minWidth",
672
- "_on"
698
+ "_on",
699
+ "_selection"
673
700
  ]);
674
701
  const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
675
702
  "_align",
@@ -688,6 +715,7 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
688
715
  "_hideError",
689
716
  "_hideLabel",
690
717
  "_hint",
718
+ "_icons",
691
719
  "_id",
692
720
  "_label",
693
721
  "_maxLength",
@@ -706,6 +734,10 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
706
734
  "_value"
707
735
  ]);
708
736
  const KolToastContainer = /* @__PURE__ */ defineContainer("kol-toast-container", void 0);
737
+ const KolToolbar = /* @__PURE__ */ defineContainer("kol-toolbar", void 0, [
738
+ "_label",
739
+ "_items"
740
+ ]);
709
741
  const KolTree = /* @__PURE__ */ defineContainer("kol-tree", void 0, [
710
742
  "_label"
711
743
  ]);
@@ -738,6 +770,7 @@ exports.KolButton = KolButton;
738
770
  exports.KolButtonGroup = KolButtonGroup;
739
771
  exports.KolButtonLink = KolButtonLink;
740
772
  exports.KolCard = KolCard;
773
+ exports.KolCombobox = KolCombobox;
741
774
  exports.KolDetails = KolDetails;
742
775
  exports.KolForm = KolForm;
743
776
  exports.KolHeading = KolHeading;
@@ -776,6 +809,7 @@ exports.KolTableStateless = KolTableStateless;
776
809
  exports.KolTabs = KolTabs;
777
810
  exports.KolTextarea = KolTextarea;
778
811
  exports.KolToastContainer = KolToastContainer;
812
+ exports.KolToolbar = KolToolbar;
779
813
  exports.KolTree = KolTree;
780
814
  exports.KolTreeItem = KolTreeItem;
781
815
  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",
@@ -649,7 +671,9 @@ const KolTable = /* @__PURE__ */ defineContainer("kol-table", void 0, [
649
671
  "_label",
650
672
  "_minWidth",
651
673
  "_pagination",
652
- "_paginationPosition"
674
+ "_paginationPosition",
675
+ "_selection",
676
+ "_on"
653
677
  ]);
654
678
  const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", void 0, [
655
679
  "_allowMultiSort",
@@ -659,7 +683,9 @@ const KolTableStateful = /* @__PURE__ */ defineContainer("kol-table-stateful", v
659
683
  "_label",
660
684
  "_minWidth",
661
685
  "_pagination",
662
- "_paginationPosition"
686
+ "_paginationPosition",
687
+ "_selection",
688
+ "_on"
663
689
  ]);
664
690
  const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless", void 0, [
665
691
  "_data",
@@ -667,7 +693,8 @@ const KolTableStateless = /* @__PURE__ */ defineContainer("kol-table-stateless",
667
693
  "_headerCells",
668
694
  "_label",
669
695
  "_minWidth",
670
- "_on"
696
+ "_on",
697
+ "_selection"
671
698
  ]);
672
699
  const KolTabs = /* @__PURE__ */ defineContainer("kol-tabs", void 0, [
673
700
  "_align",
@@ -686,6 +713,7 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
686
713
  "_hideError",
687
714
  "_hideLabel",
688
715
  "_hint",
716
+ "_icons",
689
717
  "_id",
690
718
  "_label",
691
719
  "_maxLength",
@@ -704,6 +732,10 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
704
732
  "_value"
705
733
  ]);
706
734
  const KolToastContainer = /* @__PURE__ */ defineContainer("kol-toast-container", void 0);
735
+ const KolToolbar = /* @__PURE__ */ defineContainer("kol-toolbar", void 0, [
736
+ "_label",
737
+ "_items"
738
+ ]);
707
739
  const KolTree = /* @__PURE__ */ defineContainer("kol-tree", void 0, [
708
740
  "_label"
709
741
  ]);
@@ -726,4 +758,4 @@ const KolVersion = /* @__PURE__ */ defineContainer("kol-version", void 0, [
726
758
  "_label"
727
759
  ]);
728
760
 
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 };
761
+ 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.0",
3
+ "version": "2.1.2",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": {
@@ -45,19 +45,19 @@
45
45
  "vue"
46
46
  ],
47
47
  "devDependencies": {
48
- "@babel/types": "7.24.0",
49
- "@public-ui/components": "2.1.0",
48
+ "@babel/types": "7.24.7",
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.2"
57
57
  },
58
58
  "peerDependencies": {
59
- "@public-ui/components": "2.1.0",
60
- "vue": ">=3"
59
+ "vue": ">=3",
60
+ "@public-ui/components": "2.1.2"
61
61
  },
62
62
  "sideEffects": false,
63
63
  "type": "module",