@ironsource/shared-ui 2.1.12-test.71 → 2.1.12-test.73

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.
Files changed (48) hide show
  1. package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_ebc0c582_lang.css +1 -0
  2. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_38354f10_lang.css +1 -0
  3. package/DataGrid.vue_vue_type_style_index_0_scoped_086c5b0d_lang.css +1 -0
  4. package/DropdownV4.vue_vue_type_style_index_0_scoped_92ead583_lang.css +1 -0
  5. package/OptionV4.vue_vue_type_style_index_0_scoped_3dc741c1_lang.css +1 -0
  6. package/SwitchV4.vue_vue_type_style_index_0_scoped_fa120cf6_lang.css +1 -0
  7. package/components/chart/ChartHeaderTrend.vue.js +3 -3
  8. package/components/chart/ChartHeaderTrend.vue2.js +34 -33
  9. package/components/chart/ChartStoryArgs.d.ts +1 -1
  10. package/components/dateRange/common/DateServices.common.d.ts +6 -0
  11. package/components/dateRange/common/DateServices.common.js +87 -92
  12. package/components/dateRange/common/consts.common.d.ts +5 -0
  13. package/components/dateRange/common/consts.common.js +9 -3
  14. package/components/dateRange/v3/DateRange.vue.d.ts +3 -3
  15. package/components/dateRange/v3/DateRangePicker.vue.d.ts +3 -3
  16. package/components/dateRange/v3/index.d.ts +7 -7
  17. package/components/dateRange/v4/DateRangePickerV4.vue.d.ts +3 -3
  18. package/components/dateRange/v4/DateRangeV4.vue.d.ts +3 -3
  19. package/components/dateRange/v4/index.d.ts +7 -7
  20. package/components/dropdown/common/Dropdown.common.d.ts +1 -0
  21. package/components/dropdown/common/Dropdown.common.js +44 -43
  22. package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +5 -0
  23. package/components/dropdown/v4/ChipDropdownTrigger.vue.js +3 -3
  24. package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +64 -54
  25. package/components/dropdown/v4/DropdownV4.vue.d.ts +15 -0
  26. package/components/dropdown/v4/DropdownV4.vue.js +2 -2
  27. package/components/dropdown/v4/DropdownV4.vue2.js +226 -195
  28. package/components/dropdown/v4/OptionV4.vue.js +3 -3
  29. package/components/dropdown/v4/OptionV4.vue2.js +71 -68
  30. package/components/dropdown/v4/index.d.ts +67 -1
  31. package/components/switch/v4/SwitchV4.vue.d.ts +5 -0
  32. package/components/switch/v4/SwitchV4.vue.js +3 -3
  33. package/components/switch/v4/SwitchV4.vue2.js +25 -23
  34. package/components/switch/v4/index.d.ts +11 -0
  35. package/components/table/common/Table.types.d.ts +2 -0
  36. package/components/table/v4/DataGrid.vue.d.ts +6 -1
  37. package/components/table/v4/DataGrid.vue.js +2 -2
  38. package/components/table/v4/DataGrid.vue2.js +192 -174
  39. package/components/table/v4/index.d.ts +20 -1
  40. package/index.d.ts +210 -18
  41. package/index.js +1 -1
  42. package/package.json +1 -1
  43. package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_79dc2883_lang.css +0 -1
  44. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_e43ac1c9_lang.css +0 -1
  45. package/DataGrid.vue_vue_type_style_index_0_scoped_0dff3241_lang.css +0 -1
  46. package/DropdownV4.vue_vue_type_style_index_0_scoped_08cb822e_lang.css +0 -1
  47. package/OptionV4.vue_vue_type_style_index_0_scoped_9cdf3a94_lang.css +0 -1
  48. package/SwitchV4.vue_vue_type_style_index_0_scoped_c2e356f5_lang.css +0 -1
package/index.d.ts CHANGED
@@ -562,7 +562,7 @@ declare const _default: {
562
562
  dateFormat: string;
563
563
  types: ("date" | "week" | "month")[];
564
564
  maxDaysInRange: number;
565
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
565
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
566
566
  regex: RegExp;
567
567
  initialType: "date" | "week" | "month";
568
568
  openOnTop: boolean;
@@ -609,7 +609,7 @@ declare const _default: {
609
609
  default: any;
610
610
  };
611
611
  datePresetList: {
612
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
612
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
613
613
  default: string;
614
614
  };
615
615
  regex: {
@@ -697,7 +697,7 @@ declare const _default: {
697
697
  default: any;
698
698
  };
699
699
  datePresetList: {
700
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
700
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
701
701
  default: string;
702
702
  };
703
703
  regex: {
@@ -746,7 +746,7 @@ declare const _default: {
746
746
  dateFormat: string;
747
747
  types: ("date" | "week" | "month")[];
748
748
  maxDaysInRange: number;
749
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
749
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
750
750
  regex: RegExp;
751
751
  initialType: "date" | "week" | "month";
752
752
  openOnTop: boolean;
@@ -813,7 +813,7 @@ declare const _default: {
813
813
  default: any;
814
814
  };
815
815
  datePresetList: {
816
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
816
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
817
817
  default: string;
818
818
  };
819
819
  regex: {
@@ -891,7 +891,7 @@ declare const _default: {
891
891
  default: any;
892
892
  };
893
893
  datePresetList: {
894
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
894
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
895
895
  default: string;
896
896
  };
897
897
  regex: {
@@ -940,7 +940,7 @@ declare const _default: {
940
940
  dateFormat: string;
941
941
  types: ("date" | "week" | "month")[];
942
942
  maxDaysInRange: number;
943
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
943
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
944
944
  regex: RegExp;
945
945
  initialType: "date" | "week" | "month";
946
946
  openOnTop: boolean;
@@ -968,7 +968,7 @@ declare const _default: {
968
968
  dateFormat: string;
969
969
  types: ("date" | "week" | "month")[];
970
970
  maxDaysInRange: number;
971
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
971
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
972
972
  regex: RegExp;
973
973
  initialType: "date" | "week" | "month";
974
974
  openOnTop: boolean;
@@ -1015,7 +1015,7 @@ declare const _default: {
1015
1015
  default: any;
1016
1016
  };
1017
1017
  datePresetList: {
1018
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
1018
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
1019
1019
  default: string;
1020
1020
  };
1021
1021
  regex: {
@@ -1103,7 +1103,7 @@ declare const _default: {
1103
1103
  default: any;
1104
1104
  };
1105
1105
  datePresetList: {
1106
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
1106
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
1107
1107
  default: string;
1108
1108
  };
1109
1109
  regex: {
@@ -1152,7 +1152,7 @@ declare const _default: {
1152
1152
  dateFormat: string;
1153
1153
  types: ("date" | "week" | "month")[];
1154
1154
  maxDaysInRange: number;
1155
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
1155
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
1156
1156
  regex: RegExp;
1157
1157
  initialType: "date" | "week" | "month";
1158
1158
  openOnTop: boolean;
@@ -1219,7 +1219,7 @@ declare const _default: {
1219
1219
  default: any;
1220
1220
  };
1221
1221
  datePresetList: {
1222
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
1222
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
1223
1223
  default: string;
1224
1224
  };
1225
1225
  regex: {
@@ -1297,7 +1297,7 @@ declare const _default: {
1297
1297
  default: any;
1298
1298
  };
1299
1299
  datePresetList: {
1300
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth">;
1300
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
1301
1301
  default: string;
1302
1302
  };
1303
1303
  regex: {
@@ -1346,7 +1346,7 @@ declare const _default: {
1346
1346
  dateFormat: string;
1347
1347
  types: ("date" | "week" | "month")[];
1348
1348
  maxDaysInRange: number;
1349
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
1349
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
1350
1350
  regex: RegExp;
1351
1351
  initialType: "date" | "week" | "month";
1352
1352
  openOnTop: boolean;
@@ -5792,6 +5792,7 @@ declare const _default: {
5792
5792
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
5793
5793
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
5794
5794
  emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
5795
+ helpTooltipVariant: "icon" | "underline";
5795
5796
  rowCustomClassKey: string;
5796
5797
  rowDataKey: string;
5797
5798
  isSelectionSticky: boolean;
@@ -5904,6 +5905,10 @@ declare const _default: {
5904
5905
  showTotalsRow: {
5905
5906
  type: import("vue").PropType<boolean>;
5906
5907
  };
5908
+ helpTooltipVariant: {
5909
+ type: import("vue").PropType<"icon" | "underline">;
5910
+ default: string;
5911
+ };
5907
5912
  rowCustomClassKey: {
5908
5913
  type: import("vue").PropType<string>;
5909
5914
  default: string;
@@ -5931,7 +5936,7 @@ declare const _default: {
5931
5936
  "onUpdate:selection"?: (selection: unknown[]) => any;
5932
5937
  onSelectRow?: (value: boolean) => any;
5933
5938
  onClickRow?: (rowIndex: number) => any;
5934
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
5939
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "helpTooltipVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
5935
5940
  $attrs: {
5936
5941
  [x: string]: unknown;
5937
5942
  };
@@ -6053,6 +6058,10 @@ declare const _default: {
6053
6058
  showTotalsRow: {
6054
6059
  type: import("vue").PropType<boolean>;
6055
6060
  };
6061
+ helpTooltipVariant: {
6062
+ type: import("vue").PropType<"icon" | "underline">;
6063
+ default: string;
6064
+ };
6056
6065
  rowCustomClassKey: {
6057
6066
  type: import("vue").PropType<string>;
6058
6067
  default: string;
@@ -6118,6 +6127,7 @@ declare const _default: {
6118
6127
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6119
6128
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6120
6129
  emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
6130
+ helpTooltipVariant: "icon" | "underline";
6121
6131
  rowCustomClassKey: string;
6122
6132
  rowDataKey: string;
6123
6133
  isSelectionSticky: boolean;
@@ -6250,6 +6260,10 @@ declare const _default: {
6250
6260
  showTotalsRow: {
6251
6261
  type: import("vue").PropType<boolean>;
6252
6262
  };
6263
+ helpTooltipVariant: {
6264
+ type: import("vue").PropType<"icon" | "underline">;
6265
+ default: string;
6266
+ };
6253
6267
  rowCustomClassKey: {
6254
6268
  type: import("vue").PropType<string>;
6255
6269
  default: string;
@@ -6391,6 +6405,10 @@ declare const _default: {
6391
6405
  showTotalsRow: {
6392
6406
  type: import("vue").PropType<boolean>;
6393
6407
  };
6408
+ helpTooltipVariant: {
6409
+ type: import("vue").PropType<"icon" | "underline">;
6410
+ default: string;
6411
+ };
6394
6412
  rowCustomClassKey: {
6395
6413
  type: import("vue").PropType<string>;
6396
6414
  default: string;
@@ -6456,6 +6474,7 @@ declare const _default: {
6456
6474
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6457
6475
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6458
6476
  emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
6477
+ helpTooltipVariant: "icon" | "underline";
6459
6478
  rowCustomClassKey: string;
6460
6479
  rowDataKey: string;
6461
6480
  isSelectionSticky: boolean;
@@ -6614,6 +6633,7 @@ declare const _default: {
6614
6633
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6615
6634
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6616
6635
  emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
6636
+ helpTooltipVariant: "icon" | "underline";
6617
6637
  rowCustomClassKey: string;
6618
6638
  rowDataKey: string;
6619
6639
  isSelectionSticky: boolean;
@@ -6726,6 +6746,10 @@ declare const _default: {
6726
6746
  showTotalsRow: {
6727
6747
  type: import("vue").PropType<boolean>;
6728
6748
  };
6749
+ helpTooltipVariant: {
6750
+ type: import("vue").PropType<"icon" | "underline">;
6751
+ default: string;
6752
+ };
6729
6753
  rowCustomClassKey: {
6730
6754
  type: import("vue").PropType<string>;
6731
6755
  default: string;
@@ -6753,7 +6777,7 @@ declare const _default: {
6753
6777
  "onUpdate:selection"?: (selection: unknown[]) => any;
6754
6778
  onSelectRow?: (value: boolean) => any;
6755
6779
  onClickRow?: (rowIndex: number) => any;
6756
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
6780
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "helpTooltipVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
6757
6781
  $attrs: {
6758
6782
  [x: string]: unknown;
6759
6783
  };
@@ -6875,6 +6899,10 @@ declare const _default: {
6875
6899
  showTotalsRow: {
6876
6900
  type: import("vue").PropType<boolean>;
6877
6901
  };
6902
+ helpTooltipVariant: {
6903
+ type: import("vue").PropType<"icon" | "underline">;
6904
+ default: string;
6905
+ };
6878
6906
  rowCustomClassKey: {
6879
6907
  type: import("vue").PropType<string>;
6880
6908
  default: string;
@@ -6940,6 +6968,7 @@ declare const _default: {
6940
6968
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6941
6969
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6942
6970
  emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
6971
+ helpTooltipVariant: "icon" | "underline";
6943
6972
  rowCustomClassKey: string;
6944
6973
  rowDataKey: string;
6945
6974
  isSelectionSticky: boolean;
@@ -7072,6 +7101,10 @@ declare const _default: {
7072
7101
  showTotalsRow: {
7073
7102
  type: import("vue").PropType<boolean>;
7074
7103
  };
7104
+ helpTooltipVariant: {
7105
+ type: import("vue").PropType<"icon" | "underline">;
7106
+ default: string;
7107
+ };
7075
7108
  rowCustomClassKey: {
7076
7109
  type: import("vue").PropType<string>;
7077
7110
  default: string;
@@ -7213,6 +7246,10 @@ declare const _default: {
7213
7246
  showTotalsRow: {
7214
7247
  type: import("vue").PropType<boolean>;
7215
7248
  };
7249
+ helpTooltipVariant: {
7250
+ type: import("vue").PropType<"icon" | "underline">;
7251
+ default: string;
7252
+ };
7216
7253
  rowCustomClassKey: {
7217
7254
  type: import("vue").PropType<string>;
7218
7255
  default: string;
@@ -7278,6 +7315,7 @@ declare const _default: {
7278
7315
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7279
7316
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
7280
7317
  emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
7318
+ helpTooltipVariant: "icon" | "underline";
7281
7319
  rowCustomClassKey: string;
7282
7320
  rowDataKey: string;
7283
7321
  isSelectionSticky: boolean;
@@ -16335,6 +16373,8 @@ declare const _default: {
16335
16373
  autoSize: boolean;
16336
16374
  disableKeyboardEvents: boolean;
16337
16375
  dynamicFilterMode: boolean;
16376
+ minSelections: number;
16377
+ maxSelections: number;
16338
16378
  isOnTop: boolean;
16339
16379
  triggerLabel: string;
16340
16380
  triggerHelperText: string;
@@ -16342,6 +16382,7 @@ declare const _default: {
16342
16382
  triggerFeedbackVariant: "success" | "warning" | "error";
16343
16383
  triggerFeedbackShowIcon: boolean;
16344
16384
  triggerShowAllSelectedText: boolean;
16385
+ triggerShownValuesCount: number;
16345
16386
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
16346
16387
  inlineSearch: boolean;
16347
16388
  inlineSearchPlaceholder: string;
@@ -16476,6 +16517,14 @@ declare const _default: {
16476
16517
  type: import("vue").PropType<boolean>;
16477
16518
  default: boolean;
16478
16519
  };
16520
+ minSelections: {
16521
+ type: import("vue").PropType<number>;
16522
+ default: number;
16523
+ };
16524
+ maxSelections: {
16525
+ type: import("vue").PropType<number>;
16526
+ default: any;
16527
+ };
16479
16528
  isOnTop: {
16480
16529
  type: import("vue").PropType<boolean>;
16481
16530
  default: boolean;
@@ -16504,6 +16553,10 @@ declare const _default: {
16504
16553
  type: import("vue").PropType<boolean>;
16505
16554
  default: boolean;
16506
16555
  };
16556
+ triggerShownValuesCount: {
16557
+ type: import("vue").PropType<number>;
16558
+ default: number;
16559
+ };
16507
16560
  predefinedTrigger: {
16508
16561
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
16509
16562
  default: "default" | "icon-button" | "chip" | "app";
@@ -16633,7 +16686,7 @@ declare const _default: {
16633
16686
  onUnsavedSelectionUpdate?: (value: unknown[]) => any;
16634
16687
  onOpened?: () => any;
16635
16688
  onClosed?: () => any;
16636
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
16689
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
16637
16690
  $attrs: {
16638
16691
  [x: string]: unknown;
16639
16692
  };
@@ -16753,6 +16806,14 @@ declare const _default: {
16753
16806
  type: import("vue").PropType<boolean>;
16754
16807
  default: boolean;
16755
16808
  };
16809
+ minSelections: {
16810
+ type: import("vue").PropType<number>;
16811
+ default: number;
16812
+ };
16813
+ maxSelections: {
16814
+ type: import("vue").PropType<number>;
16815
+ default: any;
16816
+ };
16756
16817
  isOnTop: {
16757
16818
  type: import("vue").PropType<boolean>;
16758
16819
  default: boolean;
@@ -16781,6 +16842,10 @@ declare const _default: {
16781
16842
  type: import("vue").PropType<boolean>;
16782
16843
  default: boolean;
16783
16844
  };
16845
+ triggerShownValuesCount: {
16846
+ type: import("vue").PropType<number>;
16847
+ default: number;
16848
+ };
16784
16849
  predefinedTrigger: {
16785
16850
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
16786
16851
  default: "default" | "icon-button" | "chip" | "app";
@@ -16950,6 +17015,8 @@ declare const _default: {
16950
17015
  autoSize: boolean;
16951
17016
  disableKeyboardEvents: boolean;
16952
17017
  dynamicFilterMode: boolean;
17018
+ minSelections: number;
17019
+ maxSelections: number;
16953
17020
  isOnTop: boolean;
16954
17021
  triggerLabel: string;
16955
17022
  triggerHelperText: string;
@@ -16957,6 +17024,7 @@ declare const _default: {
16957
17024
  triggerFeedbackVariant: "success" | "warning" | "error";
16958
17025
  triggerFeedbackShowIcon: boolean;
16959
17026
  triggerShowAllSelectedText: boolean;
17027
+ triggerShownValuesCount: number;
16960
17028
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
16961
17029
  inlineSearch: boolean;
16962
17030
  inlineSearchPlaceholder: string;
@@ -17111,6 +17179,14 @@ declare const _default: {
17111
17179
  type: import("vue").PropType<boolean>;
17112
17180
  default: boolean;
17113
17181
  };
17182
+ minSelections: {
17183
+ type: import("vue").PropType<number>;
17184
+ default: number;
17185
+ };
17186
+ maxSelections: {
17187
+ type: import("vue").PropType<number>;
17188
+ default: any;
17189
+ };
17114
17190
  isOnTop: {
17115
17191
  type: import("vue").PropType<boolean>;
17116
17192
  default: boolean;
@@ -17139,6 +17215,10 @@ declare const _default: {
17139
17215
  type: import("vue").PropType<boolean>;
17140
17216
  default: boolean;
17141
17217
  };
17218
+ triggerShownValuesCount: {
17219
+ type: import("vue").PropType<number>;
17220
+ default: number;
17221
+ };
17142
17222
  predefinedTrigger: {
17143
17223
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
17144
17224
  default: "default" | "icon-button" | "chip" | "app";
@@ -17381,6 +17461,14 @@ declare const _default: {
17381
17461
  type: import("vue").PropType<boolean>;
17382
17462
  default: boolean;
17383
17463
  };
17464
+ minSelections: {
17465
+ type: import("vue").PropType<number>;
17466
+ default: number;
17467
+ };
17468
+ maxSelections: {
17469
+ type: import("vue").PropType<number>;
17470
+ default: any;
17471
+ };
17384
17472
  isOnTop: {
17385
17473
  type: import("vue").PropType<boolean>;
17386
17474
  default: boolean;
@@ -17409,6 +17497,10 @@ declare const _default: {
17409
17497
  type: import("vue").PropType<boolean>;
17410
17498
  default: boolean;
17411
17499
  };
17500
+ triggerShownValuesCount: {
17501
+ type: import("vue").PropType<number>;
17502
+ default: number;
17503
+ };
17412
17504
  predefinedTrigger: {
17413
17505
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
17414
17506
  default: "default" | "icon-button" | "chip" | "app";
@@ -17578,6 +17670,8 @@ declare const _default: {
17578
17670
  autoSize: boolean;
17579
17671
  disableKeyboardEvents: boolean;
17580
17672
  dynamicFilterMode: boolean;
17673
+ minSelections: number;
17674
+ maxSelections: number;
17581
17675
  isOnTop: boolean;
17582
17676
  triggerLabel: string;
17583
17677
  triggerHelperText: string;
@@ -17585,6 +17679,7 @@ declare const _default: {
17585
17679
  triggerFeedbackVariant: "success" | "warning" | "error";
17586
17680
  triggerFeedbackShowIcon: boolean;
17587
17681
  triggerShowAllSelectedText: boolean;
17682
+ triggerShownValuesCount: number;
17588
17683
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
17589
17684
  inlineSearch: boolean;
17590
17685
  inlineSearchPlaceholder: string;
@@ -18348,6 +18443,10 @@ declare const _default: {
18348
18443
  type: import("vue").PropType<boolean>;
18349
18444
  default: boolean;
18350
18445
  };
18446
+ shownValuesCount: {
18447
+ type: import("vue").PropType<number>;
18448
+ default: number;
18449
+ };
18351
18450
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18352
18451
  clear: () => void;
18353
18452
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -18406,6 +18505,10 @@ declare const _default: {
18406
18505
  type: import("vue").PropType<boolean>;
18407
18506
  default: boolean;
18408
18507
  };
18508
+ shownValuesCount: {
18509
+ type: import("vue").PropType<number>;
18510
+ default: number;
18511
+ };
18409
18512
  }>> & {
18410
18513
  onClear?: () => any;
18411
18514
  }, {
@@ -18418,6 +18521,7 @@ declare const _default: {
18418
18521
  displayedValue: any;
18419
18522
  cancelAllSelectedDisplay: boolean;
18420
18523
  displayValueInQuotes: boolean;
18524
+ shownValuesCount: number;
18421
18525
  }>;
18422
18526
  ButtonDropdownTrigger: {
18423
18527
  new (...args: any[]): {
@@ -20938,6 +21042,10 @@ declare const _default: {
20938
21042
  type: import("vue").PropType<boolean>;
20939
21043
  default: boolean;
20940
21044
  };
21045
+ shownValuesCount: {
21046
+ type: import("vue").PropType<number>;
21047
+ default: number;
21048
+ };
20941
21049
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20942
21050
  clear: () => void;
20943
21051
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -20996,6 +21104,10 @@ declare const _default: {
20996
21104
  type: import("vue").PropType<boolean>;
20997
21105
  default: boolean;
20998
21106
  };
21107
+ shownValuesCount: {
21108
+ type: import("vue").PropType<number>;
21109
+ default: number;
21110
+ };
20999
21111
  }>> & {
21000
21112
  onClear?: () => any;
21001
21113
  }, {
@@ -21008,6 +21120,7 @@ declare const _default: {
21008
21120
  displayedValue: any;
21009
21121
  cancelAllSelectedDisplay: boolean;
21010
21122
  displayValueInQuotes: boolean;
21123
+ shownValuesCount: number;
21011
21124
  }> | ({
21012
21125
  new (...args: any[]): {
21013
21126
  $: import("vue").ComponentInternalInstance;
@@ -21036,6 +21149,8 @@ declare const _default: {
21036
21149
  autoSize: boolean;
21037
21150
  disableKeyboardEvents: boolean;
21038
21151
  dynamicFilterMode: boolean;
21152
+ minSelections: number;
21153
+ maxSelections: number;
21039
21154
  isOnTop: boolean;
21040
21155
  triggerLabel: string;
21041
21156
  triggerHelperText: string;
@@ -21043,6 +21158,7 @@ declare const _default: {
21043
21158
  triggerFeedbackVariant: "success" | "warning" | "error";
21044
21159
  triggerFeedbackShowIcon: boolean;
21045
21160
  triggerShowAllSelectedText: boolean;
21161
+ triggerShownValuesCount: number;
21046
21162
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
21047
21163
  inlineSearch: boolean;
21048
21164
  inlineSearchPlaceholder: string;
@@ -21177,6 +21293,14 @@ declare const _default: {
21177
21293
  type: import("vue").PropType<boolean>;
21178
21294
  default: boolean;
21179
21295
  };
21296
+ minSelections: {
21297
+ type: import("vue").PropType<number>;
21298
+ default: number;
21299
+ };
21300
+ maxSelections: {
21301
+ type: import("vue").PropType<number>;
21302
+ default: any;
21303
+ };
21180
21304
  isOnTop: {
21181
21305
  type: import("vue").PropType<boolean>;
21182
21306
  default: boolean;
@@ -21205,6 +21329,10 @@ declare const _default: {
21205
21329
  type: import("vue").PropType<boolean>;
21206
21330
  default: boolean;
21207
21331
  };
21332
+ triggerShownValuesCount: {
21333
+ type: import("vue").PropType<number>;
21334
+ default: number;
21335
+ };
21208
21336
  predefinedTrigger: {
21209
21337
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
21210
21338
  default: "default" | "icon-button" | "chip" | "app";
@@ -21334,7 +21462,7 @@ declare const _default: {
21334
21462
  onUnsavedSelectionUpdate?: (value: unknown[]) => any;
21335
21463
  onOpened?: () => any;
21336
21464
  onClosed?: () => any;
21337
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
21465
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
21338
21466
  $attrs: {
21339
21467
  [x: string]: unknown;
21340
21468
  };
@@ -21454,6 +21582,14 @@ declare const _default: {
21454
21582
  type: import("vue").PropType<boolean>;
21455
21583
  default: boolean;
21456
21584
  };
21585
+ minSelections: {
21586
+ type: import("vue").PropType<number>;
21587
+ default: number;
21588
+ };
21589
+ maxSelections: {
21590
+ type: import("vue").PropType<number>;
21591
+ default: any;
21592
+ };
21457
21593
  isOnTop: {
21458
21594
  type: import("vue").PropType<boolean>;
21459
21595
  default: boolean;
@@ -21482,6 +21618,10 @@ declare const _default: {
21482
21618
  type: import("vue").PropType<boolean>;
21483
21619
  default: boolean;
21484
21620
  };
21621
+ triggerShownValuesCount: {
21622
+ type: import("vue").PropType<number>;
21623
+ default: number;
21624
+ };
21485
21625
  predefinedTrigger: {
21486
21626
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
21487
21627
  default: "default" | "icon-button" | "chip" | "app";
@@ -21651,6 +21791,8 @@ declare const _default: {
21651
21791
  autoSize: boolean;
21652
21792
  disableKeyboardEvents: boolean;
21653
21793
  dynamicFilterMode: boolean;
21794
+ minSelections: number;
21795
+ maxSelections: number;
21654
21796
  isOnTop: boolean;
21655
21797
  triggerLabel: string;
21656
21798
  triggerHelperText: string;
@@ -21658,6 +21800,7 @@ declare const _default: {
21658
21800
  triggerFeedbackVariant: "success" | "warning" | "error";
21659
21801
  triggerFeedbackShowIcon: boolean;
21660
21802
  triggerShowAllSelectedText: boolean;
21803
+ triggerShownValuesCount: number;
21661
21804
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
21662
21805
  inlineSearch: boolean;
21663
21806
  inlineSearchPlaceholder: string;
@@ -21812,6 +21955,14 @@ declare const _default: {
21812
21955
  type: import("vue").PropType<boolean>;
21813
21956
  default: boolean;
21814
21957
  };
21958
+ minSelections: {
21959
+ type: import("vue").PropType<number>;
21960
+ default: number;
21961
+ };
21962
+ maxSelections: {
21963
+ type: import("vue").PropType<number>;
21964
+ default: any;
21965
+ };
21815
21966
  isOnTop: {
21816
21967
  type: import("vue").PropType<boolean>;
21817
21968
  default: boolean;
@@ -21840,6 +21991,10 @@ declare const _default: {
21840
21991
  type: import("vue").PropType<boolean>;
21841
21992
  default: boolean;
21842
21993
  };
21994
+ triggerShownValuesCount: {
21995
+ type: import("vue").PropType<number>;
21996
+ default: number;
21997
+ };
21843
21998
  predefinedTrigger: {
21844
21999
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
21845
22000
  default: "default" | "icon-button" | "chip" | "app";
@@ -22082,6 +22237,14 @@ declare const _default: {
22082
22237
  type: import("vue").PropType<boolean>;
22083
22238
  default: boolean;
22084
22239
  };
22240
+ minSelections: {
22241
+ type: import("vue").PropType<number>;
22242
+ default: number;
22243
+ };
22244
+ maxSelections: {
22245
+ type: import("vue").PropType<number>;
22246
+ default: any;
22247
+ };
22085
22248
  isOnTop: {
22086
22249
  type: import("vue").PropType<boolean>;
22087
22250
  default: boolean;
@@ -22110,6 +22273,10 @@ declare const _default: {
22110
22273
  type: import("vue").PropType<boolean>;
22111
22274
  default: boolean;
22112
22275
  };
22276
+ triggerShownValuesCount: {
22277
+ type: import("vue").PropType<number>;
22278
+ default: number;
22279
+ };
22113
22280
  predefinedTrigger: {
22114
22281
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
22115
22282
  default: "default" | "icon-button" | "chip" | "app";
@@ -22279,6 +22446,8 @@ declare const _default: {
22279
22446
  autoSize: boolean;
22280
22447
  disableKeyboardEvents: boolean;
22281
22448
  dynamicFilterMode: boolean;
22449
+ minSelections: number;
22450
+ maxSelections: number;
22282
22451
  isOnTop: boolean;
22283
22452
  triggerLabel: string;
22284
22453
  triggerHelperText: string;
@@ -22286,6 +22455,7 @@ declare const _default: {
22286
22455
  triggerFeedbackVariant: "success" | "warning" | "error";
22287
22456
  triggerFeedbackShowIcon: boolean;
22288
22457
  triggerShowAllSelectedText: boolean;
22458
+ triggerShownValuesCount: number;
22289
22459
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
22290
22460
  inlineSearch: boolean;
22291
22461
  inlineSearchPlaceholder: string;
@@ -25685,6 +25855,11 @@ declare const _default: {
25685
25855
  type: import("vue").PropType<string>;
25686
25856
  default: string;
25687
25857
  };
25858
+ variant: {
25859
+ type: import("vue").PropType<"default" | "primary">;
25860
+ required: true;
25861
+ default: string;
25862
+ };
25688
25863
  modelValue: {
25689
25864
  type: import("vue").PropType<unknown>;
25690
25865
  required: true;
@@ -25704,6 +25879,11 @@ declare const _default: {
25704
25879
  type: import("vue").PropType<string>;
25705
25880
  default: string;
25706
25881
  };
25882
+ variant: {
25883
+ type: import("vue").PropType<"default" | "primary">;
25884
+ required: true;
25885
+ default: string;
25886
+ };
25707
25887
  modelValue: {
25708
25888
  type: import("vue").PropType<unknown>;
25709
25889
  required: true;
@@ -25720,6 +25900,7 @@ declare const _default: {
25720
25900
  "onUpdate:modelValue"?: (...args: any[]) => any;
25721
25901
  }, {
25722
25902
  testId: string;
25903
+ variant: "default" | "primary";
25723
25904
  iconKey: string;
25724
25905
  }>;
25725
25906
  SwitchTypes: () => import("vue").DefineComponent<{
@@ -25727,6 +25908,11 @@ declare const _default: {
25727
25908
  type: import("vue").PropType<string>;
25728
25909
  default: string;
25729
25910
  };
25911
+ variant: {
25912
+ type: import("vue").PropType<"default" | "primary">;
25913
+ required: true;
25914
+ default: string;
25915
+ };
25730
25916
  modelValue: {
25731
25917
  type: import("vue").PropType<unknown>;
25732
25918
  required: true;
@@ -25746,6 +25932,11 @@ declare const _default: {
25746
25932
  type: import("vue").PropType<string>;
25747
25933
  default: string;
25748
25934
  };
25935
+ variant: {
25936
+ type: import("vue").PropType<"default" | "primary">;
25937
+ required: true;
25938
+ default: string;
25939
+ };
25749
25940
  modelValue: {
25750
25941
  type: import("vue").PropType<unknown>;
25751
25942
  required: true;
@@ -25762,6 +25953,7 @@ declare const _default: {
25762
25953
  "onUpdate:modelValue"?: (...args: any[]) => any;
25763
25954
  }, {
25764
25955
  testId: string;
25956
+ variant: "default" | "primary";
25765
25957
  iconKey: string;
25766
25958
  }>[];
25767
25959
  Chip: {