@ironsource/shared-ui 2.1.6-test.13 → 2.1.6-test.15

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 (112) hide show
  1. package/Alert.vue_vue_type_style_index_0_scoped_06e0871a_lang.css +1 -0
  2. package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_858cefbf_lang.css +1 -0
  3. package/ChipV4.vue_vue_type_style_index_0_scoped_12c0f396_lang.css +1 -0
  4. package/DataGrid.vue_vue_type_style_index_0_scoped_057abdf5_lang.css +1 -0
  5. package/DateRangeV4.vue_vue_type_style_index_0_scoped_f81413ec_lang.css +1 -0
  6. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_0345d6b1_lang.css +1 -0
  7. package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +1 -0
  8. package/FoldableSection.vue_vue_type_style_index_0_scoped_1a5f0e2e_lang.css +1 -0
  9. package/HelpIcon.vue_vue_type_style_index_0_scoped_06fce2e3_lang.css +1 -0
  10. package/IconV4.vue_vue_type_style_index_0_scoped_9d3c9cda_lang.css +1 -0
  11. package/InlineCopy.vue_vue_type_style_index_0_scoped_893a203c_lang.css +1 -0
  12. package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +1 -0
  13. package/README.md +35 -0
  14. package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +1 -0
  15. package/ToggleV4.vue_vue_type_style_index_0_scoped_a4aa32fb_lang.css +1 -0
  16. package/TreeDropdown.vue_vue_type_style_index_0_scoped_142eab98_lang.css +1 -0
  17. package/components/alert/Alert.vue.d.ts +28 -0
  18. package/components/alert/Alert.vue.js +4 -4
  19. package/components/alert/Alert.vue2.js +67 -46
  20. package/components/alert/index.d.ts +104 -2
  21. package/components/autocomplete/Autocomplete.vue.d.ts +1 -0
  22. package/components/autocomplete/Autocomplete.vue2.js +6 -5
  23. package/components/autocomplete/index.d.ts +1 -0
  24. package/components/button/v4/ButtonV4.vue.d.ts +7 -7
  25. package/components/button/v4/IconButtonV4.vue.d.ts +4 -4
  26. package/components/button/v4/index.d.ts +61 -61
  27. package/components/chip/v4/Chip.types.d.ts +6 -0
  28. package/components/chip/v4/ChipV4.vue.d.ts +28 -35
  29. package/components/chip/v4/ChipV4.vue.js +3 -3
  30. package/components/chip/v4/ChipV4.vue2.js +28 -59
  31. package/components/chip/v4/index.d.ts +45 -148
  32. package/components/datePicker/common/DatePicker.common.js +14 -14
  33. package/components/datePicker/v4/DatePickerV4.vue2.js +3 -2
  34. package/components/dateRange/v4/DateRangeV4.vue.js +3 -3
  35. package/components/dateRange/v4/DateRangeV4.vue2.js +4 -3
  36. package/components/dialog/v3/Dialog.vue.d.ts +1 -1
  37. package/components/dialog/v3/index.d.ts +20 -20
  38. package/components/dropdown/common/Dropdown.common.js +80 -75
  39. package/components/dropdown/common/Option.common.d.ts +1 -1
  40. package/components/dropdown/common/Option.common.js +9 -9
  41. package/components/dropdown/composables/useChildOptions.d.ts +7 -0
  42. package/components/dropdown/composables/useChildOptions.js +14 -0
  43. package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +14 -3
  44. package/components/dropdown/v4/AppDropdownTrigger.vue.js +3 -3
  45. package/components/dropdown/v4/AppDropdownTrigger.vue2.js +102 -61
  46. package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +8 -3
  47. package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
  48. package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +22 -21
  49. package/components/dropdown/v4/DropdownV4.vue.d.ts +22 -6
  50. package/components/dropdown/v4/DropdownV4.vue.js +2 -2
  51. package/components/dropdown/v4/DropdownV4.vue2.js +81 -73
  52. package/components/dropdown/v4/OptionV4.vue.d.ts +6 -6
  53. package/components/dropdown/v4/OptionV4.vue.js +3 -3
  54. package/components/dropdown/v4/OptionV4.vue2.js +51 -45
  55. package/components/dropdown/v4/TreeDropdown.vue.d.ts +112 -0
  56. package/components/dropdown/v4/TreeDropdown.vue.js +7 -0
  57. package/components/dropdown/v4/TreeDropdown.vue2.js +122 -0
  58. package/components/dropdown/v4/dropdownStoryArgs.d.ts +1 -1
  59. package/components/dropdown/v4/index.d.ts +332 -49
  60. package/components/dropdown/v4/index.js +7 -4
  61. package/components/emptyState/v3/EmptyState.vue.d.ts +2 -2
  62. package/components/emptyState/v3/index.d.ts +47 -47
  63. package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
  64. package/components/emptyState/v4/index.d.ts +7 -7
  65. package/components/icon/v4/Icon.types.d.ts +1 -1
  66. package/components/icon/v4/IconV4.vue.d.ts +16 -6
  67. package/components/icon/v4/IconV4.vue.js +4 -4
  68. package/components/icon/v4/IconV4.vue2.js +36 -33
  69. package/components/icon/v4/index.d.ts +53 -15
  70. package/components/inlineCopy/InlineCopy.vue.js +2 -2
  71. package/components/inlineCopy/InlineCopy.vue2.js +1 -1
  72. package/components/layout/FoldableSection.vue.js +5 -5
  73. package/components/layout/FoldableSection.vue2.js +1 -1
  74. package/components/multibar/MultiBarMenu.vue2.js +12 -11
  75. package/components/snackbar/v4/SnackbarV4.vue.d.ts +20 -20
  76. package/components/table/common/Table.common.d.ts +1 -0
  77. package/components/table/common/Table.common.js +65 -61
  78. package/components/table/v4/DataGrid.vue.d.ts +5 -1
  79. package/components/table/v4/DataGrid.vue.js +3 -3
  80. package/components/table/v4/DataGrid.vue2.js +166 -162
  81. package/components/table/v4/DataGridMenu.vue2.js +3 -2
  82. package/components/table/v4/HelpIcon.vue.js +5 -5
  83. package/components/table/v4/HelpIcon.vue2.js +5 -5
  84. package/components/table/v4/index.d.ts +16 -4
  85. package/components/textArea/v4/TextAreaV4.vue.js +3 -3
  86. package/components/textArea/v4/TextAreaV4.vue2.js +1 -1
  87. package/components/toggle/v4/ToggleV4.vue.d.ts +1 -1
  88. package/components/toggle/v4/ToggleV4.vue.js +3 -3
  89. package/components/toggle/v4/ToggleV4.vue2.js +12 -12
  90. package/components/toggle/v4/index.d.ts +20 -20
  91. package/composables/useFormValidation.js +19 -13
  92. package/design-foundation.stories/icons/iconsData.d.ts +5 -1
  93. package/index.d.ts +1091 -632
  94. package/mocks/apps.d.ts +1 -0
  95. package/mocks/options.d.ts +12 -0
  96. package/package.json +1 -1
  97. package/utils/text.d.ts +1 -0
  98. package/utils/text.js +9 -0
  99. package/Alert.vue_vue_type_style_index_0_scoped_d6680a72_lang.css +0 -1
  100. package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_39c47ad1_lang.css +0 -1
  101. package/ChipV4.vue_vue_type_style_index_0_scoped_78d7c9c0_lang.css +0 -1
  102. package/DataGrid.vue_vue_type_style_index_0_scoped_6df3b70f_lang.css +0 -1
  103. package/DateRangeV4.vue_vue_type_style_index_0_scoped_1cc45a5d_lang.css +0 -1
  104. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_ad524750_lang.css +0 -1
  105. package/DropdownV4.vue_vue_type_style_index_0_scoped_0363db63_lang.css +0 -1
  106. package/FoldableSection.vue_vue_type_style_index_0_scoped_8d0fd203_lang.css +0 -1
  107. package/HelpIcon.vue_vue_type_style_index_0_scoped_7a611779_lang.css +0 -1
  108. package/IconV4.vue_vue_type_style_index_0_scoped_a78f8a3e_lang.css +0 -1
  109. package/InlineCopy.vue_vue_type_style_index_0_scoped_6a7b3795_lang.css +0 -1
  110. package/OptionV4.vue_vue_type_style_index_0_scoped_e0c24b6a_lang.css +0 -1
  111. package/TextAreaV4.vue_vue_type_style_index_0_scoped_8199b662_lang.css +0 -1
  112. package/ToggleV4.vue_vue_type_style_index_0_scoped_ad231e8c_lang.css +0 -1
package/index.d.ts CHANGED
@@ -3151,7 +3151,7 @@ declare const _default: {
3151
3151
  iconName: string;
3152
3152
  iconSize: string;
3153
3153
  subtitle: string;
3154
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
3154
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
3155
3155
  buttonText: string;
3156
3156
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
3157
3157
  title: {
@@ -3175,7 +3175,7 @@ declare const _default: {
3175
3175
  default: any;
3176
3176
  };
3177
3177
  iconType: {
3178
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
3178
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
3179
3179
  default: string;
3180
3180
  };
3181
3181
  buttonText: {
@@ -3220,7 +3220,7 @@ declare const _default: {
3220
3220
  default: any;
3221
3221
  };
3222
3222
  iconType: {
3223
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
3223
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
3224
3224
  default: string;
3225
3225
  };
3226
3226
  buttonText: {
@@ -3237,7 +3237,7 @@ declare const _default: {
3237
3237
  iconName: string;
3238
3238
  iconSize: string;
3239
3239
  subtitle: string;
3240
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
3240
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
3241
3241
  buttonText: string;
3242
3242
  }, {}, string> & {
3243
3243
  beforeCreate?: (() => void) | (() => void)[];
@@ -3281,7 +3281,7 @@ declare const _default: {
3281
3281
  default: any;
3282
3282
  };
3283
3283
  iconType: {
3284
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
3284
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
3285
3285
  default: string;
3286
3286
  };
3287
3287
  buttonText: {
@@ -3316,7 +3316,7 @@ declare const _default: {
3316
3316
  default: any;
3317
3317
  };
3318
3318
  iconType: {
3319
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
3319
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
3320
3320
  default: string;
3321
3321
  };
3322
3322
  buttonText: {
@@ -3333,7 +3333,7 @@ declare const _default: {
3333
3333
  iconName: string;
3334
3334
  iconSize: string;
3335
3335
  subtitle: string;
3336
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
3336
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
3337
3337
  buttonText: string;
3338
3338
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3339
3339
  $slots: {
@@ -3351,7 +3351,7 @@ declare const _default: {
3351
3351
  iconName: string;
3352
3352
  iconSize: string;
3353
3353
  subtitle: string;
3354
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
3354
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
3355
3355
  buttonText: string;
3356
3356
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
3357
3357
  title: {
@@ -3375,7 +3375,7 @@ declare const _default: {
3375
3375
  default: any;
3376
3376
  };
3377
3377
  iconType: {
3378
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
3378
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
3379
3379
  default: string;
3380
3380
  };
3381
3381
  buttonText: {
@@ -3420,7 +3420,7 @@ declare const _default: {
3420
3420
  default: any;
3421
3421
  };
3422
3422
  iconType: {
3423
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
3423
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
3424
3424
  default: string;
3425
3425
  };
3426
3426
  buttonText: {
@@ -3437,7 +3437,7 @@ declare const _default: {
3437
3437
  iconName: string;
3438
3438
  iconSize: string;
3439
3439
  subtitle: string;
3440
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
3440
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
3441
3441
  buttonText: string;
3442
3442
  }, {}, string> & {
3443
3443
  beforeCreate?: (() => void) | (() => void)[];
@@ -3481,7 +3481,7 @@ declare const _default: {
3481
3481
  default: any;
3482
3482
  };
3483
3483
  iconType: {
3484
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
3484
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
3485
3485
  default: string;
3486
3486
  };
3487
3487
  buttonText: {
@@ -3516,7 +3516,7 @@ declare const _default: {
3516
3516
  default: any;
3517
3517
  };
3518
3518
  iconType: {
3519
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
3519
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
3520
3520
  default: string;
3521
3521
  };
3522
3522
  buttonText: {
@@ -3533,7 +3533,7 @@ declare const _default: {
3533
3533
  iconName: string;
3534
3534
  iconSize: string;
3535
3535
  subtitle: string;
3536
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
3536
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
3537
3537
  buttonText: string;
3538
3538
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3539
3539
  $slots: {
@@ -4059,6 +4059,7 @@ declare const _default: {
4059
4059
  "onUpdate:selection"?: (selection: unknown[]) => any;
4060
4060
  onOnClearSearch?: () => any;
4061
4061
  onSelectRow?: (value: boolean) => any;
4062
+ onClickRow?: (rowIndex: number) => any;
4062
4063
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "showSearch" | "zIndexBase">;
4063
4064
  $attrs: {
4064
4065
  [x: string]: unknown;
@@ -4076,7 +4077,7 @@ declare const _default: {
4076
4077
  confirm: () => void;
4077
4078
  rowIndex: number;
4078
4079
  cellIndex: number;
4079
- }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "onClearSearch") => void) & ((event: "selectRow", value: boolean) => void);
4080
+ }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "onClearSearch") => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
4080
4081
  $el: any;
4081
4082
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4082
4083
  sort: {
@@ -4194,7 +4195,10 @@ declare const _default: {
4194
4195
  "onUpdate:selection"?: (selection: unknown[]) => any;
4195
4196
  onOnClearSearch?: () => any;
4196
4197
  onSelectRow?: (value: boolean) => any;
4197
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4198
+ onClickRow?: (rowIndex: number) => any;
4199
+ }, {
4200
+ scrollTo: (index: number) => void;
4201
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4198
4202
  "update:sort": (newSort: tableV3.Sort) => void;
4199
4203
  "update:search": (query: string) => void;
4200
4204
  "update:selection": (selection: unknown[]) => void;
@@ -4209,6 +4213,7 @@ declare const _default: {
4209
4213
  loadMore: () => void;
4210
4214
  selectAll: (value: boolean) => void;
4211
4215
  selectRow: (value: boolean) => void;
4216
+ clickRow: (rowIndex: number) => void;
4212
4217
  }, string, {
4213
4218
  sort: tableV3.Sort;
4214
4219
  title: string;
@@ -4369,7 +4374,10 @@ declare const _default: {
4369
4374
  "onUpdate:selection"?: (selection: unknown[]) => any;
4370
4375
  onOnClearSearch?: () => any;
4371
4376
  onSelectRow?: (value: boolean) => any;
4372
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
4377
+ onClickRow?: (rowIndex: number) => any;
4378
+ } & import("vue").ShallowUnwrapRef<{
4379
+ scrollTo: (index: number) => void;
4380
+ }> & {} & import("vue").ComponentCustomProperties & {};
4373
4381
  __isFragment?: never;
4374
4382
  __isTeleport?: never;
4375
4383
  __isSuspense?: never;
@@ -4489,7 +4497,10 @@ declare const _default: {
4489
4497
  "onUpdate:selection"?: (selection: unknown[]) => any;
4490
4498
  onOnClearSearch?: () => any;
4491
4499
  onSelectRow?: (value: boolean) => any;
4492
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4500
+ onClickRow?: (rowIndex: number) => any;
4501
+ }, {
4502
+ scrollTo: (index: number) => void;
4503
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4493
4504
  "update:sort": (newSort: tableV3.Sort) => void;
4494
4505
  "update:search": (query: string) => void;
4495
4506
  "update:selection": (selection: unknown[]) => void;
@@ -4504,6 +4515,7 @@ declare const _default: {
4504
4515
  loadMore: () => void;
4505
4516
  selectAll: (value: boolean) => void;
4506
4517
  selectRow: (value: boolean) => void;
4518
+ clickRow: (rowIndex: number) => void;
4507
4519
  }, string, {
4508
4520
  sort: tableV3.Sort;
4509
4521
  title: string;
@@ -4772,6 +4784,7 @@ declare const _default: {
4772
4784
  "onUpdate:selection"?: (selection: unknown[]) => any;
4773
4785
  onOnClearSearch?: () => any;
4774
4786
  onSelectRow?: (value: boolean) => any;
4787
+ onClickRow?: (rowIndex: number) => any;
4775
4788
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "showSearch" | "zIndexBase">;
4776
4789
  $attrs: {
4777
4790
  [x: string]: unknown;
@@ -4789,7 +4802,7 @@ declare const _default: {
4789
4802
  confirm: () => void;
4790
4803
  rowIndex: number;
4791
4804
  cellIndex: number;
4792
- }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "onClearSearch") => void) & ((event: "selectRow", value: boolean) => void);
4805
+ }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "onClearSearch") => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
4793
4806
  $el: any;
4794
4807
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4795
4808
  sort: {
@@ -4907,7 +4920,10 @@ declare const _default: {
4907
4920
  "onUpdate:selection"?: (selection: unknown[]) => any;
4908
4921
  onOnClearSearch?: () => any;
4909
4922
  onSelectRow?: (value: boolean) => any;
4910
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4923
+ onClickRow?: (rowIndex: number) => any;
4924
+ }, {
4925
+ scrollTo: (index: number) => void;
4926
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4911
4927
  "update:sort": (newSort: tableV3.Sort) => void;
4912
4928
  "update:search": (query: string) => void;
4913
4929
  "update:selection": (selection: unknown[]) => void;
@@ -4922,6 +4938,7 @@ declare const _default: {
4922
4938
  loadMore: () => void;
4923
4939
  selectAll: (value: boolean) => void;
4924
4940
  selectRow: (value: boolean) => void;
4941
+ clickRow: (rowIndex: number) => void;
4925
4942
  }, string, {
4926
4943
  sort: tableV3.Sort;
4927
4944
  title: string;
@@ -5082,7 +5099,10 @@ declare const _default: {
5082
5099
  "onUpdate:selection"?: (selection: unknown[]) => any;
5083
5100
  onOnClearSearch?: () => any;
5084
5101
  onSelectRow?: (value: boolean) => any;
5085
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
5102
+ onClickRow?: (rowIndex: number) => any;
5103
+ } & import("vue").ShallowUnwrapRef<{
5104
+ scrollTo: (index: number) => void;
5105
+ }> & {} & import("vue").ComponentCustomProperties & {};
5086
5106
  __isFragment?: never;
5087
5107
  __isTeleport?: never;
5088
5108
  __isSuspense?: never;
@@ -5202,7 +5222,10 @@ declare const _default: {
5202
5222
  "onUpdate:selection"?: (selection: unknown[]) => any;
5203
5223
  onOnClearSearch?: () => any;
5204
5224
  onSelectRow?: (value: boolean) => any;
5205
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5225
+ onClickRow?: (rowIndex: number) => any;
5226
+ }, {
5227
+ scrollTo: (index: number) => void;
5228
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5206
5229
  "update:sort": (newSort: tableV3.Sort) => void;
5207
5230
  "update:search": (query: string) => void;
5208
5231
  "update:selection": (selection: unknown[]) => void;
@@ -5217,6 +5240,7 @@ declare const _default: {
5217
5240
  loadMore: () => void;
5218
5241
  selectAll: (value: boolean) => void;
5219
5242
  selectRow: (value: boolean) => void;
5243
+ clickRow: (rowIndex: number) => void;
5220
5244
  }, string, {
5221
5245
  sort: tableV3.Sort;
5222
5246
  title: string;
@@ -6199,8 +6223,8 @@ declare const _default: {
6199
6223
  $data: {};
6200
6224
  $props: Partial<{
6201
6225
  text: string;
6202
- size: "small" | "medium";
6203
6226
  color: "primary" | "test";
6227
+ size: "small" | "medium";
6204
6228
  testId: string;
6205
6229
  isLoading: boolean;
6206
6230
  hoverHelpText: string;
@@ -6215,14 +6239,14 @@ declare const _default: {
6215
6239
  type: import("vue").PropType<string>;
6216
6240
  default: any;
6217
6241
  };
6218
- size: {
6219
- type: import("vue").PropType<"small" | "medium">;
6220
- default: string;
6221
- };
6222
6242
  color: {
6223
6243
  type: import("vue").PropType<"primary" | "test">;
6224
6244
  default: string;
6225
6245
  };
6246
+ size: {
6247
+ type: import("vue").PropType<"small" | "medium">;
6248
+ default: string;
6249
+ };
6226
6250
  testId: {
6227
6251
  type: import("vue").PropType<string>;
6228
6252
  default: string;
@@ -6265,7 +6289,7 @@ declare const _default: {
6265
6289
  };
6266
6290
  }>> & {
6267
6291
  "onUpdate:modelValue"?: (value: boolean) => any;
6268
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "color" | "testId" | "isLoading" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "activeText" | "inactiveText" | "isDisabled">;
6292
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "color" | "size" | "testId" | "isLoading" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "activeText" | "inactiveText" | "isDisabled">;
6269
6293
  $attrs: {
6270
6294
  [x: string]: unknown;
6271
6295
  };
@@ -6284,14 +6308,14 @@ declare const _default: {
6284
6308
  type: import("vue").PropType<string>;
6285
6309
  default: any;
6286
6310
  };
6287
- size: {
6288
- type: import("vue").PropType<"small" | "medium">;
6289
- default: string;
6290
- };
6291
6311
  color: {
6292
6312
  type: import("vue").PropType<"primary" | "test">;
6293
6313
  default: string;
6294
6314
  };
6315
+ size: {
6316
+ type: import("vue").PropType<"small" | "medium">;
6317
+ default: string;
6318
+ };
6295
6319
  testId: {
6296
6320
  type: import("vue").PropType<string>;
6297
6321
  default: string;
@@ -6338,8 +6362,8 @@ declare const _default: {
6338
6362
  "update:modelValue": (value: boolean) => void;
6339
6363
  }, string, {
6340
6364
  text: string;
6341
- size: "small" | "medium";
6342
6365
  color: "primary" | "test";
6366
+ size: "small" | "medium";
6343
6367
  testId: string;
6344
6368
  isLoading: boolean;
6345
6369
  hoverHelpText: string;
@@ -6374,14 +6398,14 @@ declare const _default: {
6374
6398
  type: import("vue").PropType<string>;
6375
6399
  default: any;
6376
6400
  };
6377
- size: {
6378
- type: import("vue").PropType<"small" | "medium">;
6379
- default: string;
6380
- };
6381
6401
  color: {
6382
6402
  type: import("vue").PropType<"primary" | "test">;
6383
6403
  default: string;
6384
6404
  };
6405
+ size: {
6406
+ type: import("vue").PropType<"small" | "medium">;
6407
+ default: string;
6408
+ };
6385
6409
  testId: {
6386
6410
  type: import("vue").PropType<string>;
6387
6411
  default: string;
@@ -6433,14 +6457,14 @@ declare const _default: {
6433
6457
  type: import("vue").PropType<string>;
6434
6458
  default: any;
6435
6459
  };
6436
- size: {
6437
- type: import("vue").PropType<"small" | "medium">;
6438
- default: string;
6439
- };
6440
6460
  color: {
6441
6461
  type: import("vue").PropType<"primary" | "test">;
6442
6462
  default: string;
6443
6463
  };
6464
+ size: {
6465
+ type: import("vue").PropType<"small" | "medium">;
6466
+ default: string;
6467
+ };
6444
6468
  testId: {
6445
6469
  type: import("vue").PropType<string>;
6446
6470
  default: string;
@@ -6487,8 +6511,8 @@ declare const _default: {
6487
6511
  "update:modelValue": (value: boolean) => void;
6488
6512
  }, string, {
6489
6513
  text: string;
6490
- size: "small" | "medium";
6491
6514
  color: "primary" | "test";
6515
+ size: "small" | "medium";
6492
6516
  testId: string;
6493
6517
  isLoading: boolean;
6494
6518
  hoverHelpText: string;
@@ -6510,8 +6534,8 @@ declare const _default: {
6510
6534
  $data: {};
6511
6535
  $props: Partial<{
6512
6536
  text: string;
6513
- size: "small" | "medium";
6514
6537
  color: "primary" | "test";
6538
+ size: "small" | "medium";
6515
6539
  testId: string;
6516
6540
  isLoading: boolean;
6517
6541
  hoverHelpText: string;
@@ -6526,14 +6550,14 @@ declare const _default: {
6526
6550
  type: import("vue").PropType<string>;
6527
6551
  default: any;
6528
6552
  };
6529
- size: {
6530
- type: import("vue").PropType<"small" | "medium">;
6531
- default: string;
6532
- };
6533
6553
  color: {
6534
6554
  type: import("vue").PropType<"primary" | "test">;
6535
6555
  default: string;
6536
6556
  };
6557
+ size: {
6558
+ type: import("vue").PropType<"small" | "medium">;
6559
+ default: string;
6560
+ };
6537
6561
  testId: {
6538
6562
  type: import("vue").PropType<string>;
6539
6563
  default: string;
@@ -6576,7 +6600,7 @@ declare const _default: {
6576
6600
  };
6577
6601
  }>> & {
6578
6602
  "onUpdate:modelValue"?: (value: boolean) => any;
6579
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "color" | "testId" | "isLoading" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "activeText" | "inactiveText" | "isDisabled">;
6603
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "color" | "size" | "testId" | "isLoading" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "activeText" | "inactiveText" | "isDisabled">;
6580
6604
  $attrs: {
6581
6605
  [x: string]: unknown;
6582
6606
  };
@@ -6595,14 +6619,14 @@ declare const _default: {
6595
6619
  type: import("vue").PropType<string>;
6596
6620
  default: any;
6597
6621
  };
6598
- size: {
6599
- type: import("vue").PropType<"small" | "medium">;
6600
- default: string;
6601
- };
6602
6622
  color: {
6603
6623
  type: import("vue").PropType<"primary" | "test">;
6604
6624
  default: string;
6605
6625
  };
6626
+ size: {
6627
+ type: import("vue").PropType<"small" | "medium">;
6628
+ default: string;
6629
+ };
6606
6630
  testId: {
6607
6631
  type: import("vue").PropType<string>;
6608
6632
  default: string;
@@ -6649,8 +6673,8 @@ declare const _default: {
6649
6673
  "update:modelValue": (value: boolean) => void;
6650
6674
  }, string, {
6651
6675
  text: string;
6652
- size: "small" | "medium";
6653
6676
  color: "primary" | "test";
6677
+ size: "small" | "medium";
6654
6678
  testId: string;
6655
6679
  isLoading: boolean;
6656
6680
  hoverHelpText: string;
@@ -6685,14 +6709,14 @@ declare const _default: {
6685
6709
  type: import("vue").PropType<string>;
6686
6710
  default: any;
6687
6711
  };
6688
- size: {
6689
- type: import("vue").PropType<"small" | "medium">;
6690
- default: string;
6691
- };
6692
6712
  color: {
6693
6713
  type: import("vue").PropType<"primary" | "test">;
6694
6714
  default: string;
6695
6715
  };
6716
+ size: {
6717
+ type: import("vue").PropType<"small" | "medium">;
6718
+ default: string;
6719
+ };
6696
6720
  testId: {
6697
6721
  type: import("vue").PropType<string>;
6698
6722
  default: string;
@@ -6744,14 +6768,14 @@ declare const _default: {
6744
6768
  type: import("vue").PropType<string>;
6745
6769
  default: any;
6746
6770
  };
6747
- size: {
6748
- type: import("vue").PropType<"small" | "medium">;
6749
- default: string;
6750
- };
6751
6771
  color: {
6752
6772
  type: import("vue").PropType<"primary" | "test">;
6753
6773
  default: string;
6754
6774
  };
6775
+ size: {
6776
+ type: import("vue").PropType<"small" | "medium">;
6777
+ default: string;
6778
+ };
6755
6779
  testId: {
6756
6780
  type: import("vue").PropType<string>;
6757
6781
  default: string;
@@ -6798,8 +6822,8 @@ declare const _default: {
6798
6822
  "update:modelValue": (value: boolean) => void;
6799
6823
  }, string, {
6800
6824
  text: string;
6801
- size: "small" | "medium";
6802
6825
  color: "primary" | "test";
6826
+ size: "small" | "medium";
6803
6827
  testId: string;
6804
6828
  isLoading: boolean;
6805
6829
  hoverHelpText: string;
@@ -8608,27 +8632,37 @@ declare const _default: {
8608
8632
  $data: {};
8609
8633
  $props: Partial<{
8610
8634
  name: string;
8611
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
8612
- size: string;
8635
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
8613
8636
  color: string;
8637
+ size: string;
8638
+ height: string;
8639
+ width: string;
8614
8640
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
8615
8641
  name: {
8616
8642
  type: import("vue").PropType<string>;
8617
8643
  default: any;
8618
8644
  };
8619
8645
  type: {
8620
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
8646
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
8621
8647
  default: string;
8622
8648
  };
8649
+ color: {
8650
+ type: import("vue").PropType<string>;
8651
+ default: any;
8652
+ };
8623
8653
  size: {
8624
8654
  type: import("vue").PropType<string>;
8625
8655
  default: any;
8626
8656
  };
8627
- color: {
8657
+ height: {
8658
+ type: import("vue").PropType<string>;
8659
+ default: any;
8660
+ };
8661
+ width: {
8628
8662
  type: import("vue").PropType<string>;
8629
8663
  default: any;
8630
8664
  };
8631
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "size" | "color">;
8665
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "color" | "size" | "height" | "width">;
8632
8666
  $attrs: {
8633
8667
  [x: string]: unknown;
8634
8668
  };
@@ -8648,22 +8682,32 @@ declare const _default: {
8648
8682
  default: any;
8649
8683
  };
8650
8684
  type: {
8651
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
8685
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
8652
8686
  default: string;
8653
8687
  };
8688
+ color: {
8689
+ type: import("vue").PropType<string>;
8690
+ default: any;
8691
+ };
8654
8692
  size: {
8655
8693
  type: import("vue").PropType<string>;
8656
8694
  default: any;
8657
8695
  };
8658
- color: {
8696
+ height: {
8697
+ type: import("vue").PropType<string>;
8698
+ default: any;
8699
+ };
8700
+ width: {
8659
8701
  type: import("vue").PropType<string>;
8660
8702
  default: any;
8661
8703
  };
8662
8704
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
8663
8705
  name: string;
8664
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
8665
- size: string;
8706
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
8666
8707
  color: string;
8708
+ size: string;
8709
+ height: string;
8710
+ width: string;
8667
8711
  }, {}, string> & {
8668
8712
  beforeCreate?: (() => void) | (() => void)[];
8669
8713
  created?: (() => void) | (() => void)[];
@@ -8690,14 +8734,22 @@ declare const _default: {
8690
8734
  default: any;
8691
8735
  };
8692
8736
  type: {
8693
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
8737
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
8694
8738
  default: string;
8695
8739
  };
8740
+ color: {
8741
+ type: import("vue").PropType<string>;
8742
+ default: any;
8743
+ };
8696
8744
  size: {
8697
8745
  type: import("vue").PropType<string>;
8698
8746
  default: any;
8699
8747
  };
8700
- color: {
8748
+ height: {
8749
+ type: import("vue").PropType<string>;
8750
+ default: any;
8751
+ };
8752
+ width: {
8701
8753
  type: import("vue").PropType<string>;
8702
8754
  default: any;
8703
8755
  };
@@ -8711,22 +8763,32 @@ declare const _default: {
8711
8763
  default: any;
8712
8764
  };
8713
8765
  type: {
8714
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
8766
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
8715
8767
  default: string;
8716
8768
  };
8769
+ color: {
8770
+ type: import("vue").PropType<string>;
8771
+ default: any;
8772
+ };
8717
8773
  size: {
8718
8774
  type: import("vue").PropType<string>;
8719
8775
  default: any;
8720
8776
  };
8721
- color: {
8777
+ height: {
8778
+ type: import("vue").PropType<string>;
8779
+ default: any;
8780
+ };
8781
+ width: {
8722
8782
  type: import("vue").PropType<string>;
8723
8783
  default: any;
8724
8784
  };
8725
8785
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
8726
8786
  name: string;
8727
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
8728
- size: string;
8787
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
8729
8788
  color: string;
8789
+ size: string;
8790
+ height: string;
8791
+ width: string;
8730
8792
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
8731
8793
  $slots: {
8732
8794
  default?(_: {}): any;
@@ -8738,27 +8800,37 @@ declare const _default: {
8738
8800
  $data: {};
8739
8801
  $props: Partial<{
8740
8802
  name: string;
8741
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
8742
- size: string;
8803
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
8743
8804
  color: string;
8805
+ size: string;
8806
+ height: string;
8807
+ width: string;
8744
8808
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
8745
8809
  name: {
8746
8810
  type: import("vue").PropType<string>;
8747
8811
  default: any;
8748
8812
  };
8749
8813
  type: {
8750
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
8814
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
8751
8815
  default: string;
8752
8816
  };
8817
+ color: {
8818
+ type: import("vue").PropType<string>;
8819
+ default: any;
8820
+ };
8753
8821
  size: {
8754
8822
  type: import("vue").PropType<string>;
8755
8823
  default: any;
8756
8824
  };
8757
- color: {
8825
+ height: {
8826
+ type: import("vue").PropType<string>;
8827
+ default: any;
8828
+ };
8829
+ width: {
8758
8830
  type: import("vue").PropType<string>;
8759
8831
  default: any;
8760
8832
  };
8761
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "size" | "color">;
8833
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "color" | "size" | "height" | "width">;
8762
8834
  $attrs: {
8763
8835
  [x: string]: unknown;
8764
8836
  };
@@ -8778,22 +8850,32 @@ declare const _default: {
8778
8850
  default: any;
8779
8851
  };
8780
8852
  type: {
8781
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
8853
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
8782
8854
  default: string;
8783
8855
  };
8856
+ color: {
8857
+ type: import("vue").PropType<string>;
8858
+ default: any;
8859
+ };
8784
8860
  size: {
8785
8861
  type: import("vue").PropType<string>;
8786
8862
  default: any;
8787
8863
  };
8788
- color: {
8864
+ height: {
8865
+ type: import("vue").PropType<string>;
8866
+ default: any;
8867
+ };
8868
+ width: {
8789
8869
  type: import("vue").PropType<string>;
8790
8870
  default: any;
8791
8871
  };
8792
8872
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
8793
8873
  name: string;
8794
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
8795
- size: string;
8874
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
8796
8875
  color: string;
8876
+ size: string;
8877
+ height: string;
8878
+ width: string;
8797
8879
  }, {}, string> & {
8798
8880
  beforeCreate?: (() => void) | (() => void)[];
8799
8881
  created?: (() => void) | (() => void)[];
@@ -8820,14 +8902,22 @@ declare const _default: {
8820
8902
  default: any;
8821
8903
  };
8822
8904
  type: {
8823
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
8905
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
8824
8906
  default: string;
8825
8907
  };
8908
+ color: {
8909
+ type: import("vue").PropType<string>;
8910
+ default: any;
8911
+ };
8826
8912
  size: {
8827
8913
  type: import("vue").PropType<string>;
8828
8914
  default: any;
8829
8915
  };
8830
- color: {
8916
+ height: {
8917
+ type: import("vue").PropType<string>;
8918
+ default: any;
8919
+ };
8920
+ width: {
8831
8921
  type: import("vue").PropType<string>;
8832
8922
  default: any;
8833
8923
  };
@@ -8841,22 +8931,32 @@ declare const _default: {
8841
8931
  default: any;
8842
8932
  };
8843
8933
  type: {
8844
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
8934
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
8845
8935
  default: string;
8846
8936
  };
8937
+ color: {
8938
+ type: import("vue").PropType<string>;
8939
+ default: any;
8940
+ };
8847
8941
  size: {
8848
8942
  type: import("vue").PropType<string>;
8849
8943
  default: any;
8850
8944
  };
8851
- color: {
8945
+ height: {
8946
+ type: import("vue").PropType<string>;
8947
+ default: any;
8948
+ };
8949
+ width: {
8852
8950
  type: import("vue").PropType<string>;
8853
8951
  default: any;
8854
8952
  };
8855
8953
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
8856
8954
  name: string;
8857
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
8858
- size: string;
8955
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
8859
8956
  color: string;
8957
+ size: string;
8958
+ height: string;
8959
+ width: string;
8860
8960
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
8861
8961
  $slots: {
8862
8962
  default?(_: {}): any;
@@ -12880,6 +12980,7 @@ declare const _default: {
12880
12980
  triggerFeedbackText: string;
12881
12981
  triggerFeedbackVariant: "success" | "warning" | "error";
12882
12982
  triggerFeedbackShowIcon: boolean;
12983
+ triggerShowAllSelectedText: boolean;
12883
12984
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
12884
12985
  inlineSearch: boolean;
12885
12986
  inlineSearchPlaceholder: string;
@@ -12889,14 +12990,16 @@ declare const _default: {
12889
12990
  optionNameKey: string;
12890
12991
  optionIconKey: string;
12891
12992
  optionImageKey: string;
12892
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
12993
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
12893
12994
  optionEndIconKey: string;
12894
- optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
12995
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
12895
12996
  valueToCopy: string;
12896
12997
  disabledOptionKey: string;
12897
12998
  fullWidth: boolean;
12898
12999
  optionsListWidth: string;
12899
13000
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
13001
+ disableVirtualScroll: boolean;
13002
+ overrideOptionCountCalculation: (option: unknown) => number;
12900
13003
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
12901
13004
  theme: {
12902
13005
  type: import("vue").PropType<string>;
@@ -13016,6 +13119,10 @@ declare const _default: {
13016
13119
  type: import("vue").PropType<boolean>;
13017
13120
  default: boolean;
13018
13121
  };
13122
+ triggerShowAllSelectedText: {
13123
+ type: import("vue").PropType<boolean>;
13124
+ default: boolean;
13125
+ };
13019
13126
  predefinedTrigger: {
13020
13127
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
13021
13128
  default: "default" | "icon-button" | "chip" | "app";
@@ -13057,7 +13164,7 @@ declare const _default: {
13057
13164
  default: string;
13058
13165
  };
13059
13166
  optionIconType: {
13060
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13167
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13061
13168
  default: any;
13062
13169
  };
13063
13170
  optionEndIconKey: {
@@ -13065,7 +13172,7 @@ declare const _default: {
13065
13172
  default: string;
13066
13173
  };
13067
13174
  optionEndIconType: {
13068
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13175
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13069
13176
  default: any;
13070
13177
  };
13071
13178
  valueToCopy: {
@@ -13088,6 +13195,14 @@ declare const _default: {
13088
13195
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
13089
13196
  default: any;
13090
13197
  };
13198
+ disableVirtualScroll: {
13199
+ type: import("vue").PropType<boolean>;
13200
+ default: boolean;
13201
+ };
13202
+ overrideOptionCountCalculation: {
13203
+ type: import("vue").PropType<(option: unknown) => number>;
13204
+ default: any;
13205
+ };
13091
13206
  }>> & {
13092
13207
  onCopyToClipboard?: () => any;
13093
13208
  onClear?: () => any;
@@ -13097,7 +13212,7 @@ declare const _default: {
13097
13212
  "onUpdate:isOpen"?: (value: unknown) => any;
13098
13213
  onOpened?: () => any;
13099
13214
  onClosed?: () => any;
13100
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
13215
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
13101
13216
  $attrs: {
13102
13217
  [x: string]: unknown;
13103
13218
  };
@@ -13230,6 +13345,10 @@ declare const _default: {
13230
13345
  type: import("vue").PropType<boolean>;
13231
13346
  default: boolean;
13232
13347
  };
13348
+ triggerShowAllSelectedText: {
13349
+ type: import("vue").PropType<boolean>;
13350
+ default: boolean;
13351
+ };
13233
13352
  predefinedTrigger: {
13234
13353
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
13235
13354
  default: "default" | "icon-button" | "chip" | "app";
@@ -13271,7 +13390,7 @@ declare const _default: {
13271
13390
  default: string;
13272
13391
  };
13273
13392
  optionIconType: {
13274
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13393
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13275
13394
  default: any;
13276
13395
  };
13277
13396
  optionEndIconKey: {
@@ -13279,7 +13398,7 @@ declare const _default: {
13279
13398
  default: string;
13280
13399
  };
13281
13400
  optionEndIconType: {
13282
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13401
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13283
13402
  default: any;
13284
13403
  };
13285
13404
  valueToCopy: {
@@ -13302,6 +13421,14 @@ declare const _default: {
13302
13421
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
13303
13422
  default: any;
13304
13423
  };
13424
+ disableVirtualScroll: {
13425
+ type: import("vue").PropType<boolean>;
13426
+ default: boolean;
13427
+ };
13428
+ overrideOptionCountCalculation: {
13429
+ type: import("vue").PropType<(option: unknown) => number>;
13430
+ default: any;
13431
+ };
13305
13432
  }>> & {
13306
13433
  onCopyToClipboard?: () => any;
13307
13434
  onClear?: () => any;
@@ -13351,6 +13478,7 @@ declare const _default: {
13351
13478
  triggerFeedbackText: string;
13352
13479
  triggerFeedbackVariant: "success" | "warning" | "error";
13353
13480
  triggerFeedbackShowIcon: boolean;
13481
+ triggerShowAllSelectedText: boolean;
13354
13482
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
13355
13483
  inlineSearch: boolean;
13356
13484
  inlineSearchPlaceholder: string;
@@ -13360,14 +13488,16 @@ declare const _default: {
13360
13488
  optionNameKey: string;
13361
13489
  optionIconKey: string;
13362
13490
  optionImageKey: string;
13363
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
13491
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13364
13492
  optionEndIconKey: string;
13365
- optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
13493
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13366
13494
  valueToCopy: string;
13367
13495
  disabledOptionKey: string;
13368
13496
  fullWidth: boolean;
13369
13497
  optionsListWidth: string;
13370
13498
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
13499
+ disableVirtualScroll: boolean;
13500
+ overrideOptionCountCalculation: (option: unknown) => number;
13371
13501
  }, {}, string> & {
13372
13502
  beforeCreate?: (() => void) | (() => void)[];
13373
13503
  created?: (() => void) | (() => void)[];
@@ -13507,6 +13637,10 @@ declare const _default: {
13507
13637
  type: import("vue").PropType<boolean>;
13508
13638
  default: boolean;
13509
13639
  };
13640
+ triggerShowAllSelectedText: {
13641
+ type: import("vue").PropType<boolean>;
13642
+ default: boolean;
13643
+ };
13510
13644
  predefinedTrigger: {
13511
13645
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
13512
13646
  default: "default" | "icon-button" | "chip" | "app";
@@ -13548,7 +13682,7 @@ declare const _default: {
13548
13682
  default: string;
13549
13683
  };
13550
13684
  optionIconType: {
13551
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13685
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13552
13686
  default: any;
13553
13687
  };
13554
13688
  optionEndIconKey: {
@@ -13556,7 +13690,7 @@ declare const _default: {
13556
13690
  default: string;
13557
13691
  };
13558
13692
  optionEndIconType: {
13559
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13693
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13560
13694
  default: any;
13561
13695
  };
13562
13696
  valueToCopy: {
@@ -13579,6 +13713,14 @@ declare const _default: {
13579
13713
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
13580
13714
  default: any;
13581
13715
  };
13716
+ disableVirtualScroll: {
13717
+ type: import("vue").PropType<boolean>;
13718
+ default: boolean;
13719
+ };
13720
+ overrideOptionCountCalculation: {
13721
+ type: import("vue").PropType<(option: unknown) => number>;
13722
+ default: any;
13723
+ };
13582
13724
  }>> & {
13583
13725
  onCopyToClipboard?: () => any;
13584
13726
  onClear?: () => any;
@@ -13714,6 +13856,10 @@ declare const _default: {
13714
13856
  type: import("vue").PropType<boolean>;
13715
13857
  default: boolean;
13716
13858
  };
13859
+ triggerShowAllSelectedText: {
13860
+ type: import("vue").PropType<boolean>;
13861
+ default: boolean;
13862
+ };
13717
13863
  predefinedTrigger: {
13718
13864
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
13719
13865
  default: "default" | "icon-button" | "chip" | "app";
@@ -13755,7 +13901,7 @@ declare const _default: {
13755
13901
  default: string;
13756
13902
  };
13757
13903
  optionIconType: {
13758
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13904
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13759
13905
  default: any;
13760
13906
  };
13761
13907
  optionEndIconKey: {
@@ -13763,7 +13909,7 @@ declare const _default: {
13763
13909
  default: string;
13764
13910
  };
13765
13911
  optionEndIconType: {
13766
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13912
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13767
13913
  default: any;
13768
13914
  };
13769
13915
  valueToCopy: {
@@ -13786,6 +13932,14 @@ declare const _default: {
13786
13932
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
13787
13933
  default: any;
13788
13934
  };
13935
+ disableVirtualScroll: {
13936
+ type: import("vue").PropType<boolean>;
13937
+ default: boolean;
13938
+ };
13939
+ overrideOptionCountCalculation: {
13940
+ type: import("vue").PropType<(option: unknown) => number>;
13941
+ default: any;
13942
+ };
13789
13943
  }>> & {
13790
13944
  onCopyToClipboard?: () => any;
13791
13945
  onClear?: () => any;
@@ -13835,6 +13989,7 @@ declare const _default: {
13835
13989
  triggerFeedbackText: string;
13836
13990
  triggerFeedbackVariant: "success" | "warning" | "error";
13837
13991
  triggerFeedbackShowIcon: boolean;
13992
+ triggerShowAllSelectedText: boolean;
13838
13993
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
13839
13994
  inlineSearch: boolean;
13840
13995
  inlineSearchPlaceholder: string;
@@ -13844,14 +13999,16 @@ declare const _default: {
13844
13999
  optionNameKey: string;
13845
14000
  optionIconKey: string;
13846
14001
  optionImageKey: string;
13847
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14002
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13848
14003
  optionEndIconKey: string;
13849
- optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14004
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13850
14005
  valueToCopy: string;
13851
14006
  disabledOptionKey: string;
13852
14007
  fullWidth: boolean;
13853
14008
  optionsListWidth: string;
13854
14009
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
14010
+ disableVirtualScroll: boolean;
14011
+ overrideOptionCountCalculation: (option: unknown) => number;
13855
14012
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
13856
14013
  $slots: {
13857
14014
  label?(_: {}): any;
@@ -13868,6 +14025,7 @@ declare const _default: {
13868
14025
  }): any;
13869
14026
  default?(_: {
13870
14027
  option: unknown;
14028
+ index: number;
13871
14029
  selected: boolean;
13872
14030
  active: boolean;
13873
14031
  disabled: any;
@@ -13897,10 +14055,11 @@ declare const _default: {
13897
14055
  optionNameKey: string;
13898
14056
  optionIconKey: string;
13899
14057
  optionImageKey: string;
13900
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14058
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13901
14059
  selectedOption: any;
13902
14060
  showFeedbackIcon: boolean;
13903
14061
  brandIconType: "android" | "ios";
14062
+ showAllSelectedText: boolean;
13904
14063
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
13905
14064
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
13906
14065
  label: {
@@ -13982,7 +14141,7 @@ declare const _default: {
13982
14141
  default: any;
13983
14142
  };
13984
14143
  optionIconType: {
13985
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14144
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13986
14145
  default: any;
13987
14146
  };
13988
14147
  selectedOption: {
@@ -13997,13 +14156,17 @@ declare const _default: {
13997
14156
  type: import("vue").PropType<"android" | "ios">;
13998
14157
  default: any;
13999
14158
  };
14159
+ showAllSelectedText: {
14160
+ type: import("vue").PropType<boolean>;
14161
+ default: boolean;
14162
+ };
14000
14163
  statusDotType: {
14001
14164
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
14002
14165
  default: any;
14003
14166
  };
14004
14167
  }>> & {
14005
14168
  onClick?: () => any;
14006
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "statusDotType">;
14169
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
14007
14170
  $attrs: {
14008
14171
  [x: string]: unknown;
14009
14172
  };
@@ -14097,7 +14260,7 @@ declare const _default: {
14097
14260
  default: any;
14098
14261
  };
14099
14262
  optionIconType: {
14100
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14263
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14101
14264
  default: any;
14102
14265
  };
14103
14266
  selectedOption: {
@@ -14112,6 +14275,10 @@ declare const _default: {
14112
14275
  type: import("vue").PropType<"android" | "ios">;
14113
14276
  default: any;
14114
14277
  };
14278
+ showAllSelectedText: {
14279
+ type: import("vue").PropType<boolean>;
14280
+ default: boolean;
14281
+ };
14115
14282
  statusDotType: {
14116
14283
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
14117
14284
  default: any;
@@ -14139,10 +14306,11 @@ declare const _default: {
14139
14306
  optionNameKey: string;
14140
14307
  optionIconKey: string;
14141
14308
  optionImageKey: string;
14142
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14309
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14143
14310
  selectedOption: any;
14144
14311
  showFeedbackIcon: boolean;
14145
14312
  brandIconType: "android" | "ios";
14313
+ showAllSelectedText: boolean;
14146
14314
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
14147
14315
  }, {}, string> & {
14148
14316
  beforeCreate?: (() => void) | (() => void)[];
@@ -14244,7 +14412,7 @@ declare const _default: {
14244
14412
  default: any;
14245
14413
  };
14246
14414
  optionIconType: {
14247
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14415
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14248
14416
  default: any;
14249
14417
  };
14250
14418
  selectedOption: {
@@ -14259,6 +14427,10 @@ declare const _default: {
14259
14427
  type: import("vue").PropType<"android" | "ios">;
14260
14428
  default: any;
14261
14429
  };
14430
+ showAllSelectedText: {
14431
+ type: import("vue").PropType<boolean>;
14432
+ default: boolean;
14433
+ };
14262
14434
  statusDotType: {
14263
14435
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
14264
14436
  default: any;
@@ -14349,7 +14521,7 @@ declare const _default: {
14349
14521
  default: any;
14350
14522
  };
14351
14523
  optionIconType: {
14352
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14524
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14353
14525
  default: any;
14354
14526
  };
14355
14527
  selectedOption: {
@@ -14364,6 +14536,10 @@ declare const _default: {
14364
14536
  type: import("vue").PropType<"android" | "ios">;
14365
14537
  default: any;
14366
14538
  };
14539
+ showAllSelectedText: {
14540
+ type: import("vue").PropType<boolean>;
14541
+ default: boolean;
14542
+ };
14367
14543
  statusDotType: {
14368
14544
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
14369
14545
  default: any;
@@ -14391,10 +14567,11 @@ declare const _default: {
14391
14567
  optionNameKey: string;
14392
14568
  optionIconKey: string;
14393
14569
  optionImageKey: string;
14394
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14570
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14395
14571
  selectedOption: any;
14396
14572
  showFeedbackIcon: boolean;
14397
14573
  brandIconType: "android" | "ios";
14574
+ showAllSelectedText: boolean;
14398
14575
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
14399
14576
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
14400
14577
  $slots: {
@@ -14545,7 +14722,7 @@ declare const _default: {
14545
14722
  default: any;
14546
14723
  };
14547
14724
  startIconType: {
14548
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14725
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14549
14726
  default: string;
14550
14727
  };
14551
14728
  hideEndIcon: {
@@ -14584,7 +14761,7 @@ declare const _default: {
14584
14761
  default: any;
14585
14762
  };
14586
14763
  startIconType: {
14587
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14764
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14588
14765
  default: string;
14589
14766
  };
14590
14767
  hideEndIcon: {
@@ -14600,7 +14777,7 @@ declare const _default: {
14600
14777
  open: boolean;
14601
14778
  testId: string;
14602
14779
  startIconName: string;
14603
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14780
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14604
14781
  hideEndIcon: boolean;
14605
14782
  }>;
14606
14783
  ButtonFilterDropdownTrigger: import("vue").DefineComponent<{
@@ -14629,7 +14806,7 @@ declare const _default: {
14629
14806
  default: any;
14630
14807
  };
14631
14808
  startIconType: {
14632
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14809
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14633
14810
  default: string;
14634
14811
  };
14635
14812
  hideEndIcon: {
@@ -14664,7 +14841,7 @@ declare const _default: {
14664
14841
  default: any;
14665
14842
  };
14666
14843
  startIconType: {
14667
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14844
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14668
14845
  default: string;
14669
14846
  };
14670
14847
  hideEndIcon: {
@@ -14679,7 +14856,7 @@ declare const _default: {
14679
14856
  open: boolean;
14680
14857
  testId: string;
14681
14858
  startIconName: string;
14682
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14859
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14683
14860
  hideEndIcon: boolean;
14684
14861
  }>;
14685
14862
  AppDropdownTrigger: {
@@ -14701,7 +14878,9 @@ declare const _default: {
14701
14878
  optionNameKey: string;
14702
14879
  optionIconKey: string;
14703
14880
  optionImageKey: string;
14704
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14881
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14882
+ optionEndIconKey: string;
14883
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14705
14884
  valueToCopy: string;
14706
14885
  selectedOption: any;
14707
14886
  brandIconType: "android" | "ios";
@@ -14769,7 +14948,15 @@ declare const _default: {
14769
14948
  default: any;
14770
14949
  };
14771
14950
  optionIconType: {
14772
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14951
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14952
+ default: any;
14953
+ };
14954
+ optionEndIconKey: {
14955
+ type: import("vue").PropType<string>;
14956
+ default: any;
14957
+ };
14958
+ optionEndIconType: {
14959
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14773
14960
  default: any;
14774
14961
  };
14775
14962
  valueToCopy: {
@@ -14787,7 +14974,7 @@ declare const _default: {
14787
14974
  }>> & {
14788
14975
  onClick?: () => any;
14789
14976
  onCopyToClipboard?: () => any;
14790
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "selectedOption" | "brandIconType">;
14977
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "selectedOption" | "brandIconType">;
14791
14978
  $attrs: {
14792
14979
  [x: string]: unknown;
14793
14980
  };
@@ -14865,7 +15052,15 @@ declare const _default: {
14865
15052
  default: any;
14866
15053
  };
14867
15054
  optionIconType: {
14868
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15055
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15056
+ default: any;
15057
+ };
15058
+ optionEndIconKey: {
15059
+ type: import("vue").PropType<string>;
15060
+ default: any;
15061
+ };
15062
+ optionEndIconType: {
15063
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14869
15064
  default: any;
14870
15065
  };
14871
15066
  valueToCopy: {
@@ -14901,7 +15096,9 @@ declare const _default: {
14901
15096
  optionNameKey: string;
14902
15097
  optionIconKey: string;
14903
15098
  optionImageKey: string;
14904
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15099
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15100
+ optionEndIconKey: string;
15101
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14905
15102
  valueToCopy: string;
14906
15103
  selectedOption: any;
14907
15104
  brandIconType: "android" | "ios";
@@ -14989,7 +15186,15 @@ declare const _default: {
14989
15186
  default: any;
14990
15187
  };
14991
15188
  optionIconType: {
14992
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15189
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15190
+ default: any;
15191
+ };
15192
+ optionEndIconKey: {
15193
+ type: import("vue").PropType<string>;
15194
+ default: any;
15195
+ };
15196
+ optionEndIconType: {
15197
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14993
15198
  default: any;
14994
15199
  };
14995
15200
  valueToCopy: {
@@ -15075,7 +15280,15 @@ declare const _default: {
15075
15280
  default: any;
15076
15281
  };
15077
15282
  optionIconType: {
15078
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15283
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15284
+ default: any;
15285
+ };
15286
+ optionEndIconKey: {
15287
+ type: import("vue").PropType<string>;
15288
+ default: any;
15289
+ };
15290
+ optionEndIconType: {
15291
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15079
15292
  default: any;
15080
15293
  };
15081
15294
  valueToCopy: {
@@ -15111,7 +15324,9 @@ declare const _default: {
15111
15324
  optionNameKey: string;
15112
15325
  optionIconKey: string;
15113
15326
  optionImageKey: string;
15114
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15327
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15328
+ optionEndIconKey: string;
15329
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15115
15330
  valueToCopy: string;
15116
15331
  selectedOption: any;
15117
15332
  brandIconType: "android" | "ios";
@@ -15119,6 +15334,7 @@ declare const _default: {
15119
15334
  $slots: {
15120
15335
  image?(_: {}): any;
15121
15336
  "icon-start"?(_: {}): any;
15337
+ "icon-end"?(_: {}): any;
15122
15338
  };
15123
15339
  });
15124
15340
  DropdownTypes: () => (({
@@ -15144,10 +15360,11 @@ declare const _default: {
15144
15360
  optionNameKey: string;
15145
15361
  optionIconKey: string;
15146
15362
  optionImageKey: string;
15147
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15363
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15148
15364
  selectedOption: any;
15149
15365
  showFeedbackIcon: boolean;
15150
15366
  brandIconType: "android" | "ios";
15367
+ showAllSelectedText: boolean;
15151
15368
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
15152
15369
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
15153
15370
  label: {
@@ -15229,7 +15446,7 @@ declare const _default: {
15229
15446
  default: any;
15230
15447
  };
15231
15448
  optionIconType: {
15232
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15449
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15233
15450
  default: any;
15234
15451
  };
15235
15452
  selectedOption: {
@@ -15244,13 +15461,17 @@ declare const _default: {
15244
15461
  type: import("vue").PropType<"android" | "ios">;
15245
15462
  default: any;
15246
15463
  };
15464
+ showAllSelectedText: {
15465
+ type: import("vue").PropType<boolean>;
15466
+ default: boolean;
15467
+ };
15247
15468
  statusDotType: {
15248
15469
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
15249
15470
  default: any;
15250
15471
  };
15251
15472
  }>> & {
15252
15473
  onClick?: () => any;
15253
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "statusDotType">;
15474
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
15254
15475
  $attrs: {
15255
15476
  [x: string]: unknown;
15256
15477
  };
@@ -15344,7 +15565,7 @@ declare const _default: {
15344
15565
  default: any;
15345
15566
  };
15346
15567
  optionIconType: {
15347
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15568
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15348
15569
  default: any;
15349
15570
  };
15350
15571
  selectedOption: {
@@ -15359,6 +15580,10 @@ declare const _default: {
15359
15580
  type: import("vue").PropType<"android" | "ios">;
15360
15581
  default: any;
15361
15582
  };
15583
+ showAllSelectedText: {
15584
+ type: import("vue").PropType<boolean>;
15585
+ default: boolean;
15586
+ };
15362
15587
  statusDotType: {
15363
15588
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
15364
15589
  default: any;
@@ -15386,10 +15611,11 @@ declare const _default: {
15386
15611
  optionNameKey: string;
15387
15612
  optionIconKey: string;
15388
15613
  optionImageKey: string;
15389
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15614
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15390
15615
  selectedOption: any;
15391
15616
  showFeedbackIcon: boolean;
15392
15617
  brandIconType: "android" | "ios";
15618
+ showAllSelectedText: boolean;
15393
15619
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
15394
15620
  }, {}, string> & {
15395
15621
  beforeCreate?: (() => void) | (() => void)[];
@@ -15491,7 +15717,7 @@ declare const _default: {
15491
15717
  default: any;
15492
15718
  };
15493
15719
  optionIconType: {
15494
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15720
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15495
15721
  default: any;
15496
15722
  };
15497
15723
  selectedOption: {
@@ -15506,6 +15732,10 @@ declare const _default: {
15506
15732
  type: import("vue").PropType<"android" | "ios">;
15507
15733
  default: any;
15508
15734
  };
15735
+ showAllSelectedText: {
15736
+ type: import("vue").PropType<boolean>;
15737
+ default: boolean;
15738
+ };
15509
15739
  statusDotType: {
15510
15740
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
15511
15741
  default: any;
@@ -15596,7 +15826,7 @@ declare const _default: {
15596
15826
  default: any;
15597
15827
  };
15598
15828
  optionIconType: {
15599
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15829
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15600
15830
  default: any;
15601
15831
  };
15602
15832
  selectedOption: {
@@ -15611,6 +15841,10 @@ declare const _default: {
15611
15841
  type: import("vue").PropType<"android" | "ios">;
15612
15842
  default: any;
15613
15843
  };
15844
+ showAllSelectedText: {
15845
+ type: import("vue").PropType<boolean>;
15846
+ default: boolean;
15847
+ };
15614
15848
  statusDotType: {
15615
15849
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
15616
15850
  default: any;
@@ -15638,10 +15872,11 @@ declare const _default: {
15638
15872
  optionNameKey: string;
15639
15873
  optionIconKey: string;
15640
15874
  optionImageKey: string;
15641
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15875
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15642
15876
  selectedOption: any;
15643
15877
  showFeedbackIcon: boolean;
15644
15878
  brandIconType: "android" | "ios";
15879
+ showAllSelectedText: boolean;
15645
15880
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
15646
15881
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
15647
15882
  $slots: {
@@ -15667,7 +15902,9 @@ declare const _default: {
15667
15902
  optionNameKey: string;
15668
15903
  optionIconKey: string;
15669
15904
  optionImageKey: string;
15670
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15905
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15906
+ optionEndIconKey: string;
15907
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15671
15908
  valueToCopy: string;
15672
15909
  selectedOption: any;
15673
15910
  brandIconType: "android" | "ios";
@@ -15735,7 +15972,15 @@ declare const _default: {
15735
15972
  default: any;
15736
15973
  };
15737
15974
  optionIconType: {
15738
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15975
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15976
+ default: any;
15977
+ };
15978
+ optionEndIconKey: {
15979
+ type: import("vue").PropType<string>;
15980
+ default: any;
15981
+ };
15982
+ optionEndIconType: {
15983
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15739
15984
  default: any;
15740
15985
  };
15741
15986
  valueToCopy: {
@@ -15753,7 +15998,7 @@ declare const _default: {
15753
15998
  }>> & {
15754
15999
  onClick?: () => any;
15755
16000
  onCopyToClipboard?: () => any;
15756
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "selectedOption" | "brandIconType">;
16001
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "selectedOption" | "brandIconType">;
15757
16002
  $attrs: {
15758
16003
  [x: string]: unknown;
15759
16004
  };
@@ -15831,7 +16076,15 @@ declare const _default: {
15831
16076
  default: any;
15832
16077
  };
15833
16078
  optionIconType: {
15834
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16079
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16080
+ default: any;
16081
+ };
16082
+ optionEndIconKey: {
16083
+ type: import("vue").PropType<string>;
16084
+ default: any;
16085
+ };
16086
+ optionEndIconType: {
16087
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15835
16088
  default: any;
15836
16089
  };
15837
16090
  valueToCopy: {
@@ -15867,7 +16120,9 @@ declare const _default: {
15867
16120
  optionNameKey: string;
15868
16121
  optionIconKey: string;
15869
16122
  optionImageKey: string;
15870
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16123
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16124
+ optionEndIconKey: string;
16125
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15871
16126
  valueToCopy: string;
15872
16127
  selectedOption: any;
15873
16128
  brandIconType: "android" | "ios";
@@ -15955,7 +16210,15 @@ declare const _default: {
15955
16210
  default: any;
15956
16211
  };
15957
16212
  optionIconType: {
15958
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16213
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16214
+ default: any;
16215
+ };
16216
+ optionEndIconKey: {
16217
+ type: import("vue").PropType<string>;
16218
+ default: any;
16219
+ };
16220
+ optionEndIconType: {
16221
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15959
16222
  default: any;
15960
16223
  };
15961
16224
  valueToCopy: {
@@ -16041,7 +16304,15 @@ declare const _default: {
16041
16304
  default: any;
16042
16305
  };
16043
16306
  optionIconType: {
16044
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16307
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16308
+ default: any;
16309
+ };
16310
+ optionEndIconKey: {
16311
+ type: import("vue").PropType<string>;
16312
+ default: any;
16313
+ };
16314
+ optionEndIconType: {
16315
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16045
16316
  default: any;
16046
16317
  };
16047
16318
  valueToCopy: {
@@ -16077,7 +16348,9 @@ declare const _default: {
16077
16348
  optionNameKey: string;
16078
16349
  optionIconKey: string;
16079
16350
  optionImageKey: string;
16080
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16351
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16352
+ optionEndIconKey: string;
16353
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16081
16354
  valueToCopy: string;
16082
16355
  selectedOption: any;
16083
16356
  brandIconType: "android" | "ios";
@@ -16085,6 +16358,7 @@ declare const _default: {
16085
16358
  $slots: {
16086
16359
  image?(_: {}): any;
16087
16360
  "icon-start"?(_: {}): any;
16361
+ "icon-end"?(_: {}): any;
16088
16362
  };
16089
16363
  })) | ({
16090
16364
  new (...args: any[]): {
@@ -16094,14 +16368,14 @@ declare const _default: {
16094
16368
  option: any;
16095
16369
  disabled: boolean;
16096
16370
  active: boolean;
16097
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16371
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16098
16372
  isIndeterminate: boolean;
16099
16373
  subtitle: string;
16100
16374
  selectAllOption: boolean;
16101
16375
  nameKey: string;
16102
16376
  imageKey: string;
16103
16377
  iconKey: string;
16104
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16378
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16105
16379
  endIconKey: string;
16106
16380
  toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
16107
16381
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -16118,7 +16392,7 @@ declare const _default: {
16118
16392
  default: any;
16119
16393
  };
16120
16394
  endIconType: {
16121
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16395
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16122
16396
  default: string;
16123
16397
  };
16124
16398
  isIndeterminate: {
@@ -16146,7 +16420,7 @@ declare const _default: {
16146
16420
  default: any;
16147
16421
  };
16148
16422
  iconType: {
16149
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16423
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16150
16424
  default: string;
16151
16425
  };
16152
16426
  endIconKey: {
@@ -16188,7 +16462,7 @@ declare const _default: {
16188
16462
  default: any;
16189
16463
  };
16190
16464
  endIconType: {
16191
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16465
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16192
16466
  default: string;
16193
16467
  };
16194
16468
  isIndeterminate: {
@@ -16216,7 +16490,7 @@ declare const _default: {
16216
16490
  default: any;
16217
16491
  };
16218
16492
  iconType: {
16219
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16493
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16220
16494
  default: string;
16221
16495
  };
16222
16496
  endIconKey: {
@@ -16234,14 +16508,14 @@ declare const _default: {
16234
16508
  option: any;
16235
16509
  disabled: boolean;
16236
16510
  active: boolean;
16237
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16511
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16238
16512
  isIndeterminate: boolean;
16239
16513
  subtitle: string;
16240
16514
  selectAllOption: boolean;
16241
16515
  nameKey: string;
16242
16516
  imageKey: string;
16243
16517
  iconKey: string;
16244
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16518
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16245
16519
  endIconKey: string;
16246
16520
  toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
16247
16521
  }, {}, string> & {
@@ -16278,7 +16552,7 @@ declare const _default: {
16278
16552
  default: any;
16279
16553
  };
16280
16554
  endIconType: {
16281
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16555
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16282
16556
  default: string;
16283
16557
  };
16284
16558
  isIndeterminate: {
@@ -16306,7 +16580,7 @@ declare const _default: {
16306
16580
  default: any;
16307
16581
  };
16308
16582
  iconType: {
16309
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16583
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16310
16584
  default: string;
16311
16585
  };
16312
16586
  endIconKey: {
@@ -16338,7 +16612,7 @@ declare const _default: {
16338
16612
  default: any;
16339
16613
  };
16340
16614
  endIconType: {
16341
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16615
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16342
16616
  default: string;
16343
16617
  };
16344
16618
  isIndeterminate: {
@@ -16366,7 +16640,7 @@ declare const _default: {
16366
16640
  default: any;
16367
16641
  };
16368
16642
  iconType: {
16369
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16643
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16370
16644
  default: string;
16371
16645
  };
16372
16646
  endIconKey: {
@@ -16384,14 +16658,14 @@ declare const _default: {
16384
16658
  option: any;
16385
16659
  disabled: boolean;
16386
16660
  active: boolean;
16387
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16661
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16388
16662
  isIndeterminate: boolean;
16389
16663
  subtitle: string;
16390
16664
  selectAllOption: boolean;
16391
16665
  nameKey: string;
16392
16666
  imageKey: string;
16393
16667
  iconKey: string;
16394
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16668
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16395
16669
  endIconKey: string;
16396
16670
  toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
16397
16671
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -16544,6 +16818,7 @@ declare const _default: {
16544
16818
  triggerFeedbackText: string;
16545
16819
  triggerFeedbackVariant: "success" | "warning" | "error";
16546
16820
  triggerFeedbackShowIcon: boolean;
16821
+ triggerShowAllSelectedText: boolean;
16547
16822
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
16548
16823
  inlineSearch: boolean;
16549
16824
  inlineSearchPlaceholder: string;
@@ -16553,14 +16828,16 @@ declare const _default: {
16553
16828
  optionNameKey: string;
16554
16829
  optionIconKey: string;
16555
16830
  optionImageKey: string;
16556
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16831
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16557
16832
  optionEndIconKey: string;
16558
- optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16833
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16559
16834
  valueToCopy: string;
16560
16835
  disabledOptionKey: string;
16561
16836
  fullWidth: boolean;
16562
16837
  optionsListWidth: string;
16563
16838
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
16839
+ disableVirtualScroll: boolean;
16840
+ overrideOptionCountCalculation: (option: unknown) => number;
16564
16841
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16565
16842
  theme: {
16566
16843
  type: import("vue").PropType<string>;
@@ -16680,6 +16957,10 @@ declare const _default: {
16680
16957
  type: import("vue").PropType<boolean>;
16681
16958
  default: boolean;
16682
16959
  };
16960
+ triggerShowAllSelectedText: {
16961
+ type: import("vue").PropType<boolean>;
16962
+ default: boolean;
16963
+ };
16683
16964
  predefinedTrigger: {
16684
16965
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
16685
16966
  default: "default" | "icon-button" | "chip" | "app";
@@ -16721,7 +17002,7 @@ declare const _default: {
16721
17002
  default: string;
16722
17003
  };
16723
17004
  optionIconType: {
16724
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17005
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16725
17006
  default: any;
16726
17007
  };
16727
17008
  optionEndIconKey: {
@@ -16729,7 +17010,7 @@ declare const _default: {
16729
17010
  default: string;
16730
17011
  };
16731
17012
  optionEndIconType: {
16732
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17013
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16733
17014
  default: any;
16734
17015
  };
16735
17016
  valueToCopy: {
@@ -16752,6 +17033,14 @@ declare const _default: {
16752
17033
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
16753
17034
  default: any;
16754
17035
  };
17036
+ disableVirtualScroll: {
17037
+ type: import("vue").PropType<boolean>;
17038
+ default: boolean;
17039
+ };
17040
+ overrideOptionCountCalculation: {
17041
+ type: import("vue").PropType<(option: unknown) => number>;
17042
+ default: any;
17043
+ };
16755
17044
  }>> & {
16756
17045
  onCopyToClipboard?: () => any;
16757
17046
  onClear?: () => any;
@@ -16761,7 +17050,7 @@ declare const _default: {
16761
17050
  "onUpdate:isOpen"?: (value: unknown) => any;
16762
17051
  onOpened?: () => any;
16763
17052
  onClosed?: () => any;
16764
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
17053
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
16765
17054
  $attrs: {
16766
17055
  [x: string]: unknown;
16767
17056
  };
@@ -16894,6 +17183,10 @@ declare const _default: {
16894
17183
  type: import("vue").PropType<boolean>;
16895
17184
  default: boolean;
16896
17185
  };
17186
+ triggerShowAllSelectedText: {
17187
+ type: import("vue").PropType<boolean>;
17188
+ default: boolean;
17189
+ };
16897
17190
  predefinedTrigger: {
16898
17191
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
16899
17192
  default: "default" | "icon-button" | "chip" | "app";
@@ -16935,7 +17228,7 @@ declare const _default: {
16935
17228
  default: string;
16936
17229
  };
16937
17230
  optionIconType: {
16938
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17231
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16939
17232
  default: any;
16940
17233
  };
16941
17234
  optionEndIconKey: {
@@ -16943,7 +17236,7 @@ declare const _default: {
16943
17236
  default: string;
16944
17237
  };
16945
17238
  optionEndIconType: {
16946
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17239
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16947
17240
  default: any;
16948
17241
  };
16949
17242
  valueToCopy: {
@@ -16966,6 +17259,14 @@ declare const _default: {
16966
17259
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
16967
17260
  default: any;
16968
17261
  };
17262
+ disableVirtualScroll: {
17263
+ type: import("vue").PropType<boolean>;
17264
+ default: boolean;
17265
+ };
17266
+ overrideOptionCountCalculation: {
17267
+ type: import("vue").PropType<(option: unknown) => number>;
17268
+ default: any;
17269
+ };
16969
17270
  }>> & {
16970
17271
  onCopyToClipboard?: () => any;
16971
17272
  onClear?: () => any;
@@ -17015,6 +17316,7 @@ declare const _default: {
17015
17316
  triggerFeedbackText: string;
17016
17317
  triggerFeedbackVariant: "success" | "warning" | "error";
17017
17318
  triggerFeedbackShowIcon: boolean;
17319
+ triggerShowAllSelectedText: boolean;
17018
17320
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
17019
17321
  inlineSearch: boolean;
17020
17322
  inlineSearchPlaceholder: string;
@@ -17024,14 +17326,16 @@ declare const _default: {
17024
17326
  optionNameKey: string;
17025
17327
  optionIconKey: string;
17026
17328
  optionImageKey: string;
17027
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17329
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17028
17330
  optionEndIconKey: string;
17029
- optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17331
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17030
17332
  valueToCopy: string;
17031
17333
  disabledOptionKey: string;
17032
17334
  fullWidth: boolean;
17033
17335
  optionsListWidth: string;
17034
17336
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
17337
+ disableVirtualScroll: boolean;
17338
+ overrideOptionCountCalculation: (option: unknown) => number;
17035
17339
  }, {}, string> & {
17036
17340
  beforeCreate?: (() => void) | (() => void)[];
17037
17341
  created?: (() => void) | (() => void)[];
@@ -17171,6 +17475,10 @@ declare const _default: {
17171
17475
  type: import("vue").PropType<boolean>;
17172
17476
  default: boolean;
17173
17477
  };
17478
+ triggerShowAllSelectedText: {
17479
+ type: import("vue").PropType<boolean>;
17480
+ default: boolean;
17481
+ };
17174
17482
  predefinedTrigger: {
17175
17483
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
17176
17484
  default: "default" | "icon-button" | "chip" | "app";
@@ -17212,7 +17520,7 @@ declare const _default: {
17212
17520
  default: string;
17213
17521
  };
17214
17522
  optionIconType: {
17215
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17523
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17216
17524
  default: any;
17217
17525
  };
17218
17526
  optionEndIconKey: {
@@ -17220,7 +17528,7 @@ declare const _default: {
17220
17528
  default: string;
17221
17529
  };
17222
17530
  optionEndIconType: {
17223
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17531
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17224
17532
  default: any;
17225
17533
  };
17226
17534
  valueToCopy: {
@@ -17243,6 +17551,14 @@ declare const _default: {
17243
17551
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
17244
17552
  default: any;
17245
17553
  };
17554
+ disableVirtualScroll: {
17555
+ type: import("vue").PropType<boolean>;
17556
+ default: boolean;
17557
+ };
17558
+ overrideOptionCountCalculation: {
17559
+ type: import("vue").PropType<(option: unknown) => number>;
17560
+ default: any;
17561
+ };
17246
17562
  }>> & {
17247
17563
  onCopyToClipboard?: () => any;
17248
17564
  onClear?: () => any;
@@ -17378,6 +17694,10 @@ declare const _default: {
17378
17694
  type: import("vue").PropType<boolean>;
17379
17695
  default: boolean;
17380
17696
  };
17697
+ triggerShowAllSelectedText: {
17698
+ type: import("vue").PropType<boolean>;
17699
+ default: boolean;
17700
+ };
17381
17701
  predefinedTrigger: {
17382
17702
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
17383
17703
  default: "default" | "icon-button" | "chip" | "app";
@@ -17419,7 +17739,7 @@ declare const _default: {
17419
17739
  default: string;
17420
17740
  };
17421
17741
  optionIconType: {
17422
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17742
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17423
17743
  default: any;
17424
17744
  };
17425
17745
  optionEndIconKey: {
@@ -17427,7 +17747,7 @@ declare const _default: {
17427
17747
  default: string;
17428
17748
  };
17429
17749
  optionEndIconType: {
17430
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17750
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17431
17751
  default: any;
17432
17752
  };
17433
17753
  valueToCopy: {
@@ -17450,6 +17770,14 @@ declare const _default: {
17450
17770
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
17451
17771
  default: any;
17452
17772
  };
17773
+ disableVirtualScroll: {
17774
+ type: import("vue").PropType<boolean>;
17775
+ default: boolean;
17776
+ };
17777
+ overrideOptionCountCalculation: {
17778
+ type: import("vue").PropType<(option: unknown) => number>;
17779
+ default: any;
17780
+ };
17453
17781
  }>> & {
17454
17782
  onCopyToClipboard?: () => any;
17455
17783
  onClear?: () => any;
@@ -17499,6 +17827,7 @@ declare const _default: {
17499
17827
  triggerFeedbackText: string;
17500
17828
  triggerFeedbackVariant: "success" | "warning" | "error";
17501
17829
  triggerFeedbackShowIcon: boolean;
17830
+ triggerShowAllSelectedText: boolean;
17502
17831
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
17503
17832
  inlineSearch: boolean;
17504
17833
  inlineSearchPlaceholder: string;
@@ -17508,14 +17837,16 @@ declare const _default: {
17508
17837
  optionNameKey: string;
17509
17838
  optionIconKey: string;
17510
17839
  optionImageKey: string;
17511
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17840
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17512
17841
  optionEndIconKey: string;
17513
- optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17842
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17514
17843
  valueToCopy: string;
17515
17844
  disabledOptionKey: string;
17516
17845
  fullWidth: boolean;
17517
17846
  optionsListWidth: string;
17518
17847
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
17848
+ disableVirtualScroll: boolean;
17849
+ overrideOptionCountCalculation: (option: unknown) => number;
17519
17850
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
17520
17851
  $slots: {
17521
17852
  label?(_: {}): any;
@@ -17532,6 +17863,7 @@ declare const _default: {
17532
17863
  }): any;
17533
17864
  default?(_: {
17534
17865
  option: unknown;
17866
+ index: number;
17535
17867
  selected: boolean;
17536
17868
  active: boolean;
17537
17869
  disabled: any;
@@ -17563,7 +17895,7 @@ declare const _default: {
17563
17895
  default: any;
17564
17896
  };
17565
17897
  startIconType: {
17566
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17898
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17567
17899
  default: string;
17568
17900
  };
17569
17901
  hideEndIcon: {
@@ -17598,7 +17930,7 @@ declare const _default: {
17598
17930
  default: any;
17599
17931
  };
17600
17932
  startIconType: {
17601
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17933
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17602
17934
  default: string;
17603
17935
  };
17604
17936
  hideEndIcon: {
@@ -17613,8 +17945,174 @@ declare const _default: {
17613
17945
  open: boolean;
17614
17946
  testId: string;
17615
17947
  startIconName: string;
17616
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17948
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17617
17949
  hideEndIcon: boolean;
17950
+ }> | import("vue").DefineComponent<{
17951
+ disabled: {
17952
+ type: import("vue").PropType<boolean>;
17953
+ default: boolean;
17954
+ };
17955
+ size: {
17956
+ type: import("vue").PropType<"small" | "medium" | "large">;
17957
+ default: string;
17958
+ };
17959
+ testId: {
17960
+ type: import("vue").PropType<string>;
17961
+ default: string;
17962
+ };
17963
+ selected: {
17964
+ type: import("vue").PropType<unknown[]>;
17965
+ default: any;
17966
+ };
17967
+ options: {
17968
+ type: import("vue").PropType<unknown[]>;
17969
+ required: true;
17970
+ };
17971
+ placeholder: {
17972
+ type: import("vue").PropType<string>;
17973
+ default: string;
17974
+ };
17975
+ isOpen: {
17976
+ type: import("vue").PropType<boolean>;
17977
+ };
17978
+ inlineSearchPlaceholder: {
17979
+ type: import("vue").PropType<string>;
17980
+ default: string;
17981
+ };
17982
+ displayValue: {
17983
+ type: import("vue").PropType<(option: unknown) => string>;
17984
+ required: true;
17985
+ };
17986
+ optionNameKey: {
17987
+ type: import("vue").PropType<string>;
17988
+ default: string;
17989
+ };
17990
+ optionIconKey: {
17991
+ type: import("vue").PropType<string>;
17992
+ default: string;
17993
+ };
17994
+ optionImageKey: {
17995
+ type: import("vue").PropType<string>;
17996
+ default: string;
17997
+ };
17998
+ optionIconType: {
17999
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18000
+ default: any;
18001
+ };
18002
+ optionEndIconKey: {
18003
+ type: import("vue").PropType<string>;
18004
+ default: string;
18005
+ };
18006
+ optionEndIconType: {
18007
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18008
+ default: any;
18009
+ };
18010
+ valueToCopy: {
18011
+ type: import("vue").PropType<string>;
18012
+ default: any;
18013
+ };
18014
+ disabledOptionKey: {
18015
+ type: import("vue").PropType<string>;
18016
+ default: string;
18017
+ };
18018
+ optionChildrenKey: {
18019
+ type: import("vue").PropType<string>;
18020
+ default: string;
18021
+ };
18022
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18023
+ "update:selected": (value: unknown) => void;
18024
+ "update:isOpen": (value: unknown) => void;
18025
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
18026
+ disabled: {
18027
+ type: import("vue").PropType<boolean>;
18028
+ default: boolean;
18029
+ };
18030
+ size: {
18031
+ type: import("vue").PropType<"small" | "medium" | "large">;
18032
+ default: string;
18033
+ };
18034
+ testId: {
18035
+ type: import("vue").PropType<string>;
18036
+ default: string;
18037
+ };
18038
+ selected: {
18039
+ type: import("vue").PropType<unknown[]>;
18040
+ default: any;
18041
+ };
18042
+ options: {
18043
+ type: import("vue").PropType<unknown[]>;
18044
+ required: true;
18045
+ };
18046
+ placeholder: {
18047
+ type: import("vue").PropType<string>;
18048
+ default: string;
18049
+ };
18050
+ isOpen: {
18051
+ type: import("vue").PropType<boolean>;
18052
+ };
18053
+ inlineSearchPlaceholder: {
18054
+ type: import("vue").PropType<string>;
18055
+ default: string;
18056
+ };
18057
+ displayValue: {
18058
+ type: import("vue").PropType<(option: unknown) => string>;
18059
+ required: true;
18060
+ };
18061
+ optionNameKey: {
18062
+ type: import("vue").PropType<string>;
18063
+ default: string;
18064
+ };
18065
+ optionIconKey: {
18066
+ type: import("vue").PropType<string>;
18067
+ default: string;
18068
+ };
18069
+ optionImageKey: {
18070
+ type: import("vue").PropType<string>;
18071
+ default: string;
18072
+ };
18073
+ optionIconType: {
18074
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18075
+ default: any;
18076
+ };
18077
+ optionEndIconKey: {
18078
+ type: import("vue").PropType<string>;
18079
+ default: string;
18080
+ };
18081
+ optionEndIconType: {
18082
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18083
+ default: any;
18084
+ };
18085
+ valueToCopy: {
18086
+ type: import("vue").PropType<string>;
18087
+ default: any;
18088
+ };
18089
+ disabledOptionKey: {
18090
+ type: import("vue").PropType<string>;
18091
+ default: string;
18092
+ };
18093
+ optionChildrenKey: {
18094
+ type: import("vue").PropType<string>;
18095
+ default: string;
18096
+ };
18097
+ }>> & {
18098
+ "onUpdate:selected"?: (value: unknown) => any;
18099
+ "onUpdate:isOpen"?: (value: unknown) => any;
18100
+ }, {
18101
+ disabled: boolean;
18102
+ size: "small" | "medium" | "large";
18103
+ testId: string;
18104
+ selected: unknown[];
18105
+ placeholder: string;
18106
+ inlineSearchPlaceholder: string;
18107
+ optionNameKey: string;
18108
+ optionIconKey: string;
18109
+ optionImageKey: string;
18110
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18111
+ optionEndIconKey: string;
18112
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18113
+ valueToCopy: string;
18114
+ disabledOptionKey: string;
18115
+ optionChildrenKey: string;
17618
18116
  }>)[];
17619
18117
  Option: {
17620
18118
  new (...args: any[]): {
@@ -17624,14 +18122,14 @@ declare const _default: {
17624
18122
  option: any;
17625
18123
  disabled: boolean;
17626
18124
  active: boolean;
17627
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18125
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17628
18126
  isIndeterminate: boolean;
17629
18127
  subtitle: string;
17630
18128
  selectAllOption: boolean;
17631
18129
  nameKey: string;
17632
18130
  imageKey: string;
17633
18131
  iconKey: string;
17634
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18132
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17635
18133
  endIconKey: string;
17636
18134
  toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
17637
18135
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -17648,7 +18146,7 @@ declare const _default: {
17648
18146
  default: any;
17649
18147
  };
17650
18148
  endIconType: {
17651
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18149
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17652
18150
  default: string;
17653
18151
  };
17654
18152
  isIndeterminate: {
@@ -17676,7 +18174,7 @@ declare const _default: {
17676
18174
  default: any;
17677
18175
  };
17678
18176
  iconType: {
17679
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18177
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17680
18178
  default: string;
17681
18179
  };
17682
18180
  endIconKey: {
@@ -17718,7 +18216,7 @@ declare const _default: {
17718
18216
  default: any;
17719
18217
  };
17720
18218
  endIconType: {
17721
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18219
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17722
18220
  default: string;
17723
18221
  };
17724
18222
  isIndeterminate: {
@@ -17746,7 +18244,7 @@ declare const _default: {
17746
18244
  default: any;
17747
18245
  };
17748
18246
  iconType: {
17749
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18247
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17750
18248
  default: string;
17751
18249
  };
17752
18250
  endIconKey: {
@@ -17764,14 +18262,14 @@ declare const _default: {
17764
18262
  option: any;
17765
18263
  disabled: boolean;
17766
18264
  active: boolean;
17767
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18265
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17768
18266
  isIndeterminate: boolean;
17769
18267
  subtitle: string;
17770
18268
  selectAllOption: boolean;
17771
18269
  nameKey: string;
17772
18270
  imageKey: string;
17773
18271
  iconKey: string;
17774
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18272
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17775
18273
  endIconKey: string;
17776
18274
  toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
17777
18275
  }, {}, string> & {
@@ -17808,7 +18306,7 @@ declare const _default: {
17808
18306
  default: any;
17809
18307
  };
17810
18308
  endIconType: {
17811
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18309
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17812
18310
  default: string;
17813
18311
  };
17814
18312
  isIndeterminate: {
@@ -17836,7 +18334,7 @@ declare const _default: {
17836
18334
  default: any;
17837
18335
  };
17838
18336
  iconType: {
17839
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18337
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17840
18338
  default: string;
17841
18339
  };
17842
18340
  endIconKey: {
@@ -17868,7 +18366,7 @@ declare const _default: {
17868
18366
  default: any;
17869
18367
  };
17870
18368
  endIconType: {
17871
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18369
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17872
18370
  default: string;
17873
18371
  };
17874
18372
  isIndeterminate: {
@@ -17896,7 +18394,7 @@ declare const _default: {
17896
18394
  default: any;
17897
18395
  };
17898
18396
  iconType: {
17899
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18397
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17900
18398
  default: string;
17901
18399
  };
17902
18400
  endIconKey: {
@@ -17914,14 +18412,14 @@ declare const _default: {
17914
18412
  option: any;
17915
18413
  disabled: boolean;
17916
18414
  active: boolean;
17917
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18415
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17918
18416
  isIndeterminate: boolean;
17919
18417
  subtitle: string;
17920
18418
  selectAllOption: boolean;
17921
18419
  nameKey: string;
17922
18420
  imageKey: string;
17923
18421
  iconKey: string;
17924
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18422
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17925
18423
  endIconKey: string;
17926
18424
  toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
17927
18425
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -17932,30 +18430,197 @@ declare const _default: {
17932
18430
  "icon-end"?(_: {}): any;
17933
18431
  };
17934
18432
  });
17935
- Label: {
17936
- new (...args: any[]): {
17937
- $: import("vue").ComponentInternalInstance;
17938
- $data: {};
17939
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
17940
- $attrs: {
17941
- [x: string]: unknown;
17942
- };
17943
- $refs: {
17944
- [x: string]: unknown;
17945
- };
17946
- $slots: Readonly<{
17947
- [name: string]: import("vue").Slot;
17948
- }>;
17949
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17950
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17951
- $emit: (event: string, ...args: any[]) => void;
17952
- $el: any;
17953
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
17954
- beforeCreate?: (() => void) | (() => void)[];
17955
- created?: (() => void) | (() => void)[];
17956
- beforeMount?: (() => void) | (() => void)[];
17957
- mounted?: (() => void) | (() => void)[];
17958
- beforeUpdate?: (() => void) | (() => void)[];
18433
+ TreeDropdown: import("vue").DefineComponent<{
18434
+ disabled: {
18435
+ type: import("vue").PropType<boolean>;
18436
+ default: boolean;
18437
+ };
18438
+ size: {
18439
+ type: import("vue").PropType<"small" | "medium" | "large">;
18440
+ default: string;
18441
+ };
18442
+ testId: {
18443
+ type: import("vue").PropType<string>;
18444
+ default: string;
18445
+ };
18446
+ selected: {
18447
+ type: import("vue").PropType<unknown[]>;
18448
+ default: any;
18449
+ };
18450
+ options: {
18451
+ type: import("vue").PropType<unknown[]>;
18452
+ required: true;
18453
+ };
18454
+ placeholder: {
18455
+ type: import("vue").PropType<string>;
18456
+ default: string;
18457
+ };
18458
+ isOpen: {
18459
+ type: import("vue").PropType<boolean>;
18460
+ };
18461
+ inlineSearchPlaceholder: {
18462
+ type: import("vue").PropType<string>;
18463
+ default: string;
18464
+ };
18465
+ displayValue: {
18466
+ type: import("vue").PropType<(option: unknown) => string>;
18467
+ required: true;
18468
+ };
18469
+ optionNameKey: {
18470
+ type: import("vue").PropType<string>;
18471
+ default: string;
18472
+ };
18473
+ optionIconKey: {
18474
+ type: import("vue").PropType<string>;
18475
+ default: string;
18476
+ };
18477
+ optionImageKey: {
18478
+ type: import("vue").PropType<string>;
18479
+ default: string;
18480
+ };
18481
+ optionIconType: {
18482
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18483
+ default: any;
18484
+ };
18485
+ optionEndIconKey: {
18486
+ type: import("vue").PropType<string>;
18487
+ default: string;
18488
+ };
18489
+ optionEndIconType: {
18490
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18491
+ default: any;
18492
+ };
18493
+ valueToCopy: {
18494
+ type: import("vue").PropType<string>;
18495
+ default: any;
18496
+ };
18497
+ disabledOptionKey: {
18498
+ type: import("vue").PropType<string>;
18499
+ default: string;
18500
+ };
18501
+ optionChildrenKey: {
18502
+ type: import("vue").PropType<string>;
18503
+ default: string;
18504
+ };
18505
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18506
+ "update:selected": (value: unknown) => void;
18507
+ "update:isOpen": (value: unknown) => void;
18508
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
18509
+ disabled: {
18510
+ type: import("vue").PropType<boolean>;
18511
+ default: boolean;
18512
+ };
18513
+ size: {
18514
+ type: import("vue").PropType<"small" | "medium" | "large">;
18515
+ default: string;
18516
+ };
18517
+ testId: {
18518
+ type: import("vue").PropType<string>;
18519
+ default: string;
18520
+ };
18521
+ selected: {
18522
+ type: import("vue").PropType<unknown[]>;
18523
+ default: any;
18524
+ };
18525
+ options: {
18526
+ type: import("vue").PropType<unknown[]>;
18527
+ required: true;
18528
+ };
18529
+ placeholder: {
18530
+ type: import("vue").PropType<string>;
18531
+ default: string;
18532
+ };
18533
+ isOpen: {
18534
+ type: import("vue").PropType<boolean>;
18535
+ };
18536
+ inlineSearchPlaceholder: {
18537
+ type: import("vue").PropType<string>;
18538
+ default: string;
18539
+ };
18540
+ displayValue: {
18541
+ type: import("vue").PropType<(option: unknown) => string>;
18542
+ required: true;
18543
+ };
18544
+ optionNameKey: {
18545
+ type: import("vue").PropType<string>;
18546
+ default: string;
18547
+ };
18548
+ optionIconKey: {
18549
+ type: import("vue").PropType<string>;
18550
+ default: string;
18551
+ };
18552
+ optionImageKey: {
18553
+ type: import("vue").PropType<string>;
18554
+ default: string;
18555
+ };
18556
+ optionIconType: {
18557
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18558
+ default: any;
18559
+ };
18560
+ optionEndIconKey: {
18561
+ type: import("vue").PropType<string>;
18562
+ default: string;
18563
+ };
18564
+ optionEndIconType: {
18565
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18566
+ default: any;
18567
+ };
18568
+ valueToCopy: {
18569
+ type: import("vue").PropType<string>;
18570
+ default: any;
18571
+ };
18572
+ disabledOptionKey: {
18573
+ type: import("vue").PropType<string>;
18574
+ default: string;
18575
+ };
18576
+ optionChildrenKey: {
18577
+ type: import("vue").PropType<string>;
18578
+ default: string;
18579
+ };
18580
+ }>> & {
18581
+ "onUpdate:selected"?: (value: unknown) => any;
18582
+ "onUpdate:isOpen"?: (value: unknown) => any;
18583
+ }, {
18584
+ disabled: boolean;
18585
+ size: "small" | "medium" | "large";
18586
+ testId: string;
18587
+ selected: unknown[];
18588
+ placeholder: string;
18589
+ inlineSearchPlaceholder: string;
18590
+ optionNameKey: string;
18591
+ optionIconKey: string;
18592
+ optionImageKey: string;
18593
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18594
+ optionEndIconKey: string;
18595
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18596
+ valueToCopy: string;
18597
+ disabledOptionKey: string;
18598
+ optionChildrenKey: string;
18599
+ }>;
18600
+ Label: {
18601
+ new (...args: any[]): {
18602
+ $: import("vue").ComponentInternalInstance;
18603
+ $data: {};
18604
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
18605
+ $attrs: {
18606
+ [x: string]: unknown;
18607
+ };
18608
+ $refs: {
18609
+ [x: string]: unknown;
18610
+ };
18611
+ $slots: Readonly<{
18612
+ [name: string]: import("vue").Slot;
18613
+ }>;
18614
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
18615
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
18616
+ $emit: (event: string, ...args: any[]) => void;
18617
+ $el: any;
18618
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
18619
+ beforeCreate?: (() => void) | (() => void)[];
18620
+ created?: (() => void) | (() => void)[];
18621
+ beforeMount?: (() => void) | (() => void)[];
18622
+ mounted?: (() => void) | (() => void)[];
18623
+ beforeUpdate?: (() => void) | (() => void)[];
17959
18624
  updated?: (() => void) | (() => void)[];
17960
18625
  activated?: (() => void) | (() => void)[];
17961
18626
  deactivated?: (() => void) | (() => void)[];
@@ -18039,15 +18704,15 @@ declare const _default: {
18039
18704
  $props: Partial<{
18040
18705
  variant: "text" | "contained" | "outlined";
18041
18706
  disabled: boolean;
18042
- size: "small" | "medium" | "large" | "extraLarge";
18043
18707
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
18708
+ size: "small" | "medium" | "large" | "extraLarge";
18044
18709
  content: string;
18045
18710
  loading: boolean;
18046
18711
  testId: string;
18047
18712
  startIconName: string;
18048
18713
  endIconName: string;
18049
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18050
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18714
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18715
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18051
18716
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
18052
18717
  variant: {
18053
18718
  type: import("vue").PropType<"text" | "contained" | "outlined">;
@@ -18057,14 +18722,14 @@ declare const _default: {
18057
18722
  type: import("vue").PropType<boolean>;
18058
18723
  default: boolean;
18059
18724
  };
18060
- size: {
18061
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18062
- default: string;
18063
- };
18064
18725
  color: {
18065
18726
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
18066
18727
  default: string;
18067
18728
  };
18729
+ size: {
18730
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18731
+ default: string;
18732
+ };
18068
18733
  content: {
18069
18734
  type: import("vue").PropType<string>;
18070
18735
  default: string;
@@ -18086,14 +18751,14 @@ declare const _default: {
18086
18751
  default: any;
18087
18752
  };
18088
18753
  startIconType: {
18089
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18754
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18090
18755
  default: string;
18091
18756
  };
18092
18757
  endIconType: {
18093
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18758
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18094
18759
  default: string;
18095
18760
  };
18096
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "size" | "color" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
18761
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "color" | "size" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
18097
18762
  $attrs: {
18098
18763
  [x: string]: unknown;
18099
18764
  };
@@ -18116,14 +18781,14 @@ declare const _default: {
18116
18781
  type: import("vue").PropType<boolean>;
18117
18782
  default: boolean;
18118
18783
  };
18119
- size: {
18120
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18121
- default: string;
18122
- };
18123
18784
  color: {
18124
18785
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
18125
18786
  default: string;
18126
18787
  };
18788
+ size: {
18789
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18790
+ default: string;
18791
+ };
18127
18792
  content: {
18128
18793
  type: import("vue").PropType<string>;
18129
18794
  default: string;
@@ -18145,25 +18810,25 @@ declare const _default: {
18145
18810
  default: any;
18146
18811
  };
18147
18812
  startIconType: {
18148
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18813
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18149
18814
  default: string;
18150
18815
  };
18151
18816
  endIconType: {
18152
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18817
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18153
18818
  default: string;
18154
18819
  };
18155
18820
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
18156
18821
  variant: "text" | "contained" | "outlined";
18157
18822
  disabled: boolean;
18158
- size: "small" | "medium" | "large" | "extraLarge";
18159
18823
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
18824
+ size: "small" | "medium" | "large" | "extraLarge";
18160
18825
  content: string;
18161
18826
  loading: boolean;
18162
18827
  testId: string;
18163
18828
  startIconName: string;
18164
18829
  endIconName: string;
18165
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18166
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18830
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18831
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18167
18832
  }, {}, string> & {
18168
18833
  beforeCreate?: (() => void) | (() => void)[];
18169
18834
  created?: (() => void) | (() => void)[];
@@ -18193,14 +18858,14 @@ declare const _default: {
18193
18858
  type: import("vue").PropType<boolean>;
18194
18859
  default: boolean;
18195
18860
  };
18196
- size: {
18197
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18198
- default: string;
18199
- };
18200
18861
  color: {
18201
18862
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
18202
18863
  default: string;
18203
18864
  };
18865
+ size: {
18866
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18867
+ default: string;
18868
+ };
18204
18869
  content: {
18205
18870
  type: import("vue").PropType<string>;
18206
18871
  default: string;
@@ -18222,11 +18887,11 @@ declare const _default: {
18222
18887
  default: any;
18223
18888
  };
18224
18889
  startIconType: {
18225
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18890
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18226
18891
  default: string;
18227
18892
  };
18228
18893
  endIconType: {
18229
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18894
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18230
18895
  default: string;
18231
18896
  };
18232
18897
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -18242,14 +18907,14 @@ declare const _default: {
18242
18907
  type: import("vue").PropType<boolean>;
18243
18908
  default: boolean;
18244
18909
  };
18245
- size: {
18246
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18247
- default: string;
18248
- };
18249
18910
  color: {
18250
18911
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
18251
18912
  default: string;
18252
18913
  };
18914
+ size: {
18915
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18916
+ default: string;
18917
+ };
18253
18918
  content: {
18254
18919
  type: import("vue").PropType<string>;
18255
18920
  default: string;
@@ -18271,25 +18936,25 @@ declare const _default: {
18271
18936
  default: any;
18272
18937
  };
18273
18938
  startIconType: {
18274
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18939
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18275
18940
  default: string;
18276
18941
  };
18277
18942
  endIconType: {
18278
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18943
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18279
18944
  default: string;
18280
18945
  };
18281
18946
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
18282
18947
  variant: "text" | "contained" | "outlined";
18283
18948
  disabled: boolean;
18284
- size: "small" | "medium" | "large" | "extraLarge";
18285
18949
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
18950
+ size: "small" | "medium" | "large" | "extraLarge";
18286
18951
  content: string;
18287
18952
  loading: boolean;
18288
18953
  testId: string;
18289
18954
  startIconName: string;
18290
18955
  endIconName: string;
18291
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18292
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18956
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18957
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18293
18958
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
18294
18959
  $slots: {
18295
18960
  default?(_: {}): any;
@@ -18301,16 +18966,16 @@ declare const _default: {
18301
18966
  $: import("vue").ComponentInternalInstance;
18302
18967
  $data: {};
18303
18968
  $props: Partial<{
18304
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18969
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18305
18970
  variant: "default" | "outlined";
18306
18971
  disabled: boolean;
18307
- size: "small" | "medium" | "large" | "extraLarge";
18308
18972
  color: "default" | "primary" | "error";
18973
+ size: "small" | "medium" | "large" | "extraLarge";
18309
18974
  testId: string;
18310
18975
  iconName: string;
18311
18976
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
18312
18977
  type: {
18313
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18978
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18314
18979
  default: string;
18315
18980
  };
18316
18981
  variant: {
@@ -18321,14 +18986,14 @@ declare const _default: {
18321
18986
  type: import("vue").PropType<boolean>;
18322
18987
  default: boolean;
18323
18988
  };
18324
- size: {
18325
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18326
- default: string;
18327
- };
18328
18989
  color: {
18329
18990
  type: import("vue").PropType<"default" | "primary" | "error">;
18330
18991
  default: string;
18331
18992
  };
18993
+ size: {
18994
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18995
+ default: string;
18996
+ };
18332
18997
  testId: {
18333
18998
  type: import("vue").PropType<string>;
18334
18999
  default: string;
@@ -18337,7 +19002,7 @@ declare const _default: {
18337
19002
  type: import("vue").PropType<string>;
18338
19003
  default: string;
18339
19004
  };
18340
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "size" | "color" | "testId" | "iconName">;
19005
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "color" | "size" | "testId" | "iconName">;
18341
19006
  $attrs: {
18342
19007
  [x: string]: unknown;
18343
19008
  };
@@ -18353,7 +19018,7 @@ declare const _default: {
18353
19018
  $el: any;
18354
19019
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
18355
19020
  type: {
18356
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19021
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18357
19022
  default: string;
18358
19023
  };
18359
19024
  variant: {
@@ -18364,14 +19029,14 @@ declare const _default: {
18364
19029
  type: import("vue").PropType<boolean>;
18365
19030
  default: boolean;
18366
19031
  };
18367
- size: {
18368
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18369
- default: string;
18370
- };
18371
19032
  color: {
18372
19033
  type: import("vue").PropType<"default" | "primary" | "error">;
18373
19034
  default: string;
18374
19035
  };
19036
+ size: {
19037
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19038
+ default: string;
19039
+ };
18375
19040
  testId: {
18376
19041
  type: import("vue").PropType<string>;
18377
19042
  default: string;
@@ -18381,11 +19046,11 @@ declare const _default: {
18381
19046
  default: string;
18382
19047
  };
18383
19048
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
18384
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
19049
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18385
19050
  variant: "default" | "outlined";
18386
19051
  disabled: boolean;
18387
- size: "small" | "medium" | "large" | "extraLarge";
18388
19052
  color: "default" | "primary" | "error";
19053
+ size: "small" | "medium" | "large" | "extraLarge";
18389
19054
  testId: string;
18390
19055
  iconName: string;
18391
19056
  }, {}, string> & {
@@ -18410,7 +19075,7 @@ declare const _default: {
18410
19075
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
18411
19076
  } & Readonly<import("vue").ExtractPropTypes<{
18412
19077
  type: {
18413
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19078
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18414
19079
  default: string;
18415
19080
  };
18416
19081
  variant: {
@@ -18421,14 +19086,14 @@ declare const _default: {
18421
19086
  type: import("vue").PropType<boolean>;
18422
19087
  default: boolean;
18423
19088
  };
18424
- size: {
18425
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18426
- default: string;
18427
- };
18428
19089
  color: {
18429
19090
  type: import("vue").PropType<"default" | "primary" | "error">;
18430
19091
  default: string;
18431
19092
  };
19093
+ size: {
19094
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19095
+ default: string;
19096
+ };
18432
19097
  testId: {
18433
19098
  type: import("vue").PropType<string>;
18434
19099
  default: string;
@@ -18443,7 +19108,7 @@ declare const _default: {
18443
19108
  __isSuspense?: never;
18444
19109
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
18445
19110
  type: {
18446
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19111
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18447
19112
  default: string;
18448
19113
  };
18449
19114
  variant: {
@@ -18454,14 +19119,14 @@ declare const _default: {
18454
19119
  type: import("vue").PropType<boolean>;
18455
19120
  default: boolean;
18456
19121
  };
18457
- size: {
18458
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18459
- default: string;
18460
- };
18461
19122
  color: {
18462
19123
  type: import("vue").PropType<"default" | "primary" | "error">;
18463
19124
  default: string;
18464
19125
  };
19126
+ size: {
19127
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19128
+ default: string;
19129
+ };
18465
19130
  testId: {
18466
19131
  type: import("vue").PropType<string>;
18467
19132
  default: string;
@@ -18471,11 +19136,11 @@ declare const _default: {
18471
19136
  default: string;
18472
19137
  };
18473
19138
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
18474
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
19139
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18475
19140
  variant: "default" | "outlined";
18476
19141
  disabled: boolean;
18477
- size: "small" | "medium" | "large" | "extraLarge";
18478
19142
  color: "default" | "primary" | "error";
19143
+ size: "small" | "medium" | "large" | "extraLarge";
18479
19144
  testId: string;
18480
19145
  iconName: string;
18481
19146
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -18490,15 +19155,15 @@ declare const _default: {
18490
19155
  $props: Partial<{
18491
19156
  variant: "text" | "contained" | "outlined";
18492
19157
  disabled: boolean;
18493
- size: "small" | "medium" | "large" | "extraLarge";
18494
19158
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
19159
+ size: "small" | "medium" | "large" | "extraLarge";
18495
19160
  content: string;
18496
19161
  loading: boolean;
18497
19162
  testId: string;
18498
19163
  startIconName: string;
18499
19164
  endIconName: string;
18500
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18501
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
19165
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
19166
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18502
19167
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
18503
19168
  variant: {
18504
19169
  type: import("vue").PropType<"text" | "contained" | "outlined">;
@@ -18508,14 +19173,14 @@ declare const _default: {
18508
19173
  type: import("vue").PropType<boolean>;
18509
19174
  default: boolean;
18510
19175
  };
18511
- size: {
18512
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18513
- default: string;
18514
- };
18515
19176
  color: {
18516
19177
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
18517
19178
  default: string;
18518
19179
  };
19180
+ size: {
19181
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19182
+ default: string;
19183
+ };
18519
19184
  content: {
18520
19185
  type: import("vue").PropType<string>;
18521
19186
  default: string;
@@ -18537,14 +19202,14 @@ declare const _default: {
18537
19202
  default: any;
18538
19203
  };
18539
19204
  startIconType: {
18540
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19205
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18541
19206
  default: string;
18542
19207
  };
18543
19208
  endIconType: {
18544
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19209
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18545
19210
  default: string;
18546
19211
  };
18547
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "size" | "color" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
19212
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "color" | "size" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
18548
19213
  $attrs: {
18549
19214
  [x: string]: unknown;
18550
19215
  };
@@ -18567,14 +19232,14 @@ declare const _default: {
18567
19232
  type: import("vue").PropType<boolean>;
18568
19233
  default: boolean;
18569
19234
  };
18570
- size: {
18571
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18572
- default: string;
18573
- };
18574
19235
  color: {
18575
19236
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
18576
19237
  default: string;
18577
19238
  };
19239
+ size: {
19240
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19241
+ default: string;
19242
+ };
18578
19243
  content: {
18579
19244
  type: import("vue").PropType<string>;
18580
19245
  default: string;
@@ -18596,25 +19261,25 @@ declare const _default: {
18596
19261
  default: any;
18597
19262
  };
18598
19263
  startIconType: {
18599
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19264
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18600
19265
  default: string;
18601
19266
  };
18602
19267
  endIconType: {
18603
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19268
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18604
19269
  default: string;
18605
19270
  };
18606
19271
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
18607
19272
  variant: "text" | "contained" | "outlined";
18608
19273
  disabled: boolean;
18609
- size: "small" | "medium" | "large" | "extraLarge";
18610
19274
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
19275
+ size: "small" | "medium" | "large" | "extraLarge";
18611
19276
  content: string;
18612
19277
  loading: boolean;
18613
19278
  testId: string;
18614
19279
  startIconName: string;
18615
19280
  endIconName: string;
18616
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18617
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
19281
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
19282
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18618
19283
  }, {}, string> & {
18619
19284
  beforeCreate?: (() => void) | (() => void)[];
18620
19285
  created?: (() => void) | (() => void)[];
@@ -18644,14 +19309,14 @@ declare const _default: {
18644
19309
  type: import("vue").PropType<boolean>;
18645
19310
  default: boolean;
18646
19311
  };
18647
- size: {
18648
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18649
- default: string;
18650
- };
18651
19312
  color: {
18652
19313
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
18653
19314
  default: string;
18654
19315
  };
19316
+ size: {
19317
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19318
+ default: string;
19319
+ };
18655
19320
  content: {
18656
19321
  type: import("vue").PropType<string>;
18657
19322
  default: string;
@@ -18673,11 +19338,11 @@ declare const _default: {
18673
19338
  default: any;
18674
19339
  };
18675
19340
  startIconType: {
18676
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19341
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18677
19342
  default: string;
18678
19343
  };
18679
19344
  endIconType: {
18680
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19345
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18681
19346
  default: string;
18682
19347
  };
18683
19348
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -18693,14 +19358,14 @@ declare const _default: {
18693
19358
  type: import("vue").PropType<boolean>;
18694
19359
  default: boolean;
18695
19360
  };
18696
- size: {
18697
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18698
- default: string;
18699
- };
18700
19361
  color: {
18701
19362
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
18702
19363
  default: string;
18703
19364
  };
19365
+ size: {
19366
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19367
+ default: string;
19368
+ };
18704
19369
  content: {
18705
19370
  type: import("vue").PropType<string>;
18706
19371
  default: string;
@@ -18722,25 +19387,25 @@ declare const _default: {
18722
19387
  default: any;
18723
19388
  };
18724
19389
  startIconType: {
18725
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19390
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18726
19391
  default: string;
18727
19392
  };
18728
19393
  endIconType: {
18729
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19394
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18730
19395
  default: string;
18731
19396
  };
18732
19397
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
18733
19398
  variant: "text" | "contained" | "outlined";
18734
19399
  disabled: boolean;
18735
- size: "small" | "medium" | "large" | "extraLarge";
18736
19400
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
19401
+ size: "small" | "medium" | "large" | "extraLarge";
18737
19402
  content: string;
18738
19403
  loading: boolean;
18739
19404
  testId: string;
18740
19405
  startIconName: string;
18741
19406
  endIconName: string;
18742
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18743
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
19407
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
19408
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18744
19409
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
18745
19410
  $slots: {
18746
19411
  default?(_: {}): any;
@@ -18751,16 +19416,16 @@ declare const _default: {
18751
19416
  $: import("vue").ComponentInternalInstance;
18752
19417
  $data: {};
18753
19418
  $props: Partial<{
18754
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
19419
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18755
19420
  variant: "default" | "outlined";
18756
19421
  disabled: boolean;
18757
- size: "small" | "medium" | "large" | "extraLarge";
18758
19422
  color: "default" | "primary" | "error";
19423
+ size: "small" | "medium" | "large" | "extraLarge";
18759
19424
  testId: string;
18760
19425
  iconName: string;
18761
19426
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
18762
19427
  type: {
18763
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19428
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18764
19429
  default: string;
18765
19430
  };
18766
19431
  variant: {
@@ -18771,14 +19436,14 @@ declare const _default: {
18771
19436
  type: import("vue").PropType<boolean>;
18772
19437
  default: boolean;
18773
19438
  };
18774
- size: {
18775
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18776
- default: string;
18777
- };
18778
19439
  color: {
18779
19440
  type: import("vue").PropType<"default" | "primary" | "error">;
18780
19441
  default: string;
18781
19442
  };
19443
+ size: {
19444
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19445
+ default: string;
19446
+ };
18782
19447
  testId: {
18783
19448
  type: import("vue").PropType<string>;
18784
19449
  default: string;
@@ -18787,7 +19452,7 @@ declare const _default: {
18787
19452
  type: import("vue").PropType<string>;
18788
19453
  default: string;
18789
19454
  };
18790
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "size" | "color" | "testId" | "iconName">;
19455
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "color" | "size" | "testId" | "iconName">;
18791
19456
  $attrs: {
18792
19457
  [x: string]: unknown;
18793
19458
  };
@@ -18803,7 +19468,7 @@ declare const _default: {
18803
19468
  $el: any;
18804
19469
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
18805
19470
  type: {
18806
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19471
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18807
19472
  default: string;
18808
19473
  };
18809
19474
  variant: {
@@ -18814,14 +19479,14 @@ declare const _default: {
18814
19479
  type: import("vue").PropType<boolean>;
18815
19480
  default: boolean;
18816
19481
  };
18817
- size: {
18818
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18819
- default: string;
18820
- };
18821
19482
  color: {
18822
19483
  type: import("vue").PropType<"default" | "primary" | "error">;
18823
19484
  default: string;
18824
19485
  };
19486
+ size: {
19487
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19488
+ default: string;
19489
+ };
18825
19490
  testId: {
18826
19491
  type: import("vue").PropType<string>;
18827
19492
  default: string;
@@ -18831,11 +19496,11 @@ declare const _default: {
18831
19496
  default: string;
18832
19497
  };
18833
19498
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
18834
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
19499
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18835
19500
  variant: "default" | "outlined";
18836
19501
  disabled: boolean;
18837
- size: "small" | "medium" | "large" | "extraLarge";
18838
19502
  color: "default" | "primary" | "error";
19503
+ size: "small" | "medium" | "large" | "extraLarge";
18839
19504
  testId: string;
18840
19505
  iconName: string;
18841
19506
  }, {}, string> & {
@@ -18860,7 +19525,7 @@ declare const _default: {
18860
19525
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
18861
19526
  } & Readonly<import("vue").ExtractPropTypes<{
18862
19527
  type: {
18863
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19528
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18864
19529
  default: string;
18865
19530
  };
18866
19531
  variant: {
@@ -18871,14 +19536,14 @@ declare const _default: {
18871
19536
  type: import("vue").PropType<boolean>;
18872
19537
  default: boolean;
18873
19538
  };
18874
- size: {
18875
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18876
- default: string;
18877
- };
18878
19539
  color: {
18879
19540
  type: import("vue").PropType<"default" | "primary" | "error">;
18880
19541
  default: string;
18881
19542
  };
19543
+ size: {
19544
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19545
+ default: string;
19546
+ };
18882
19547
  testId: {
18883
19548
  type: import("vue").PropType<string>;
18884
19549
  default: string;
@@ -18893,7 +19558,7 @@ declare const _default: {
18893
19558
  __isSuspense?: never;
18894
19559
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
18895
19560
  type: {
18896
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
19561
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
18897
19562
  default: string;
18898
19563
  };
18899
19564
  variant: {
@@ -18904,14 +19569,14 @@ declare const _default: {
18904
19569
  type: import("vue").PropType<boolean>;
18905
19570
  default: boolean;
18906
19571
  };
18907
- size: {
18908
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18909
- default: string;
18910
- };
18911
19572
  color: {
18912
19573
  type: import("vue").PropType<"default" | "primary" | "error">;
18913
19574
  default: string;
18914
19575
  };
19576
+ size: {
19577
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
19578
+ default: string;
19579
+ };
18915
19580
  testId: {
18916
19581
  type: import("vue").PropType<string>;
18917
19582
  default: string;
@@ -18921,11 +19586,11 @@ declare const _default: {
18921
19586
  default: string;
18922
19587
  };
18923
19588
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
18924
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
19589
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18925
19590
  variant: "default" | "outlined";
18926
19591
  disabled: boolean;
18927
- size: "small" | "medium" | "large" | "extraLarge";
18928
19592
  color: "default" | "primary" | "error";
19593
+ size: "small" | "medium" | "large" | "extraLarge";
18929
19594
  testId: string;
18930
19595
  iconName: string;
18931
19596
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -19255,332 +19920,126 @@ declare const _default: {
19255
19920
  }): any;
19256
19921
  };
19257
19922
  }))[];
19258
- Chip: {
19259
- new (...args: any[]): {
19260
- $: import("vue").ComponentInternalInstance;
19261
- $data: {};
19262
- $props: Partial<{
19263
- disabled: boolean;
19264
- testId: string;
19265
- selected: boolean;
19266
- prefix: string;
19267
- clearable: boolean;
19268
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
19269
- disabled: {
19270
- type: import("vue").PropType<boolean>;
19271
- default: boolean;
19272
- };
19273
- testId: {
19274
- type: import("vue").PropType<string>;
19275
- default: string;
19276
- };
19277
- selected: {
19278
- type: import("vue").PropType<boolean>;
19279
- default: boolean;
19280
- };
19281
- prefix: {
19282
- type: import("vue").PropType<string>;
19283
- default: any;
19284
- };
19285
- clearable: {
19286
- type: import("vue").PropType<boolean>;
19287
- default: boolean;
19288
- };
19289
- }>> & {
19290
- onCleared?: (...args: any[]) => any;
19291
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "selected" | "prefix" | "clearable">;
19292
- $attrs: {
19293
- [x: string]: unknown;
19294
- };
19295
- $refs: {
19296
- [x: string]: unknown;
19297
- };
19298
- $slots: Readonly<{
19299
- [name: string]: import("vue").Slot;
19300
- }>;
19301
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
19302
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
19303
- $emit: (event: "cleared", ...args: any[]) => void;
19304
- $el: any;
19305
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
19306
- disabled: {
19307
- type: import("vue").PropType<boolean>;
19308
- default: boolean;
19309
- };
19310
- testId: {
19311
- type: import("vue").PropType<string>;
19312
- default: string;
19313
- };
19314
- selected: {
19315
- type: import("vue").PropType<boolean>;
19316
- default: boolean;
19317
- };
19318
- prefix: {
19319
- type: import("vue").PropType<string>;
19320
- default: any;
19321
- };
19322
- clearable: {
19323
- type: import("vue").PropType<boolean>;
19324
- default: boolean;
19325
- };
19326
- }>> & {
19327
- onCleared?: (...args: any[]) => any;
19328
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19329
- cleared: (...args: any[]) => void;
19330
- }, string, {
19331
- disabled: boolean;
19332
- testId: string;
19333
- selected: boolean;
19334
- prefix: string;
19335
- clearable: boolean;
19336
- }, {}, string> & {
19337
- beforeCreate?: (() => void) | (() => void)[];
19338
- created?: (() => void) | (() => void)[];
19339
- beforeMount?: (() => void) | (() => void)[];
19340
- mounted?: (() => void) | (() => void)[];
19341
- beforeUpdate?: (() => void) | (() => void)[];
19342
- updated?: (() => void) | (() => void)[];
19343
- activated?: (() => void) | (() => void)[];
19344
- deactivated?: (() => void) | (() => void)[];
19345
- beforeDestroy?: (() => void) | (() => void)[];
19346
- beforeUnmount?: (() => void) | (() => void)[];
19347
- destroyed?: (() => void) | (() => void)[];
19348
- unmounted?: (() => void) | (() => void)[];
19349
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
19350
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
19351
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
19352
- };
19353
- $forceUpdate: () => void;
19354
- $nextTick: typeof import("vue").nextTick;
19355
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
19356
- } & Readonly<import("vue").ExtractPropTypes<{
19357
- disabled: {
19358
- type: import("vue").PropType<boolean>;
19359
- default: boolean;
19360
- };
19361
- testId: {
19362
- type: import("vue").PropType<string>;
19363
- default: string;
19364
- };
19365
- selected: {
19366
- type: import("vue").PropType<boolean>;
19367
- default: boolean;
19368
- };
19369
- prefix: {
19370
- type: import("vue").PropType<string>;
19371
- default: any;
19372
- };
19373
- clearable: {
19374
- type: import("vue").PropType<boolean>;
19375
- default: boolean;
19376
- };
19377
- }>> & {
19378
- onCleared?: (...args: any[]) => any;
19379
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
19380
- __isFragment?: never;
19381
- __isTeleport?: never;
19382
- __isSuspense?: never;
19383
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
19923
+ Chip: import("vue").DefineComponent<{
19924
+ label: {
19925
+ type: import("vue").PropType<string>;
19926
+ required: true;
19927
+ default: string;
19928
+ };
19929
+ variant: {
19930
+ type: import("vue").PropType<"filled" | "outlined">;
19931
+ default: string;
19932
+ };
19384
19933
  disabled: {
19385
19934
  type: import("vue").PropType<boolean>;
19386
19935
  default: boolean;
19387
19936
  };
19937
+ color: {
19938
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
19939
+ default: string;
19940
+ };
19941
+ size: {
19942
+ type: import("vue").PropType<"small" | "medium">;
19943
+ default: string;
19944
+ };
19388
19945
  testId: {
19389
19946
  type: import("vue").PropType<string>;
19390
19947
  default: string;
19391
19948
  };
19392
- selected: {
19393
- type: import("vue").PropType<boolean>;
19394
- default: boolean;
19395
- };
19396
- prefix: {
19949
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19950
+ label: {
19397
19951
  type: import("vue").PropType<string>;
19398
- default: any;
19952
+ required: true;
19953
+ default: string;
19954
+ };
19955
+ variant: {
19956
+ type: import("vue").PropType<"filled" | "outlined">;
19957
+ default: string;
19399
19958
  };
19400
- clearable: {
19959
+ disabled: {
19401
19960
  type: import("vue").PropType<boolean>;
19402
19961
  default: boolean;
19403
19962
  };
19404
- }>> & {
19405
- onCleared?: (...args: any[]) => any;
19406
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19407
- cleared: (...args: any[]) => void;
19408
- }, string, {
19963
+ color: {
19964
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
19965
+ default: string;
19966
+ };
19967
+ size: {
19968
+ type: import("vue").PropType<"small" | "medium">;
19969
+ default: string;
19970
+ };
19971
+ testId: {
19972
+ type: import("vue").PropType<string>;
19973
+ default: string;
19974
+ };
19975
+ }>>, {
19976
+ label: string;
19977
+ variant: "filled" | "outlined";
19409
19978
  disabled: boolean;
19979
+ color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
19980
+ size: "small" | "medium";
19410
19981
  testId: string;
19411
- selected: boolean;
19412
- prefix: string;
19413
- clearable: boolean;
19414
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
19415
- $slots: {
19416
- "icon-start"?(_: {}): any;
19417
- default?(_: {}): any;
19418
- "icon-end"?(_: {}): any;
19982
+ }>;
19983
+ ChipTypes: () => import("vue").DefineComponent<{
19984
+ label: {
19985
+ type: import("vue").PropType<string>;
19986
+ required: true;
19987
+ default: string;
19988
+ };
19989
+ variant: {
19990
+ type: import("vue").PropType<"filled" | "outlined">;
19991
+ default: string;
19419
19992
  };
19420
- });
19421
- ChipTypes: () => ({
19422
- new (...args: any[]): {
19423
- $: import("vue").ComponentInternalInstance;
19424
- $data: {};
19425
- $props: Partial<{
19426
- disabled: boolean;
19427
- testId: string;
19428
- selected: boolean;
19429
- prefix: string;
19430
- clearable: boolean;
19431
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
19432
- disabled: {
19433
- type: import("vue").PropType<boolean>;
19434
- default: boolean;
19435
- };
19436
- testId: {
19437
- type: import("vue").PropType<string>;
19438
- default: string;
19439
- };
19440
- selected: {
19441
- type: import("vue").PropType<boolean>;
19442
- default: boolean;
19443
- };
19444
- prefix: {
19445
- type: import("vue").PropType<string>;
19446
- default: any;
19447
- };
19448
- clearable: {
19449
- type: import("vue").PropType<boolean>;
19450
- default: boolean;
19451
- };
19452
- }>> & {
19453
- onCleared?: (...args: any[]) => any;
19454
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "selected" | "prefix" | "clearable">;
19455
- $attrs: {
19456
- [x: string]: unknown;
19457
- };
19458
- $refs: {
19459
- [x: string]: unknown;
19460
- };
19461
- $slots: Readonly<{
19462
- [name: string]: import("vue").Slot;
19463
- }>;
19464
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
19465
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
19466
- $emit: (event: "cleared", ...args: any[]) => void;
19467
- $el: any;
19468
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
19469
- disabled: {
19470
- type: import("vue").PropType<boolean>;
19471
- default: boolean;
19472
- };
19473
- testId: {
19474
- type: import("vue").PropType<string>;
19475
- default: string;
19476
- };
19477
- selected: {
19478
- type: import("vue").PropType<boolean>;
19479
- default: boolean;
19480
- };
19481
- prefix: {
19482
- type: import("vue").PropType<string>;
19483
- default: any;
19484
- };
19485
- clearable: {
19486
- type: import("vue").PropType<boolean>;
19487
- default: boolean;
19488
- };
19489
- }>> & {
19490
- onCleared?: (...args: any[]) => any;
19491
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19492
- cleared: (...args: any[]) => void;
19493
- }, string, {
19494
- disabled: boolean;
19495
- testId: string;
19496
- selected: boolean;
19497
- prefix: string;
19498
- clearable: boolean;
19499
- }, {}, string> & {
19500
- beforeCreate?: (() => void) | (() => void)[];
19501
- created?: (() => void) | (() => void)[];
19502
- beforeMount?: (() => void) | (() => void)[];
19503
- mounted?: (() => void) | (() => void)[];
19504
- beforeUpdate?: (() => void) | (() => void)[];
19505
- updated?: (() => void) | (() => void)[];
19506
- activated?: (() => void) | (() => void)[];
19507
- deactivated?: (() => void) | (() => void)[];
19508
- beforeDestroy?: (() => void) | (() => void)[];
19509
- beforeUnmount?: (() => void) | (() => void)[];
19510
- destroyed?: (() => void) | (() => void)[];
19511
- unmounted?: (() => void) | (() => void)[];
19512
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
19513
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
19514
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
19515
- };
19516
- $forceUpdate: () => void;
19517
- $nextTick: typeof import("vue").nextTick;
19518
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
19519
- } & Readonly<import("vue").ExtractPropTypes<{
19520
- disabled: {
19521
- type: import("vue").PropType<boolean>;
19522
- default: boolean;
19523
- };
19524
- testId: {
19525
- type: import("vue").PropType<string>;
19526
- default: string;
19527
- };
19528
- selected: {
19529
- type: import("vue").PropType<boolean>;
19530
- default: boolean;
19531
- };
19532
- prefix: {
19533
- type: import("vue").PropType<string>;
19534
- default: any;
19535
- };
19536
- clearable: {
19537
- type: import("vue").PropType<boolean>;
19538
- default: boolean;
19539
- };
19540
- }>> & {
19541
- onCleared?: (...args: any[]) => any;
19542
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
19543
- __isFragment?: never;
19544
- __isTeleport?: never;
19545
- __isSuspense?: never;
19546
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
19547
19993
  disabled: {
19548
19994
  type: import("vue").PropType<boolean>;
19549
19995
  default: boolean;
19550
19996
  };
19997
+ color: {
19998
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
19999
+ default: string;
20000
+ };
20001
+ size: {
20002
+ type: import("vue").PropType<"small" | "medium">;
20003
+ default: string;
20004
+ };
19551
20005
  testId: {
19552
20006
  type: import("vue").PropType<string>;
19553
20007
  default: string;
19554
20008
  };
19555
- selected: {
19556
- type: import("vue").PropType<boolean>;
19557
- default: boolean;
19558
- };
19559
- prefix: {
20009
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
20010
+ label: {
19560
20011
  type: import("vue").PropType<string>;
19561
- default: any;
20012
+ required: true;
20013
+ default: string;
20014
+ };
20015
+ variant: {
20016
+ type: import("vue").PropType<"filled" | "outlined">;
20017
+ default: string;
19562
20018
  };
19563
- clearable: {
20019
+ disabled: {
19564
20020
  type: import("vue").PropType<boolean>;
19565
20021
  default: boolean;
19566
20022
  };
19567
- }>> & {
19568
- onCleared?: (...args: any[]) => any;
19569
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19570
- cleared: (...args: any[]) => void;
19571
- }, string, {
20023
+ color: {
20024
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
20025
+ default: string;
20026
+ };
20027
+ size: {
20028
+ type: import("vue").PropType<"small" | "medium">;
20029
+ default: string;
20030
+ };
20031
+ testId: {
20032
+ type: import("vue").PropType<string>;
20033
+ default: string;
20034
+ };
20035
+ }>>, {
20036
+ label: string;
20037
+ variant: "filled" | "outlined";
19572
20038
  disabled: boolean;
20039
+ color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
20040
+ size: "small" | "medium";
19573
20041
  testId: string;
19574
- selected: boolean;
19575
- prefix: string;
19576
- clearable: boolean;
19577
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
19578
- $slots: {
19579
- "icon-start"?(_: {}): any;
19580
- default?(_: {}): any;
19581
- "icon-end"?(_: {}): any;
19582
- };
19583
- }))[];
20042
+ }>[];
19584
20043
  };
19585
20044
  export default _default;
19586
20045
  export * from '@/composables/useToggle';