@ironsource/shared-ui 2.1.12-test.72 → 2.1.12-test.74

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 (41) hide show
  1. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_38354f10_lang.css +1 -0
  2. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_cce87267_lang.css +1 -0
  3. package/DropdownV4.vue_vue_type_style_index_0_scoped_92ead583_lang.css +1 -0
  4. package/OptionV4.vue_vue_type_style_index_0_scoped_3dc741c1_lang.css +1 -0
  5. package/SwitchV4.vue_vue_type_style_index_0_scoped_fa120cf6_lang.css +1 -0
  6. package/components/dateRange/common/DateServices.common.d.ts +6 -0
  7. package/components/dateRange/common/DateServices.common.js +87 -92
  8. package/components/dateRange/common/consts.common.d.ts +5 -0
  9. package/components/dateRange/common/consts.common.js +9 -3
  10. package/components/dateRange/v3/DateRange.vue.d.ts +3 -3
  11. package/components/dateRange/v3/DateRangePicker.vue.d.ts +3 -3
  12. package/components/dateRange/v3/index.d.ts +7 -7
  13. package/components/dateRange/v4/DateRangePickerV4.vue.d.ts +3 -3
  14. package/components/dateRange/v4/DateRangeV4.vue.d.ts +3 -3
  15. package/components/dateRange/v4/index.d.ts +7 -7
  16. package/components/dropdown/common/Dropdown.common.d.ts +1 -0
  17. package/components/dropdown/common/Dropdown.common.js +44 -43
  18. package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +5 -0
  19. package/components/dropdown/v4/ChipDropdownTrigger.vue.js +3 -3
  20. package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +64 -54
  21. package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +5 -0
  22. package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
  23. package/components/dropdown/v4/ConditionalDropdown.vue2.js +94 -91
  24. package/components/dropdown/v4/DropdownV4.vue.d.ts +15 -0
  25. package/components/dropdown/v4/DropdownV4.vue.js +2 -2
  26. package/components/dropdown/v4/DropdownV4.vue2.js +226 -195
  27. package/components/dropdown/v4/OptionV4.vue.js +3 -3
  28. package/components/dropdown/v4/OptionV4.vue2.js +71 -68
  29. package/components/dropdown/v4/index.d.ts +76 -1
  30. package/components/switch/v4/SwitchV4.vue.d.ts +5 -0
  31. package/components/switch/v4/SwitchV4.vue.js +3 -3
  32. package/components/switch/v4/SwitchV4.vue2.js +25 -23
  33. package/components/switch/v4/index.d.ts +11 -0
  34. package/index.d.ts +188 -16
  35. package/index.js +1 -1
  36. package/package.json +1 -1
  37. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_e43ac1c9_lang.css +0 -1
  38. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8d5521da_lang.css +0 -1
  39. package/DropdownV4.vue_vue_type_style_index_0_scoped_08cb822e_lang.css +0 -1
  40. package/OptionV4.vue_vue_type_style_index_0_scoped_9cdf3a94_lang.css +0 -1
  41. package/SwitchV4.vue_vue_type_style_index_0_scoped_c2e356f5_lang.css +0 -1
@@ -3,6 +3,11 @@ declare const SwitchTypes: () => import("vue").DefineComponent<{
3
3
  type: import("vue").PropType<string>;
4
4
  default: string;
5
5
  };
6
+ variant: {
7
+ type: import("vue").PropType<"default" | "primary">;
8
+ required: true;
9
+ default: string;
10
+ };
6
11
  modelValue: {
7
12
  type: import("vue").PropType<unknown>;
8
13
  required: true;
@@ -22,6 +27,11 @@ declare const SwitchTypes: () => import("vue").DefineComponent<{
22
27
  type: import("vue").PropType<string>;
23
28
  default: string;
24
29
  };
30
+ variant: {
31
+ type: import("vue").PropType<"default" | "primary">;
32
+ required: true;
33
+ default: string;
34
+ };
25
35
  modelValue: {
26
36
  type: import("vue").PropType<unknown>;
27
37
  required: true;
@@ -38,6 +48,7 @@ declare const SwitchTypes: () => import("vue").DefineComponent<{
38
48
  "onUpdate:modelValue"?: (...args: any[]) => any;
39
49
  }, {
40
50
  testId: string;
51
+ variant: "default" | "primary";
41
52
  iconKey: string;
42
53
  }>[];
43
54
  export { default as Switch } from './SwitchV4.vue';
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;
@@ -16373,6 +16373,8 @@ declare const _default: {
16373
16373
  autoSize: boolean;
16374
16374
  disableKeyboardEvents: boolean;
16375
16375
  dynamicFilterMode: boolean;
16376
+ minSelections: number;
16377
+ maxSelections: number;
16376
16378
  isOnTop: boolean;
16377
16379
  triggerLabel: string;
16378
16380
  triggerHelperText: string;
@@ -16380,6 +16382,7 @@ declare const _default: {
16380
16382
  triggerFeedbackVariant: "success" | "warning" | "error";
16381
16383
  triggerFeedbackShowIcon: boolean;
16382
16384
  triggerShowAllSelectedText: boolean;
16385
+ triggerShownValuesCount: number;
16383
16386
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
16384
16387
  inlineSearch: boolean;
16385
16388
  inlineSearchPlaceholder: string;
@@ -16514,6 +16517,14 @@ declare const _default: {
16514
16517
  type: import("vue").PropType<boolean>;
16515
16518
  default: boolean;
16516
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
+ };
16517
16528
  isOnTop: {
16518
16529
  type: import("vue").PropType<boolean>;
16519
16530
  default: boolean;
@@ -16542,6 +16553,10 @@ declare const _default: {
16542
16553
  type: import("vue").PropType<boolean>;
16543
16554
  default: boolean;
16544
16555
  };
16556
+ triggerShownValuesCount: {
16557
+ type: import("vue").PropType<number>;
16558
+ default: number;
16559
+ };
16545
16560
  predefinedTrigger: {
16546
16561
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
16547
16562
  default: "default" | "icon-button" | "chip" | "app";
@@ -16671,7 +16686,7 @@ declare const _default: {
16671
16686
  onUnsavedSelectionUpdate?: (value: unknown[]) => any;
16672
16687
  onOpened?: () => any;
16673
16688
  onClosed?: () => any;
16674
- } & 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">;
16675
16690
  $attrs: {
16676
16691
  [x: string]: unknown;
16677
16692
  };
@@ -16791,6 +16806,14 @@ declare const _default: {
16791
16806
  type: import("vue").PropType<boolean>;
16792
16807
  default: boolean;
16793
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
+ };
16794
16817
  isOnTop: {
16795
16818
  type: import("vue").PropType<boolean>;
16796
16819
  default: boolean;
@@ -16819,6 +16842,10 @@ declare const _default: {
16819
16842
  type: import("vue").PropType<boolean>;
16820
16843
  default: boolean;
16821
16844
  };
16845
+ triggerShownValuesCount: {
16846
+ type: import("vue").PropType<number>;
16847
+ default: number;
16848
+ };
16822
16849
  predefinedTrigger: {
16823
16850
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
16824
16851
  default: "default" | "icon-button" | "chip" | "app";
@@ -16988,6 +17015,8 @@ declare const _default: {
16988
17015
  autoSize: boolean;
16989
17016
  disableKeyboardEvents: boolean;
16990
17017
  dynamicFilterMode: boolean;
17018
+ minSelections: number;
17019
+ maxSelections: number;
16991
17020
  isOnTop: boolean;
16992
17021
  triggerLabel: string;
16993
17022
  triggerHelperText: string;
@@ -16995,6 +17024,7 @@ declare const _default: {
16995
17024
  triggerFeedbackVariant: "success" | "warning" | "error";
16996
17025
  triggerFeedbackShowIcon: boolean;
16997
17026
  triggerShowAllSelectedText: boolean;
17027
+ triggerShownValuesCount: number;
16998
17028
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
16999
17029
  inlineSearch: boolean;
17000
17030
  inlineSearchPlaceholder: string;
@@ -17149,6 +17179,14 @@ declare const _default: {
17149
17179
  type: import("vue").PropType<boolean>;
17150
17180
  default: boolean;
17151
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
+ };
17152
17190
  isOnTop: {
17153
17191
  type: import("vue").PropType<boolean>;
17154
17192
  default: boolean;
@@ -17177,6 +17215,10 @@ declare const _default: {
17177
17215
  type: import("vue").PropType<boolean>;
17178
17216
  default: boolean;
17179
17217
  };
17218
+ triggerShownValuesCount: {
17219
+ type: import("vue").PropType<number>;
17220
+ default: number;
17221
+ };
17180
17222
  predefinedTrigger: {
17181
17223
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
17182
17224
  default: "default" | "icon-button" | "chip" | "app";
@@ -17419,6 +17461,14 @@ declare const _default: {
17419
17461
  type: import("vue").PropType<boolean>;
17420
17462
  default: boolean;
17421
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
+ };
17422
17472
  isOnTop: {
17423
17473
  type: import("vue").PropType<boolean>;
17424
17474
  default: boolean;
@@ -17447,6 +17497,10 @@ declare const _default: {
17447
17497
  type: import("vue").PropType<boolean>;
17448
17498
  default: boolean;
17449
17499
  };
17500
+ triggerShownValuesCount: {
17501
+ type: import("vue").PropType<number>;
17502
+ default: number;
17503
+ };
17450
17504
  predefinedTrigger: {
17451
17505
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
17452
17506
  default: "default" | "icon-button" | "chip" | "app";
@@ -17616,6 +17670,8 @@ declare const _default: {
17616
17670
  autoSize: boolean;
17617
17671
  disableKeyboardEvents: boolean;
17618
17672
  dynamicFilterMode: boolean;
17673
+ minSelections: number;
17674
+ maxSelections: number;
17619
17675
  isOnTop: boolean;
17620
17676
  triggerLabel: string;
17621
17677
  triggerHelperText: string;
@@ -17623,6 +17679,7 @@ declare const _default: {
17623
17679
  triggerFeedbackVariant: "success" | "warning" | "error";
17624
17680
  triggerFeedbackShowIcon: boolean;
17625
17681
  triggerShowAllSelectedText: boolean;
17682
+ triggerShownValuesCount: number;
17626
17683
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
17627
17684
  inlineSearch: boolean;
17628
17685
  inlineSearchPlaceholder: string;
@@ -18386,6 +18443,10 @@ declare const _default: {
18386
18443
  type: import("vue").PropType<boolean>;
18387
18444
  default: boolean;
18388
18445
  };
18446
+ shownValuesCount: {
18447
+ type: import("vue").PropType<number>;
18448
+ default: number;
18449
+ };
18389
18450
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18390
18451
  clear: () => void;
18391
18452
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -18444,6 +18505,10 @@ declare const _default: {
18444
18505
  type: import("vue").PropType<boolean>;
18445
18506
  default: boolean;
18446
18507
  };
18508
+ shownValuesCount: {
18509
+ type: import("vue").PropType<number>;
18510
+ default: number;
18511
+ };
18447
18512
  }>> & {
18448
18513
  onClear?: () => any;
18449
18514
  }, {
@@ -18456,6 +18521,7 @@ declare const _default: {
18456
18521
  displayedValue: any;
18457
18522
  cancelAllSelectedDisplay: boolean;
18458
18523
  displayValueInQuotes: boolean;
18524
+ shownValuesCount: number;
18459
18525
  }>;
18460
18526
  ButtonDropdownTrigger: {
18461
18527
  new (...args: any[]): {
@@ -20976,6 +21042,10 @@ declare const _default: {
20976
21042
  type: import("vue").PropType<boolean>;
20977
21043
  default: boolean;
20978
21044
  };
21045
+ shownValuesCount: {
21046
+ type: import("vue").PropType<number>;
21047
+ default: number;
21048
+ };
20979
21049
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20980
21050
  clear: () => void;
20981
21051
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -21034,6 +21104,10 @@ declare const _default: {
21034
21104
  type: import("vue").PropType<boolean>;
21035
21105
  default: boolean;
21036
21106
  };
21107
+ shownValuesCount: {
21108
+ type: import("vue").PropType<number>;
21109
+ default: number;
21110
+ };
21037
21111
  }>> & {
21038
21112
  onClear?: () => any;
21039
21113
  }, {
@@ -21046,6 +21120,7 @@ declare const _default: {
21046
21120
  displayedValue: any;
21047
21121
  cancelAllSelectedDisplay: boolean;
21048
21122
  displayValueInQuotes: boolean;
21123
+ shownValuesCount: number;
21049
21124
  }> | ({
21050
21125
  new (...args: any[]): {
21051
21126
  $: import("vue").ComponentInternalInstance;
@@ -21074,6 +21149,8 @@ declare const _default: {
21074
21149
  autoSize: boolean;
21075
21150
  disableKeyboardEvents: boolean;
21076
21151
  dynamicFilterMode: boolean;
21152
+ minSelections: number;
21153
+ maxSelections: number;
21077
21154
  isOnTop: boolean;
21078
21155
  triggerLabel: string;
21079
21156
  triggerHelperText: string;
@@ -21081,6 +21158,7 @@ declare const _default: {
21081
21158
  triggerFeedbackVariant: "success" | "warning" | "error";
21082
21159
  triggerFeedbackShowIcon: boolean;
21083
21160
  triggerShowAllSelectedText: boolean;
21161
+ triggerShownValuesCount: number;
21084
21162
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
21085
21163
  inlineSearch: boolean;
21086
21164
  inlineSearchPlaceholder: string;
@@ -21215,6 +21293,14 @@ declare const _default: {
21215
21293
  type: import("vue").PropType<boolean>;
21216
21294
  default: boolean;
21217
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
+ };
21218
21304
  isOnTop: {
21219
21305
  type: import("vue").PropType<boolean>;
21220
21306
  default: boolean;
@@ -21243,6 +21329,10 @@ declare const _default: {
21243
21329
  type: import("vue").PropType<boolean>;
21244
21330
  default: boolean;
21245
21331
  };
21332
+ triggerShownValuesCount: {
21333
+ type: import("vue").PropType<number>;
21334
+ default: number;
21335
+ };
21246
21336
  predefinedTrigger: {
21247
21337
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
21248
21338
  default: "default" | "icon-button" | "chip" | "app";
@@ -21372,7 +21462,7 @@ declare const _default: {
21372
21462
  onUnsavedSelectionUpdate?: (value: unknown[]) => any;
21373
21463
  onOpened?: () => any;
21374
21464
  onClosed?: () => any;
21375
- } & 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">;
21376
21466
  $attrs: {
21377
21467
  [x: string]: unknown;
21378
21468
  };
@@ -21492,6 +21582,14 @@ declare const _default: {
21492
21582
  type: import("vue").PropType<boolean>;
21493
21583
  default: boolean;
21494
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
+ };
21495
21593
  isOnTop: {
21496
21594
  type: import("vue").PropType<boolean>;
21497
21595
  default: boolean;
@@ -21520,6 +21618,10 @@ declare const _default: {
21520
21618
  type: import("vue").PropType<boolean>;
21521
21619
  default: boolean;
21522
21620
  };
21621
+ triggerShownValuesCount: {
21622
+ type: import("vue").PropType<number>;
21623
+ default: number;
21624
+ };
21523
21625
  predefinedTrigger: {
21524
21626
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
21525
21627
  default: "default" | "icon-button" | "chip" | "app";
@@ -21689,6 +21791,8 @@ declare const _default: {
21689
21791
  autoSize: boolean;
21690
21792
  disableKeyboardEvents: boolean;
21691
21793
  dynamicFilterMode: boolean;
21794
+ minSelections: number;
21795
+ maxSelections: number;
21692
21796
  isOnTop: boolean;
21693
21797
  triggerLabel: string;
21694
21798
  triggerHelperText: string;
@@ -21696,6 +21800,7 @@ declare const _default: {
21696
21800
  triggerFeedbackVariant: "success" | "warning" | "error";
21697
21801
  triggerFeedbackShowIcon: boolean;
21698
21802
  triggerShowAllSelectedText: boolean;
21803
+ triggerShownValuesCount: number;
21699
21804
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
21700
21805
  inlineSearch: boolean;
21701
21806
  inlineSearchPlaceholder: string;
@@ -21850,6 +21955,14 @@ declare const _default: {
21850
21955
  type: import("vue").PropType<boolean>;
21851
21956
  default: boolean;
21852
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
+ };
21853
21966
  isOnTop: {
21854
21967
  type: import("vue").PropType<boolean>;
21855
21968
  default: boolean;
@@ -21878,6 +21991,10 @@ declare const _default: {
21878
21991
  type: import("vue").PropType<boolean>;
21879
21992
  default: boolean;
21880
21993
  };
21994
+ triggerShownValuesCount: {
21995
+ type: import("vue").PropType<number>;
21996
+ default: number;
21997
+ };
21881
21998
  predefinedTrigger: {
21882
21999
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
21883
22000
  default: "default" | "icon-button" | "chip" | "app";
@@ -22120,6 +22237,14 @@ declare const _default: {
22120
22237
  type: import("vue").PropType<boolean>;
22121
22238
  default: boolean;
22122
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
+ };
22123
22248
  isOnTop: {
22124
22249
  type: import("vue").PropType<boolean>;
22125
22250
  default: boolean;
@@ -22148,6 +22273,10 @@ declare const _default: {
22148
22273
  type: import("vue").PropType<boolean>;
22149
22274
  default: boolean;
22150
22275
  };
22276
+ triggerShownValuesCount: {
22277
+ type: import("vue").PropType<number>;
22278
+ default: number;
22279
+ };
22151
22280
  predefinedTrigger: {
22152
22281
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
22153
22282
  default: "default" | "icon-button" | "chip" | "app";
@@ -22317,6 +22446,8 @@ declare const _default: {
22317
22446
  autoSize: boolean;
22318
22447
  disableKeyboardEvents: boolean;
22319
22448
  dynamicFilterMode: boolean;
22449
+ minSelections: number;
22450
+ maxSelections: number;
22320
22451
  isOnTop: boolean;
22321
22452
  triggerLabel: string;
22322
22453
  triggerHelperText: string;
@@ -22324,6 +22455,7 @@ declare const _default: {
22324
22455
  triggerFeedbackVariant: "success" | "warning" | "error";
22325
22456
  triggerFeedbackShowIcon: boolean;
22326
22457
  triggerShowAllSelectedText: boolean;
22458
+ triggerShownValuesCount: number;
22327
22459
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
22328
22460
  inlineSearch: boolean;
22329
22461
  inlineSearchPlaceholder: string;
@@ -22955,6 +23087,10 @@ declare const _default: {
22955
23087
  type: import("vue").PropType<boolean>;
22956
23088
  default: boolean;
22957
23089
  };
23090
+ triggerShownValuesCount: {
23091
+ type: import("vue").PropType<number>;
23092
+ default: number;
23093
+ };
22958
23094
  optionNameKey: {
22959
23095
  type: import("vue").PropType<string>;
22960
23096
  required: true;
@@ -23060,6 +23196,10 @@ declare const _default: {
23060
23196
  type: import("vue").PropType<boolean>;
23061
23197
  default: boolean;
23062
23198
  };
23199
+ triggerShownValuesCount: {
23200
+ type: import("vue").PropType<number>;
23201
+ default: number;
23202
+ };
23063
23203
  optionNameKey: {
23064
23204
  type: import("vue").PropType<string>;
23065
23205
  required: true;
@@ -23152,6 +23292,7 @@ declare const _default: {
23152
23292
  testId: string;
23153
23293
  isOpen: boolean;
23154
23294
  infiniteLoading: boolean;
23295
+ triggerShownValuesCount: number;
23155
23296
  optionNameKey: string;
23156
23297
  optionIconKey: string;
23157
23298
  optionImageKey: string;
@@ -24155,6 +24296,10 @@ declare const _default: {
24155
24296
  type: import("vue").PropType<boolean>;
24156
24297
  default: boolean;
24157
24298
  };
24299
+ triggerShownValuesCount: {
24300
+ type: import("vue").PropType<number>;
24301
+ default: number;
24302
+ };
24158
24303
  optionNameKey: {
24159
24304
  type: import("vue").PropType<string>;
24160
24305
  required: true;
@@ -24260,6 +24405,10 @@ declare const _default: {
24260
24405
  type: import("vue").PropType<boolean>;
24261
24406
  default: boolean;
24262
24407
  };
24408
+ triggerShownValuesCount: {
24409
+ type: import("vue").PropType<number>;
24410
+ default: number;
24411
+ };
24263
24412
  optionNameKey: {
24264
24413
  type: import("vue").PropType<string>;
24265
24414
  required: true;
@@ -24352,6 +24501,7 @@ declare const _default: {
24352
24501
  testId: string;
24353
24502
  isOpen: boolean;
24354
24503
  infiniteLoading: boolean;
24504
+ triggerShownValuesCount: number;
24355
24505
  optionNameKey: string;
24356
24506
  optionIconKey: string;
24357
24507
  optionImageKey: string;
@@ -25723,6 +25873,11 @@ declare const _default: {
25723
25873
  type: import("vue").PropType<string>;
25724
25874
  default: string;
25725
25875
  };
25876
+ variant: {
25877
+ type: import("vue").PropType<"default" | "primary">;
25878
+ required: true;
25879
+ default: string;
25880
+ };
25726
25881
  modelValue: {
25727
25882
  type: import("vue").PropType<unknown>;
25728
25883
  required: true;
@@ -25742,6 +25897,11 @@ declare const _default: {
25742
25897
  type: import("vue").PropType<string>;
25743
25898
  default: string;
25744
25899
  };
25900
+ variant: {
25901
+ type: import("vue").PropType<"default" | "primary">;
25902
+ required: true;
25903
+ default: string;
25904
+ };
25745
25905
  modelValue: {
25746
25906
  type: import("vue").PropType<unknown>;
25747
25907
  required: true;
@@ -25758,6 +25918,7 @@ declare const _default: {
25758
25918
  "onUpdate:modelValue"?: (...args: any[]) => any;
25759
25919
  }, {
25760
25920
  testId: string;
25921
+ variant: "default" | "primary";
25761
25922
  iconKey: string;
25762
25923
  }>;
25763
25924
  SwitchTypes: () => import("vue").DefineComponent<{
@@ -25765,6 +25926,11 @@ declare const _default: {
25765
25926
  type: import("vue").PropType<string>;
25766
25927
  default: string;
25767
25928
  };
25929
+ variant: {
25930
+ type: import("vue").PropType<"default" | "primary">;
25931
+ required: true;
25932
+ default: string;
25933
+ };
25768
25934
  modelValue: {
25769
25935
  type: import("vue").PropType<unknown>;
25770
25936
  required: true;
@@ -25784,6 +25950,11 @@ declare const _default: {
25784
25950
  type: import("vue").PropType<string>;
25785
25951
  default: string;
25786
25952
  };
25953
+ variant: {
25954
+ type: import("vue").PropType<"default" | "primary">;
25955
+ required: true;
25956
+ default: string;
25957
+ };
25787
25958
  modelValue: {
25788
25959
  type: import("vue").PropType<unknown>;
25789
25960
  required: true;
@@ -25800,6 +25971,7 @@ declare const _default: {
25800
25971
  "onUpdate:modelValue"?: (...args: any[]) => any;
25801
25972
  }, {
25802
25973
  testId: string;
25974
+ variant: "default" | "primary";
25803
25975
  iconKey: string;
25804
25976
  }>[];
25805
25977
  Chip: {
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import './IncludeExclude.vue_vue_type_style_index_0_scoped_cc2adbf5_lang.css';
1
+ import './Heading.vue_vue_type_style_index_0_scoped_19878c4b_lang.css';
2
2
  import { AppTriggerTypes as eo } from "./components/appTrigger/index.js";
3
3
  import { AutocompleteDropdownTypes as mo } from "./components/autocompleteDropdown/index.js";
4
4
  import { MenuItemTypes as ao } from "./components/menuItem/index.js";