@ironsource/shared-ui 2.1.6-rc.4 → 2.1.6-rc.40

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 (149) hide show
  1. package/Alert.vue_vue_type_style_index_0_scoped_a9f0dfcc_lang.css +1 -0
  2. package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_858cefbf_lang.css +1 -0
  3. package/AppHeader.vue_vue_type_style_index_0_scoped_538ccdc6_lang.css +1 -0
  4. package/Autocomplete.vue_vue_type_style_index_0_scoped_a7bfd237_lang.css +1 -0
  5. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_a8fdae89_lang.css +1 -0
  6. package/ChipV4.vue_vue_type_style_index_0_scoped_12c0f396_lang.css +1 -0
  7. package/DataGrid.vue_vue_type_style_index_0_scoped_057abdf5_lang.css +1 -0
  8. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_0345d6b1_lang.css +1 -0
  9. package/DialogV4.vue_vue_type_style_index_0_scoped_09c488cf_lang.css +1 -0
  10. package/Dropdown.vue_vue_type_style_index_0_scoped_aaa8c4bb_lang.css +1 -0
  11. package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +1 -0
  12. package/FieldLabel.vue_vue_type_style_index_0_scoped_96ee1c98_lang.css +1 -0
  13. package/FoldableSection.vue_vue_type_style_index_0_scoped_1a5f0e2e_lang.css +1 -0
  14. package/{FormCard.vue_vue_type_style_index_0_scoped_ef8b4e81_lang.css → FormCard.vue_vue_type_style_index_0_scoped_52ade67c_lang.css} +1 -1
  15. package/HelpIcon.vue_vue_type_style_index_0_scoped_06fce2e3_lang.css +1 -0
  16. package/IconV4.vue_vue_type_style_index_0_scoped_9d3c9cda_lang.css +1 -0
  17. package/InlineCopy.vue_vue_type_style_index_0_scoped_893a203c_lang.css +1 -0
  18. package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +1 -0
  19. package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +1 -0
  20. package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +1 -0
  21. package/ToggleV4.vue_vue_type_style_index_0_scoped_a4aa32fb_lang.css +1 -0
  22. package/TooltipV4.vue_vue_type_style_index_0_scoped_fcdb9d02_lang.css +1 -0
  23. package/TreeDropdown.vue_vue_type_style_index_0_scoped_142eab98_lang.css +1 -0
  24. package/components/alert/Alert.vue.d.ts +7 -0
  25. package/components/alert/Alert.vue.js +3 -3
  26. package/components/alert/Alert.vue2.js +44 -40
  27. package/components/alert/index.d.ts +27 -2
  28. package/components/appHeader/AppHeader.vue.d.ts +6 -2
  29. package/components/appHeader/AppHeader.vue.js +2 -2
  30. package/components/appHeader/AppHeader.vue2.js +30 -28
  31. package/components/appHeader/index.d.ts +6 -2
  32. package/components/autocomplete/Autocomplete.vue.d.ts +6 -0
  33. package/components/autocomplete/Autocomplete.vue.js +2 -2
  34. package/components/autocomplete/Autocomplete.vue2.js +45 -37
  35. package/components/autocomplete/index.d.ts +21 -1
  36. package/components/button/v4/ButtonV4.vue.d.ts +7 -7
  37. package/components/button/v4/IconButtonV4.vue.d.ts +4 -4
  38. package/components/button/v4/index.d.ts +61 -61
  39. package/components/chip/v4/Chip.types.d.ts +6 -0
  40. package/components/chip/v4/ChipV4.vue.d.ts +28 -35
  41. package/components/chip/v4/ChipV4.vue.js +3 -3
  42. package/components/chip/v4/ChipV4.vue2.js +28 -59
  43. package/components/chip/v4/index.d.ts +45 -148
  44. package/components/dialog/v3/Dialog.vue.d.ts +1 -1
  45. package/components/dialog/v3/index.d.ts +20 -20
  46. package/components/dialog/v4/DialogV4.vue.js +3 -3
  47. package/components/dialog/v4/DialogV4.vue2.js +67 -62
  48. package/components/dropdown/common/Dropdown.common.js +74 -69
  49. package/components/dropdown/common/Option.common.d.ts +1 -1
  50. package/components/dropdown/common/Option.common.js +9 -9
  51. package/components/dropdown/composables/useChildOptions.d.ts +7 -0
  52. package/components/dropdown/composables/useChildOptions.js +14 -0
  53. package/components/dropdown/v3/Dropdown.vue.d.ts +4 -0
  54. package/components/dropdown/v3/Dropdown.vue.js +4 -4
  55. package/components/dropdown/v3/Dropdown.vue2.js +32 -32
  56. package/components/dropdown/v3/index.d.ts +13 -1
  57. package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +16 -3
  58. package/components/dropdown/v4/AppDropdownTrigger.vue.js +3 -3
  59. package/components/dropdown/v4/AppDropdownTrigger.vue2.js +102 -61
  60. package/components/dropdown/v4/ChipDropdownTrigger.vue.js +2 -2
  61. package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +1 -1
  62. package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +8 -3
  63. package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
  64. package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +22 -21
  65. package/components/dropdown/v4/DropdownV4.vue.d.ts +35 -3
  66. package/components/dropdown/v4/DropdownV4.vue.js +2 -2
  67. package/components/dropdown/v4/DropdownV4.vue2.js +127 -114
  68. package/components/dropdown/v4/OptionV4.vue.d.ts +14 -3
  69. package/components/dropdown/v4/OptionV4.vue.js +2 -2
  70. package/components/dropdown/v4/OptionV4.vue2.js +79 -56
  71. package/components/dropdown/v4/TreeDropdown.vue.d.ts +112 -0
  72. package/components/dropdown/v4/TreeDropdown.vue.js +7 -0
  73. package/components/dropdown/v4/TreeDropdown.vue2.js +122 -0
  74. package/components/dropdown/v4/dropdownStoryArgs.d.ts +1 -1
  75. package/components/dropdown/v4/index.d.ts +422 -38
  76. package/components/dropdown/v4/index.js +7 -4
  77. package/components/emptyState/v3/EmptyState.vue.d.ts +2 -2
  78. package/components/emptyState/v3/index.d.ts +47 -47
  79. package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
  80. package/components/emptyState/v4/index.d.ts +7 -7
  81. package/components/forms/FormCard.vue.js +2 -2
  82. package/components/forms/FormCard.vue2.js +9 -9
  83. package/components/icon/v4/Icon.types.d.ts +1 -1
  84. package/components/icon/v4/IconV4.vue.d.ts +16 -6
  85. package/components/icon/v4/IconV4.vue.js +4 -4
  86. package/components/icon/v4/IconV4.vue2.js +36 -33
  87. package/components/icon/v4/index.d.ts +53 -15
  88. package/components/inlineCopy/InlineCopy.vue.d.ts +6 -2
  89. package/components/inlineCopy/InlineCopy.vue.js +3 -3
  90. package/components/inlineCopy/InlineCopy.vue2.js +23 -22
  91. package/components/inlineCopy/index.d.ts +6 -2
  92. package/components/input/v4/TextField.vue.d.ts +5 -0
  93. package/components/input/v4/TextField.vue.js +3 -3
  94. package/components/input/v4/TextField.vue2.js +24 -21
  95. package/components/input/v4/index.d.ts +20 -1
  96. package/components/layout/FoldableSection.vue.js +5 -5
  97. package/components/layout/FoldableSection.vue2.js +1 -1
  98. package/components/multibar/MultiBarMenu.vue2.js +12 -11
  99. package/components/shared/FieldLabel.vue.js +3 -3
  100. package/components/shared/FieldLabel.vue2.js +9 -9
  101. package/components/snackbar/v4/SnackbarV4.vue.d.ts +20 -20
  102. package/components/table/common/Table.common.d.ts +1 -0
  103. package/components/table/common/Table.common.js +65 -61
  104. package/components/table/v4/DataGrid.vue.d.ts +9 -1
  105. package/components/table/v4/DataGrid.vue.js +3 -3
  106. package/components/table/v4/DataGrid.vue2.js +180 -176
  107. package/components/table/v4/DataGridMenu.vue2.js +3 -2
  108. package/components/table/v4/HelpIcon.vue.js +5 -5
  109. package/components/table/v4/HelpIcon.vue2.js +5 -5
  110. package/components/table/v4/index.d.ts +29 -5
  111. package/components/textArea/v4/TextAreaV4.vue.js +3 -3
  112. package/components/textArea/v4/TextAreaV4.vue2.js +1 -1
  113. package/components/toggle/v4/ToggleV4.vue.d.ts +1 -1
  114. package/components/toggle/v4/ToggleV4.vue.js +3 -3
  115. package/components/toggle/v4/ToggleV4.vue2.js +12 -12
  116. package/components/toggle/v4/index.d.ts +20 -20
  117. package/components/tooltip/v4/TooltipV4.vue.d.ts +6 -2
  118. package/components/tooltip/v4/TooltipV4.vue.js +2 -2
  119. package/components/tooltip/v4/TooltipV4.vue2.js +21 -19
  120. package/components/tooltip/v4/index.d.ts +17 -5
  121. package/composables/useFormValidation.js +19 -13
  122. package/design-foundation.stories/icons/iconsData.d.ts +5 -1
  123. package/index.d.ts +1451 -688
  124. package/mocks/apps.d.ts +1 -0
  125. package/mocks/options.d.ts +12 -0
  126. package/package.json +1 -1
  127. package/utils/text.d.ts +1 -0
  128. package/utils/text.js +9 -0
  129. package/Alert.vue_vue_type_style_index_0_scoped_d6680a72_lang.css +0 -1
  130. package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_0267d003_lang.css +0 -1
  131. package/AppHeader.vue_vue_type_style_index_0_scoped_c148fc7a_lang.css +0 -1
  132. package/Autocomplete.vue_vue_type_style_index_0_scoped_62faa8e0_lang.css +0 -1
  133. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_889042cf_lang.css +0 -1
  134. package/ChipV4.vue_vue_type_style_index_0_scoped_78d7c9c0_lang.css +0 -1
  135. package/DataGrid.vue_vue_type_style_index_0_scoped_c96fba2c_lang.css +0 -1
  136. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_c9783327_lang.css +0 -1
  137. package/DialogV4.vue_vue_type_style_index_0_scoped_c3004ba3_lang.css +0 -1
  138. package/Dropdown.vue_vue_type_style_index_0_scoped_d4f8e790_lang.css +0 -1
  139. package/DropdownV4.vue_vue_type_style_index_0_scoped_0968078f_lang.css +0 -1
  140. package/FieldLabel.vue_vue_type_style_index_0_scoped_72ab1f25_lang.css +0 -1
  141. package/FoldableSection.vue_vue_type_style_index_0_scoped_8d0fd203_lang.css +0 -1
  142. package/HelpIcon.vue_vue_type_style_index_0_scoped_7a611779_lang.css +0 -1
  143. package/IconV4.vue_vue_type_style_index_0_scoped_a78f8a3e_lang.css +0 -1
  144. package/InlineCopy.vue_vue_type_style_index_0_scoped_ff9f4a0f_lang.css +0 -1
  145. package/OptionV4.vue_vue_type_style_index_0_scoped_b8375219_lang.css +0 -1
  146. package/TextAreaV4.vue_vue_type_style_index_0_scoped_8199b662_lang.css +0 -1
  147. package/TextField.vue_vue_type_style_index_0_scoped_07687bcc_lang.css +0 -1
  148. package/ToggleV4.vue_vue_type_style_index_0_scoped_ad231e8c_lang.css +0 -1
  149. package/TooltipV4.vue_vue_type_style_index_0_scoped_25809092_lang.css +0 -1
package/index.d.ts CHANGED
@@ -88,7 +88,9 @@ declare const _default: {
88
88
  type: import("vue").PropType<"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">;
89
89
  default: string;
90
90
  };
91
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
91
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
92
+ copy: () => void;
93
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
92
94
  text: {
93
95
  type: import("vue").PropType<string>;
94
96
  required: true;
@@ -125,7 +127,9 @@ declare const _default: {
125
127
  type: import("vue").PropType<"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">;
126
128
  default: string;
127
129
  };
128
- }>>, {
130
+ }>> & {
131
+ onCopy?: () => any;
132
+ }, {
129
133
  text: string;
130
134
  size: "small" | "medium";
131
135
  testId: string;
@@ -172,7 +176,9 @@ declare const _default: {
172
176
  type: import("vue").PropType<"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">;
173
177
  default: string;
174
178
  };
175
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
179
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
180
+ copy: () => void;
181
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
176
182
  text: {
177
183
  type: import("vue").PropType<string>;
178
184
  required: true;
@@ -209,7 +215,9 @@ declare const _default: {
209
215
  type: import("vue").PropType<"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">;
210
216
  default: string;
211
217
  };
212
- }>>, {
218
+ }>> & {
219
+ onCopy?: () => any;
220
+ }, {
213
221
  text: string;
214
222
  size: "small" | "medium";
215
223
  testId: string;
@@ -253,7 +261,9 @@ declare const _default: {
253
261
  type: import("vue").PropType<boolean>;
254
262
  default: boolean;
255
263
  };
256
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
264
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
265
+ copyToClipboard: () => void;
266
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
257
267
  name: {
258
268
  type: import("vue").PropType<string>;
259
269
  required: true;
@@ -287,7 +297,9 @@ declare const _default: {
287
297
  type: import("vue").PropType<boolean>;
288
298
  default: boolean;
289
299
  };
290
- }>>, {
300
+ }>> & {
301
+ onCopyToClipboard?: () => any;
302
+ }, {
291
303
  name: string;
292
304
  type: "small" | "normal";
293
305
  image: string;
@@ -330,7 +342,9 @@ declare const _default: {
330
342
  type: import("vue").PropType<boolean>;
331
343
  default: boolean;
332
344
  };
333
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
345
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
346
+ copyToClipboard: () => void;
347
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
334
348
  name: {
335
349
  type: import("vue").PropType<string>;
336
350
  required: true;
@@ -364,7 +378,9 @@ declare const _default: {
364
378
  type: import("vue").PropType<boolean>;
365
379
  default: boolean;
366
380
  };
367
- }>>, {
381
+ }>> & {
382
+ onCopyToClipboard?: () => any;
383
+ }, {
368
384
  name: string;
369
385
  type: "small" | "normal";
370
386
  image: string;
@@ -1959,7 +1975,7 @@ declare const _default: {
1959
1975
  iconName: string;
1960
1976
  iconSize: string;
1961
1977
  subtitle: string;
1962
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
1978
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
1963
1979
  buttonText: string;
1964
1980
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1965
1981
  title: {
@@ -1983,7 +1999,7 @@ declare const _default: {
1983
1999
  default: any;
1984
2000
  };
1985
2001
  iconType: {
1986
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2002
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
1987
2003
  default: string;
1988
2004
  };
1989
2005
  buttonText: {
@@ -2028,7 +2044,7 @@ declare const _default: {
2028
2044
  default: any;
2029
2045
  };
2030
2046
  iconType: {
2031
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2047
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
2032
2048
  default: string;
2033
2049
  };
2034
2050
  buttonText: {
@@ -2045,7 +2061,7 @@ declare const _default: {
2045
2061
  iconName: string;
2046
2062
  iconSize: string;
2047
2063
  subtitle: string;
2048
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
2064
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
2049
2065
  buttonText: string;
2050
2066
  }, {}, string> & {
2051
2067
  beforeCreate?: (() => void) | (() => void)[];
@@ -2089,7 +2105,7 @@ declare const _default: {
2089
2105
  default: any;
2090
2106
  };
2091
2107
  iconType: {
2092
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2108
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
2093
2109
  default: string;
2094
2110
  };
2095
2111
  buttonText: {
@@ -2124,7 +2140,7 @@ declare const _default: {
2124
2140
  default: any;
2125
2141
  };
2126
2142
  iconType: {
2127
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2143
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
2128
2144
  default: string;
2129
2145
  };
2130
2146
  buttonText: {
@@ -2141,7 +2157,7 @@ declare const _default: {
2141
2157
  iconName: string;
2142
2158
  iconSize: string;
2143
2159
  subtitle: string;
2144
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
2160
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
2145
2161
  buttonText: string;
2146
2162
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2147
2163
  $slots: {
@@ -2159,7 +2175,7 @@ declare const _default: {
2159
2175
  iconName: string;
2160
2176
  iconSize: string;
2161
2177
  subtitle: string;
2162
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
2178
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
2163
2179
  buttonText: string;
2164
2180
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2165
2181
  title: {
@@ -2183,7 +2199,7 @@ declare const _default: {
2183
2199
  default: any;
2184
2200
  };
2185
2201
  iconType: {
2186
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2202
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
2187
2203
  default: string;
2188
2204
  };
2189
2205
  buttonText: {
@@ -2228,7 +2244,7 @@ declare const _default: {
2228
2244
  default: any;
2229
2245
  };
2230
2246
  iconType: {
2231
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2247
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
2232
2248
  default: string;
2233
2249
  };
2234
2250
  buttonText: {
@@ -2245,7 +2261,7 @@ declare const _default: {
2245
2261
  iconName: string;
2246
2262
  iconSize: string;
2247
2263
  subtitle: string;
2248
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
2264
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
2249
2265
  buttonText: string;
2250
2266
  }, {}, string> & {
2251
2267
  beforeCreate?: (() => void) | (() => void)[];
@@ -2289,7 +2305,7 @@ declare const _default: {
2289
2305
  default: any;
2290
2306
  };
2291
2307
  iconType: {
2292
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2308
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
2293
2309
  default: string;
2294
2310
  };
2295
2311
  buttonText: {
@@ -2324,7 +2340,7 @@ declare const _default: {
2324
2340
  default: any;
2325
2341
  };
2326
2342
  iconType: {
2327
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
2343
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
2328
2344
  default: string;
2329
2345
  };
2330
2346
  buttonText: {
@@ -2341,7 +2357,7 @@ declare const _default: {
2341
2357
  iconName: string;
2342
2358
  iconSize: string;
2343
2359
  subtitle: string;
2344
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
2360
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
2345
2361
  buttonText: string;
2346
2362
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2347
2363
  $slots: {
@@ -2853,6 +2869,7 @@ declare const _default: {
2853
2869
  default: number;
2854
2870
  };
2855
2871
  }>> & {
2872
+ onSelectAll?: (value: boolean) => any;
2856
2873
  onOnScroll?: (event: Event) => any;
2857
2874
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
2858
2875
  onSaveRow?: (args_0: {
@@ -2865,6 +2882,8 @@ declare const _default: {
2865
2882
  "onUpdate:search"?: (query: string) => any;
2866
2883
  "onUpdate:selection"?: (selection: unknown[]) => any;
2867
2884
  onOnClearSearch?: () => any;
2885
+ onSelectRow?: (value: boolean) => any;
2886
+ onClickRow?: (rowIndex: number) => any;
2868
2887
  } & 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">;
2869
2888
  $attrs: {
2870
2889
  [x: string]: unknown;
@@ -2877,12 +2896,12 @@ declare const _default: {
2877
2896
  }>;
2878
2897
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2879
2898
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2880
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
2899
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
2881
2900
  value: unknown;
2882
2901
  confirm: () => void;
2883
2902
  rowIndex: number;
2884
2903
  cellIndex: number;
2885
- }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "onClearSearch") => void);
2904
+ }) => 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);
2886
2905
  $el: any;
2887
2906
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2888
2907
  sort: {
@@ -2986,6 +3005,7 @@ declare const _default: {
2986
3005
  default: number;
2987
3006
  };
2988
3007
  }>> & {
3008
+ onSelectAll?: (value: boolean) => any;
2989
3009
  onOnScroll?: (event: Event) => any;
2990
3010
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
2991
3011
  onSaveRow?: (args_0: {
@@ -2998,7 +3018,11 @@ declare const _default: {
2998
3018
  "onUpdate:search"?: (query: string) => any;
2999
3019
  "onUpdate:selection"?: (selection: unknown[]) => any;
3000
3020
  onOnClearSearch?: () => any;
3001
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3021
+ onSelectRow?: (value: boolean) => any;
3022
+ onClickRow?: (rowIndex: number) => any;
3023
+ }, {
3024
+ scrollTo: (index: number) => void;
3025
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3002
3026
  "update:sort": (newSort: tableV3.Sort) => void;
3003
3027
  "update:search": (query: string) => void;
3004
3028
  "update:selection": (selection: unknown[]) => void;
@@ -3011,6 +3035,9 @@ declare const _default: {
3011
3035
  cellIndex: number;
3012
3036
  }) => void;
3013
3037
  loadMore: () => void;
3038
+ selectAll: (value: boolean) => void;
3039
+ selectRow: (value: boolean) => void;
3040
+ clickRow: (rowIndex: number) => void;
3014
3041
  }, string, {
3015
3042
  sort: tableV3.Sort;
3016
3043
  title: string;
@@ -3157,6 +3184,7 @@ declare const _default: {
3157
3184
  default: number;
3158
3185
  };
3159
3186
  }>> & {
3187
+ onSelectAll?: (value: boolean) => any;
3160
3188
  onOnScroll?: (event: Event) => any;
3161
3189
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
3162
3190
  onSaveRow?: (args_0: {
@@ -3169,7 +3197,11 @@ declare const _default: {
3169
3197
  "onUpdate:search"?: (query: string) => any;
3170
3198
  "onUpdate:selection"?: (selection: unknown[]) => any;
3171
3199
  onOnClearSearch?: () => any;
3172
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
3200
+ onSelectRow?: (value: boolean) => any;
3201
+ onClickRow?: (rowIndex: number) => any;
3202
+ } & import("vue").ShallowUnwrapRef<{
3203
+ scrollTo: (index: number) => void;
3204
+ }> & {} & import("vue").ComponentCustomProperties & {};
3173
3205
  __isFragment?: never;
3174
3206
  __isTeleport?: never;
3175
3207
  __isSuspense?: never;
@@ -3275,6 +3307,7 @@ declare const _default: {
3275
3307
  default: number;
3276
3308
  };
3277
3309
  }>> & {
3310
+ onSelectAll?: (value: boolean) => any;
3278
3311
  onOnScroll?: (event: Event) => any;
3279
3312
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
3280
3313
  onSaveRow?: (args_0: {
@@ -3287,7 +3320,11 @@ declare const _default: {
3287
3320
  "onUpdate:search"?: (query: string) => any;
3288
3321
  "onUpdate:selection"?: (selection: unknown[]) => any;
3289
3322
  onOnClearSearch?: () => any;
3290
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3323
+ onSelectRow?: (value: boolean) => any;
3324
+ onClickRow?: (rowIndex: number) => any;
3325
+ }, {
3326
+ scrollTo: (index: number) => void;
3327
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3291
3328
  "update:sort": (newSort: tableV3.Sort) => void;
3292
3329
  "update:search": (query: string) => void;
3293
3330
  "update:selection": (selection: unknown[]) => void;
@@ -3300,6 +3337,9 @@ declare const _default: {
3300
3337
  cellIndex: number;
3301
3338
  }) => void;
3302
3339
  loadMore: () => void;
3340
+ selectAll: (value: boolean) => void;
3341
+ selectRow: (value: boolean) => void;
3342
+ clickRow: (rowIndex: number) => void;
3303
3343
  }, string, {
3304
3344
  sort: tableV3.Sort;
3305
3345
  title: string;
@@ -3554,6 +3594,7 @@ declare const _default: {
3554
3594
  default: number;
3555
3595
  };
3556
3596
  }>> & {
3597
+ onSelectAll?: (value: boolean) => any;
3557
3598
  onOnScroll?: (event: Event) => any;
3558
3599
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
3559
3600
  onSaveRow?: (args_0: {
@@ -3566,6 +3607,8 @@ declare const _default: {
3566
3607
  "onUpdate:search"?: (query: string) => any;
3567
3608
  "onUpdate:selection"?: (selection: unknown[]) => any;
3568
3609
  onOnClearSearch?: () => any;
3610
+ onSelectRow?: (value: boolean) => any;
3611
+ onClickRow?: (rowIndex: number) => any;
3569
3612
  } & 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">;
3570
3613
  $attrs: {
3571
3614
  [x: string]: unknown;
@@ -3578,12 +3621,12 @@ declare const _default: {
3578
3621
  }>;
3579
3622
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
3580
3623
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
3581
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
3624
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: {
3582
3625
  value: unknown;
3583
3626
  confirm: () => void;
3584
3627
  rowIndex: number;
3585
3628
  cellIndex: number;
3586
- }) => void) & ((event: "loadMore") => void) & ((event: "update:search", query: string) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "onClearSearch") => void);
3629
+ }) => 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);
3587
3630
  $el: any;
3588
3631
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3589
3632
  sort: {
@@ -3687,6 +3730,7 @@ declare const _default: {
3687
3730
  default: number;
3688
3731
  };
3689
3732
  }>> & {
3733
+ onSelectAll?: (value: boolean) => any;
3690
3734
  onOnScroll?: (event: Event) => any;
3691
3735
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
3692
3736
  onSaveRow?: (args_0: {
@@ -3699,7 +3743,11 @@ declare const _default: {
3699
3743
  "onUpdate:search"?: (query: string) => any;
3700
3744
  "onUpdate:selection"?: (selection: unknown[]) => any;
3701
3745
  onOnClearSearch?: () => any;
3702
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3746
+ onSelectRow?: (value: boolean) => any;
3747
+ onClickRow?: (rowIndex: number) => any;
3748
+ }, {
3749
+ scrollTo: (index: number) => void;
3750
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3703
3751
  "update:sort": (newSort: tableV3.Sort) => void;
3704
3752
  "update:search": (query: string) => void;
3705
3753
  "update:selection": (selection: unknown[]) => void;
@@ -3712,6 +3760,9 @@ declare const _default: {
3712
3760
  cellIndex: number;
3713
3761
  }) => void;
3714
3762
  loadMore: () => void;
3763
+ selectAll: (value: boolean) => void;
3764
+ selectRow: (value: boolean) => void;
3765
+ clickRow: (rowIndex: number) => void;
3715
3766
  }, string, {
3716
3767
  sort: tableV3.Sort;
3717
3768
  title: string;
@@ -3858,6 +3909,7 @@ declare const _default: {
3858
3909
  default: number;
3859
3910
  };
3860
3911
  }>> & {
3912
+ onSelectAll?: (value: boolean) => any;
3861
3913
  onOnScroll?: (event: Event) => any;
3862
3914
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
3863
3915
  onSaveRow?: (args_0: {
@@ -3870,7 +3922,11 @@ declare const _default: {
3870
3922
  "onUpdate:search"?: (query: string) => any;
3871
3923
  "onUpdate:selection"?: (selection: unknown[]) => any;
3872
3924
  onOnClearSearch?: () => any;
3873
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
3925
+ onSelectRow?: (value: boolean) => any;
3926
+ onClickRow?: (rowIndex: number) => any;
3927
+ } & import("vue").ShallowUnwrapRef<{
3928
+ scrollTo: (index: number) => void;
3929
+ }> & {} & import("vue").ComponentCustomProperties & {};
3874
3930
  __isFragment?: never;
3875
3931
  __isTeleport?: never;
3876
3932
  __isSuspense?: never;
@@ -3976,6 +4032,7 @@ declare const _default: {
3976
4032
  default: number;
3977
4033
  };
3978
4034
  }>> & {
4035
+ onSelectAll?: (value: boolean) => any;
3979
4036
  onOnScroll?: (event: Event) => any;
3980
4037
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
3981
4038
  onSaveRow?: (args_0: {
@@ -3988,7 +4045,11 @@ declare const _default: {
3988
4045
  "onUpdate:search"?: (query: string) => any;
3989
4046
  "onUpdate:selection"?: (selection: unknown[]) => any;
3990
4047
  onOnClearSearch?: () => any;
3991
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4048
+ onSelectRow?: (value: boolean) => any;
4049
+ onClickRow?: (rowIndex: number) => any;
4050
+ }, {
4051
+ scrollTo: (index: number) => void;
4052
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3992
4053
  "update:sort": (newSort: tableV3.Sort) => void;
3993
4054
  "update:search": (query: string) => void;
3994
4055
  "update:selection": (selection: unknown[]) => void;
@@ -4001,6 +4062,9 @@ declare const _default: {
4001
4062
  cellIndex: number;
4002
4063
  }) => void;
4003
4064
  loadMore: () => void;
4065
+ selectAll: (value: boolean) => void;
4066
+ selectRow: (value: boolean) => void;
4067
+ clickRow: (rowIndex: number) => void;
4004
4068
  }, string, {
4005
4069
  sort: tableV3.Sort;
4006
4070
  title: string;
@@ -4983,8 +5047,8 @@ declare const _default: {
4983
5047
  $data: {};
4984
5048
  $props: Partial<{
4985
5049
  text: string;
4986
- size: "small" | "medium";
4987
5050
  color: "primary" | "test";
5051
+ size: "small" | "medium";
4988
5052
  testId: string;
4989
5053
  isLoading: boolean;
4990
5054
  hoverHelpText: string;
@@ -4999,14 +5063,14 @@ declare const _default: {
4999
5063
  type: import("vue").PropType<string>;
5000
5064
  default: any;
5001
5065
  };
5002
- size: {
5003
- type: import("vue").PropType<"small" | "medium">;
5004
- default: string;
5005
- };
5006
5066
  color: {
5007
5067
  type: import("vue").PropType<"primary" | "test">;
5008
5068
  default: string;
5009
5069
  };
5070
+ size: {
5071
+ type: import("vue").PropType<"small" | "medium">;
5072
+ default: string;
5073
+ };
5010
5074
  testId: {
5011
5075
  type: import("vue").PropType<string>;
5012
5076
  default: string;
@@ -5049,7 +5113,7 @@ declare const _default: {
5049
5113
  };
5050
5114
  }>> & {
5051
5115
  "onUpdate:modelValue"?: (value: boolean) => any;
5052
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "color" | "testId" | "isLoading" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "activeText" | "inactiveText" | "isDisabled">;
5116
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "color" | "size" | "testId" | "isLoading" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "activeText" | "inactiveText" | "isDisabled">;
5053
5117
  $attrs: {
5054
5118
  [x: string]: unknown;
5055
5119
  };
@@ -5068,14 +5132,14 @@ declare const _default: {
5068
5132
  type: import("vue").PropType<string>;
5069
5133
  default: any;
5070
5134
  };
5071
- size: {
5072
- type: import("vue").PropType<"small" | "medium">;
5073
- default: string;
5074
- };
5075
5135
  color: {
5076
5136
  type: import("vue").PropType<"primary" | "test">;
5077
5137
  default: string;
5078
5138
  };
5139
+ size: {
5140
+ type: import("vue").PropType<"small" | "medium">;
5141
+ default: string;
5142
+ };
5079
5143
  testId: {
5080
5144
  type: import("vue").PropType<string>;
5081
5145
  default: string;
@@ -5122,8 +5186,8 @@ declare const _default: {
5122
5186
  "update:modelValue": (value: boolean) => void;
5123
5187
  }, string, {
5124
5188
  text: string;
5125
- size: "small" | "medium";
5126
5189
  color: "primary" | "test";
5190
+ size: "small" | "medium";
5127
5191
  testId: string;
5128
5192
  isLoading: boolean;
5129
5193
  hoverHelpText: string;
@@ -5158,14 +5222,14 @@ declare const _default: {
5158
5222
  type: import("vue").PropType<string>;
5159
5223
  default: any;
5160
5224
  };
5161
- size: {
5162
- type: import("vue").PropType<"small" | "medium">;
5163
- default: string;
5164
- };
5165
5225
  color: {
5166
5226
  type: import("vue").PropType<"primary" | "test">;
5167
5227
  default: string;
5168
5228
  };
5229
+ size: {
5230
+ type: import("vue").PropType<"small" | "medium">;
5231
+ default: string;
5232
+ };
5169
5233
  testId: {
5170
5234
  type: import("vue").PropType<string>;
5171
5235
  default: string;
@@ -5217,14 +5281,14 @@ declare const _default: {
5217
5281
  type: import("vue").PropType<string>;
5218
5282
  default: any;
5219
5283
  };
5220
- size: {
5221
- type: import("vue").PropType<"small" | "medium">;
5222
- default: string;
5223
- };
5224
5284
  color: {
5225
5285
  type: import("vue").PropType<"primary" | "test">;
5226
5286
  default: string;
5227
5287
  };
5288
+ size: {
5289
+ type: import("vue").PropType<"small" | "medium">;
5290
+ default: string;
5291
+ };
5228
5292
  testId: {
5229
5293
  type: import("vue").PropType<string>;
5230
5294
  default: string;
@@ -5271,8 +5335,8 @@ declare const _default: {
5271
5335
  "update:modelValue": (value: boolean) => void;
5272
5336
  }, string, {
5273
5337
  text: string;
5274
- size: "small" | "medium";
5275
5338
  color: "primary" | "test";
5339
+ size: "small" | "medium";
5276
5340
  testId: string;
5277
5341
  isLoading: boolean;
5278
5342
  hoverHelpText: string;
@@ -5294,8 +5358,8 @@ declare const _default: {
5294
5358
  $data: {};
5295
5359
  $props: Partial<{
5296
5360
  text: string;
5297
- size: "small" | "medium";
5298
5361
  color: "primary" | "test";
5362
+ size: "small" | "medium";
5299
5363
  testId: string;
5300
5364
  isLoading: boolean;
5301
5365
  hoverHelpText: string;
@@ -5310,14 +5374,14 @@ declare const _default: {
5310
5374
  type: import("vue").PropType<string>;
5311
5375
  default: any;
5312
5376
  };
5313
- size: {
5314
- type: import("vue").PropType<"small" | "medium">;
5315
- default: string;
5316
- };
5317
5377
  color: {
5318
5378
  type: import("vue").PropType<"primary" | "test">;
5319
5379
  default: string;
5320
5380
  };
5381
+ size: {
5382
+ type: import("vue").PropType<"small" | "medium">;
5383
+ default: string;
5384
+ };
5321
5385
  testId: {
5322
5386
  type: import("vue").PropType<string>;
5323
5387
  default: string;
@@ -5360,7 +5424,7 @@ declare const _default: {
5360
5424
  };
5361
5425
  }>> & {
5362
5426
  "onUpdate:modelValue"?: (value: boolean) => any;
5363
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "color" | "testId" | "isLoading" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "activeText" | "inactiveText" | "isDisabled">;
5427
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "color" | "size" | "testId" | "isLoading" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "activeText" | "inactiveText" | "isDisabled">;
5364
5428
  $attrs: {
5365
5429
  [x: string]: unknown;
5366
5430
  };
@@ -5379,14 +5443,14 @@ declare const _default: {
5379
5443
  type: import("vue").PropType<string>;
5380
5444
  default: any;
5381
5445
  };
5382
- size: {
5383
- type: import("vue").PropType<"small" | "medium">;
5384
- default: string;
5385
- };
5386
5446
  color: {
5387
5447
  type: import("vue").PropType<"primary" | "test">;
5388
5448
  default: string;
5389
5449
  };
5450
+ size: {
5451
+ type: import("vue").PropType<"small" | "medium">;
5452
+ default: string;
5453
+ };
5390
5454
  testId: {
5391
5455
  type: import("vue").PropType<string>;
5392
5456
  default: string;
@@ -5433,8 +5497,8 @@ declare const _default: {
5433
5497
  "update:modelValue": (value: boolean) => void;
5434
5498
  }, string, {
5435
5499
  text: string;
5436
- size: "small" | "medium";
5437
5500
  color: "primary" | "test";
5501
+ size: "small" | "medium";
5438
5502
  testId: string;
5439
5503
  isLoading: boolean;
5440
5504
  hoverHelpText: string;
@@ -5469,14 +5533,14 @@ declare const _default: {
5469
5533
  type: import("vue").PropType<string>;
5470
5534
  default: any;
5471
5535
  };
5472
- size: {
5473
- type: import("vue").PropType<"small" | "medium">;
5474
- default: string;
5475
- };
5476
5536
  color: {
5477
5537
  type: import("vue").PropType<"primary" | "test">;
5478
5538
  default: string;
5479
5539
  };
5540
+ size: {
5541
+ type: import("vue").PropType<"small" | "medium">;
5542
+ default: string;
5543
+ };
5480
5544
  testId: {
5481
5545
  type: import("vue").PropType<string>;
5482
5546
  default: string;
@@ -5528,14 +5592,14 @@ declare const _default: {
5528
5592
  type: import("vue").PropType<string>;
5529
5593
  default: any;
5530
5594
  };
5531
- size: {
5532
- type: import("vue").PropType<"small" | "medium">;
5533
- default: string;
5534
- };
5535
5595
  color: {
5536
5596
  type: import("vue").PropType<"primary" | "test">;
5537
5597
  default: string;
5538
5598
  };
5599
+ size: {
5600
+ type: import("vue").PropType<"small" | "medium">;
5601
+ default: string;
5602
+ };
5539
5603
  testId: {
5540
5604
  type: import("vue").PropType<string>;
5541
5605
  default: string;
@@ -5582,8 +5646,8 @@ declare const _default: {
5582
5646
  "update:modelValue": (value: boolean) => void;
5583
5647
  }, string, {
5584
5648
  text: string;
5585
- size: "small" | "medium";
5586
5649
  color: "primary" | "test";
5650
+ size: "small" | "medium";
5587
5651
  testId: string;
5588
5652
  isLoading: boolean;
5589
5653
  hoverHelpText: string;
@@ -5660,7 +5724,9 @@ declare const _default: {
5660
5724
  type: import("vue").PropType<string | number>;
5661
5725
  default: string;
5662
5726
  };
5663
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
5727
+ }>> & {
5728
+ onShow?: () => any;
5729
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
5664
5730
  $attrs: {
5665
5731
  [x: string]: unknown;
5666
5732
  };
@@ -5672,7 +5738,7 @@ declare const _default: {
5672
5738
  }>;
5673
5739
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5674
5740
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5675
- $emit: (event: string, ...args: any[]) => void;
5741
+ $emit: (event: "show") => void;
5676
5742
  $el: any;
5677
5743
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5678
5744
  header: {
@@ -5719,7 +5785,11 @@ declare const _default: {
5719
5785
  type: import("vue").PropType<string | number>;
5720
5786
  default: string;
5721
5787
  };
5722
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
5788
+ }>> & {
5789
+ onShow?: () => any;
5790
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5791
+ show: () => void;
5792
+ }, string, {
5723
5793
  header: string;
5724
5794
  text: string;
5725
5795
  theme: string;
@@ -5796,7 +5866,9 @@ declare const _default: {
5796
5866
  type: import("vue").PropType<string | number>;
5797
5867
  default: string;
5798
5868
  };
5799
- }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
5869
+ }>> & {
5870
+ onShow?: () => any;
5871
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
5800
5872
  __isFragment?: never;
5801
5873
  __isTeleport?: never;
5802
5874
  __isSuspense?: never;
@@ -5845,7 +5917,11 @@ declare const _default: {
5845
5917
  type: import("vue").PropType<string | number>;
5846
5918
  default: string;
5847
5919
  };
5848
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
5920
+ }>> & {
5921
+ onShow?: () => any;
5922
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5923
+ show: () => void;
5924
+ }, string, {
5849
5925
  header: string;
5850
5926
  text: string;
5851
5927
  theme: string;
@@ -5926,7 +6002,9 @@ declare const _default: {
5926
6002
  type: import("vue").PropType<string | number>;
5927
6003
  default: string;
5928
6004
  };
5929
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
6005
+ }>> & {
6006
+ onShow?: () => any;
6007
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
5930
6008
  $attrs: {
5931
6009
  [x: string]: unknown;
5932
6010
  };
@@ -5938,7 +6016,7 @@ declare const _default: {
5938
6016
  }>;
5939
6017
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5940
6018
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5941
- $emit: (event: string, ...args: any[]) => void;
6019
+ $emit: (event: "show") => void;
5942
6020
  $el: any;
5943
6021
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5944
6022
  header: {
@@ -5985,7 +6063,11 @@ declare const _default: {
5985
6063
  type: import("vue").PropType<string | number>;
5986
6064
  default: string;
5987
6065
  };
5988
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
6066
+ }>> & {
6067
+ onShow?: () => any;
6068
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6069
+ show: () => void;
6070
+ }, string, {
5989
6071
  header: string;
5990
6072
  text: string;
5991
6073
  theme: string;
@@ -6062,7 +6144,9 @@ declare const _default: {
6062
6144
  type: import("vue").PropType<string | number>;
6063
6145
  default: string;
6064
6146
  };
6065
- }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
6147
+ }>> & {
6148
+ onShow?: () => any;
6149
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
6066
6150
  __isFragment?: never;
6067
6151
  __isTeleport?: never;
6068
6152
  __isSuspense?: never;
@@ -6111,7 +6195,11 @@ declare const _default: {
6111
6195
  type: import("vue").PropType<string | number>;
6112
6196
  default: string;
6113
6197
  };
6114
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
6198
+ }>> & {
6199
+ onShow?: () => any;
6200
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6201
+ show: () => void;
6202
+ }, string, {
6115
6203
  header: string;
6116
6204
  text: string;
6117
6205
  theme: string;
@@ -7368,27 +7456,37 @@ declare const _default: {
7368
7456
  $data: {};
7369
7457
  $props: Partial<{
7370
7458
  name: string;
7371
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
7372
- size: string;
7459
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
7373
7460
  color: string;
7461
+ size: string;
7462
+ height: string;
7463
+ width: string;
7374
7464
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
7375
7465
  name: {
7376
7466
  type: import("vue").PropType<string>;
7377
7467
  default: any;
7378
7468
  };
7379
7469
  type: {
7380
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
7470
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
7381
7471
  default: string;
7382
7472
  };
7473
+ color: {
7474
+ type: import("vue").PropType<string>;
7475
+ default: any;
7476
+ };
7383
7477
  size: {
7384
7478
  type: import("vue").PropType<string>;
7385
7479
  default: any;
7386
7480
  };
7387
- color: {
7481
+ height: {
7482
+ type: import("vue").PropType<string>;
7483
+ default: any;
7484
+ };
7485
+ width: {
7388
7486
  type: import("vue").PropType<string>;
7389
7487
  default: any;
7390
7488
  };
7391
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "size" | "color">;
7489
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "color" | "size" | "height" | "width">;
7392
7490
  $attrs: {
7393
7491
  [x: string]: unknown;
7394
7492
  };
@@ -7408,22 +7506,32 @@ declare const _default: {
7408
7506
  default: any;
7409
7507
  };
7410
7508
  type: {
7411
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
7509
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
7412
7510
  default: string;
7413
7511
  };
7512
+ color: {
7513
+ type: import("vue").PropType<string>;
7514
+ default: any;
7515
+ };
7414
7516
  size: {
7415
7517
  type: import("vue").PropType<string>;
7416
7518
  default: any;
7417
7519
  };
7418
- color: {
7520
+ height: {
7521
+ type: import("vue").PropType<string>;
7522
+ default: any;
7523
+ };
7524
+ width: {
7419
7525
  type: import("vue").PropType<string>;
7420
7526
  default: any;
7421
7527
  };
7422
7528
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
7423
7529
  name: string;
7424
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
7425
- size: string;
7530
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
7426
7531
  color: string;
7532
+ size: string;
7533
+ height: string;
7534
+ width: string;
7427
7535
  }, {}, string> & {
7428
7536
  beforeCreate?: (() => void) | (() => void)[];
7429
7537
  created?: (() => void) | (() => void)[];
@@ -7450,14 +7558,22 @@ declare const _default: {
7450
7558
  default: any;
7451
7559
  };
7452
7560
  type: {
7453
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
7561
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
7454
7562
  default: string;
7455
7563
  };
7564
+ color: {
7565
+ type: import("vue").PropType<string>;
7566
+ default: any;
7567
+ };
7456
7568
  size: {
7457
7569
  type: import("vue").PropType<string>;
7458
7570
  default: any;
7459
7571
  };
7460
- color: {
7572
+ height: {
7573
+ type: import("vue").PropType<string>;
7574
+ default: any;
7575
+ };
7576
+ width: {
7461
7577
  type: import("vue").PropType<string>;
7462
7578
  default: any;
7463
7579
  };
@@ -7471,22 +7587,32 @@ declare const _default: {
7471
7587
  default: any;
7472
7588
  };
7473
7589
  type: {
7474
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
7590
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
7475
7591
  default: string;
7476
7592
  };
7593
+ color: {
7594
+ type: import("vue").PropType<string>;
7595
+ default: any;
7596
+ };
7477
7597
  size: {
7478
7598
  type: import("vue").PropType<string>;
7479
7599
  default: any;
7480
7600
  };
7481
- color: {
7601
+ height: {
7602
+ type: import("vue").PropType<string>;
7603
+ default: any;
7604
+ };
7605
+ width: {
7482
7606
  type: import("vue").PropType<string>;
7483
7607
  default: any;
7484
7608
  };
7485
7609
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
7486
7610
  name: string;
7487
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
7488
- size: string;
7611
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
7489
7612
  color: string;
7613
+ size: string;
7614
+ height: string;
7615
+ width: string;
7490
7616
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
7491
7617
  $slots: {
7492
7618
  default?(_: {}): any;
@@ -7498,27 +7624,37 @@ declare const _default: {
7498
7624
  $data: {};
7499
7625
  $props: Partial<{
7500
7626
  name: string;
7501
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
7502
- size: string;
7627
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
7503
7628
  color: string;
7629
+ size: string;
7630
+ height: string;
7631
+ width: string;
7504
7632
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
7505
7633
  name: {
7506
7634
  type: import("vue").PropType<string>;
7507
7635
  default: any;
7508
7636
  };
7509
7637
  type: {
7510
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
7638
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
7511
7639
  default: string;
7512
7640
  };
7641
+ color: {
7642
+ type: import("vue").PropType<string>;
7643
+ default: any;
7644
+ };
7513
7645
  size: {
7514
7646
  type: import("vue").PropType<string>;
7515
7647
  default: any;
7516
7648
  };
7517
- color: {
7649
+ height: {
7650
+ type: import("vue").PropType<string>;
7651
+ default: any;
7652
+ };
7653
+ width: {
7518
7654
  type: import("vue").PropType<string>;
7519
7655
  default: any;
7520
7656
  };
7521
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "size" | "color">;
7657
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "color" | "size" | "height" | "width">;
7522
7658
  $attrs: {
7523
7659
  [x: string]: unknown;
7524
7660
  };
@@ -7538,22 +7674,32 @@ declare const _default: {
7538
7674
  default: any;
7539
7675
  };
7540
7676
  type: {
7541
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
7677
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
7542
7678
  default: string;
7543
7679
  };
7680
+ color: {
7681
+ type: import("vue").PropType<string>;
7682
+ default: any;
7683
+ };
7544
7684
  size: {
7545
7685
  type: import("vue").PropType<string>;
7546
7686
  default: any;
7547
7687
  };
7548
- color: {
7688
+ height: {
7689
+ type: import("vue").PropType<string>;
7690
+ default: any;
7691
+ };
7692
+ width: {
7549
7693
  type: import("vue").PropType<string>;
7550
7694
  default: any;
7551
7695
  };
7552
7696
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
7553
7697
  name: string;
7554
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
7555
- size: string;
7698
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
7556
7699
  color: string;
7700
+ size: string;
7701
+ height: string;
7702
+ width: string;
7557
7703
  }, {}, string> & {
7558
7704
  beforeCreate?: (() => void) | (() => void)[];
7559
7705
  created?: (() => void) | (() => void)[];
@@ -7580,14 +7726,22 @@ declare const _default: {
7580
7726
  default: any;
7581
7727
  };
7582
7728
  type: {
7583
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
7729
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
7584
7730
  default: string;
7585
7731
  };
7732
+ color: {
7733
+ type: import("vue").PropType<string>;
7734
+ default: any;
7735
+ };
7586
7736
  size: {
7587
7737
  type: import("vue").PropType<string>;
7588
7738
  default: any;
7589
7739
  };
7590
- color: {
7740
+ height: {
7741
+ type: import("vue").PropType<string>;
7742
+ default: any;
7743
+ };
7744
+ width: {
7591
7745
  type: import("vue").PropType<string>;
7592
7746
  default: any;
7593
7747
  };
@@ -7601,22 +7755,32 @@ declare const _default: {
7601
7755
  default: any;
7602
7756
  };
7603
7757
  type: {
7604
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
7758
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
7605
7759
  default: string;
7606
7760
  };
7761
+ color: {
7762
+ type: import("vue").PropType<string>;
7763
+ default: any;
7764
+ };
7607
7765
  size: {
7608
7766
  type: import("vue").PropType<string>;
7609
7767
  default: any;
7610
7768
  };
7611
- color: {
7769
+ height: {
7770
+ type: import("vue").PropType<string>;
7771
+ default: any;
7772
+ };
7773
+ width: {
7612
7774
  type: import("vue").PropType<string>;
7613
7775
  default: any;
7614
7776
  };
7615
7777
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
7616
7778
  name: string;
7617
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
7618
- size: string;
7779
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
7619
7780
  color: string;
7781
+ size: string;
7782
+ height: string;
7783
+ width: string;
7620
7784
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
7621
7785
  $slots: {
7622
7786
  default?(_: {}): any;
@@ -8344,6 +8508,7 @@ declare const _default: {
8344
8508
  showApply: boolean;
8345
8509
  inlineError: boolean;
8346
8510
  inlineErrorText: string;
8511
+ inlineErrorTextPlacement: "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";
8347
8512
  feedbackText: string;
8348
8513
  feedbackVariant: "success" | "warning" | "error";
8349
8514
  showFeedbackTextIcon: boolean;
@@ -8437,6 +8602,10 @@ declare const _default: {
8437
8602
  type: import("vue").PropType<string>;
8438
8603
  default: string;
8439
8604
  };
8605
+ inlineErrorTextPlacement: {
8606
+ type: import("vue").PropType<"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">;
8607
+ default: string;
8608
+ };
8440
8609
  feedbackText: {
8441
8610
  type: import("vue").PropType<string>;
8442
8611
  default: string;
@@ -8456,7 +8625,7 @@ declare const _default: {
8456
8625
  }>> & {
8457
8626
  "onUpdate:modelValue"?: (value: string | number) => any;
8458
8627
  onApply?: () => any;
8459
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
8628
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
8460
8629
  $attrs: {
8461
8630
  [x: string]: unknown;
8462
8631
  };
@@ -8559,6 +8728,10 @@ declare const _default: {
8559
8728
  type: import("vue").PropType<string>;
8560
8729
  default: string;
8561
8730
  };
8731
+ inlineErrorTextPlacement: {
8732
+ type: import("vue").PropType<"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">;
8733
+ default: string;
8734
+ };
8562
8735
  feedbackText: {
8563
8736
  type: import("vue").PropType<string>;
8564
8737
  default: string;
@@ -8606,6 +8779,7 @@ declare const _default: {
8606
8779
  showApply: boolean;
8607
8780
  inlineError: boolean;
8608
8781
  inlineErrorText: string;
8782
+ inlineErrorTextPlacement: "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";
8609
8783
  feedbackText: string;
8610
8784
  feedbackVariant: "success" | "warning" | "error";
8611
8785
  showFeedbackTextIcon: boolean;
@@ -8719,6 +8893,10 @@ declare const _default: {
8719
8893
  type: import("vue").PropType<string>;
8720
8894
  default: string;
8721
8895
  };
8896
+ inlineErrorTextPlacement: {
8897
+ type: import("vue").PropType<"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">;
8898
+ default: string;
8899
+ };
8722
8900
  feedbackText: {
8723
8901
  type: import("vue").PropType<string>;
8724
8902
  default: string;
@@ -8833,6 +9011,10 @@ declare const _default: {
8833
9011
  type: import("vue").PropType<string>;
8834
9012
  default: string;
8835
9013
  };
9014
+ inlineErrorTextPlacement: {
9015
+ type: import("vue").PropType<"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">;
9016
+ default: string;
9017
+ };
8836
9018
  feedbackText: {
8837
9019
  type: import("vue").PropType<string>;
8838
9020
  default: string;
@@ -8880,6 +9062,7 @@ declare const _default: {
8880
9062
  showApply: boolean;
8881
9063
  inlineError: boolean;
8882
9064
  inlineErrorText: string;
9065
+ inlineErrorTextPlacement: "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";
8883
9066
  feedbackText: string;
8884
9067
  feedbackVariant: "success" | "warning" | "error";
8885
9068
  showFeedbackTextIcon: boolean;
@@ -8917,6 +9100,7 @@ declare const _default: {
8917
9100
  showApply: boolean;
8918
9101
  inlineError: boolean;
8919
9102
  inlineErrorText: string;
9103
+ inlineErrorTextPlacement: "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";
8920
9104
  feedbackText: string;
8921
9105
  feedbackVariant: "success" | "warning" | "error";
8922
9106
  showFeedbackTextIcon: boolean;
@@ -9010,6 +9194,10 @@ declare const _default: {
9010
9194
  type: import("vue").PropType<string>;
9011
9195
  default: string;
9012
9196
  };
9197
+ inlineErrorTextPlacement: {
9198
+ type: import("vue").PropType<"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">;
9199
+ default: string;
9200
+ };
9013
9201
  feedbackText: {
9014
9202
  type: import("vue").PropType<string>;
9015
9203
  default: string;
@@ -9029,7 +9217,7 @@ declare const _default: {
9029
9217
  }>> & {
9030
9218
  "onUpdate:modelValue"?: (value: string | number) => any;
9031
9219
  onApply?: () => any;
9032
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
9220
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
9033
9221
  $attrs: {
9034
9222
  [x: string]: unknown;
9035
9223
  };
@@ -9132,6 +9320,10 @@ declare const _default: {
9132
9320
  type: import("vue").PropType<string>;
9133
9321
  default: string;
9134
9322
  };
9323
+ inlineErrorTextPlacement: {
9324
+ type: import("vue").PropType<"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">;
9325
+ default: string;
9326
+ };
9135
9327
  feedbackText: {
9136
9328
  type: import("vue").PropType<string>;
9137
9329
  default: string;
@@ -9179,6 +9371,7 @@ declare const _default: {
9179
9371
  showApply: boolean;
9180
9372
  inlineError: boolean;
9181
9373
  inlineErrorText: string;
9374
+ inlineErrorTextPlacement: "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";
9182
9375
  feedbackText: string;
9183
9376
  feedbackVariant: "success" | "warning" | "error";
9184
9377
  showFeedbackTextIcon: boolean;
@@ -9292,6 +9485,10 @@ declare const _default: {
9292
9485
  type: import("vue").PropType<string>;
9293
9486
  default: string;
9294
9487
  };
9488
+ inlineErrorTextPlacement: {
9489
+ type: import("vue").PropType<"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">;
9490
+ default: string;
9491
+ };
9295
9492
  feedbackText: {
9296
9493
  type: import("vue").PropType<string>;
9297
9494
  default: string;
@@ -9406,6 +9603,10 @@ declare const _default: {
9406
9603
  type: import("vue").PropType<string>;
9407
9604
  default: string;
9408
9605
  };
9606
+ inlineErrorTextPlacement: {
9607
+ type: import("vue").PropType<"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">;
9608
+ default: string;
9609
+ };
9409
9610
  feedbackText: {
9410
9611
  type: import("vue").PropType<string>;
9411
9612
  default: string;
@@ -9453,6 +9654,7 @@ declare const _default: {
9453
9654
  showApply: boolean;
9454
9655
  inlineError: boolean;
9455
9656
  inlineErrorText: string;
9657
+ inlineErrorTextPlacement: "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";
9456
9658
  feedbackText: string;
9457
9659
  feedbackVariant: "success" | "warning" | "error";
9458
9660
  showFeedbackTextIcon: boolean;
@@ -11602,6 +11804,7 @@ declare const _default: {
11602
11804
  triggerFeedbackText: string;
11603
11805
  triggerFeedbackVariant: "success" | "warning" | "error";
11604
11806
  triggerFeedbackShowIcon: boolean;
11807
+ triggerShowAllSelectedText: boolean;
11605
11808
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
11606
11809
  inlineSearch: boolean;
11607
11810
  inlineSearchPlaceholder: string;
@@ -11611,12 +11814,16 @@ declare const _default: {
11611
11814
  optionNameKey: string;
11612
11815
  optionIconKey: string;
11613
11816
  optionImageKey: string;
11614
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
11817
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
11818
+ optionEndIconKey: string;
11819
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
11615
11820
  valueToCopy: string;
11616
11821
  disabledOptionKey: string;
11617
11822
  fullWidth: boolean;
11618
11823
  optionsListWidth: string;
11619
11824
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
11825
+ disableVirtualScroll: boolean;
11826
+ overrideOptionCountCalculation: (option: unknown) => number;
11620
11827
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
11621
11828
  theme: {
11622
11829
  type: import("vue").PropType<string>;
@@ -11736,6 +11943,10 @@ declare const _default: {
11736
11943
  type: import("vue").PropType<boolean>;
11737
11944
  default: boolean;
11738
11945
  };
11946
+ triggerShowAllSelectedText: {
11947
+ type: import("vue").PropType<boolean>;
11948
+ default: boolean;
11949
+ };
11739
11950
  predefinedTrigger: {
11740
11951
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
11741
11952
  default: "default" | "icon-button" | "chip" | "app";
@@ -11777,7 +11988,15 @@ declare const _default: {
11777
11988
  default: string;
11778
11989
  };
11779
11990
  optionIconType: {
11780
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
11991
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
11992
+ default: any;
11993
+ };
11994
+ optionEndIconKey: {
11995
+ type: import("vue").PropType<string>;
11996
+ default: string;
11997
+ };
11998
+ optionEndIconType: {
11999
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
11781
12000
  default: any;
11782
12001
  };
11783
12002
  valueToCopy: {
@@ -11800,13 +12019,24 @@ declare const _default: {
11800
12019
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
11801
12020
  default: any;
11802
12021
  };
12022
+ disableVirtualScroll: {
12023
+ type: import("vue").PropType<boolean>;
12024
+ default: boolean;
12025
+ };
12026
+ overrideOptionCountCalculation: {
12027
+ type: import("vue").PropType<(option: unknown) => number>;
12028
+ default: any;
12029
+ };
11803
12030
  }>> & {
12031
+ onCopyToClipboard?: () => any;
12032
+ onClear?: () => any;
11804
12033
  onApply?: (value: unknown) => any;
12034
+ onSelectAll?: () => any;
11805
12035
  "onUpdate:selected"?: (value: unknown) => any;
11806
12036
  "onUpdate:isOpen"?: (value: unknown) => any;
11807
12037
  onOpened?: () => any;
11808
12038
  onClosed?: () => any;
11809
- } & 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" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
12039
+ } & 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">;
11810
12040
  $attrs: {
11811
12041
  [x: string]: unknown;
11812
12042
  };
@@ -11818,7 +12048,7 @@ declare const _default: {
11818
12048
  }>;
11819
12049
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
11820
12050
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
11821
- $emit: ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "opened") => void) & ((event: "closed") => void);
12051
+ $emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
11822
12052
  $el: any;
11823
12053
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
11824
12054
  theme: {
@@ -11939,6 +12169,10 @@ declare const _default: {
11939
12169
  type: import("vue").PropType<boolean>;
11940
12170
  default: boolean;
11941
12171
  };
12172
+ triggerShowAllSelectedText: {
12173
+ type: import("vue").PropType<boolean>;
12174
+ default: boolean;
12175
+ };
11942
12176
  predefinedTrigger: {
11943
12177
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
11944
12178
  default: "default" | "icon-button" | "chip" | "app";
@@ -11980,7 +12214,15 @@ declare const _default: {
11980
12214
  default: string;
11981
12215
  };
11982
12216
  optionIconType: {
11983
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
12217
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
12218
+ default: any;
12219
+ };
12220
+ optionEndIconKey: {
12221
+ type: import("vue").PropType<string>;
12222
+ default: string;
12223
+ };
12224
+ optionEndIconType: {
12225
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
11984
12226
  default: any;
11985
12227
  };
11986
12228
  valueToCopy: {
@@ -12003,8 +12245,19 @@ declare const _default: {
12003
12245
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
12004
12246
  default: any;
12005
12247
  };
12248
+ disableVirtualScroll: {
12249
+ type: import("vue").PropType<boolean>;
12250
+ default: boolean;
12251
+ };
12252
+ overrideOptionCountCalculation: {
12253
+ type: import("vue").PropType<(option: unknown) => number>;
12254
+ default: any;
12255
+ };
12006
12256
  }>> & {
12257
+ onCopyToClipboard?: () => any;
12258
+ onClear?: () => any;
12007
12259
  onApply?: (value: unknown) => any;
12260
+ onSelectAll?: () => any;
12008
12261
  "onUpdate:selected"?: (value: unknown) => any;
12009
12262
  "onUpdate:isOpen"?: (value: unknown) => any;
12010
12263
  onOpened?: () => any;
@@ -12018,6 +12271,9 @@ declare const _default: {
12018
12271
  closed: () => void;
12019
12272
  opened: () => void;
12020
12273
  apply: (value: unknown) => void;
12274
+ selectAll: () => void;
12275
+ clear: () => void;
12276
+ copyToClipboard: () => void;
12021
12277
  }, string, {
12022
12278
  theme: string;
12023
12279
  disabled: boolean;
@@ -12046,6 +12302,7 @@ declare const _default: {
12046
12302
  triggerFeedbackText: string;
12047
12303
  triggerFeedbackVariant: "success" | "warning" | "error";
12048
12304
  triggerFeedbackShowIcon: boolean;
12305
+ triggerShowAllSelectedText: boolean;
12049
12306
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
12050
12307
  inlineSearch: boolean;
12051
12308
  inlineSearchPlaceholder: string;
@@ -12055,12 +12312,16 @@ declare const _default: {
12055
12312
  optionNameKey: string;
12056
12313
  optionIconKey: string;
12057
12314
  optionImageKey: string;
12058
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
12315
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
12316
+ optionEndIconKey: string;
12317
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
12059
12318
  valueToCopy: string;
12060
12319
  disabledOptionKey: string;
12061
12320
  fullWidth: boolean;
12062
12321
  optionsListWidth: string;
12063
12322
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
12323
+ disableVirtualScroll: boolean;
12324
+ overrideOptionCountCalculation: (option: unknown) => number;
12064
12325
  }, {}, string> & {
12065
12326
  beforeCreate?: (() => void) | (() => void)[];
12066
12327
  created?: (() => void) | (() => void)[];
@@ -12200,6 +12461,10 @@ declare const _default: {
12200
12461
  type: import("vue").PropType<boolean>;
12201
12462
  default: boolean;
12202
12463
  };
12464
+ triggerShowAllSelectedText: {
12465
+ type: import("vue").PropType<boolean>;
12466
+ default: boolean;
12467
+ };
12203
12468
  predefinedTrigger: {
12204
12469
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
12205
12470
  default: "default" | "icon-button" | "chip" | "app";
@@ -12241,7 +12506,15 @@ declare const _default: {
12241
12506
  default: string;
12242
12507
  };
12243
12508
  optionIconType: {
12244
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
12509
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
12510
+ default: any;
12511
+ };
12512
+ optionEndIconKey: {
12513
+ type: import("vue").PropType<string>;
12514
+ default: string;
12515
+ };
12516
+ optionEndIconType: {
12517
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
12245
12518
  default: any;
12246
12519
  };
12247
12520
  valueToCopy: {
@@ -12264,8 +12537,19 @@ declare const _default: {
12264
12537
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
12265
12538
  default: any;
12266
12539
  };
12540
+ disableVirtualScroll: {
12541
+ type: import("vue").PropType<boolean>;
12542
+ default: boolean;
12543
+ };
12544
+ overrideOptionCountCalculation: {
12545
+ type: import("vue").PropType<(option: unknown) => number>;
12546
+ default: any;
12547
+ };
12267
12548
  }>> & {
12549
+ onCopyToClipboard?: () => any;
12550
+ onClear?: () => any;
12268
12551
  onApply?: (value: unknown) => any;
12552
+ onSelectAll?: () => any;
12269
12553
  "onUpdate:selected"?: (value: unknown) => any;
12270
12554
  "onUpdate:isOpen"?: (value: unknown) => any;
12271
12555
  onOpened?: () => any;
@@ -12396,6 +12680,10 @@ declare const _default: {
12396
12680
  type: import("vue").PropType<boolean>;
12397
12681
  default: boolean;
12398
12682
  };
12683
+ triggerShowAllSelectedText: {
12684
+ type: import("vue").PropType<boolean>;
12685
+ default: boolean;
12686
+ };
12399
12687
  predefinedTrigger: {
12400
12688
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
12401
12689
  default: "default" | "icon-button" | "chip" | "app";
@@ -12437,7 +12725,15 @@ declare const _default: {
12437
12725
  default: string;
12438
12726
  };
12439
12727
  optionIconType: {
12440
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
12728
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
12729
+ default: any;
12730
+ };
12731
+ optionEndIconKey: {
12732
+ type: import("vue").PropType<string>;
12733
+ default: string;
12734
+ };
12735
+ optionEndIconType: {
12736
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
12441
12737
  default: any;
12442
12738
  };
12443
12739
  valueToCopy: {
@@ -12460,8 +12756,19 @@ declare const _default: {
12460
12756
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
12461
12757
  default: any;
12462
12758
  };
12759
+ disableVirtualScroll: {
12760
+ type: import("vue").PropType<boolean>;
12761
+ default: boolean;
12762
+ };
12763
+ overrideOptionCountCalculation: {
12764
+ type: import("vue").PropType<(option: unknown) => number>;
12765
+ default: any;
12766
+ };
12463
12767
  }>> & {
12768
+ onCopyToClipboard?: () => any;
12769
+ onClear?: () => any;
12464
12770
  onApply?: (value: unknown) => any;
12771
+ onSelectAll?: () => any;
12465
12772
  "onUpdate:selected"?: (value: unknown) => any;
12466
12773
  "onUpdate:isOpen"?: (value: unknown) => any;
12467
12774
  onOpened?: () => any;
@@ -12475,6 +12782,9 @@ declare const _default: {
12475
12782
  closed: () => void;
12476
12783
  opened: () => void;
12477
12784
  apply: (value: unknown) => void;
12785
+ selectAll: () => void;
12786
+ clear: () => void;
12787
+ copyToClipboard: () => void;
12478
12788
  }, string, {
12479
12789
  theme: string;
12480
12790
  disabled: boolean;
@@ -12503,6 +12813,7 @@ declare const _default: {
12503
12813
  triggerFeedbackText: string;
12504
12814
  triggerFeedbackVariant: "success" | "warning" | "error";
12505
12815
  triggerFeedbackShowIcon: boolean;
12816
+ triggerShowAllSelectedText: boolean;
12506
12817
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
12507
12818
  inlineSearch: boolean;
12508
12819
  inlineSearchPlaceholder: string;
@@ -12512,12 +12823,16 @@ declare const _default: {
12512
12823
  optionNameKey: string;
12513
12824
  optionIconKey: string;
12514
12825
  optionImageKey: string;
12515
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
12826
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
12827
+ optionEndIconKey: string;
12828
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
12516
12829
  valueToCopy: string;
12517
12830
  disabledOptionKey: string;
12518
12831
  fullWidth: boolean;
12519
12832
  optionsListWidth: string;
12520
12833
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
12834
+ disableVirtualScroll: boolean;
12835
+ overrideOptionCountCalculation: (option: unknown) => number;
12521
12836
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
12522
12837
  $slots: {
12523
12838
  label?(_: {}): any;
@@ -12534,6 +12849,7 @@ declare const _default: {
12534
12849
  }): any;
12535
12850
  default?(_: {
12536
12851
  option: unknown;
12852
+ index: number;
12537
12853
  selected: boolean;
12538
12854
  active: boolean;
12539
12855
  disabled: any;
@@ -12563,10 +12879,11 @@ declare const _default: {
12563
12879
  optionNameKey: string;
12564
12880
  optionIconKey: string;
12565
12881
  optionImageKey: string;
12566
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
12882
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
12567
12883
  selectedOption: any;
12568
12884
  showFeedbackIcon: boolean;
12569
12885
  brandIconType: "android" | "ios";
12886
+ showAllSelectedText: boolean;
12570
12887
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
12571
12888
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
12572
12889
  label: {
@@ -12648,7 +12965,7 @@ declare const _default: {
12648
12965
  default: any;
12649
12966
  };
12650
12967
  optionIconType: {
12651
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
12968
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
12652
12969
  default: any;
12653
12970
  };
12654
12971
  selectedOption: {
@@ -12663,13 +12980,17 @@ declare const _default: {
12663
12980
  type: import("vue").PropType<"android" | "ios">;
12664
12981
  default: any;
12665
12982
  };
12983
+ showAllSelectedText: {
12984
+ type: import("vue").PropType<boolean>;
12985
+ default: boolean;
12986
+ };
12666
12987
  statusDotType: {
12667
12988
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
12668
12989
  default: any;
12669
12990
  };
12670
12991
  }>> & {
12671
12992
  onClick?: () => any;
12672
- } & 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">;
12993
+ } & 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">;
12673
12994
  $attrs: {
12674
12995
  [x: string]: unknown;
12675
12996
  };
@@ -12763,7 +13084,7 @@ declare const _default: {
12763
13084
  default: any;
12764
13085
  };
12765
13086
  optionIconType: {
12766
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13087
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
12767
13088
  default: any;
12768
13089
  };
12769
13090
  selectedOption: {
@@ -12778,6 +13099,10 @@ declare const _default: {
12778
13099
  type: import("vue").PropType<"android" | "ios">;
12779
13100
  default: any;
12780
13101
  };
13102
+ showAllSelectedText: {
13103
+ type: import("vue").PropType<boolean>;
13104
+ default: boolean;
13105
+ };
12781
13106
  statusDotType: {
12782
13107
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
12783
13108
  default: any;
@@ -12805,10 +13130,11 @@ declare const _default: {
12805
13130
  optionNameKey: string;
12806
13131
  optionIconKey: string;
12807
13132
  optionImageKey: string;
12808
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
13133
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
12809
13134
  selectedOption: any;
12810
13135
  showFeedbackIcon: boolean;
12811
13136
  brandIconType: "android" | "ios";
13137
+ showAllSelectedText: boolean;
12812
13138
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
12813
13139
  }, {}, string> & {
12814
13140
  beforeCreate?: (() => void) | (() => void)[];
@@ -12910,7 +13236,7 @@ declare const _default: {
12910
13236
  default: any;
12911
13237
  };
12912
13238
  optionIconType: {
12913
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13239
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
12914
13240
  default: any;
12915
13241
  };
12916
13242
  selectedOption: {
@@ -12925,6 +13251,10 @@ declare const _default: {
12925
13251
  type: import("vue").PropType<"android" | "ios">;
12926
13252
  default: any;
12927
13253
  };
13254
+ showAllSelectedText: {
13255
+ type: import("vue").PropType<boolean>;
13256
+ default: boolean;
13257
+ };
12928
13258
  statusDotType: {
12929
13259
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
12930
13260
  default: any;
@@ -13015,7 +13345,7 @@ declare const _default: {
13015
13345
  default: any;
13016
13346
  };
13017
13347
  optionIconType: {
13018
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13348
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13019
13349
  default: any;
13020
13350
  };
13021
13351
  selectedOption: {
@@ -13030,6 +13360,10 @@ declare const _default: {
13030
13360
  type: import("vue").PropType<"android" | "ios">;
13031
13361
  default: any;
13032
13362
  };
13363
+ showAllSelectedText: {
13364
+ type: import("vue").PropType<boolean>;
13365
+ default: boolean;
13366
+ };
13033
13367
  statusDotType: {
13034
13368
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
13035
13369
  default: any;
@@ -13057,10 +13391,11 @@ declare const _default: {
13057
13391
  optionNameKey: string;
13058
13392
  optionIconKey: string;
13059
13393
  optionImageKey: string;
13060
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
13394
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13061
13395
  selectedOption: any;
13062
13396
  showFeedbackIcon: boolean;
13063
13397
  brandIconType: "android" | "ios";
13398
+ showAllSelectedText: boolean;
13064
13399
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
13065
13400
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
13066
13401
  $slots: {
@@ -13211,7 +13546,7 @@ declare const _default: {
13211
13546
  default: any;
13212
13547
  };
13213
13548
  startIconType: {
13214
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13549
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13215
13550
  default: string;
13216
13551
  };
13217
13552
  hideEndIcon: {
@@ -13250,7 +13585,7 @@ declare const _default: {
13250
13585
  default: any;
13251
13586
  };
13252
13587
  startIconType: {
13253
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13588
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13254
13589
  default: string;
13255
13590
  };
13256
13591
  hideEndIcon: {
@@ -13266,7 +13601,7 @@ declare const _default: {
13266
13601
  open: boolean;
13267
13602
  testId: string;
13268
13603
  startIconName: string;
13269
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
13604
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13270
13605
  hideEndIcon: boolean;
13271
13606
  }>;
13272
13607
  ButtonFilterDropdownTrigger: import("vue").DefineComponent<{
@@ -13295,7 +13630,7 @@ declare const _default: {
13295
13630
  default: any;
13296
13631
  };
13297
13632
  startIconType: {
13298
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13633
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13299
13634
  default: string;
13300
13635
  };
13301
13636
  hideEndIcon: {
@@ -13330,7 +13665,7 @@ declare const _default: {
13330
13665
  default: any;
13331
13666
  };
13332
13667
  startIconType: {
13333
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13668
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13334
13669
  default: string;
13335
13670
  };
13336
13671
  hideEndIcon: {
@@ -13345,7 +13680,7 @@ declare const _default: {
13345
13680
  open: boolean;
13346
13681
  testId: string;
13347
13682
  startIconName: string;
13348
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
13683
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13349
13684
  hideEndIcon: boolean;
13350
13685
  }>;
13351
13686
  AppDropdownTrigger: {
@@ -13367,7 +13702,9 @@ declare const _default: {
13367
13702
  optionNameKey: string;
13368
13703
  optionIconKey: string;
13369
13704
  optionImageKey: string;
13370
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
13705
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13706
+ optionEndIconKey: string;
13707
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13371
13708
  valueToCopy: string;
13372
13709
  selectedOption: any;
13373
13710
  brandIconType: "android" | "ios";
@@ -13435,7 +13772,15 @@ declare const _default: {
13435
13772
  default: any;
13436
13773
  };
13437
13774
  optionIconType: {
13438
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13775
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13776
+ default: any;
13777
+ };
13778
+ optionEndIconKey: {
13779
+ type: import("vue").PropType<string>;
13780
+ default: any;
13781
+ };
13782
+ optionEndIconType: {
13783
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13439
13784
  default: any;
13440
13785
  };
13441
13786
  valueToCopy: {
@@ -13452,7 +13797,8 @@ declare const _default: {
13452
13797
  };
13453
13798
  }>> & {
13454
13799
  onClick?: () => any;
13455
- } & 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">;
13800
+ onCopyToClipboard?: () => any;
13801
+ } & 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">;
13456
13802
  $attrs: {
13457
13803
  [x: string]: unknown;
13458
13804
  };
@@ -13464,7 +13810,7 @@ declare const _default: {
13464
13810
  }>;
13465
13811
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
13466
13812
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
13467
- $emit: (event: "click") => void;
13813
+ $emit: ((event: "click") => void) & ((event: "copyToClipboard") => void);
13468
13814
  $el: any;
13469
13815
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
13470
13816
  label: {
@@ -13530,7 +13876,15 @@ declare const _default: {
13530
13876
  default: any;
13531
13877
  };
13532
13878
  optionIconType: {
13533
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
13879
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13880
+ default: any;
13881
+ };
13882
+ optionEndIconKey: {
13883
+ type: import("vue").PropType<string>;
13884
+ default: any;
13885
+ };
13886
+ optionEndIconType: {
13887
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13534
13888
  default: any;
13535
13889
  };
13536
13890
  valueToCopy: {
@@ -13547,8 +13901,10 @@ declare const _default: {
13547
13901
  };
13548
13902
  }>> & {
13549
13903
  onClick?: () => any;
13904
+ onCopyToClipboard?: () => any;
13550
13905
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13551
13906
  click: () => void;
13907
+ copyToClipboard: () => void;
13552
13908
  }, string, {
13553
13909
  label: string;
13554
13910
  disabled: boolean;
@@ -13564,7 +13920,9 @@ declare const _default: {
13564
13920
  optionNameKey: string;
13565
13921
  optionIconKey: string;
13566
13922
  optionImageKey: string;
13567
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
13923
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13924
+ optionEndIconKey: string;
13925
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13568
13926
  valueToCopy: string;
13569
13927
  selectedOption: any;
13570
13928
  brandIconType: "android" | "ios";
@@ -13652,7 +14010,15 @@ declare const _default: {
13652
14010
  default: any;
13653
14011
  };
13654
14012
  optionIconType: {
13655
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14013
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14014
+ default: any;
14015
+ };
14016
+ optionEndIconKey: {
14017
+ type: import("vue").PropType<string>;
14018
+ default: any;
14019
+ };
14020
+ optionEndIconType: {
14021
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13656
14022
  default: any;
13657
14023
  };
13658
14024
  valueToCopy: {
@@ -13669,6 +14035,7 @@ declare const _default: {
13669
14035
  };
13670
14036
  }>> & {
13671
14037
  onClick?: () => any;
14038
+ onCopyToClipboard?: () => any;
13672
14039
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
13673
14040
  __isFragment?: never;
13674
14041
  __isTeleport?: never;
@@ -13737,7 +14104,15 @@ declare const _default: {
13737
14104
  default: any;
13738
14105
  };
13739
14106
  optionIconType: {
13740
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14107
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14108
+ default: any;
14109
+ };
14110
+ optionEndIconKey: {
14111
+ type: import("vue").PropType<string>;
14112
+ default: any;
14113
+ };
14114
+ optionEndIconType: {
14115
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13741
14116
  default: any;
13742
14117
  };
13743
14118
  valueToCopy: {
@@ -13754,8 +14129,10 @@ declare const _default: {
13754
14129
  };
13755
14130
  }>> & {
13756
14131
  onClick?: () => any;
14132
+ onCopyToClipboard?: () => any;
13757
14133
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13758
14134
  click: () => void;
14135
+ copyToClipboard: () => void;
13759
14136
  }, string, {
13760
14137
  label: string;
13761
14138
  disabled: boolean;
@@ -13771,7 +14148,9 @@ declare const _default: {
13771
14148
  optionNameKey: string;
13772
14149
  optionIconKey: string;
13773
14150
  optionImageKey: string;
13774
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14151
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14152
+ optionEndIconKey: string;
14153
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13775
14154
  valueToCopy: string;
13776
14155
  selectedOption: any;
13777
14156
  brandIconType: "android" | "ios";
@@ -13779,6 +14158,7 @@ declare const _default: {
13779
14158
  $slots: {
13780
14159
  image?(_: {}): any;
13781
14160
  "icon-start"?(_: {}): any;
14161
+ "icon-end"?(_: {}): any;
13782
14162
  };
13783
14163
  });
13784
14164
  DropdownTypes: () => (({
@@ -13804,10 +14184,11 @@ declare const _default: {
13804
14184
  optionNameKey: string;
13805
14185
  optionIconKey: string;
13806
14186
  optionImageKey: string;
13807
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14187
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
13808
14188
  selectedOption: any;
13809
14189
  showFeedbackIcon: boolean;
13810
14190
  brandIconType: "android" | "ios";
14191
+ showAllSelectedText: boolean;
13811
14192
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
13812
14193
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
13813
14194
  label: {
@@ -13889,7 +14270,7 @@ declare const _default: {
13889
14270
  default: any;
13890
14271
  };
13891
14272
  optionIconType: {
13892
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14273
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
13893
14274
  default: any;
13894
14275
  };
13895
14276
  selectedOption: {
@@ -13904,13 +14285,17 @@ declare const _default: {
13904
14285
  type: import("vue").PropType<"android" | "ios">;
13905
14286
  default: any;
13906
14287
  };
14288
+ showAllSelectedText: {
14289
+ type: import("vue").PropType<boolean>;
14290
+ default: boolean;
14291
+ };
13907
14292
  statusDotType: {
13908
14293
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
13909
14294
  default: any;
13910
14295
  };
13911
14296
  }>> & {
13912
14297
  onClick?: () => any;
13913
- } & 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">;
14298
+ } & 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">;
13914
14299
  $attrs: {
13915
14300
  [x: string]: unknown;
13916
14301
  };
@@ -14004,7 +14389,7 @@ declare const _default: {
14004
14389
  default: any;
14005
14390
  };
14006
14391
  optionIconType: {
14007
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14392
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14008
14393
  default: any;
14009
14394
  };
14010
14395
  selectedOption: {
@@ -14019,6 +14404,10 @@ declare const _default: {
14019
14404
  type: import("vue").PropType<"android" | "ios">;
14020
14405
  default: any;
14021
14406
  };
14407
+ showAllSelectedText: {
14408
+ type: import("vue").PropType<boolean>;
14409
+ default: boolean;
14410
+ };
14022
14411
  statusDotType: {
14023
14412
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
14024
14413
  default: any;
@@ -14046,10 +14435,11 @@ declare const _default: {
14046
14435
  optionNameKey: string;
14047
14436
  optionIconKey: string;
14048
14437
  optionImageKey: string;
14049
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14438
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14050
14439
  selectedOption: any;
14051
14440
  showFeedbackIcon: boolean;
14052
14441
  brandIconType: "android" | "ios";
14442
+ showAllSelectedText: boolean;
14053
14443
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
14054
14444
  }, {}, string> & {
14055
14445
  beforeCreate?: (() => void) | (() => void)[];
@@ -14151,7 +14541,7 @@ declare const _default: {
14151
14541
  default: any;
14152
14542
  };
14153
14543
  optionIconType: {
14154
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14544
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14155
14545
  default: any;
14156
14546
  };
14157
14547
  selectedOption: {
@@ -14166,6 +14556,10 @@ declare const _default: {
14166
14556
  type: import("vue").PropType<"android" | "ios">;
14167
14557
  default: any;
14168
14558
  };
14559
+ showAllSelectedText: {
14560
+ type: import("vue").PropType<boolean>;
14561
+ default: boolean;
14562
+ };
14169
14563
  statusDotType: {
14170
14564
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
14171
14565
  default: any;
@@ -14256,7 +14650,7 @@ declare const _default: {
14256
14650
  default: any;
14257
14651
  };
14258
14652
  optionIconType: {
14259
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14653
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14260
14654
  default: any;
14261
14655
  };
14262
14656
  selectedOption: {
@@ -14271,6 +14665,10 @@ declare const _default: {
14271
14665
  type: import("vue").PropType<"android" | "ios">;
14272
14666
  default: any;
14273
14667
  };
14668
+ showAllSelectedText: {
14669
+ type: import("vue").PropType<boolean>;
14670
+ default: boolean;
14671
+ };
14274
14672
  statusDotType: {
14275
14673
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
14276
14674
  default: any;
@@ -14298,10 +14696,11 @@ declare const _default: {
14298
14696
  optionNameKey: string;
14299
14697
  optionIconKey: string;
14300
14698
  optionImageKey: string;
14301
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14699
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14302
14700
  selectedOption: any;
14303
14701
  showFeedbackIcon: boolean;
14304
14702
  brandIconType: "android" | "ios";
14703
+ showAllSelectedText: boolean;
14305
14704
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
14306
14705
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
14307
14706
  $slots: {
@@ -14327,7 +14726,9 @@ declare const _default: {
14327
14726
  optionNameKey: string;
14328
14727
  optionIconKey: string;
14329
14728
  optionImageKey: string;
14330
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14729
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14730
+ optionEndIconKey: string;
14731
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14331
14732
  valueToCopy: string;
14332
14733
  selectedOption: any;
14333
14734
  brandIconType: "android" | "ios";
@@ -14395,7 +14796,15 @@ declare const _default: {
14395
14796
  default: any;
14396
14797
  };
14397
14798
  optionIconType: {
14398
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14799
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14800
+ default: any;
14801
+ };
14802
+ optionEndIconKey: {
14803
+ type: import("vue").PropType<string>;
14804
+ default: any;
14805
+ };
14806
+ optionEndIconType: {
14807
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14399
14808
  default: any;
14400
14809
  };
14401
14810
  valueToCopy: {
@@ -14412,7 +14821,8 @@ declare const _default: {
14412
14821
  };
14413
14822
  }>> & {
14414
14823
  onClick?: () => any;
14415
- } & 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">;
14824
+ onCopyToClipboard?: () => any;
14825
+ } & 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">;
14416
14826
  $attrs: {
14417
14827
  [x: string]: unknown;
14418
14828
  };
@@ -14424,7 +14834,7 @@ declare const _default: {
14424
14834
  }>;
14425
14835
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
14426
14836
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
14427
- $emit: (event: "click") => void;
14837
+ $emit: ((event: "click") => void) & ((event: "copyToClipboard") => void);
14428
14838
  $el: any;
14429
14839
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
14430
14840
  label: {
@@ -14490,7 +14900,15 @@ declare const _default: {
14490
14900
  default: any;
14491
14901
  };
14492
14902
  optionIconType: {
14493
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
14903
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14904
+ default: any;
14905
+ };
14906
+ optionEndIconKey: {
14907
+ type: import("vue").PropType<string>;
14908
+ default: any;
14909
+ };
14910
+ optionEndIconType: {
14911
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14494
14912
  default: any;
14495
14913
  };
14496
14914
  valueToCopy: {
@@ -14507,8 +14925,10 @@ declare const _default: {
14507
14925
  };
14508
14926
  }>> & {
14509
14927
  onClick?: () => any;
14928
+ onCopyToClipboard?: () => any;
14510
14929
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14511
14930
  click: () => void;
14931
+ copyToClipboard: () => void;
14512
14932
  }, string, {
14513
14933
  label: string;
14514
14934
  disabled: boolean;
@@ -14524,7 +14944,9 @@ declare const _default: {
14524
14944
  optionNameKey: string;
14525
14945
  optionIconKey: string;
14526
14946
  optionImageKey: string;
14527
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
14947
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14948
+ optionEndIconKey: string;
14949
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14528
14950
  valueToCopy: string;
14529
14951
  selectedOption: any;
14530
14952
  brandIconType: "android" | "ios";
@@ -14612,7 +15034,15 @@ declare const _default: {
14612
15034
  default: any;
14613
15035
  };
14614
15036
  optionIconType: {
14615
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15037
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15038
+ default: any;
15039
+ };
15040
+ optionEndIconKey: {
15041
+ type: import("vue").PropType<string>;
15042
+ default: any;
15043
+ };
15044
+ optionEndIconType: {
15045
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14616
15046
  default: any;
14617
15047
  };
14618
15048
  valueToCopy: {
@@ -14629,6 +15059,7 @@ declare const _default: {
14629
15059
  };
14630
15060
  }>> & {
14631
15061
  onClick?: () => any;
15062
+ onCopyToClipboard?: () => any;
14632
15063
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
14633
15064
  __isFragment?: never;
14634
15065
  __isTeleport?: never;
@@ -14697,7 +15128,15 @@ declare const _default: {
14697
15128
  default: any;
14698
15129
  };
14699
15130
  optionIconType: {
14700
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15131
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15132
+ default: any;
15133
+ };
15134
+ optionEndIconKey: {
15135
+ type: import("vue").PropType<string>;
15136
+ default: any;
15137
+ };
15138
+ optionEndIconType: {
15139
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14701
15140
  default: any;
14702
15141
  };
14703
15142
  valueToCopy: {
@@ -14714,8 +15153,10 @@ declare const _default: {
14714
15153
  };
14715
15154
  }>> & {
14716
15155
  onClick?: () => any;
15156
+ onCopyToClipboard?: () => any;
14717
15157
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14718
15158
  click: () => void;
15159
+ copyToClipboard: () => void;
14719
15160
  }, string, {
14720
15161
  label: string;
14721
15162
  disabled: boolean;
@@ -14731,7 +15172,9 @@ declare const _default: {
14731
15172
  optionNameKey: string;
14732
15173
  optionIconKey: string;
14733
15174
  optionImageKey: string;
14734
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15175
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15176
+ optionEndIconKey: string;
15177
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14735
15178
  valueToCopy: string;
14736
15179
  selectedOption: any;
14737
15180
  brandIconType: "android" | "ios";
@@ -14739,6 +15182,7 @@ declare const _default: {
14739
15182
  $slots: {
14740
15183
  image?(_: {}): any;
14741
15184
  "icon-start"?(_: {}): any;
15185
+ "icon-end"?(_: {}): any;
14742
15186
  };
14743
15187
  })) | ({
14744
15188
  new (...args: any[]): {
@@ -14748,13 +15192,15 @@ declare const _default: {
14748
15192
  option: any;
14749
15193
  disabled: boolean;
14750
15194
  active: boolean;
15195
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14751
15196
  isIndeterminate: boolean;
14752
15197
  subtitle: string;
14753
15198
  selectAllOption: boolean;
14754
15199
  nameKey: string;
14755
15200
  imageKey: string;
14756
15201
  iconKey: string;
14757
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15202
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15203
+ endIconKey: string;
14758
15204
  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";
14759
15205
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
14760
15206
  option: {
@@ -14769,6 +15215,10 @@ declare const _default: {
14769
15215
  type: import("vue").PropType<boolean>;
14770
15216
  default: any;
14771
15217
  };
15218
+ endIconType: {
15219
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15220
+ default: string;
15221
+ };
14772
15222
  isIndeterminate: {
14773
15223
  type: import("vue").PropType<boolean>;
14774
15224
  default: boolean;
@@ -14794,9 +15244,13 @@ declare const _default: {
14794
15244
  default: any;
14795
15245
  };
14796
15246
  iconType: {
14797
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15247
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14798
15248
  default: string;
14799
15249
  };
15250
+ endIconKey: {
15251
+ type: import("vue").PropType<string>;
15252
+ default: any;
15253
+ };
14800
15254
  toolTipPlacement: {
14801
15255
  type: import("vue").PropType<"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">;
14802
15256
  default: string;
@@ -14804,7 +15258,7 @@ declare const _default: {
14804
15258
  selectedProp: {
14805
15259
  type: import("vue").PropType<boolean>;
14806
15260
  };
14807
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "toolTipPlacement">;
15261
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
14808
15262
  $attrs: {
14809
15263
  [x: string]: unknown;
14810
15264
  };
@@ -14831,6 +15285,10 @@ declare const _default: {
14831
15285
  type: import("vue").PropType<boolean>;
14832
15286
  default: any;
14833
15287
  };
15288
+ endIconType: {
15289
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15290
+ default: string;
15291
+ };
14834
15292
  isIndeterminate: {
14835
15293
  type: import("vue").PropType<boolean>;
14836
15294
  default: boolean;
@@ -14856,9 +15314,13 @@ declare const _default: {
14856
15314
  default: any;
14857
15315
  };
14858
15316
  iconType: {
14859
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15317
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14860
15318
  default: string;
14861
15319
  };
15320
+ endIconKey: {
15321
+ type: import("vue").PropType<string>;
15322
+ default: any;
15323
+ };
14862
15324
  toolTipPlacement: {
14863
15325
  type: import("vue").PropType<"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">;
14864
15326
  default: string;
@@ -14870,13 +15332,15 @@ declare const _default: {
14870
15332
  option: any;
14871
15333
  disabled: boolean;
14872
15334
  active: boolean;
15335
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
14873
15336
  isIndeterminate: boolean;
14874
15337
  subtitle: string;
14875
15338
  selectAllOption: boolean;
14876
15339
  nameKey: string;
14877
15340
  imageKey: string;
14878
15341
  iconKey: string;
14879
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15342
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15343
+ endIconKey: string;
14880
15344
  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";
14881
15345
  }, {}, string> & {
14882
15346
  beforeCreate?: (() => void) | (() => void)[];
@@ -14911,6 +15375,10 @@ declare const _default: {
14911
15375
  type: import("vue").PropType<boolean>;
14912
15376
  default: any;
14913
15377
  };
15378
+ endIconType: {
15379
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15380
+ default: string;
15381
+ };
14914
15382
  isIndeterminate: {
14915
15383
  type: import("vue").PropType<boolean>;
14916
15384
  default: boolean;
@@ -14936,9 +15404,13 @@ declare const _default: {
14936
15404
  default: any;
14937
15405
  };
14938
15406
  iconType: {
14939
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15407
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14940
15408
  default: string;
14941
15409
  };
15410
+ endIconKey: {
15411
+ type: import("vue").PropType<string>;
15412
+ default: any;
15413
+ };
14942
15414
  toolTipPlacement: {
14943
15415
  type: import("vue").PropType<"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">;
14944
15416
  default: string;
@@ -14963,6 +15435,10 @@ declare const _default: {
14963
15435
  type: import("vue").PropType<boolean>;
14964
15436
  default: any;
14965
15437
  };
15438
+ endIconType: {
15439
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15440
+ default: string;
15441
+ };
14966
15442
  isIndeterminate: {
14967
15443
  type: import("vue").PropType<boolean>;
14968
15444
  default: boolean;
@@ -14988,9 +15464,13 @@ declare const _default: {
14988
15464
  default: any;
14989
15465
  };
14990
15466
  iconType: {
14991
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
15467
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
14992
15468
  default: string;
14993
15469
  };
15470
+ endIconKey: {
15471
+ type: import("vue").PropType<string>;
15472
+ default: any;
15473
+ };
14994
15474
  toolTipPlacement: {
14995
15475
  type: import("vue").PropType<"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">;
14996
15476
  default: string;
@@ -15002,19 +15482,22 @@ declare const _default: {
15002
15482
  option: any;
15003
15483
  disabled: boolean;
15004
15484
  active: boolean;
15485
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15005
15486
  isIndeterminate: boolean;
15006
15487
  subtitle: string;
15007
15488
  selectAllOption: boolean;
15008
15489
  nameKey: string;
15009
15490
  imageKey: string;
15010
15491
  iconKey: string;
15011
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15492
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15493
+ endIconKey: string;
15012
15494
  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";
15013
15495
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
15014
15496
  $slots: {
15015
15497
  image?(_: {}): any;
15016
15498
  "icon-start"?(_: {}): any;
15017
15499
  default?(_: {}): any;
15500
+ "icon-end"?(_: {}): any;
15018
15501
  };
15019
15502
  })) | import("vue").DefineComponent<{
15020
15503
  testId: {
@@ -15159,6 +15642,7 @@ declare const _default: {
15159
15642
  triggerFeedbackText: string;
15160
15643
  triggerFeedbackVariant: "success" | "warning" | "error";
15161
15644
  triggerFeedbackShowIcon: boolean;
15645
+ triggerShowAllSelectedText: boolean;
15162
15646
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
15163
15647
  inlineSearch: boolean;
15164
15648
  inlineSearchPlaceholder: string;
@@ -15168,12 +15652,16 @@ declare const _default: {
15168
15652
  optionNameKey: string;
15169
15653
  optionIconKey: string;
15170
15654
  optionImageKey: string;
15171
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
15655
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15656
+ optionEndIconKey: string;
15657
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15172
15658
  valueToCopy: string;
15173
15659
  disabledOptionKey: string;
15174
15660
  fullWidth: boolean;
15175
15661
  optionsListWidth: string;
15176
15662
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
15663
+ disableVirtualScroll: boolean;
15664
+ overrideOptionCountCalculation: (option: unknown) => number;
15177
15665
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
15178
15666
  theme: {
15179
15667
  type: import("vue").PropType<string>;
@@ -15293,6 +15781,10 @@ declare const _default: {
15293
15781
  type: import("vue").PropType<boolean>;
15294
15782
  default: boolean;
15295
15783
  };
15784
+ triggerShowAllSelectedText: {
15785
+ type: import("vue").PropType<boolean>;
15786
+ default: boolean;
15787
+ };
15296
15788
  predefinedTrigger: {
15297
15789
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
15298
15790
  default: "default" | "icon-button" | "chip" | "app";
@@ -15334,7 +15826,15 @@ declare const _default: {
15334
15826
  default: string;
15335
15827
  };
15336
15828
  optionIconType: {
15337
- 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">;
15830
+ default: any;
15831
+ };
15832
+ optionEndIconKey: {
15833
+ type: import("vue").PropType<string>;
15834
+ default: string;
15835
+ };
15836
+ optionEndIconType: {
15837
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15338
15838
  default: any;
15339
15839
  };
15340
15840
  valueToCopy: {
@@ -15357,13 +15857,24 @@ declare const _default: {
15357
15857
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
15358
15858
  default: any;
15359
15859
  };
15860
+ disableVirtualScroll: {
15861
+ type: import("vue").PropType<boolean>;
15862
+ default: boolean;
15863
+ };
15864
+ overrideOptionCountCalculation: {
15865
+ type: import("vue").PropType<(option: unknown) => number>;
15866
+ default: any;
15867
+ };
15360
15868
  }>> & {
15869
+ onCopyToClipboard?: () => any;
15870
+ onClear?: () => any;
15361
15871
  onApply?: (value: unknown) => any;
15872
+ onSelectAll?: () => any;
15362
15873
  "onUpdate:selected"?: (value: unknown) => any;
15363
15874
  "onUpdate:isOpen"?: (value: unknown) => any;
15364
15875
  onOpened?: () => any;
15365
15876
  onClosed?: () => any;
15366
- } & 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" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
15877
+ } & 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">;
15367
15878
  $attrs: {
15368
15879
  [x: string]: unknown;
15369
15880
  };
@@ -15375,7 +15886,7 @@ declare const _default: {
15375
15886
  }>;
15376
15887
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
15377
15888
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
15378
- $emit: ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "opened") => void) & ((event: "closed") => void);
15889
+ $emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
15379
15890
  $el: any;
15380
15891
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
15381
15892
  theme: {
@@ -15496,6 +16007,10 @@ declare const _default: {
15496
16007
  type: import("vue").PropType<boolean>;
15497
16008
  default: boolean;
15498
16009
  };
16010
+ triggerShowAllSelectedText: {
16011
+ type: import("vue").PropType<boolean>;
16012
+ default: boolean;
16013
+ };
15499
16014
  predefinedTrigger: {
15500
16015
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
15501
16016
  default: "default" | "icon-button" | "chip" | "app";
@@ -15537,7 +16052,15 @@ declare const _default: {
15537
16052
  default: string;
15538
16053
  };
15539
16054
  optionIconType: {
15540
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16055
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16056
+ default: any;
16057
+ };
16058
+ optionEndIconKey: {
16059
+ type: import("vue").PropType<string>;
16060
+ default: string;
16061
+ };
16062
+ optionEndIconType: {
16063
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15541
16064
  default: any;
15542
16065
  };
15543
16066
  valueToCopy: {
@@ -15560,8 +16083,19 @@ declare const _default: {
15560
16083
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
15561
16084
  default: any;
15562
16085
  };
16086
+ disableVirtualScroll: {
16087
+ type: import("vue").PropType<boolean>;
16088
+ default: boolean;
16089
+ };
16090
+ overrideOptionCountCalculation: {
16091
+ type: import("vue").PropType<(option: unknown) => number>;
16092
+ default: any;
16093
+ };
15563
16094
  }>> & {
16095
+ onCopyToClipboard?: () => any;
16096
+ onClear?: () => any;
15564
16097
  onApply?: (value: unknown) => any;
16098
+ onSelectAll?: () => any;
15565
16099
  "onUpdate:selected"?: (value: unknown) => any;
15566
16100
  "onUpdate:isOpen"?: (value: unknown) => any;
15567
16101
  onOpened?: () => any;
@@ -15575,6 +16109,9 @@ declare const _default: {
15575
16109
  closed: () => void;
15576
16110
  opened: () => void;
15577
16111
  apply: (value: unknown) => void;
16112
+ selectAll: () => void;
16113
+ clear: () => void;
16114
+ copyToClipboard: () => void;
15578
16115
  }, string, {
15579
16116
  theme: string;
15580
16117
  disabled: boolean;
@@ -15603,6 +16140,7 @@ declare const _default: {
15603
16140
  triggerFeedbackText: string;
15604
16141
  triggerFeedbackVariant: "success" | "warning" | "error";
15605
16142
  triggerFeedbackShowIcon: boolean;
16143
+ triggerShowAllSelectedText: boolean;
15606
16144
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
15607
16145
  inlineSearch: boolean;
15608
16146
  inlineSearchPlaceholder: string;
@@ -15612,12 +16150,16 @@ declare const _default: {
15612
16150
  optionNameKey: string;
15613
16151
  optionIconKey: string;
15614
16152
  optionImageKey: string;
15615
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16153
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16154
+ optionEndIconKey: string;
16155
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
15616
16156
  valueToCopy: string;
15617
16157
  disabledOptionKey: string;
15618
16158
  fullWidth: boolean;
15619
16159
  optionsListWidth: string;
15620
16160
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
16161
+ disableVirtualScroll: boolean;
16162
+ overrideOptionCountCalculation: (option: unknown) => number;
15621
16163
  }, {}, string> & {
15622
16164
  beforeCreate?: (() => void) | (() => void)[];
15623
16165
  created?: (() => void) | (() => void)[];
@@ -15757,6 +16299,10 @@ declare const _default: {
15757
16299
  type: import("vue").PropType<boolean>;
15758
16300
  default: boolean;
15759
16301
  };
16302
+ triggerShowAllSelectedText: {
16303
+ type: import("vue").PropType<boolean>;
16304
+ default: boolean;
16305
+ };
15760
16306
  predefinedTrigger: {
15761
16307
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
15762
16308
  default: "default" | "icon-button" | "chip" | "app";
@@ -15798,7 +16344,15 @@ declare const _default: {
15798
16344
  default: string;
15799
16345
  };
15800
16346
  optionIconType: {
15801
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16347
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16348
+ default: any;
16349
+ };
16350
+ optionEndIconKey: {
16351
+ type: import("vue").PropType<string>;
16352
+ default: string;
16353
+ };
16354
+ optionEndIconType: {
16355
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15802
16356
  default: any;
15803
16357
  };
15804
16358
  valueToCopy: {
@@ -15821,8 +16375,19 @@ declare const _default: {
15821
16375
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
15822
16376
  default: any;
15823
16377
  };
16378
+ disableVirtualScroll: {
16379
+ type: import("vue").PropType<boolean>;
16380
+ default: boolean;
16381
+ };
16382
+ overrideOptionCountCalculation: {
16383
+ type: import("vue").PropType<(option: unknown) => number>;
16384
+ default: any;
16385
+ };
15824
16386
  }>> & {
16387
+ onCopyToClipboard?: () => any;
16388
+ onClear?: () => any;
15825
16389
  onApply?: (value: unknown) => any;
16390
+ onSelectAll?: () => any;
15826
16391
  "onUpdate:selected"?: (value: unknown) => any;
15827
16392
  "onUpdate:isOpen"?: (value: unknown) => any;
15828
16393
  onOpened?: () => any;
@@ -15953,6 +16518,10 @@ declare const _default: {
15953
16518
  type: import("vue").PropType<boolean>;
15954
16519
  default: boolean;
15955
16520
  };
16521
+ triggerShowAllSelectedText: {
16522
+ type: import("vue").PropType<boolean>;
16523
+ default: boolean;
16524
+ };
15956
16525
  predefinedTrigger: {
15957
16526
  type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
15958
16527
  default: "default" | "icon-button" | "chip" | "app";
@@ -15994,7 +16563,15 @@ declare const _default: {
15994
16563
  default: string;
15995
16564
  };
15996
16565
  optionIconType: {
15997
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16566
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16567
+ default: any;
16568
+ };
16569
+ optionEndIconKey: {
16570
+ type: import("vue").PropType<string>;
16571
+ default: string;
16572
+ };
16573
+ optionEndIconType: {
16574
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
15998
16575
  default: any;
15999
16576
  };
16000
16577
  valueToCopy: {
@@ -16017,8 +16594,19 @@ declare const _default: {
16017
16594
  type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
16018
16595
  default: any;
16019
16596
  };
16597
+ disableVirtualScroll: {
16598
+ type: import("vue").PropType<boolean>;
16599
+ default: boolean;
16600
+ };
16601
+ overrideOptionCountCalculation: {
16602
+ type: import("vue").PropType<(option: unknown) => number>;
16603
+ default: any;
16604
+ };
16020
16605
  }>> & {
16606
+ onCopyToClipboard?: () => any;
16607
+ onClear?: () => any;
16021
16608
  onApply?: (value: unknown) => any;
16609
+ onSelectAll?: () => any;
16022
16610
  "onUpdate:selected"?: (value: unknown) => any;
16023
16611
  "onUpdate:isOpen"?: (value: unknown) => any;
16024
16612
  onOpened?: () => any;
@@ -16032,6 +16620,9 @@ declare const _default: {
16032
16620
  closed: () => void;
16033
16621
  opened: () => void;
16034
16622
  apply: (value: unknown) => void;
16623
+ selectAll: () => void;
16624
+ clear: () => void;
16625
+ copyToClipboard: () => void;
16035
16626
  }, string, {
16036
16627
  theme: string;
16037
16628
  disabled: boolean;
@@ -16060,6 +16651,7 @@ declare const _default: {
16060
16651
  triggerFeedbackText: string;
16061
16652
  triggerFeedbackVariant: "success" | "warning" | "error";
16062
16653
  triggerFeedbackShowIcon: boolean;
16654
+ triggerShowAllSelectedText: boolean;
16063
16655
  predefinedTrigger: "default" | "icon-button" | "chip" | "app";
16064
16656
  inlineSearch: boolean;
16065
16657
  inlineSearchPlaceholder: string;
@@ -16069,12 +16661,16 @@ declare const _default: {
16069
16661
  optionNameKey: string;
16070
16662
  optionIconKey: string;
16071
16663
  optionImageKey: string;
16072
- optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16664
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16665
+ optionEndIconKey: string;
16666
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16073
16667
  valueToCopy: string;
16074
16668
  disabledOptionKey: string;
16075
16669
  fullWidth: boolean;
16076
16670
  optionsListWidth: string;
16077
16671
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
16672
+ disableVirtualScroll: boolean;
16673
+ overrideOptionCountCalculation: (option: unknown) => number;
16078
16674
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
16079
16675
  $slots: {
16080
16676
  label?(_: {}): any;
@@ -16091,6 +16687,7 @@ declare const _default: {
16091
16687
  }): any;
16092
16688
  default?(_: {
16093
16689
  option: unknown;
16690
+ index: number;
16094
16691
  selected: boolean;
16095
16692
  active: boolean;
16096
16693
  disabled: any;
@@ -16122,7 +16719,7 @@ declare const _default: {
16122
16719
  default: any;
16123
16720
  };
16124
16721
  startIconType: {
16125
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16722
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16126
16723
  default: string;
16127
16724
  };
16128
16725
  hideEndIcon: {
@@ -16157,7 +16754,7 @@ declare const _default: {
16157
16754
  default: any;
16158
16755
  };
16159
16756
  startIconType: {
16160
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16757
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16161
16758
  default: string;
16162
16759
  };
16163
16760
  hideEndIcon: {
@@ -16172,65 +16769,241 @@ declare const _default: {
16172
16769
  open: boolean;
16173
16770
  testId: string;
16174
16771
  startIconName: string;
16175
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16772
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16176
16773
  hideEndIcon: boolean;
16177
- }>)[];
16178
- Option: {
16179
- new (...args: any[]): {
16180
- $: import("vue").ComponentInternalInstance;
16181
- $data: {};
16182
- $props: Partial<{
16183
- option: any;
16184
- disabled: boolean;
16185
- active: boolean;
16186
- isIndeterminate: boolean;
16187
- subtitle: string;
16188
- selectAllOption: boolean;
16189
- nameKey: string;
16190
- imageKey: string;
16191
- iconKey: string;
16192
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16193
- 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";
16194
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16195
- option: {
16196
- type: import("vue").PropType<unknown>;
16197
- default: any;
16198
- };
16199
- disabled: {
16200
- type: import("vue").PropType<boolean>;
16201
- default: boolean;
16202
- };
16203
- active: {
16204
- type: import("vue").PropType<boolean>;
16205
- default: any;
16206
- };
16207
- isIndeterminate: {
16208
- type: import("vue").PropType<boolean>;
16209
- default: boolean;
16210
- };
16211
- subtitle: {
16212
- type: import("vue").PropType<string>;
16213
- default: string;
16214
- };
16215
- selectAllOption: {
16216
- type: import("vue").PropType<boolean>;
16217
- default: boolean;
16218
- };
16219
- nameKey: {
16220
- type: import("vue").PropType<string>;
16221
- default: any;
16222
- };
16223
- imageKey: {
16224
- type: import("vue").PropType<string>;
16225
- default: any;
16226
- };
16227
- iconKey: {
16228
- type: import("vue").PropType<string>;
16229
- default: any;
16230
- };
16231
- iconType: {
16232
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
16233
- default: string;
16774
+ }> | import("vue").DefineComponent<{
16775
+ disabled: {
16776
+ type: import("vue").PropType<boolean>;
16777
+ default: boolean;
16778
+ };
16779
+ size: {
16780
+ type: import("vue").PropType<"small" | "medium" | "large">;
16781
+ default: string;
16782
+ };
16783
+ testId: {
16784
+ type: import("vue").PropType<string>;
16785
+ default: string;
16786
+ };
16787
+ selected: {
16788
+ type: import("vue").PropType<unknown[]>;
16789
+ default: any;
16790
+ };
16791
+ options: {
16792
+ type: import("vue").PropType<unknown[]>;
16793
+ required: true;
16794
+ };
16795
+ placeholder: {
16796
+ type: import("vue").PropType<string>;
16797
+ default: string;
16798
+ };
16799
+ isOpen: {
16800
+ type: import("vue").PropType<boolean>;
16801
+ };
16802
+ inlineSearchPlaceholder: {
16803
+ type: import("vue").PropType<string>;
16804
+ default: string;
16805
+ };
16806
+ displayValue: {
16807
+ type: import("vue").PropType<(option: unknown) => string>;
16808
+ required: true;
16809
+ };
16810
+ optionNameKey: {
16811
+ type: import("vue").PropType<string>;
16812
+ default: string;
16813
+ };
16814
+ optionIconKey: {
16815
+ type: import("vue").PropType<string>;
16816
+ default: string;
16817
+ };
16818
+ optionImageKey: {
16819
+ type: import("vue").PropType<string>;
16820
+ default: string;
16821
+ };
16822
+ optionIconType: {
16823
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16824
+ default: any;
16825
+ };
16826
+ optionEndIconKey: {
16827
+ type: import("vue").PropType<string>;
16828
+ default: string;
16829
+ };
16830
+ optionEndIconType: {
16831
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16832
+ default: any;
16833
+ };
16834
+ valueToCopy: {
16835
+ type: import("vue").PropType<string>;
16836
+ default: any;
16837
+ };
16838
+ disabledOptionKey: {
16839
+ type: import("vue").PropType<string>;
16840
+ default: string;
16841
+ };
16842
+ optionChildrenKey: {
16843
+ type: import("vue").PropType<string>;
16844
+ default: string;
16845
+ };
16846
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16847
+ "update:selected": (value: unknown) => void;
16848
+ "update:isOpen": (value: unknown) => void;
16849
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
16850
+ disabled: {
16851
+ type: import("vue").PropType<boolean>;
16852
+ default: boolean;
16853
+ };
16854
+ size: {
16855
+ type: import("vue").PropType<"small" | "medium" | "large">;
16856
+ default: string;
16857
+ };
16858
+ testId: {
16859
+ type: import("vue").PropType<string>;
16860
+ default: string;
16861
+ };
16862
+ selected: {
16863
+ type: import("vue").PropType<unknown[]>;
16864
+ default: any;
16865
+ };
16866
+ options: {
16867
+ type: import("vue").PropType<unknown[]>;
16868
+ required: true;
16869
+ };
16870
+ placeholder: {
16871
+ type: import("vue").PropType<string>;
16872
+ default: string;
16873
+ };
16874
+ isOpen: {
16875
+ type: import("vue").PropType<boolean>;
16876
+ };
16877
+ inlineSearchPlaceholder: {
16878
+ type: import("vue").PropType<string>;
16879
+ default: string;
16880
+ };
16881
+ displayValue: {
16882
+ type: import("vue").PropType<(option: unknown) => string>;
16883
+ required: true;
16884
+ };
16885
+ optionNameKey: {
16886
+ type: import("vue").PropType<string>;
16887
+ default: string;
16888
+ };
16889
+ optionIconKey: {
16890
+ type: import("vue").PropType<string>;
16891
+ default: string;
16892
+ };
16893
+ optionImageKey: {
16894
+ type: import("vue").PropType<string>;
16895
+ default: string;
16896
+ };
16897
+ optionIconType: {
16898
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16899
+ default: any;
16900
+ };
16901
+ optionEndIconKey: {
16902
+ type: import("vue").PropType<string>;
16903
+ default: string;
16904
+ };
16905
+ optionEndIconType: {
16906
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16907
+ default: any;
16908
+ };
16909
+ valueToCopy: {
16910
+ type: import("vue").PropType<string>;
16911
+ default: any;
16912
+ };
16913
+ disabledOptionKey: {
16914
+ type: import("vue").PropType<string>;
16915
+ default: string;
16916
+ };
16917
+ optionChildrenKey: {
16918
+ type: import("vue").PropType<string>;
16919
+ default: string;
16920
+ };
16921
+ }>> & {
16922
+ "onUpdate:selected"?: (value: unknown) => any;
16923
+ "onUpdate:isOpen"?: (value: unknown) => any;
16924
+ }, {
16925
+ disabled: boolean;
16926
+ size: "small" | "medium" | "large";
16927
+ testId: string;
16928
+ selected: unknown[];
16929
+ placeholder: string;
16930
+ inlineSearchPlaceholder: string;
16931
+ optionNameKey: string;
16932
+ optionIconKey: string;
16933
+ optionImageKey: string;
16934
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16935
+ optionEndIconKey: string;
16936
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16937
+ valueToCopy: string;
16938
+ disabledOptionKey: string;
16939
+ optionChildrenKey: string;
16940
+ }>)[];
16941
+ Option: {
16942
+ new (...args: any[]): {
16943
+ $: import("vue").ComponentInternalInstance;
16944
+ $data: {};
16945
+ $props: Partial<{
16946
+ option: any;
16947
+ disabled: boolean;
16948
+ active: boolean;
16949
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16950
+ isIndeterminate: boolean;
16951
+ subtitle: string;
16952
+ selectAllOption: boolean;
16953
+ nameKey: string;
16954
+ imageKey: string;
16955
+ iconKey: string;
16956
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16957
+ endIconKey: string;
16958
+ 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";
16959
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16960
+ option: {
16961
+ type: import("vue").PropType<unknown>;
16962
+ default: any;
16963
+ };
16964
+ disabled: {
16965
+ type: import("vue").PropType<boolean>;
16966
+ default: boolean;
16967
+ };
16968
+ active: {
16969
+ type: import("vue").PropType<boolean>;
16970
+ default: any;
16971
+ };
16972
+ endIconType: {
16973
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16974
+ default: string;
16975
+ };
16976
+ isIndeterminate: {
16977
+ type: import("vue").PropType<boolean>;
16978
+ default: boolean;
16979
+ };
16980
+ subtitle: {
16981
+ type: import("vue").PropType<string>;
16982
+ default: string;
16983
+ };
16984
+ selectAllOption: {
16985
+ type: import("vue").PropType<boolean>;
16986
+ default: boolean;
16987
+ };
16988
+ nameKey: {
16989
+ type: import("vue").PropType<string>;
16990
+ default: any;
16991
+ };
16992
+ imageKey: {
16993
+ type: import("vue").PropType<string>;
16994
+ default: any;
16995
+ };
16996
+ iconKey: {
16997
+ type: import("vue").PropType<string>;
16998
+ default: any;
16999
+ };
17000
+ iconType: {
17001
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17002
+ default: string;
17003
+ };
17004
+ endIconKey: {
17005
+ type: import("vue").PropType<string>;
17006
+ default: any;
16234
17007
  };
16235
17008
  toolTipPlacement: {
16236
17009
  type: import("vue").PropType<"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">;
@@ -16239,7 +17012,7 @@ declare const _default: {
16239
17012
  selectedProp: {
16240
17013
  type: import("vue").PropType<boolean>;
16241
17014
  };
16242
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "toolTipPlacement">;
17015
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
16243
17016
  $attrs: {
16244
17017
  [x: string]: unknown;
16245
17018
  };
@@ -16266,6 +17039,10 @@ declare const _default: {
16266
17039
  type: import("vue").PropType<boolean>;
16267
17040
  default: any;
16268
17041
  };
17042
+ endIconType: {
17043
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17044
+ default: string;
17045
+ };
16269
17046
  isIndeterminate: {
16270
17047
  type: import("vue").PropType<boolean>;
16271
17048
  default: boolean;
@@ -16291,9 +17068,13 @@ declare const _default: {
16291
17068
  default: any;
16292
17069
  };
16293
17070
  iconType: {
16294
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17071
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16295
17072
  default: string;
16296
17073
  };
17074
+ endIconKey: {
17075
+ type: import("vue").PropType<string>;
17076
+ default: any;
17077
+ };
16297
17078
  toolTipPlacement: {
16298
17079
  type: import("vue").PropType<"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">;
16299
17080
  default: string;
@@ -16305,13 +17086,15 @@ declare const _default: {
16305
17086
  option: any;
16306
17087
  disabled: boolean;
16307
17088
  active: boolean;
17089
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16308
17090
  isIndeterminate: boolean;
16309
17091
  subtitle: string;
16310
17092
  selectAllOption: boolean;
16311
17093
  nameKey: string;
16312
17094
  imageKey: string;
16313
17095
  iconKey: string;
16314
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17096
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17097
+ endIconKey: string;
16315
17098
  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";
16316
17099
  }, {}, string> & {
16317
17100
  beforeCreate?: (() => void) | (() => void)[];
@@ -16346,6 +17129,10 @@ declare const _default: {
16346
17129
  type: import("vue").PropType<boolean>;
16347
17130
  default: any;
16348
17131
  };
17132
+ endIconType: {
17133
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17134
+ default: string;
17135
+ };
16349
17136
  isIndeterminate: {
16350
17137
  type: import("vue").PropType<boolean>;
16351
17138
  default: boolean;
@@ -16371,9 +17158,13 @@ declare const _default: {
16371
17158
  default: any;
16372
17159
  };
16373
17160
  iconType: {
16374
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17161
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16375
17162
  default: string;
16376
17163
  };
17164
+ endIconKey: {
17165
+ type: import("vue").PropType<string>;
17166
+ default: any;
17167
+ };
16377
17168
  toolTipPlacement: {
16378
17169
  type: import("vue").PropType<"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">;
16379
17170
  default: string;
@@ -16398,6 +17189,10 @@ declare const _default: {
16398
17189
  type: import("vue").PropType<boolean>;
16399
17190
  default: any;
16400
17191
  };
17192
+ endIconType: {
17193
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17194
+ default: string;
17195
+ };
16401
17196
  isIndeterminate: {
16402
17197
  type: import("vue").PropType<boolean>;
16403
17198
  default: boolean;
@@ -16423,9 +17218,13 @@ declare const _default: {
16423
17218
  default: any;
16424
17219
  };
16425
17220
  iconType: {
16426
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17221
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16427
17222
  default: string;
16428
17223
  };
17224
+ endIconKey: {
17225
+ type: import("vue").PropType<string>;
17226
+ default: any;
17227
+ };
16429
17228
  toolTipPlacement: {
16430
17229
  type: import("vue").PropType<"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">;
16431
17230
  default: string;
@@ -16437,46 +17236,216 @@ declare const _default: {
16437
17236
  option: any;
16438
17237
  disabled: boolean;
16439
17238
  active: boolean;
17239
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16440
17240
  isIndeterminate: boolean;
16441
17241
  subtitle: string;
16442
17242
  selectAllOption: boolean;
16443
17243
  nameKey: string;
16444
17244
  imageKey: string;
16445
17245
  iconKey: string;
16446
- iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17246
+ iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17247
+ endIconKey: string;
16447
17248
  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";
16448
17249
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
16449
17250
  $slots: {
16450
17251
  image?(_: {}): any;
16451
17252
  "icon-start"?(_: {}): any;
16452
17253
  default?(_: {}): any;
17254
+ "icon-end"?(_: {}): any;
16453
17255
  };
16454
17256
  });
16455
- Label: {
16456
- new (...args: any[]): {
16457
- $: import("vue").ComponentInternalInstance;
16458
- $data: {};
16459
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
16460
- $attrs: {
16461
- [x: string]: unknown;
16462
- };
16463
- $refs: {
16464
- [x: string]: unknown;
16465
- };
16466
- $slots: Readonly<{
16467
- [name: string]: import("vue").Slot;
16468
- }>;
16469
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
16470
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
16471
- $emit: (event: string, ...args: any[]) => void;
16472
- $el: any;
16473
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
16474
- beforeCreate?: (() => void) | (() => void)[];
16475
- created?: (() => void) | (() => void)[];
16476
- beforeMount?: (() => void) | (() => void)[];
16477
- mounted?: (() => void) | (() => void)[];
16478
- beforeUpdate?: (() => void) | (() => void)[];
16479
- updated?: (() => void) | (() => void)[];
17257
+ TreeDropdown: import("vue").DefineComponent<{
17258
+ disabled: {
17259
+ type: import("vue").PropType<boolean>;
17260
+ default: boolean;
17261
+ };
17262
+ size: {
17263
+ type: import("vue").PropType<"small" | "medium" | "large">;
17264
+ default: string;
17265
+ };
17266
+ testId: {
17267
+ type: import("vue").PropType<string>;
17268
+ default: string;
17269
+ };
17270
+ selected: {
17271
+ type: import("vue").PropType<unknown[]>;
17272
+ default: any;
17273
+ };
17274
+ options: {
17275
+ type: import("vue").PropType<unknown[]>;
17276
+ required: true;
17277
+ };
17278
+ placeholder: {
17279
+ type: import("vue").PropType<string>;
17280
+ default: string;
17281
+ };
17282
+ isOpen: {
17283
+ type: import("vue").PropType<boolean>;
17284
+ };
17285
+ inlineSearchPlaceholder: {
17286
+ type: import("vue").PropType<string>;
17287
+ default: string;
17288
+ };
17289
+ displayValue: {
17290
+ type: import("vue").PropType<(option: unknown) => string>;
17291
+ required: true;
17292
+ };
17293
+ optionNameKey: {
17294
+ type: import("vue").PropType<string>;
17295
+ default: string;
17296
+ };
17297
+ optionIconKey: {
17298
+ type: import("vue").PropType<string>;
17299
+ default: string;
17300
+ };
17301
+ optionImageKey: {
17302
+ type: import("vue").PropType<string>;
17303
+ default: string;
17304
+ };
17305
+ optionIconType: {
17306
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17307
+ default: any;
17308
+ };
17309
+ optionEndIconKey: {
17310
+ type: import("vue").PropType<string>;
17311
+ default: string;
17312
+ };
17313
+ optionEndIconType: {
17314
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17315
+ default: any;
17316
+ };
17317
+ valueToCopy: {
17318
+ type: import("vue").PropType<string>;
17319
+ default: any;
17320
+ };
17321
+ disabledOptionKey: {
17322
+ type: import("vue").PropType<string>;
17323
+ default: string;
17324
+ };
17325
+ optionChildrenKey: {
17326
+ type: import("vue").PropType<string>;
17327
+ default: string;
17328
+ };
17329
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17330
+ "update:selected": (value: unknown) => void;
17331
+ "update:isOpen": (value: unknown) => void;
17332
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
17333
+ disabled: {
17334
+ type: import("vue").PropType<boolean>;
17335
+ default: boolean;
17336
+ };
17337
+ size: {
17338
+ type: import("vue").PropType<"small" | "medium" | "large">;
17339
+ default: string;
17340
+ };
17341
+ testId: {
17342
+ type: import("vue").PropType<string>;
17343
+ default: string;
17344
+ };
17345
+ selected: {
17346
+ type: import("vue").PropType<unknown[]>;
17347
+ default: any;
17348
+ };
17349
+ options: {
17350
+ type: import("vue").PropType<unknown[]>;
17351
+ required: true;
17352
+ };
17353
+ placeholder: {
17354
+ type: import("vue").PropType<string>;
17355
+ default: string;
17356
+ };
17357
+ isOpen: {
17358
+ type: import("vue").PropType<boolean>;
17359
+ };
17360
+ inlineSearchPlaceholder: {
17361
+ type: import("vue").PropType<string>;
17362
+ default: string;
17363
+ };
17364
+ displayValue: {
17365
+ type: import("vue").PropType<(option: unknown) => string>;
17366
+ required: true;
17367
+ };
17368
+ optionNameKey: {
17369
+ type: import("vue").PropType<string>;
17370
+ default: string;
17371
+ };
17372
+ optionIconKey: {
17373
+ type: import("vue").PropType<string>;
17374
+ default: string;
17375
+ };
17376
+ optionImageKey: {
17377
+ type: import("vue").PropType<string>;
17378
+ default: string;
17379
+ };
17380
+ optionIconType: {
17381
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17382
+ default: any;
17383
+ };
17384
+ optionEndIconKey: {
17385
+ type: import("vue").PropType<string>;
17386
+ default: string;
17387
+ };
17388
+ optionEndIconType: {
17389
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17390
+ default: any;
17391
+ };
17392
+ valueToCopy: {
17393
+ type: import("vue").PropType<string>;
17394
+ default: any;
17395
+ };
17396
+ disabledOptionKey: {
17397
+ type: import("vue").PropType<string>;
17398
+ default: string;
17399
+ };
17400
+ optionChildrenKey: {
17401
+ type: import("vue").PropType<string>;
17402
+ default: string;
17403
+ };
17404
+ }>> & {
17405
+ "onUpdate:selected"?: (value: unknown) => any;
17406
+ "onUpdate:isOpen"?: (value: unknown) => any;
17407
+ }, {
17408
+ disabled: boolean;
17409
+ size: "small" | "medium" | "large";
17410
+ testId: string;
17411
+ selected: unknown[];
17412
+ placeholder: string;
17413
+ inlineSearchPlaceholder: string;
17414
+ optionNameKey: string;
17415
+ optionIconKey: string;
17416
+ optionImageKey: string;
17417
+ optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17418
+ optionEndIconKey: string;
17419
+ optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17420
+ valueToCopy: string;
17421
+ disabledOptionKey: string;
17422
+ optionChildrenKey: string;
17423
+ }>;
17424
+ Label: {
17425
+ new (...args: any[]): {
17426
+ $: import("vue").ComponentInternalInstance;
17427
+ $data: {};
17428
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
17429
+ $attrs: {
17430
+ [x: string]: unknown;
17431
+ };
17432
+ $refs: {
17433
+ [x: string]: unknown;
17434
+ };
17435
+ $slots: Readonly<{
17436
+ [name: string]: import("vue").Slot;
17437
+ }>;
17438
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17439
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17440
+ $emit: (event: string, ...args: any[]) => void;
17441
+ $el: any;
17442
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
17443
+ beforeCreate?: (() => void) | (() => void)[];
17444
+ created?: (() => void) | (() => void)[];
17445
+ beforeMount?: (() => void) | (() => void)[];
17446
+ mounted?: (() => void) | (() => void)[];
17447
+ beforeUpdate?: (() => void) | (() => void)[];
17448
+ updated?: (() => void) | (() => void)[];
16480
17449
  activated?: (() => void) | (() => void)[];
16481
17450
  deactivated?: (() => void) | (() => void)[];
16482
17451
  beforeDestroy?: (() => void) | (() => void)[];
@@ -16559,15 +17528,15 @@ declare const _default: {
16559
17528
  $props: Partial<{
16560
17529
  variant: "text" | "contained" | "outlined";
16561
17530
  disabled: boolean;
16562
- size: "small" | "medium" | "large" | "extraLarge";
16563
17531
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
17532
+ size: "small" | "medium" | "large" | "extraLarge";
16564
17533
  content: string;
16565
17534
  loading: boolean;
16566
17535
  testId: string;
16567
17536
  startIconName: string;
16568
17537
  endIconName: string;
16569
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16570
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17538
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17539
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16571
17540
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16572
17541
  variant: {
16573
17542
  type: import("vue").PropType<"text" | "contained" | "outlined">;
@@ -16577,14 +17546,14 @@ declare const _default: {
16577
17546
  type: import("vue").PropType<boolean>;
16578
17547
  default: boolean;
16579
17548
  };
16580
- size: {
16581
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
16582
- default: string;
16583
- };
16584
17549
  color: {
16585
17550
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
16586
17551
  default: string;
16587
17552
  };
17553
+ size: {
17554
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17555
+ default: string;
17556
+ };
16588
17557
  content: {
16589
17558
  type: import("vue").PropType<string>;
16590
17559
  default: string;
@@ -16606,14 +17575,14 @@ declare const _default: {
16606
17575
  default: any;
16607
17576
  };
16608
17577
  startIconType: {
16609
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17578
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16610
17579
  default: string;
16611
17580
  };
16612
17581
  endIconType: {
16613
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17582
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16614
17583
  default: string;
16615
17584
  };
16616
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "size" | "color" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
17585
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "color" | "size" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
16617
17586
  $attrs: {
16618
17587
  [x: string]: unknown;
16619
17588
  };
@@ -16636,14 +17605,14 @@ declare const _default: {
16636
17605
  type: import("vue").PropType<boolean>;
16637
17606
  default: boolean;
16638
17607
  };
16639
- size: {
16640
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
16641
- default: string;
16642
- };
16643
17608
  color: {
16644
17609
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
16645
17610
  default: string;
16646
17611
  };
17612
+ size: {
17613
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17614
+ default: string;
17615
+ };
16647
17616
  content: {
16648
17617
  type: import("vue").PropType<string>;
16649
17618
  default: string;
@@ -16665,25 +17634,25 @@ declare const _default: {
16665
17634
  default: any;
16666
17635
  };
16667
17636
  startIconType: {
16668
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17637
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16669
17638
  default: string;
16670
17639
  };
16671
17640
  endIconType: {
16672
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17641
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16673
17642
  default: string;
16674
17643
  };
16675
17644
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16676
17645
  variant: "text" | "contained" | "outlined";
16677
17646
  disabled: boolean;
16678
- size: "small" | "medium" | "large" | "extraLarge";
16679
17647
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
17648
+ size: "small" | "medium" | "large" | "extraLarge";
16680
17649
  content: string;
16681
17650
  loading: boolean;
16682
17651
  testId: string;
16683
17652
  startIconName: string;
16684
17653
  endIconName: string;
16685
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16686
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17654
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17655
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16687
17656
  }, {}, string> & {
16688
17657
  beforeCreate?: (() => void) | (() => void)[];
16689
17658
  created?: (() => void) | (() => void)[];
@@ -16713,14 +17682,14 @@ declare const _default: {
16713
17682
  type: import("vue").PropType<boolean>;
16714
17683
  default: boolean;
16715
17684
  };
16716
- size: {
16717
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
16718
- default: string;
16719
- };
16720
17685
  color: {
16721
17686
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
16722
17687
  default: string;
16723
17688
  };
17689
+ size: {
17690
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17691
+ default: string;
17692
+ };
16724
17693
  content: {
16725
17694
  type: import("vue").PropType<string>;
16726
17695
  default: string;
@@ -16742,11 +17711,11 @@ declare const _default: {
16742
17711
  default: any;
16743
17712
  };
16744
17713
  startIconType: {
16745
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17714
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16746
17715
  default: string;
16747
17716
  };
16748
17717
  endIconType: {
16749
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17718
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16750
17719
  default: string;
16751
17720
  };
16752
17721
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -16762,14 +17731,14 @@ declare const _default: {
16762
17731
  type: import("vue").PropType<boolean>;
16763
17732
  default: boolean;
16764
17733
  };
16765
- size: {
16766
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
16767
- default: string;
16768
- };
16769
17734
  color: {
16770
17735
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
16771
17736
  default: string;
16772
17737
  };
17738
+ size: {
17739
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17740
+ default: string;
17741
+ };
16773
17742
  content: {
16774
17743
  type: import("vue").PropType<string>;
16775
17744
  default: string;
@@ -16791,25 +17760,25 @@ declare const _default: {
16791
17760
  default: any;
16792
17761
  };
16793
17762
  startIconType: {
16794
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17763
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16795
17764
  default: string;
16796
17765
  };
16797
17766
  endIconType: {
16798
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17767
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16799
17768
  default: string;
16800
17769
  };
16801
17770
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16802
17771
  variant: "text" | "contained" | "outlined";
16803
17772
  disabled: boolean;
16804
- size: "small" | "medium" | "large" | "extraLarge";
16805
17773
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
17774
+ size: "small" | "medium" | "large" | "extraLarge";
16806
17775
  content: string;
16807
17776
  loading: boolean;
16808
17777
  testId: string;
16809
17778
  startIconName: string;
16810
17779
  endIconName: string;
16811
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
16812
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17780
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17781
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16813
17782
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
16814
17783
  $slots: {
16815
17784
  default?(_: {}): any;
@@ -16821,16 +17790,16 @@ declare const _default: {
16821
17790
  $: import("vue").ComponentInternalInstance;
16822
17791
  $data: {};
16823
17792
  $props: Partial<{
16824
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17793
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16825
17794
  variant: "default" | "outlined";
16826
17795
  disabled: boolean;
16827
- size: "small" | "medium" | "large" | "extraLarge";
16828
17796
  color: "default" | "primary" | "error";
17797
+ size: "small" | "medium" | "large" | "extraLarge";
16829
17798
  testId: string;
16830
17799
  iconName: string;
16831
17800
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16832
17801
  type: {
16833
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17802
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16834
17803
  default: string;
16835
17804
  };
16836
17805
  variant: {
@@ -16841,14 +17810,14 @@ declare const _default: {
16841
17810
  type: import("vue").PropType<boolean>;
16842
17811
  default: boolean;
16843
17812
  };
16844
- size: {
16845
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
16846
- default: string;
16847
- };
16848
17813
  color: {
16849
17814
  type: import("vue").PropType<"default" | "primary" | "error">;
16850
17815
  default: string;
16851
17816
  };
17817
+ size: {
17818
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17819
+ default: string;
17820
+ };
16852
17821
  testId: {
16853
17822
  type: import("vue").PropType<string>;
16854
17823
  default: string;
@@ -16857,7 +17826,7 @@ declare const _default: {
16857
17826
  type: import("vue").PropType<string>;
16858
17827
  default: string;
16859
17828
  };
16860
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "size" | "color" | "testId" | "iconName">;
17829
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "color" | "size" | "testId" | "iconName">;
16861
17830
  $attrs: {
16862
17831
  [x: string]: unknown;
16863
17832
  };
@@ -16873,7 +17842,7 @@ declare const _default: {
16873
17842
  $el: any;
16874
17843
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
16875
17844
  type: {
16876
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17845
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16877
17846
  default: string;
16878
17847
  };
16879
17848
  variant: {
@@ -16884,14 +17853,14 @@ declare const _default: {
16884
17853
  type: import("vue").PropType<boolean>;
16885
17854
  default: boolean;
16886
17855
  };
16887
- size: {
16888
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
16889
- default: string;
16890
- };
16891
17856
  color: {
16892
17857
  type: import("vue").PropType<"default" | "primary" | "error">;
16893
17858
  default: string;
16894
17859
  };
17860
+ size: {
17861
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17862
+ default: string;
17863
+ };
16895
17864
  testId: {
16896
17865
  type: import("vue").PropType<string>;
16897
17866
  default: string;
@@ -16901,11 +17870,11 @@ declare const _default: {
16901
17870
  default: string;
16902
17871
  };
16903
17872
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16904
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17873
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16905
17874
  variant: "default" | "outlined";
16906
17875
  disabled: boolean;
16907
- size: "small" | "medium" | "large" | "extraLarge";
16908
17876
  color: "default" | "primary" | "error";
17877
+ size: "small" | "medium" | "large" | "extraLarge";
16909
17878
  testId: string;
16910
17879
  iconName: string;
16911
17880
  }, {}, string> & {
@@ -16930,7 +17899,7 @@ declare const _default: {
16930
17899
  $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;
16931
17900
  } & Readonly<import("vue").ExtractPropTypes<{
16932
17901
  type: {
16933
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17902
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16934
17903
  default: string;
16935
17904
  };
16936
17905
  variant: {
@@ -16941,14 +17910,14 @@ declare const _default: {
16941
17910
  type: import("vue").PropType<boolean>;
16942
17911
  default: boolean;
16943
17912
  };
16944
- size: {
16945
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
16946
- default: string;
16947
- };
16948
17913
  color: {
16949
17914
  type: import("vue").PropType<"default" | "primary" | "error">;
16950
17915
  default: string;
16951
17916
  };
17917
+ size: {
17918
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17919
+ default: string;
17920
+ };
16952
17921
  testId: {
16953
17922
  type: import("vue").PropType<string>;
16954
17923
  default: string;
@@ -16963,7 +17932,7 @@ declare const _default: {
16963
17932
  __isSuspense?: never;
16964
17933
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
16965
17934
  type: {
16966
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
17935
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
16967
17936
  default: string;
16968
17937
  };
16969
17938
  variant: {
@@ -16974,14 +17943,14 @@ declare const _default: {
16974
17943
  type: import("vue").PropType<boolean>;
16975
17944
  default: boolean;
16976
17945
  };
16977
- size: {
16978
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
16979
- default: string;
16980
- };
16981
17946
  color: {
16982
17947
  type: import("vue").PropType<"default" | "primary" | "error">;
16983
17948
  default: string;
16984
17949
  };
17950
+ size: {
17951
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17952
+ default: string;
17953
+ };
16985
17954
  testId: {
16986
17955
  type: import("vue").PropType<string>;
16987
17956
  default: string;
@@ -16991,11 +17960,11 @@ declare const _default: {
16991
17960
  default: string;
16992
17961
  };
16993
17962
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
16994
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17963
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
16995
17964
  variant: "default" | "outlined";
16996
17965
  disabled: boolean;
16997
- size: "small" | "medium" | "large" | "extraLarge";
16998
17966
  color: "default" | "primary" | "error";
17967
+ size: "small" | "medium" | "large" | "extraLarge";
16999
17968
  testId: string;
17000
17969
  iconName: string;
17001
17970
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -17010,15 +17979,15 @@ declare const _default: {
17010
17979
  $props: Partial<{
17011
17980
  variant: "text" | "contained" | "outlined";
17012
17981
  disabled: boolean;
17013
- size: "small" | "medium" | "large" | "extraLarge";
17014
17982
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
17983
+ size: "small" | "medium" | "large" | "extraLarge";
17015
17984
  content: string;
17016
17985
  loading: boolean;
17017
17986
  testId: string;
17018
17987
  startIconName: string;
17019
17988
  endIconName: string;
17020
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17021
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17989
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17990
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17022
17991
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
17023
17992
  variant: {
17024
17993
  type: import("vue").PropType<"text" | "contained" | "outlined">;
@@ -17028,14 +17997,14 @@ declare const _default: {
17028
17997
  type: import("vue").PropType<boolean>;
17029
17998
  default: boolean;
17030
17999
  };
17031
- size: {
17032
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17033
- default: string;
17034
- };
17035
18000
  color: {
17036
18001
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
17037
18002
  default: string;
17038
18003
  };
18004
+ size: {
18005
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18006
+ default: string;
18007
+ };
17039
18008
  content: {
17040
18009
  type: import("vue").PropType<string>;
17041
18010
  default: string;
@@ -17057,14 +18026,14 @@ declare const _default: {
17057
18026
  default: any;
17058
18027
  };
17059
18028
  startIconType: {
17060
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18029
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17061
18030
  default: string;
17062
18031
  };
17063
18032
  endIconType: {
17064
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18033
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17065
18034
  default: string;
17066
18035
  };
17067
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "size" | "color" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
18036
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "disabled" | "color" | "size" | "content" | "loading" | "testId" | "startIconName" | "endIconName" | "startIconType" | "endIconType">;
17068
18037
  $attrs: {
17069
18038
  [x: string]: unknown;
17070
18039
  };
@@ -17087,14 +18056,14 @@ declare const _default: {
17087
18056
  type: import("vue").PropType<boolean>;
17088
18057
  default: boolean;
17089
18058
  };
17090
- size: {
17091
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17092
- default: string;
17093
- };
17094
18059
  color: {
17095
18060
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
17096
18061
  default: string;
17097
18062
  };
18063
+ size: {
18064
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18065
+ default: string;
18066
+ };
17098
18067
  content: {
17099
18068
  type: import("vue").PropType<string>;
17100
18069
  default: string;
@@ -17116,25 +18085,25 @@ declare const _default: {
17116
18085
  default: any;
17117
18086
  };
17118
18087
  startIconType: {
17119
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18088
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17120
18089
  default: string;
17121
18090
  };
17122
18091
  endIconType: {
17123
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18092
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17124
18093
  default: string;
17125
18094
  };
17126
18095
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
17127
18096
  variant: "text" | "contained" | "outlined";
17128
18097
  disabled: boolean;
17129
- size: "small" | "medium" | "large" | "extraLarge";
17130
18098
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
18099
+ size: "small" | "medium" | "large" | "extraLarge";
17131
18100
  content: string;
17132
18101
  loading: boolean;
17133
18102
  testId: string;
17134
18103
  startIconName: string;
17135
18104
  endIconName: string;
17136
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17137
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18105
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18106
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17138
18107
  }, {}, string> & {
17139
18108
  beforeCreate?: (() => void) | (() => void)[];
17140
18109
  created?: (() => void) | (() => void)[];
@@ -17164,14 +18133,14 @@ declare const _default: {
17164
18133
  type: import("vue").PropType<boolean>;
17165
18134
  default: boolean;
17166
18135
  };
17167
- size: {
17168
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17169
- default: string;
17170
- };
17171
18136
  color: {
17172
18137
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
17173
18138
  default: string;
17174
18139
  };
18140
+ size: {
18141
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18142
+ default: string;
18143
+ };
17175
18144
  content: {
17176
18145
  type: import("vue").PropType<string>;
17177
18146
  default: string;
@@ -17193,11 +18162,11 @@ declare const _default: {
17193
18162
  default: any;
17194
18163
  };
17195
18164
  startIconType: {
17196
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18165
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17197
18166
  default: string;
17198
18167
  };
17199
18168
  endIconType: {
17200
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18169
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17201
18170
  default: string;
17202
18171
  };
17203
18172
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -17213,14 +18182,14 @@ declare const _default: {
17213
18182
  type: import("vue").PropType<boolean>;
17214
18183
  default: boolean;
17215
18184
  };
17216
- size: {
17217
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17218
- default: string;
17219
- };
17220
18185
  color: {
17221
18186
  type: import("vue").PropType<"default" | "primary" | "danger" | "info" | "success" | "warning">;
17222
18187
  default: string;
17223
18188
  };
18189
+ size: {
18190
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18191
+ default: string;
18192
+ };
17224
18193
  content: {
17225
18194
  type: import("vue").PropType<string>;
17226
18195
  default: string;
@@ -17242,25 +18211,25 @@ declare const _default: {
17242
18211
  default: any;
17243
18212
  };
17244
18213
  startIconType: {
17245
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18214
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17246
18215
  default: string;
17247
18216
  };
17248
18217
  endIconType: {
17249
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18218
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17250
18219
  default: string;
17251
18220
  };
17252
18221
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
17253
18222
  variant: "text" | "contained" | "outlined";
17254
18223
  disabled: boolean;
17255
- size: "small" | "medium" | "large" | "extraLarge";
17256
18224
  color: "default" | "primary" | "danger" | "info" | "success" | "warning";
18225
+ size: "small" | "medium" | "large" | "extraLarge";
17257
18226
  content: string;
17258
18227
  loading: boolean;
17259
18228
  testId: string;
17260
18229
  startIconName: string;
17261
18230
  endIconName: string;
17262
- startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
17263
- endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18231
+ startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
18232
+ endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17264
18233
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
17265
18234
  $slots: {
17266
18235
  default?(_: {}): any;
@@ -17271,16 +18240,16 @@ declare const _default: {
17271
18240
  $: import("vue").ComponentInternalInstance;
17272
18241
  $data: {};
17273
18242
  $props: Partial<{
17274
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18243
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17275
18244
  variant: "default" | "outlined";
17276
18245
  disabled: boolean;
17277
- size: "small" | "medium" | "large" | "extraLarge";
17278
18246
  color: "default" | "primary" | "error";
18247
+ size: "small" | "medium" | "large" | "extraLarge";
17279
18248
  testId: string;
17280
18249
  iconName: string;
17281
18250
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
17282
18251
  type: {
17283
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18252
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17284
18253
  default: string;
17285
18254
  };
17286
18255
  variant: {
@@ -17291,14 +18260,14 @@ declare const _default: {
17291
18260
  type: import("vue").PropType<boolean>;
17292
18261
  default: boolean;
17293
18262
  };
17294
- size: {
17295
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17296
- default: string;
17297
- };
17298
18263
  color: {
17299
18264
  type: import("vue").PropType<"default" | "primary" | "error">;
17300
18265
  default: string;
17301
18266
  };
18267
+ size: {
18268
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18269
+ default: string;
18270
+ };
17302
18271
  testId: {
17303
18272
  type: import("vue").PropType<string>;
17304
18273
  default: string;
@@ -17307,7 +18276,7 @@ declare const _default: {
17307
18276
  type: import("vue").PropType<string>;
17308
18277
  default: string;
17309
18278
  };
17310
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "size" | "color" | "testId" | "iconName">;
18279
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "variant" | "disabled" | "color" | "size" | "testId" | "iconName">;
17311
18280
  $attrs: {
17312
18281
  [x: string]: unknown;
17313
18282
  };
@@ -17323,7 +18292,7 @@ declare const _default: {
17323
18292
  $el: any;
17324
18293
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
17325
18294
  type: {
17326
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18295
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17327
18296
  default: string;
17328
18297
  };
17329
18298
  variant: {
@@ -17334,14 +18303,14 @@ declare const _default: {
17334
18303
  type: import("vue").PropType<boolean>;
17335
18304
  default: boolean;
17336
18305
  };
17337
- size: {
17338
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17339
- default: string;
17340
- };
17341
18306
  color: {
17342
18307
  type: import("vue").PropType<"default" | "primary" | "error">;
17343
18308
  default: string;
17344
18309
  };
18310
+ size: {
18311
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18312
+ default: string;
18313
+ };
17345
18314
  testId: {
17346
18315
  type: import("vue").PropType<string>;
17347
18316
  default: string;
@@ -17351,11 +18320,11 @@ declare const _default: {
17351
18320
  default: string;
17352
18321
  };
17353
18322
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
17354
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18323
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17355
18324
  variant: "default" | "outlined";
17356
18325
  disabled: boolean;
17357
- size: "small" | "medium" | "large" | "extraLarge";
17358
18326
  color: "default" | "primary" | "error";
18327
+ size: "small" | "medium" | "large" | "extraLarge";
17359
18328
  testId: string;
17360
18329
  iconName: string;
17361
18330
  }, {}, string> & {
@@ -17380,7 +18349,7 @@ declare const _default: {
17380
18349
  $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;
17381
18350
  } & Readonly<import("vue").ExtractPropTypes<{
17382
18351
  type: {
17383
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18352
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17384
18353
  default: string;
17385
18354
  };
17386
18355
  variant: {
@@ -17391,14 +18360,14 @@ declare const _default: {
17391
18360
  type: import("vue").PropType<boolean>;
17392
18361
  default: boolean;
17393
18362
  };
17394
- size: {
17395
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17396
- default: string;
17397
- };
17398
18363
  color: {
17399
18364
  type: import("vue").PropType<"default" | "primary" | "error">;
17400
18365
  default: string;
17401
18366
  };
18367
+ size: {
18368
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18369
+ default: string;
18370
+ };
17402
18371
  testId: {
17403
18372
  type: import("vue").PropType<string>;
17404
18373
  default: string;
@@ -17413,7 +18382,7 @@ declare const _default: {
17413
18382
  __isSuspense?: never;
17414
18383
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
17415
18384
  type: {
17416
- type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
18385
+ type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat">;
17417
18386
  default: string;
17418
18387
  };
17419
18388
  variant: {
@@ -17424,14 +18393,14 @@ declare const _default: {
17424
18393
  type: import("vue").PropType<boolean>;
17425
18394
  default: boolean;
17426
18395
  };
17427
- size: {
17428
- type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
17429
- default: string;
17430
- };
17431
18396
  color: {
17432
18397
  type: import("vue").PropType<"default" | "primary" | "error">;
17433
18398
  default: string;
17434
18399
  };
18400
+ size: {
18401
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge">;
18402
+ default: string;
18403
+ };
17435
18404
  testId: {
17436
18405
  type: import("vue").PropType<string>;
17437
18406
  default: string;
@@ -17441,11 +18410,11 @@ declare const _default: {
17441
18410
  default: string;
17442
18411
  };
17443
18412
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
17444
- type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
18413
+ type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat";
17445
18414
  variant: "default" | "outlined";
17446
18415
  disabled: boolean;
17447
- size: "small" | "medium" | "large" | "extraLarge";
17448
18416
  color: "default" | "primary" | "error";
18417
+ size: "small" | "medium" | "large" | "extraLarge";
17449
18418
  testId: string;
17450
18419
  iconName: string;
17451
18420
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -17775,332 +18744,126 @@ declare const _default: {
17775
18744
  }): any;
17776
18745
  };
17777
18746
  }))[];
17778
- Chip: {
17779
- new (...args: any[]): {
17780
- $: import("vue").ComponentInternalInstance;
17781
- $data: {};
17782
- $props: Partial<{
17783
- disabled: boolean;
17784
- testId: string;
17785
- selected: boolean;
17786
- prefix: string;
17787
- clearable: boolean;
17788
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
17789
- disabled: {
17790
- type: import("vue").PropType<boolean>;
17791
- default: boolean;
17792
- };
17793
- testId: {
17794
- type: import("vue").PropType<string>;
17795
- default: string;
17796
- };
17797
- selected: {
17798
- type: import("vue").PropType<boolean>;
17799
- default: boolean;
17800
- };
17801
- prefix: {
17802
- type: import("vue").PropType<string>;
17803
- default: any;
17804
- };
17805
- clearable: {
17806
- type: import("vue").PropType<boolean>;
17807
- default: boolean;
17808
- };
17809
- }>> & {
17810
- onCleared?: (...args: any[]) => any;
17811
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "selected" | "prefix" | "clearable">;
17812
- $attrs: {
17813
- [x: string]: unknown;
17814
- };
17815
- $refs: {
17816
- [x: string]: unknown;
17817
- };
17818
- $slots: Readonly<{
17819
- [name: string]: import("vue").Slot;
17820
- }>;
17821
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17822
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17823
- $emit: (event: "cleared", ...args: any[]) => void;
17824
- $el: any;
17825
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
17826
- disabled: {
17827
- type: import("vue").PropType<boolean>;
17828
- default: boolean;
17829
- };
17830
- testId: {
17831
- type: import("vue").PropType<string>;
17832
- default: string;
17833
- };
17834
- selected: {
17835
- type: import("vue").PropType<boolean>;
17836
- default: boolean;
17837
- };
17838
- prefix: {
17839
- type: import("vue").PropType<string>;
17840
- default: any;
17841
- };
17842
- clearable: {
17843
- type: import("vue").PropType<boolean>;
17844
- default: boolean;
17845
- };
17846
- }>> & {
17847
- onCleared?: (...args: any[]) => any;
17848
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17849
- cleared: (...args: any[]) => void;
17850
- }, string, {
17851
- disabled: boolean;
17852
- testId: string;
17853
- selected: boolean;
17854
- prefix: string;
17855
- clearable: boolean;
17856
- }, {}, string> & {
17857
- beforeCreate?: (() => void) | (() => void)[];
17858
- created?: (() => void) | (() => void)[];
17859
- beforeMount?: (() => void) | (() => void)[];
17860
- mounted?: (() => void) | (() => void)[];
17861
- beforeUpdate?: (() => void) | (() => void)[];
17862
- updated?: (() => void) | (() => void)[];
17863
- activated?: (() => void) | (() => void)[];
17864
- deactivated?: (() => void) | (() => void)[];
17865
- beforeDestroy?: (() => void) | (() => void)[];
17866
- beforeUnmount?: (() => void) | (() => void)[];
17867
- destroyed?: (() => void) | (() => void)[];
17868
- unmounted?: (() => void) | (() => void)[];
17869
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
17870
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
17871
- 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)[];
17872
- };
17873
- $forceUpdate: () => void;
17874
- $nextTick: typeof import("vue").nextTick;
17875
- $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;
17876
- } & Readonly<import("vue").ExtractPropTypes<{
17877
- disabled: {
17878
- type: import("vue").PropType<boolean>;
17879
- default: boolean;
17880
- };
17881
- testId: {
17882
- type: import("vue").PropType<string>;
17883
- default: string;
17884
- };
17885
- selected: {
17886
- type: import("vue").PropType<boolean>;
17887
- default: boolean;
17888
- };
17889
- prefix: {
17890
- type: import("vue").PropType<string>;
17891
- default: any;
17892
- };
17893
- clearable: {
17894
- type: import("vue").PropType<boolean>;
17895
- default: boolean;
17896
- };
17897
- }>> & {
17898
- onCleared?: (...args: any[]) => any;
17899
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
17900
- __isFragment?: never;
17901
- __isTeleport?: never;
17902
- __isSuspense?: never;
17903
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
18747
+ Chip: import("vue").DefineComponent<{
18748
+ label: {
18749
+ type: import("vue").PropType<string>;
18750
+ required: true;
18751
+ default: string;
18752
+ };
18753
+ variant: {
18754
+ type: import("vue").PropType<"filled" | "outlined">;
18755
+ default: string;
18756
+ };
17904
18757
  disabled: {
17905
18758
  type: import("vue").PropType<boolean>;
17906
18759
  default: boolean;
17907
18760
  };
18761
+ color: {
18762
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
18763
+ default: string;
18764
+ };
18765
+ size: {
18766
+ type: import("vue").PropType<"small" | "medium">;
18767
+ default: string;
18768
+ };
17908
18769
  testId: {
17909
18770
  type: import("vue").PropType<string>;
17910
18771
  default: string;
17911
18772
  };
17912
- selected: {
17913
- type: import("vue").PropType<boolean>;
17914
- default: boolean;
17915
- };
17916
- prefix: {
18773
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
18774
+ label: {
17917
18775
  type: import("vue").PropType<string>;
17918
- default: any;
18776
+ required: true;
18777
+ default: string;
17919
18778
  };
17920
- clearable: {
18779
+ variant: {
18780
+ type: import("vue").PropType<"filled" | "outlined">;
18781
+ default: string;
18782
+ };
18783
+ disabled: {
17921
18784
  type: import("vue").PropType<boolean>;
17922
18785
  default: boolean;
17923
18786
  };
17924
- }>> & {
17925
- onCleared?: (...args: any[]) => any;
17926
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17927
- cleared: (...args: any[]) => void;
17928
- }, string, {
18787
+ color: {
18788
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
18789
+ default: string;
18790
+ };
18791
+ size: {
18792
+ type: import("vue").PropType<"small" | "medium">;
18793
+ default: string;
18794
+ };
18795
+ testId: {
18796
+ type: import("vue").PropType<string>;
18797
+ default: string;
18798
+ };
18799
+ }>>, {
18800
+ label: string;
18801
+ variant: "filled" | "outlined";
17929
18802
  disabled: boolean;
18803
+ color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
18804
+ size: "small" | "medium";
17930
18805
  testId: string;
17931
- selected: boolean;
17932
- prefix: string;
17933
- clearable: boolean;
17934
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
17935
- $slots: {
17936
- "icon-start"?(_: {}): any;
17937
- default?(_: {}): any;
17938
- "icon-end"?(_: {}): any;
18806
+ }>;
18807
+ ChipTypes: () => import("vue").DefineComponent<{
18808
+ label: {
18809
+ type: import("vue").PropType<string>;
18810
+ required: true;
18811
+ default: string;
18812
+ };
18813
+ variant: {
18814
+ type: import("vue").PropType<"filled" | "outlined">;
18815
+ default: string;
17939
18816
  };
17940
- });
17941
- ChipTypes: () => ({
17942
- new (...args: any[]): {
17943
- $: import("vue").ComponentInternalInstance;
17944
- $data: {};
17945
- $props: Partial<{
17946
- disabled: boolean;
17947
- testId: string;
17948
- selected: boolean;
17949
- prefix: string;
17950
- clearable: boolean;
17951
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
17952
- disabled: {
17953
- type: import("vue").PropType<boolean>;
17954
- default: boolean;
17955
- };
17956
- testId: {
17957
- type: import("vue").PropType<string>;
17958
- default: string;
17959
- };
17960
- selected: {
17961
- type: import("vue").PropType<boolean>;
17962
- default: boolean;
17963
- };
17964
- prefix: {
17965
- type: import("vue").PropType<string>;
17966
- default: any;
17967
- };
17968
- clearable: {
17969
- type: import("vue").PropType<boolean>;
17970
- default: boolean;
17971
- };
17972
- }>> & {
17973
- onCleared?: (...args: any[]) => any;
17974
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "selected" | "prefix" | "clearable">;
17975
- $attrs: {
17976
- [x: string]: unknown;
17977
- };
17978
- $refs: {
17979
- [x: string]: unknown;
17980
- };
17981
- $slots: Readonly<{
17982
- [name: string]: import("vue").Slot;
17983
- }>;
17984
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17985
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17986
- $emit: (event: "cleared", ...args: any[]) => void;
17987
- $el: any;
17988
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
17989
- disabled: {
17990
- type: import("vue").PropType<boolean>;
17991
- default: boolean;
17992
- };
17993
- testId: {
17994
- type: import("vue").PropType<string>;
17995
- default: string;
17996
- };
17997
- selected: {
17998
- type: import("vue").PropType<boolean>;
17999
- default: boolean;
18000
- };
18001
- prefix: {
18002
- type: import("vue").PropType<string>;
18003
- default: any;
18004
- };
18005
- clearable: {
18006
- type: import("vue").PropType<boolean>;
18007
- default: boolean;
18008
- };
18009
- }>> & {
18010
- onCleared?: (...args: any[]) => any;
18011
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18012
- cleared: (...args: any[]) => void;
18013
- }, string, {
18014
- disabled: boolean;
18015
- testId: string;
18016
- selected: boolean;
18017
- prefix: string;
18018
- clearable: boolean;
18019
- }, {}, string> & {
18020
- beforeCreate?: (() => void) | (() => void)[];
18021
- created?: (() => void) | (() => void)[];
18022
- beforeMount?: (() => void) | (() => void)[];
18023
- mounted?: (() => void) | (() => void)[];
18024
- beforeUpdate?: (() => void) | (() => void)[];
18025
- updated?: (() => void) | (() => void)[];
18026
- activated?: (() => void) | (() => void)[];
18027
- deactivated?: (() => void) | (() => void)[];
18028
- beforeDestroy?: (() => void) | (() => void)[];
18029
- beforeUnmount?: (() => void) | (() => void)[];
18030
- destroyed?: (() => void) | (() => void)[];
18031
- unmounted?: (() => void) | (() => void)[];
18032
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
18033
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
18034
- 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)[];
18035
- };
18036
- $forceUpdate: () => void;
18037
- $nextTick: typeof import("vue").nextTick;
18038
- $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;
18039
- } & Readonly<import("vue").ExtractPropTypes<{
18040
- disabled: {
18041
- type: import("vue").PropType<boolean>;
18042
- default: boolean;
18043
- };
18044
- testId: {
18045
- type: import("vue").PropType<string>;
18046
- default: string;
18047
- };
18048
- selected: {
18049
- type: import("vue").PropType<boolean>;
18050
- default: boolean;
18051
- };
18052
- prefix: {
18053
- type: import("vue").PropType<string>;
18054
- default: any;
18055
- };
18056
- clearable: {
18057
- type: import("vue").PropType<boolean>;
18058
- default: boolean;
18059
- };
18060
- }>> & {
18061
- onCleared?: (...args: any[]) => any;
18062
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
18063
- __isFragment?: never;
18064
- __isTeleport?: never;
18065
- __isSuspense?: never;
18066
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
18067
18817
  disabled: {
18068
18818
  type: import("vue").PropType<boolean>;
18069
18819
  default: boolean;
18070
18820
  };
18821
+ color: {
18822
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
18823
+ default: string;
18824
+ };
18825
+ size: {
18826
+ type: import("vue").PropType<"small" | "medium">;
18827
+ default: string;
18828
+ };
18071
18829
  testId: {
18072
18830
  type: import("vue").PropType<string>;
18073
18831
  default: string;
18074
18832
  };
18075
- selected: {
18076
- type: import("vue").PropType<boolean>;
18077
- default: boolean;
18078
- };
18079
- prefix: {
18833
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
18834
+ label: {
18080
18835
  type: import("vue").PropType<string>;
18081
- default: any;
18836
+ required: true;
18837
+ default: string;
18838
+ };
18839
+ variant: {
18840
+ type: import("vue").PropType<"filled" | "outlined">;
18841
+ default: string;
18082
18842
  };
18083
- clearable: {
18843
+ disabled: {
18084
18844
  type: import("vue").PropType<boolean>;
18085
18845
  default: boolean;
18086
18846
  };
18087
- }>> & {
18088
- onCleared?: (...args: any[]) => any;
18089
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18090
- cleared: (...args: any[]) => void;
18091
- }, string, {
18847
+ color: {
18848
+ type: import("vue").PropType<"dark" | "default" | "primary" | "info" | "success" | "warning" | "error">;
18849
+ default: string;
18850
+ };
18851
+ size: {
18852
+ type: import("vue").PropType<"small" | "medium">;
18853
+ default: string;
18854
+ };
18855
+ testId: {
18856
+ type: import("vue").PropType<string>;
18857
+ default: string;
18858
+ };
18859
+ }>>, {
18860
+ label: string;
18861
+ variant: "filled" | "outlined";
18092
18862
  disabled: boolean;
18863
+ color: "dark" | "default" | "primary" | "info" | "success" | "warning" | "error";
18864
+ size: "small" | "medium";
18093
18865
  testId: string;
18094
- selected: boolean;
18095
- prefix: string;
18096
- clearable: boolean;
18097
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
18098
- $slots: {
18099
- "icon-start"?(_: {}): any;
18100
- default?(_: {}): any;
18101
- "icon-end"?(_: {}): any;
18102
- };
18103
- }))[];
18866
+ }>[];
18104
18867
  };
18105
18868
  export default _default;
18106
18869
  export * from '@/composables/useToggle';