@ironsource/shared-ui 2.1.11-rc.2 → 2.1.11-rc.21

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 (81) hide show
  1. package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_1aa6df01_lang.css +1 -0
  2. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_ba28c717_lang.css +1 -0
  3. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_93545ce0_lang.css +1 -0
  4. package/DateRangeV4.vue_vue_type_style_index_0_scoped_309e5351_lang.css +1 -0
  5. package/DropdownV4.vue_vue_type_style_index_0_scoped_b1bde483_lang.css +1 -0
  6. package/InlineCopy.vue_vue_type_style_index_0_scoped_ad48b61e_lang.css +1 -0
  7. package/OptionV4.vue_vue_type_style_index_0_scoped_df830bf5_lang.css +1 -0
  8. package/PopoverV4.vue_vue_type_style_index_0_scoped_c7e688b1_lang.css +1 -0
  9. package/SettingsHeader.vue_vue_type_style_index_0_scoped_9b6cd9d9_lang.css +1 -0
  10. package/TextField.vue_vue_type_style_index_0_scoped_2e327aa1_lang.css +1 -0
  11. package/ToggleButtonGroupAB.vue_vue_type_style_index_0_scoped_c81a7d3e_lang.css +1 -0
  12. package/TooltipV4.vue_vue_type_style_index_0_scoped_82b46d6d_lang.css +1 -0
  13. package/TreeDropdown.vue_vue_type_style_index_0_scoped_bdfb0aef_lang.css +1 -0
  14. package/components/autocomplete/Autocomplete.vue2.js +3 -2
  15. package/components/button/v4/ToggleButtonGroupAB.vue.d.ts +3 -1
  16. package/components/button/v4/ToggleButtonGroupAB.vue.js +2 -2
  17. package/components/button/v4/ToggleButtonGroupAB.vue2.js +44 -39
  18. package/components/button/v4/index.d.ts +9 -3
  19. package/components/chart/SettingsHeader.vue.js +3 -3
  20. package/components/chart/SettingsHeader.vue2.js +34 -26
  21. package/components/datePicker/v4/DatePickerV4.vue2.js +8 -7
  22. package/components/dateRange/v4/DateRangeV4.vue.js +2 -2
  23. package/components/dateRange/v4/DateRangeV4.vue2.js +9 -9
  24. package/components/dropdown/common/Dropdown.common.js +174 -171
  25. package/components/dropdown/v3/Dropdown.vue.d.ts +2 -2
  26. package/components/dropdown/v3/index.d.ts +39 -39
  27. package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +1 -1
  28. package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +2 -2
  29. package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +7 -7
  30. package/components/dropdown/v4/ChipDropdownTrigger.vue.js +2 -2
  31. package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +66 -44
  32. package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +75 -0
  33. package/components/dropdown/v4/ConditionalDropdown.vue.js +7 -0
  34. package/components/dropdown/v4/ConditionalDropdown.vue2.js +159 -0
  35. package/components/dropdown/v4/DropdownV4.vue.d.ts +20 -6
  36. package/components/dropdown/v4/DropdownV4.vue.js +4 -4
  37. package/components/dropdown/v4/DropdownV4.vue2.js +211 -187
  38. package/components/dropdown/v4/OptionV4.vue.d.ts +10 -0
  39. package/components/dropdown/v4/OptionV4.vue.js +2 -2
  40. package/components/dropdown/v4/OptionV4.vue2.js +135 -98
  41. package/components/dropdown/v4/TreeDropdown.vue.d.ts +6 -1
  42. package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
  43. package/components/dropdown/v4/TreeDropdown.vue2.js +161 -116
  44. package/components/dropdown/v4/index.d.ts +313 -86
  45. package/components/dropdown/v4/index.js +6 -3
  46. package/components/inlineCopy/InlineCopy.vue.d.ts +5 -0
  47. package/components/inlineCopy/InlineCopy.vue.js +2 -2
  48. package/components/inlineCopy/InlineCopy.vue2.js +24 -22
  49. package/components/inlineCopy/index.d.ts +9 -0
  50. package/components/input/v4/TextField.vue.js +3 -3
  51. package/components/input/v4/TextField.vue2.js +12 -12
  52. package/components/multibar/MultiBarMenu.vue2.js +3 -2
  53. package/components/popover/v4/PopoverV4.vue.d.ts +14 -2
  54. package/components/popover/v4/PopoverV4.vue.js +4 -3
  55. package/components/popover/v4/PopoverV4.vue2.js +40 -24
  56. package/components/popover/v4/index.d.ts +55 -11
  57. package/components/sortableList/SortableList.vue.d.ts +1 -1
  58. package/components/sortableList/index.d.ts +4 -4
  59. package/components/table/common/Table.common.js +26 -28
  60. package/components/table/v4/DataGridMenu.vue2.js +3 -2
  61. package/components/table/v4/index.d.ts +2 -2
  62. package/components/tooltip/v4/TooltipV4.vue.d.ts +10 -0
  63. package/components/tooltip/v4/TooltipV4.vue.js +2 -2
  64. package/components/tooltip/v4/TooltipV4.vue2.js +24 -21
  65. package/components/tooltip/v4/index.d.ts +39 -1
  66. package/index.d.ts +860 -213
  67. package/index.js +1 -1
  68. package/mocks/options.d.ts +48 -2
  69. package/package.json +3 -2
  70. package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_7f750550_lang.css +0 -1
  71. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_49bd7193_lang.css +0 -1
  72. package/DateRangeV4.vue_vue_type_style_index_0_scoped_f81413ec_lang.css +0 -1
  73. package/DropdownV4.vue_vue_type_style_index_0_scoped_991a7aad_lang.css +0 -1
  74. package/InlineCopy.vue_vue_type_style_index_0_scoped_893a203c_lang.css +0 -1
  75. package/OptionV4.vue_vue_type_style_index_0_scoped_4070942a_lang.css +0 -1
  76. package/PopoverV4.vue_vue_type_style_index_0_scoped_74bbce13_lang.css +0 -1
  77. package/SettingsHeader.vue_vue_type_style_index_0_scoped_1791e4fe_lang.css +0 -1
  78. package/TextField.vue_vue_type_style_index_0_scoped_4d9bf5b2_lang.css +0 -1
  79. package/ToggleButtonGroupAB.vue_vue_type_style_index_0_scoped_9d9e51c0_lang.css +0 -1
  80. package/TooltipV4.vue_vue_type_style_index_0_scoped_fcdb9d02_lang.css +0 -1
  81. package/TreeDropdown.vue_vue_type_style_index_0_scoped_6ac5f602_lang.css +0 -1
package/index.d.ts CHANGED
@@ -28,8 +28,10 @@ declare const _default: {
28
28
  placement: import("floating-vue").Placement;
29
29
  disabled: boolean;
30
30
  distance: number;
31
- popperClass: string;
31
+ container: string;
32
32
  autoHide: boolean;
33
+ popperClass: string;
34
+ isOpen: boolean;
33
35
  trigger: "hover" | "click" | "focus" | "touch" | "managed";
34
36
  skidding: number;
35
37
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -49,11 +51,19 @@ declare const _default: {
49
51
  type: import("vue").PropType<number>;
50
52
  default: number;
51
53
  };
54
+ container: {
55
+ type: import("vue").PropType<string>;
56
+ default: any;
57
+ };
58
+ autoHide: {
59
+ type: import("vue").PropType<boolean>;
60
+ default: boolean;
61
+ };
52
62
  popperClass: {
53
63
  type: import("vue").PropType<string>;
54
64
  default: string;
55
65
  };
56
- autoHide: {
66
+ isOpen: {
57
67
  type: import("vue").PropType<boolean>;
58
68
  default: boolean;
59
69
  };
@@ -67,7 +77,7 @@ declare const _default: {
67
77
  };
68
78
  }>> & {
69
79
  onIsOpen?: (value: boolean) => any;
70
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "placement" | "disabled" | "distance" | "popperClass" | "autoHide" | "trigger" | "skidding">;
80
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "placement" | "disabled" | "distance" | "container" | "autoHide" | "popperClass" | "isOpen" | "trigger" | "skidding">;
71
81
  $attrs: {
72
82
  [x: string]: unknown;
73
83
  };
@@ -98,11 +108,19 @@ declare const _default: {
98
108
  type: import("vue").PropType<number>;
99
109
  default: number;
100
110
  };
111
+ container: {
112
+ type: import("vue").PropType<string>;
113
+ default: any;
114
+ };
115
+ autoHide: {
116
+ type: import("vue").PropType<boolean>;
117
+ default: boolean;
118
+ };
101
119
  popperClass: {
102
120
  type: import("vue").PropType<string>;
103
121
  default: string;
104
122
  };
105
- autoHide: {
123
+ isOpen: {
106
124
  type: import("vue").PropType<boolean>;
107
125
  default: boolean;
108
126
  };
@@ -116,15 +134,19 @@ declare const _default: {
116
134
  };
117
135
  }>> & {
118
136
  onIsOpen?: (value: boolean) => any;
119
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
137
+ }, {
138
+ toggle: (value?: boolean) => boolean;
139
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
120
140
  isOpen: (value: boolean) => void;
121
141
  }, string, {
122
142
  testId: string;
123
143
  placement: import("floating-vue").Placement;
124
144
  disabled: boolean;
125
145
  distance: number;
126
- popperClass: string;
146
+ container: string;
127
147
  autoHide: boolean;
148
+ popperClass: string;
149
+ isOpen: boolean;
128
150
  trigger: "hover" | "click" | "focus" | "touch" | "managed";
129
151
  skidding: number;
130
152
  }, {}, string> & {
@@ -164,11 +186,19 @@ declare const _default: {
164
186
  type: import("vue").PropType<number>;
165
187
  default: number;
166
188
  };
189
+ container: {
190
+ type: import("vue").PropType<string>;
191
+ default: any;
192
+ };
193
+ autoHide: {
194
+ type: import("vue").PropType<boolean>;
195
+ default: boolean;
196
+ };
167
197
  popperClass: {
168
198
  type: import("vue").PropType<string>;
169
199
  default: string;
170
200
  };
171
- autoHide: {
201
+ isOpen: {
172
202
  type: import("vue").PropType<boolean>;
173
203
  default: boolean;
174
204
  };
@@ -182,7 +212,9 @@ declare const _default: {
182
212
  };
183
213
  }>> & {
184
214
  onIsOpen?: (value: boolean) => any;
185
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
215
+ } & import("vue").ShallowUnwrapRef<{
216
+ toggle: (value?: boolean) => boolean;
217
+ }> & {} & import("vue").ComponentCustomProperties & {};
186
218
  __isFragment?: never;
187
219
  __isTeleport?: never;
188
220
  __isSuspense?: never;
@@ -203,11 +235,19 @@ declare const _default: {
203
235
  type: import("vue").PropType<number>;
204
236
  default: number;
205
237
  };
238
+ container: {
239
+ type: import("vue").PropType<string>;
240
+ default: any;
241
+ };
242
+ autoHide: {
243
+ type: import("vue").PropType<boolean>;
244
+ default: boolean;
245
+ };
206
246
  popperClass: {
207
247
  type: import("vue").PropType<string>;
208
248
  default: string;
209
249
  };
210
- autoHide: {
250
+ isOpen: {
211
251
  type: import("vue").PropType<boolean>;
212
252
  default: boolean;
213
253
  };
@@ -221,15 +261,19 @@ declare const _default: {
221
261
  };
222
262
  }>> & {
223
263
  onIsOpen?: (value: boolean) => any;
224
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
264
+ }, {
265
+ toggle: (value?: boolean) => boolean;
266
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
225
267
  isOpen: (value: boolean) => void;
226
268
  }, string, {
227
269
  testId: string;
228
270
  placement: import("floating-vue").Placement;
229
271
  disabled: boolean;
230
272
  distance: number;
231
- popperClass: string;
273
+ container: string;
232
274
  autoHide: boolean;
275
+ popperClass: string;
276
+ isOpen: boolean;
233
277
  trigger: "hover" | "click" | "focus" | "touch" | "managed";
234
278
  skidding: number;
235
279
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -247,8 +291,10 @@ declare const _default: {
247
291
  placement: import("floating-vue").Placement;
248
292
  disabled: boolean;
249
293
  distance: number;
250
- popperClass: string;
294
+ container: string;
251
295
  autoHide: boolean;
296
+ popperClass: string;
297
+ isOpen: boolean;
252
298
  trigger: "hover" | "click" | "focus" | "touch" | "managed";
253
299
  skidding: number;
254
300
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -268,11 +314,19 @@ declare const _default: {
268
314
  type: import("vue").PropType<number>;
269
315
  default: number;
270
316
  };
317
+ container: {
318
+ type: import("vue").PropType<string>;
319
+ default: any;
320
+ };
321
+ autoHide: {
322
+ type: import("vue").PropType<boolean>;
323
+ default: boolean;
324
+ };
271
325
  popperClass: {
272
326
  type: import("vue").PropType<string>;
273
327
  default: string;
274
328
  };
275
- autoHide: {
329
+ isOpen: {
276
330
  type: import("vue").PropType<boolean>;
277
331
  default: boolean;
278
332
  };
@@ -286,7 +340,7 @@ declare const _default: {
286
340
  };
287
341
  }>> & {
288
342
  onIsOpen?: (value: boolean) => any;
289
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "placement" | "disabled" | "distance" | "popperClass" | "autoHide" | "trigger" | "skidding">;
343
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "placement" | "disabled" | "distance" | "container" | "autoHide" | "popperClass" | "isOpen" | "trigger" | "skidding">;
290
344
  $attrs: {
291
345
  [x: string]: unknown;
292
346
  };
@@ -317,11 +371,19 @@ declare const _default: {
317
371
  type: import("vue").PropType<number>;
318
372
  default: number;
319
373
  };
374
+ container: {
375
+ type: import("vue").PropType<string>;
376
+ default: any;
377
+ };
378
+ autoHide: {
379
+ type: import("vue").PropType<boolean>;
380
+ default: boolean;
381
+ };
320
382
  popperClass: {
321
383
  type: import("vue").PropType<string>;
322
384
  default: string;
323
385
  };
324
- autoHide: {
386
+ isOpen: {
325
387
  type: import("vue").PropType<boolean>;
326
388
  default: boolean;
327
389
  };
@@ -335,15 +397,19 @@ declare const _default: {
335
397
  };
336
398
  }>> & {
337
399
  onIsOpen?: (value: boolean) => any;
338
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
400
+ }, {
401
+ toggle: (value?: boolean) => boolean;
402
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
339
403
  isOpen: (value: boolean) => void;
340
404
  }, string, {
341
405
  testId: string;
342
406
  placement: import("floating-vue").Placement;
343
407
  disabled: boolean;
344
408
  distance: number;
345
- popperClass: string;
409
+ container: string;
346
410
  autoHide: boolean;
411
+ popperClass: string;
412
+ isOpen: boolean;
347
413
  trigger: "hover" | "click" | "focus" | "touch" | "managed";
348
414
  skidding: number;
349
415
  }, {}, string> & {
@@ -383,11 +449,19 @@ declare const _default: {
383
449
  type: import("vue").PropType<number>;
384
450
  default: number;
385
451
  };
452
+ container: {
453
+ type: import("vue").PropType<string>;
454
+ default: any;
455
+ };
456
+ autoHide: {
457
+ type: import("vue").PropType<boolean>;
458
+ default: boolean;
459
+ };
386
460
  popperClass: {
387
461
  type: import("vue").PropType<string>;
388
462
  default: string;
389
463
  };
390
- autoHide: {
464
+ isOpen: {
391
465
  type: import("vue").PropType<boolean>;
392
466
  default: boolean;
393
467
  };
@@ -401,7 +475,9 @@ declare const _default: {
401
475
  };
402
476
  }>> & {
403
477
  onIsOpen?: (value: boolean) => any;
404
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
478
+ } & import("vue").ShallowUnwrapRef<{
479
+ toggle: (value?: boolean) => boolean;
480
+ }> & {} & import("vue").ComponentCustomProperties & {};
405
481
  __isFragment?: never;
406
482
  __isTeleport?: never;
407
483
  __isSuspense?: never;
@@ -422,11 +498,19 @@ declare const _default: {
422
498
  type: import("vue").PropType<number>;
423
499
  default: number;
424
500
  };
501
+ container: {
502
+ type: import("vue").PropType<string>;
503
+ default: any;
504
+ };
505
+ autoHide: {
506
+ type: import("vue").PropType<boolean>;
507
+ default: boolean;
508
+ };
425
509
  popperClass: {
426
510
  type: import("vue").PropType<string>;
427
511
  default: string;
428
512
  };
429
- autoHide: {
513
+ isOpen: {
430
514
  type: import("vue").PropType<boolean>;
431
515
  default: boolean;
432
516
  };
@@ -440,15 +524,19 @@ declare const _default: {
440
524
  };
441
525
  }>> & {
442
526
  onIsOpen?: (value: boolean) => any;
443
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
527
+ }, {
528
+ toggle: (value?: boolean) => boolean;
529
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
444
530
  isOpen: (value: boolean) => void;
445
531
  }, string, {
446
532
  testId: string;
447
533
  placement: import("floating-vue").Placement;
448
534
  disabled: boolean;
449
535
  distance: number;
450
- popperClass: string;
536
+ container: string;
451
537
  autoHide: boolean;
538
+ popperClass: string;
539
+ isOpen: boolean;
452
540
  trigger: "hover" | "click" | "focus" | "touch" | "managed";
453
541
  skidding: number;
454
542
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -1707,6 +1795,7 @@ declare const _default: {
1707
1795
  default: string;
1708
1796
  };
1709
1797
  }>> & {
1798
+ onClearSearch?: () => any;
1710
1799
  onSortableItemDragged?: (event: {
1711
1800
  id: string;
1712
1801
  newIndex: number;
@@ -1716,7 +1805,6 @@ declare const _default: {
1716
1805
  "onUpdate:selectedId"?: (id: string | number) => any;
1717
1806
  "onUpdate:selectedChildId"?: (id: string | number) => any;
1718
1807
  "onUpdate:search"?: (query: string) => any;
1719
- onClearSearch?: () => any;
1720
1808
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
1721
1809
  $attrs: {
1722
1810
  [x: string]: unknown;
@@ -1790,6 +1878,7 @@ declare const _default: {
1790
1878
  default: string;
1791
1879
  };
1792
1880
  }>> & {
1881
+ onClearSearch?: () => any;
1793
1882
  onSortableItemDragged?: (event: {
1794
1883
  id: string;
1795
1884
  newIndex: number;
@@ -1799,7 +1888,6 @@ declare const _default: {
1799
1888
  "onUpdate:selectedId"?: (id: string | number) => any;
1800
1889
  "onUpdate:selectedChildId"?: (id: string | number) => any;
1801
1890
  "onUpdate:search"?: (query: string) => any;
1802
- onClearSearch?: () => any;
1803
1891
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1804
1892
  sortableItemDragged: (event: {
1805
1893
  id: string;
@@ -1901,6 +1989,7 @@ declare const _default: {
1901
1989
  default: string;
1902
1990
  };
1903
1991
  }>> & {
1992
+ onClearSearch?: () => any;
1904
1993
  onSortableItemDragged?: (event: {
1905
1994
  id: string;
1906
1995
  newIndex: number;
@@ -1910,7 +1999,6 @@ declare const _default: {
1910
1999
  "onUpdate:selectedId"?: (id: string | number) => any;
1911
2000
  "onUpdate:selectedChildId"?: (id: string | number) => any;
1912
2001
  "onUpdate:search"?: (query: string) => any;
1913
- onClearSearch?: () => any;
1914
2002
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
1915
2003
  __isFragment?: never;
1916
2004
  __isTeleport?: never;
@@ -1971,6 +2059,7 @@ declare const _default: {
1971
2059
  default: string;
1972
2060
  };
1973
2061
  }>> & {
2062
+ onClearSearch?: () => any;
1974
2063
  onSortableItemDragged?: (event: {
1975
2064
  id: string;
1976
2065
  newIndex: number;
@@ -1980,7 +2069,6 @@ declare const _default: {
1980
2069
  "onUpdate:selectedId"?: (id: string | number) => any;
1981
2070
  "onUpdate:selectedChildId"?: (id: string | number) => any;
1982
2071
  "onUpdate:search"?: (query: string) => any;
1983
- onClearSearch?: () => any;
1984
2072
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1985
2073
  sortableItemDragged: (event: {
1986
2074
  id: string;
@@ -2089,6 +2177,7 @@ declare const _default: {
2089
2177
  default: string;
2090
2178
  };
2091
2179
  }>> & {
2180
+ onClearSearch?: () => any;
2092
2181
  onSortableItemDragged?: (event: {
2093
2182
  id: string;
2094
2183
  newIndex: number;
@@ -2098,7 +2187,6 @@ declare const _default: {
2098
2187
  "onUpdate:selectedId"?: (id: string | number) => any;
2099
2188
  "onUpdate:selectedChildId"?: (id: string | number) => any;
2100
2189
  "onUpdate:search"?: (query: string) => any;
2101
- onClearSearch?: () => any;
2102
2190
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
2103
2191
  $attrs: {
2104
2192
  [x: string]: unknown;
@@ -2172,6 +2260,7 @@ declare const _default: {
2172
2260
  default: string;
2173
2261
  };
2174
2262
  }>> & {
2263
+ onClearSearch?: () => any;
2175
2264
  onSortableItemDragged?: (event: {
2176
2265
  id: string;
2177
2266
  newIndex: number;
@@ -2181,7 +2270,6 @@ declare const _default: {
2181
2270
  "onUpdate:selectedId"?: (id: string | number) => any;
2182
2271
  "onUpdate:selectedChildId"?: (id: string | number) => any;
2183
2272
  "onUpdate:search"?: (query: string) => any;
2184
- onClearSearch?: () => any;
2185
2273
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2186
2274
  sortableItemDragged: (event: {
2187
2275
  id: string;
@@ -2283,6 +2371,7 @@ declare const _default: {
2283
2371
  default: string;
2284
2372
  };
2285
2373
  }>> & {
2374
+ onClearSearch?: () => any;
2286
2375
  onSortableItemDragged?: (event: {
2287
2376
  id: string;
2288
2377
  newIndex: number;
@@ -2292,7 +2381,6 @@ declare const _default: {
2292
2381
  "onUpdate:selectedId"?: (id: string | number) => any;
2293
2382
  "onUpdate:selectedChildId"?: (id: string | number) => any;
2294
2383
  "onUpdate:search"?: (query: string) => any;
2295
- onClearSearch?: () => any;
2296
2384
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
2297
2385
  __isFragment?: never;
2298
2386
  __isTeleport?: never;
@@ -2353,6 +2441,7 @@ declare const _default: {
2353
2441
  default: string;
2354
2442
  };
2355
2443
  }>> & {
2444
+ onClearSearch?: () => any;
2356
2445
  onSortableItemDragged?: (event: {
2357
2446
  id: string;
2358
2447
  newIndex: number;
@@ -2362,7 +2451,6 @@ declare const _default: {
2362
2451
  "onUpdate:selectedId"?: (id: string | number) => any;
2363
2452
  "onUpdate:selectedChildId"?: (id: string | number) => any;
2364
2453
  "onUpdate:search"?: (query: string) => any;
2365
- onClearSearch?: () => any;
2366
2454
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2367
2455
  sortableItemDragged: (event: {
2368
2456
  id: string;
@@ -2464,6 +2552,10 @@ declare const _default: {
2464
2552
  type: import("vue").PropType<string>;
2465
2553
  default: string;
2466
2554
  };
2555
+ valueToCopy: {
2556
+ type: import("vue").PropType<string>;
2557
+ default: string;
2558
+ };
2467
2559
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2468
2560
  copy: () => void;
2469
2561
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -2503,6 +2595,10 @@ declare const _default: {
2503
2595
  type: import("vue").PropType<string>;
2504
2596
  default: string;
2505
2597
  };
2598
+ valueToCopy: {
2599
+ type: import("vue").PropType<string>;
2600
+ default: string;
2601
+ };
2506
2602
  }>> & {
2507
2603
  onCopy?: () => any;
2508
2604
  }, {
@@ -2514,6 +2610,7 @@ declare const _default: {
2514
2610
  hideTextValue: boolean;
2515
2611
  iconSize: string;
2516
2612
  tooltipHeader: string;
2613
+ valueToCopy: string;
2517
2614
  }>;
2518
2615
  InlineCopyTypes: () => import("vue").DefineComponent<{
2519
2616
  text: {
@@ -2552,6 +2649,10 @@ declare const _default: {
2552
2649
  type: import("vue").PropType<string>;
2553
2650
  default: string;
2554
2651
  };
2652
+ valueToCopy: {
2653
+ type: import("vue").PropType<string>;
2654
+ default: string;
2655
+ };
2555
2656
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2556
2657
  copy: () => void;
2557
2658
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -2591,6 +2692,10 @@ declare const _default: {
2591
2692
  type: import("vue").PropType<string>;
2592
2693
  default: string;
2593
2694
  };
2695
+ valueToCopy: {
2696
+ type: import("vue").PropType<string>;
2697
+ default: string;
2698
+ };
2594
2699
  }>> & {
2595
2700
  onCopy?: () => any;
2596
2701
  }, {
@@ -2602,6 +2707,7 @@ declare const _default: {
2602
2707
  hideTextValue: boolean;
2603
2708
  iconSize: string;
2604
2709
  tooltipHeader: string;
2710
+ valueToCopy: string;
2605
2711
  }>[];
2606
2712
  AppHeader: import("vue").DefineComponent<{
2607
2713
  name: {
@@ -5666,7 +5772,7 @@ declare const _default: {
5666
5772
  }>;
5667
5773
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5668
5774
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5669
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
5775
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
5670
5776
  $el: any;
5671
5777
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5672
5778
  sort: {
@@ -6435,7 +6541,7 @@ declare const _default: {
6435
6541
  }>;
6436
6542
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6437
6543
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6438
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
6544
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
6439
6545
  $el: any;
6440
6546
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6441
6547
  sort: {
@@ -7172,7 +7278,7 @@ declare const _default: {
7172
7278
  }>;
7173
7279
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7174
7280
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7175
- $emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7281
+ $emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7176
7282
  tableIndex: number;
7177
7283
  }) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
7178
7284
  $el: any;
@@ -7720,7 +7826,7 @@ declare const _default: {
7720
7826
  }>;
7721
7827
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7722
7828
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7723
- $emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7829
+ $emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent & {
7724
7830
  tableIndex: number;
7725
7831
  }) => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
7726
7832
  $el: any;
@@ -9552,6 +9658,8 @@ declare const _default: {
9552
9658
  disabled: boolean;
9553
9659
  distance: string | number;
9554
9660
  container: string;
9661
+ shown: boolean;
9662
+ autoHide: boolean;
9555
9663
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
9556
9664
  header: {
9557
9665
  type: import("vue").PropType<string>;
@@ -9597,9 +9705,17 @@ declare const _default: {
9597
9705
  type: import("vue").PropType<string>;
9598
9706
  default: string;
9599
9707
  };
9708
+ shown: {
9709
+ type: import("vue").PropType<boolean>;
9710
+ default: any;
9711
+ };
9712
+ autoHide: {
9713
+ type: import("vue").PropType<boolean>;
9714
+ default: boolean;
9715
+ };
9600
9716
  }>> & {
9601
9717
  onShow?: () => any;
9602
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container">;
9718
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide">;
9603
9719
  $attrs: {
9604
9720
  [x: string]: unknown;
9605
9721
  };
@@ -9658,6 +9774,14 @@ declare const _default: {
9658
9774
  type: import("vue").PropType<string>;
9659
9775
  default: string;
9660
9776
  };
9777
+ shown: {
9778
+ type: import("vue").PropType<boolean>;
9779
+ default: any;
9780
+ };
9781
+ autoHide: {
9782
+ type: import("vue").PropType<boolean>;
9783
+ default: boolean;
9784
+ };
9661
9785
  }>> & {
9662
9786
  onShow?: () => any;
9663
9787
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -9674,6 +9798,8 @@ declare const _default: {
9674
9798
  disabled: boolean;
9675
9799
  distance: string | number;
9676
9800
  container: string;
9801
+ shown: boolean;
9802
+ autoHide: boolean;
9677
9803
  }, {}, string> & {
9678
9804
  beforeCreate?: (() => void) | (() => void)[];
9679
9805
  created?: (() => void) | (() => void)[];
@@ -9739,6 +9865,14 @@ declare const _default: {
9739
9865
  type: import("vue").PropType<string>;
9740
9866
  default: string;
9741
9867
  };
9868
+ shown: {
9869
+ type: import("vue").PropType<boolean>;
9870
+ default: any;
9871
+ };
9872
+ autoHide: {
9873
+ type: import("vue").PropType<boolean>;
9874
+ default: boolean;
9875
+ };
9742
9876
  }>> & {
9743
9877
  onShow?: () => any;
9744
9878
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -9790,6 +9924,14 @@ declare const _default: {
9790
9924
  type: import("vue").PropType<string>;
9791
9925
  default: string;
9792
9926
  };
9927
+ shown: {
9928
+ type: import("vue").PropType<boolean>;
9929
+ default: any;
9930
+ };
9931
+ autoHide: {
9932
+ type: import("vue").PropType<boolean>;
9933
+ default: boolean;
9934
+ };
9793
9935
  }>> & {
9794
9936
  onShow?: () => any;
9795
9937
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -9806,6 +9948,8 @@ declare const _default: {
9806
9948
  disabled: boolean;
9807
9949
  distance: string | number;
9808
9950
  container: string;
9951
+ shown: boolean;
9952
+ autoHide: boolean;
9809
9953
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
9810
9954
  $slots: {
9811
9955
  default?(_: {}): any;
@@ -9830,6 +9974,8 @@ declare const _default: {
9830
9974
  disabled: boolean;
9831
9975
  distance: string | number;
9832
9976
  container: string;
9977
+ shown: boolean;
9978
+ autoHide: boolean;
9833
9979
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
9834
9980
  header: {
9835
9981
  type: import("vue").PropType<string>;
@@ -9875,9 +10021,17 @@ declare const _default: {
9875
10021
  type: import("vue").PropType<string>;
9876
10022
  default: string;
9877
10023
  };
10024
+ shown: {
10025
+ type: import("vue").PropType<boolean>;
10026
+ default: any;
10027
+ };
10028
+ autoHide: {
10029
+ type: import("vue").PropType<boolean>;
10030
+ default: boolean;
10031
+ };
9878
10032
  }>> & {
9879
10033
  onShow?: () => any;
9880
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container">;
10034
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide">;
9881
10035
  $attrs: {
9882
10036
  [x: string]: unknown;
9883
10037
  };
@@ -9936,6 +10090,14 @@ declare const _default: {
9936
10090
  type: import("vue").PropType<string>;
9937
10091
  default: string;
9938
10092
  };
10093
+ shown: {
10094
+ type: import("vue").PropType<boolean>;
10095
+ default: any;
10096
+ };
10097
+ autoHide: {
10098
+ type: import("vue").PropType<boolean>;
10099
+ default: boolean;
10100
+ };
9939
10101
  }>> & {
9940
10102
  onShow?: () => any;
9941
10103
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -9952,6 +10114,8 @@ declare const _default: {
9952
10114
  disabled: boolean;
9953
10115
  distance: string | number;
9954
10116
  container: string;
10117
+ shown: boolean;
10118
+ autoHide: boolean;
9955
10119
  }, {}, string> & {
9956
10120
  beforeCreate?: (() => void) | (() => void)[];
9957
10121
  created?: (() => void) | (() => void)[];
@@ -10017,6 +10181,14 @@ declare const _default: {
10017
10181
  type: import("vue").PropType<string>;
10018
10182
  default: string;
10019
10183
  };
10184
+ shown: {
10185
+ type: import("vue").PropType<boolean>;
10186
+ default: any;
10187
+ };
10188
+ autoHide: {
10189
+ type: import("vue").PropType<boolean>;
10190
+ default: boolean;
10191
+ };
10020
10192
  }>> & {
10021
10193
  onShow?: () => any;
10022
10194
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -10068,6 +10240,14 @@ declare const _default: {
10068
10240
  type: import("vue").PropType<string>;
10069
10241
  default: string;
10070
10242
  };
10243
+ shown: {
10244
+ type: import("vue").PropType<boolean>;
10245
+ default: any;
10246
+ };
10247
+ autoHide: {
10248
+ type: import("vue").PropType<boolean>;
10249
+ default: boolean;
10250
+ };
10071
10251
  }>> & {
10072
10252
  onShow?: () => any;
10073
10253
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -10084,6 +10264,8 @@ declare const _default: {
10084
10264
  disabled: boolean;
10085
10265
  distance: string | number;
10086
10266
  container: string;
10267
+ shown: boolean;
10268
+ autoHide: boolean;
10087
10269
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
10088
10270
  $slots: {
10089
10271
  default?(_: {}): any;
@@ -15765,7 +15947,7 @@ declare const _default: {
15765
15947
  skidding: number;
15766
15948
  modelValue: any;
15767
15949
  selected: any;
15768
- onClear: () => void;
15950
+ valueToCopy: string;
15769
15951
  placeholder: string;
15770
15952
  multi: boolean;
15771
15953
  showSelectAll: boolean;
@@ -15786,14 +15968,15 @@ declare const _default: {
15786
15968
  onSearch: (option: any, term: string) => boolean;
15787
15969
  noResultsText: string;
15788
15970
  searchAutoFocus: boolean;
15971
+ onClearSearch: () => void;
15789
15972
  optionNameKey: string;
15790
15973
  optionIconKey: string;
15791
15974
  optionImageKey: string;
15792
15975
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
15793
15976
  optionEndIconKey: string;
15794
15977
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
15978
+ optionsEndTextIconKey: string;
15795
15979
  optionFlagKey: string;
15796
- valueToCopy: string;
15797
15980
  disabledOptionKey: string;
15798
15981
  optionTwoLinesVariant: "horizontal" | "vertical";
15799
15982
  optionTwoLinesKey: string;
@@ -15805,6 +15988,7 @@ declare const _default: {
15805
15988
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
15806
15989
  disableVirtualScroll: boolean;
15807
15990
  overrideOptionCountCalculation: (option: unknown) => number;
15991
+ withConditions: boolean;
15808
15992
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
15809
15993
  theme: {
15810
15994
  type: import("vue").PropType<string>;
@@ -15849,13 +16033,13 @@ declare const _default: {
15849
16033
  loading: {
15850
16034
  type: import("vue").PropType<boolean>;
15851
16035
  };
16036
+ isOpen: {
16037
+ type: import("vue").PropType<boolean>;
16038
+ };
15852
16039
  skidding: {
15853
16040
  type: import("vue").PropType<number>;
15854
16041
  default: number;
15855
16042
  };
15856
- isOpen: {
15857
- type: import("vue").PropType<boolean>;
15858
- };
15859
16043
  modelValue: {
15860
16044
  type: import("vue").PropType<unknown>;
15861
16045
  default: any;
@@ -15864,14 +16048,14 @@ declare const _default: {
15864
16048
  type: import("vue").PropType<unknown>;
15865
16049
  default: any;
15866
16050
  };
16051
+ valueToCopy: {
16052
+ type: import("vue").PropType<string>;
16053
+ default: any;
16054
+ };
15867
16055
  options: {
15868
16056
  type: import("vue").PropType<unknown[]>;
15869
16057
  required: true;
15870
16058
  };
15871
- onClear: {
15872
- type: import("vue").PropType<() => void>;
15873
- default: () => true;
15874
- };
15875
16059
  placeholder: {
15876
16060
  type: import("vue").PropType<string>;
15877
16061
  default: string;
@@ -15952,6 +16136,10 @@ declare const _default: {
15952
16136
  type: import("vue").PropType<boolean>;
15953
16137
  default: boolean;
15954
16138
  };
16139
+ onClearSearch: {
16140
+ type: import("vue").PropType<() => void>;
16141
+ default: () => true;
16142
+ };
15955
16143
  displayValue: {
15956
16144
  type: import("vue").PropType<(option: unknown) => string>;
15957
16145
  required: true;
@@ -15980,11 +16168,11 @@ declare const _default: {
15980
16168
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
15981
16169
  default: any;
15982
16170
  };
15983
- optionFlagKey: {
16171
+ optionsEndTextIconKey: {
15984
16172
  type: import("vue").PropType<string>;
15985
16173
  default: any;
15986
16174
  };
15987
- valueToCopy: {
16175
+ optionFlagKey: {
15988
16176
  type: import("vue").PropType<string>;
15989
16177
  default: any;
15990
16178
  };
@@ -16032,6 +16220,10 @@ declare const _default: {
16032
16220
  type: import("vue").PropType<(option: unknown) => number>;
16033
16221
  default: any;
16034
16222
  };
16223
+ withConditions: {
16224
+ type: import("vue").PropType<boolean>;
16225
+ default: boolean;
16226
+ };
16035
16227
  }>> & {
16036
16228
  onCopyToClipboard?: () => any;
16037
16229
  onClear?: () => any;
@@ -16042,7 +16234,7 @@ declare const _default: {
16042
16234
  onOnsearch?: (value: string) => any;
16043
16235
  onOpened?: () => any;
16044
16236
  onClosed?: () => any;
16045
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
16237
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
16046
16238
  $attrs: {
16047
16239
  [x: string]: unknown;
16048
16240
  };
@@ -16100,13 +16292,13 @@ declare const _default: {
16100
16292
  loading: {
16101
16293
  type: import("vue").PropType<boolean>;
16102
16294
  };
16295
+ isOpen: {
16296
+ type: import("vue").PropType<boolean>;
16297
+ };
16103
16298
  skidding: {
16104
16299
  type: import("vue").PropType<number>;
16105
16300
  default: number;
16106
16301
  };
16107
- isOpen: {
16108
- type: import("vue").PropType<boolean>;
16109
- };
16110
16302
  modelValue: {
16111
16303
  type: import("vue").PropType<unknown>;
16112
16304
  default: any;
@@ -16115,14 +16307,14 @@ declare const _default: {
16115
16307
  type: import("vue").PropType<unknown>;
16116
16308
  default: any;
16117
16309
  };
16310
+ valueToCopy: {
16311
+ type: import("vue").PropType<string>;
16312
+ default: any;
16313
+ };
16118
16314
  options: {
16119
16315
  type: import("vue").PropType<unknown[]>;
16120
16316
  required: true;
16121
16317
  };
16122
- onClear: {
16123
- type: import("vue").PropType<() => void>;
16124
- default: () => true;
16125
- };
16126
16318
  placeholder: {
16127
16319
  type: import("vue").PropType<string>;
16128
16320
  default: string;
@@ -16203,8 +16395,12 @@ declare const _default: {
16203
16395
  type: import("vue").PropType<boolean>;
16204
16396
  default: boolean;
16205
16397
  };
16206
- displayValue: {
16207
- type: import("vue").PropType<(option: unknown) => string>;
16398
+ onClearSearch: {
16399
+ type: import("vue").PropType<() => void>;
16400
+ default: () => true;
16401
+ };
16402
+ displayValue: {
16403
+ type: import("vue").PropType<(option: unknown) => string>;
16208
16404
  required: true;
16209
16405
  };
16210
16406
  optionNameKey: {
@@ -16231,11 +16427,11 @@ declare const _default: {
16231
16427
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16232
16428
  default: any;
16233
16429
  };
16234
- optionFlagKey: {
16430
+ optionsEndTextIconKey: {
16235
16431
  type: import("vue").PropType<string>;
16236
16432
  default: any;
16237
16433
  };
16238
- valueToCopy: {
16434
+ optionFlagKey: {
16239
16435
  type: import("vue").PropType<string>;
16240
16436
  default: any;
16241
16437
  };
@@ -16283,6 +16479,10 @@ declare const _default: {
16283
16479
  type: import("vue").PropType<(option: unknown) => number>;
16284
16480
  default: any;
16285
16481
  };
16482
+ withConditions: {
16483
+ type: import("vue").PropType<boolean>;
16484
+ default: boolean;
16485
+ };
16286
16486
  }>> & {
16287
16487
  onCopyToClipboard?: () => any;
16288
16488
  onClear?: () => any;
@@ -16320,7 +16520,7 @@ declare const _default: {
16320
16520
  skidding: number;
16321
16521
  modelValue: any;
16322
16522
  selected: any;
16323
- onClear: () => void;
16523
+ valueToCopy: string;
16324
16524
  placeholder: string;
16325
16525
  multi: boolean;
16326
16526
  showSelectAll: boolean;
@@ -16341,14 +16541,15 @@ declare const _default: {
16341
16541
  onSearch: (option: any, term: string) => boolean;
16342
16542
  noResultsText: string;
16343
16543
  searchAutoFocus: boolean;
16544
+ onClearSearch: () => void;
16344
16545
  optionNameKey: string;
16345
16546
  optionIconKey: string;
16346
16547
  optionImageKey: string;
16347
16548
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16348
16549
  optionEndIconKey: string;
16349
16550
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16551
+ optionsEndTextIconKey: string;
16350
16552
  optionFlagKey: string;
16351
- valueToCopy: string;
16352
16553
  disabledOptionKey: string;
16353
16554
  optionTwoLinesVariant: "horizontal" | "vertical";
16354
16555
  optionTwoLinesKey: string;
@@ -16360,6 +16561,7 @@ declare const _default: {
16360
16561
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
16361
16562
  disableVirtualScroll: boolean;
16362
16563
  overrideOptionCountCalculation: (option: unknown) => number;
16564
+ withConditions: boolean;
16363
16565
  }, {}, string> & {
16364
16566
  beforeCreate?: (() => void) | (() => void)[];
16365
16567
  created?: (() => void) | (() => void)[];
@@ -16424,13 +16626,13 @@ declare const _default: {
16424
16626
  loading: {
16425
16627
  type: import("vue").PropType<boolean>;
16426
16628
  };
16629
+ isOpen: {
16630
+ type: import("vue").PropType<boolean>;
16631
+ };
16427
16632
  skidding: {
16428
16633
  type: import("vue").PropType<number>;
16429
16634
  default: number;
16430
16635
  };
16431
- isOpen: {
16432
- type: import("vue").PropType<boolean>;
16433
- };
16434
16636
  modelValue: {
16435
16637
  type: import("vue").PropType<unknown>;
16436
16638
  default: any;
@@ -16439,14 +16641,14 @@ declare const _default: {
16439
16641
  type: import("vue").PropType<unknown>;
16440
16642
  default: any;
16441
16643
  };
16644
+ valueToCopy: {
16645
+ type: import("vue").PropType<string>;
16646
+ default: any;
16647
+ };
16442
16648
  options: {
16443
16649
  type: import("vue").PropType<unknown[]>;
16444
16650
  required: true;
16445
16651
  };
16446
- onClear: {
16447
- type: import("vue").PropType<() => void>;
16448
- default: () => true;
16449
- };
16450
16652
  placeholder: {
16451
16653
  type: import("vue").PropType<string>;
16452
16654
  default: string;
@@ -16527,6 +16729,10 @@ declare const _default: {
16527
16729
  type: import("vue").PropType<boolean>;
16528
16730
  default: boolean;
16529
16731
  };
16732
+ onClearSearch: {
16733
+ type: import("vue").PropType<() => void>;
16734
+ default: () => true;
16735
+ };
16530
16736
  displayValue: {
16531
16737
  type: import("vue").PropType<(option: unknown) => string>;
16532
16738
  required: true;
@@ -16555,11 +16761,11 @@ declare const _default: {
16555
16761
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16556
16762
  default: any;
16557
16763
  };
16558
- optionFlagKey: {
16764
+ optionsEndTextIconKey: {
16559
16765
  type: import("vue").PropType<string>;
16560
16766
  default: any;
16561
16767
  };
16562
- valueToCopy: {
16768
+ optionFlagKey: {
16563
16769
  type: import("vue").PropType<string>;
16564
16770
  default: any;
16565
16771
  };
@@ -16607,6 +16813,10 @@ declare const _default: {
16607
16813
  type: import("vue").PropType<(option: unknown) => number>;
16608
16814
  default: any;
16609
16815
  };
16816
+ withConditions: {
16817
+ type: import("vue").PropType<boolean>;
16818
+ default: boolean;
16819
+ };
16610
16820
  }>> & {
16611
16821
  onCopyToClipboard?: () => any;
16612
16822
  onClear?: () => any;
@@ -16668,13 +16878,13 @@ declare const _default: {
16668
16878
  loading: {
16669
16879
  type: import("vue").PropType<boolean>;
16670
16880
  };
16881
+ isOpen: {
16882
+ type: import("vue").PropType<boolean>;
16883
+ };
16671
16884
  skidding: {
16672
16885
  type: import("vue").PropType<number>;
16673
16886
  default: number;
16674
16887
  };
16675
- isOpen: {
16676
- type: import("vue").PropType<boolean>;
16677
- };
16678
16888
  modelValue: {
16679
16889
  type: import("vue").PropType<unknown>;
16680
16890
  default: any;
@@ -16683,14 +16893,14 @@ declare const _default: {
16683
16893
  type: import("vue").PropType<unknown>;
16684
16894
  default: any;
16685
16895
  };
16896
+ valueToCopy: {
16897
+ type: import("vue").PropType<string>;
16898
+ default: any;
16899
+ };
16686
16900
  options: {
16687
16901
  type: import("vue").PropType<unknown[]>;
16688
16902
  required: true;
16689
16903
  };
16690
- onClear: {
16691
- type: import("vue").PropType<() => void>;
16692
- default: () => true;
16693
- };
16694
16904
  placeholder: {
16695
16905
  type: import("vue").PropType<string>;
16696
16906
  default: string;
@@ -16771,6 +16981,10 @@ declare const _default: {
16771
16981
  type: import("vue").PropType<boolean>;
16772
16982
  default: boolean;
16773
16983
  };
16984
+ onClearSearch: {
16985
+ type: import("vue").PropType<() => void>;
16986
+ default: () => true;
16987
+ };
16774
16988
  displayValue: {
16775
16989
  type: import("vue").PropType<(option: unknown) => string>;
16776
16990
  required: true;
@@ -16799,11 +17013,11 @@ declare const _default: {
16799
17013
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16800
17014
  default: any;
16801
17015
  };
16802
- optionFlagKey: {
17016
+ optionsEndTextIconKey: {
16803
17017
  type: import("vue").PropType<string>;
16804
17018
  default: any;
16805
17019
  };
16806
- valueToCopy: {
17020
+ optionFlagKey: {
16807
17021
  type: import("vue").PropType<string>;
16808
17022
  default: any;
16809
17023
  };
@@ -16851,6 +17065,10 @@ declare const _default: {
16851
17065
  type: import("vue").PropType<(option: unknown) => number>;
16852
17066
  default: any;
16853
17067
  };
17068
+ withConditions: {
17069
+ type: import("vue").PropType<boolean>;
17070
+ default: boolean;
17071
+ };
16854
17072
  }>> & {
16855
17073
  onCopyToClipboard?: () => any;
16856
17074
  onClear?: () => any;
@@ -16888,7 +17106,7 @@ declare const _default: {
16888
17106
  skidding: number;
16889
17107
  modelValue: any;
16890
17108
  selected: any;
16891
- onClear: () => void;
17109
+ valueToCopy: string;
16892
17110
  placeholder: string;
16893
17111
  multi: boolean;
16894
17112
  showSelectAll: boolean;
@@ -16909,14 +17127,15 @@ declare const _default: {
16909
17127
  onSearch: (option: any, term: string) => boolean;
16910
17128
  noResultsText: string;
16911
17129
  searchAutoFocus: boolean;
17130
+ onClearSearch: () => void;
16912
17131
  optionNameKey: string;
16913
17132
  optionIconKey: string;
16914
17133
  optionImageKey: string;
16915
17134
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16916
17135
  optionEndIconKey: string;
16917
17136
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
17137
+ optionsEndTextIconKey: string;
16918
17138
  optionFlagKey: string;
16919
- valueToCopy: string;
16920
17139
  disabledOptionKey: string;
16921
17140
  optionTwoLinesVariant: "horizontal" | "vertical";
16922
17141
  optionTwoLinesKey: string;
@@ -16928,6 +17147,7 @@ declare const _default: {
16928
17147
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
16929
17148
  disableVirtualScroll: boolean;
16930
17149
  overrideOptionCountCalculation: (option: unknown) => number;
17150
+ withConditions: boolean;
16931
17151
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
16932
17152
  $slots: {
16933
17153
  label?(_: {}): any;
@@ -16956,6 +17176,7 @@ declare const _default: {
16956
17176
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16957
17177
  optionAndIconKey: string;
16958
17178
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
17179
+ optionsEndTextIconKey: string;
16959
17180
  optionFlagKey: string;
16960
17181
  feedbackVariant: "success" | "warning" | "error";
16961
17182
  valueToCopy: string;
@@ -16967,10 +17188,13 @@ declare const _default: {
16967
17188
  onClick: () => void;
16968
17189
  };
16969
17190
  }): any;
17191
+ "dropdown-conditions"?(_: {}): any;
16970
17192
  "inline-search"?(_: {}): any;
16971
17193
  "input-list"?(_: {
16972
17194
  open: true;
16973
17195
  }): any;
17196
+ "custom-list-area"?(_: {}): any;
17197
+ "select-all"?(_: {}): any;
16974
17198
  "group-option"?(_: {}): any;
16975
17199
  default?(_: {
16976
17200
  option: unknown;
@@ -18016,6 +18240,7 @@ declare const _default: {
18016
18240
  open: boolean;
18017
18241
  mandatory: boolean;
18018
18242
  loading: boolean;
18243
+ valueToCopy: string;
18019
18244
  options: unknown[];
18020
18245
  singleAppSelection: boolean;
18021
18246
  placeholder: string;
@@ -18026,7 +18251,6 @@ declare const _default: {
18026
18251
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18027
18252
  optionEndIconKey: string;
18028
18253
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18029
- valueToCopy: string;
18030
18254
  selectedOption: any;
18031
18255
  brandIconType: "android" | "ios";
18032
18256
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -18060,6 +18284,10 @@ declare const _default: {
18060
18284
  type: import("vue").PropType<boolean>;
18061
18285
  default: boolean;
18062
18286
  };
18287
+ valueToCopy: {
18288
+ type: import("vue").PropType<string>;
18289
+ default: any;
18290
+ };
18063
18291
  options: {
18064
18292
  type: import("vue").PropType<unknown[]>;
18065
18293
  default: any;
@@ -18104,10 +18332,6 @@ declare const _default: {
18104
18332
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18105
18333
  default: any;
18106
18334
  };
18107
- valueToCopy: {
18108
- type: import("vue").PropType<string>;
18109
- default: any;
18110
- };
18111
18335
  selectedOption: {
18112
18336
  type: import("vue").PropType<unknown>;
18113
18337
  default: any;
@@ -18119,7 +18343,7 @@ declare const _default: {
18119
18343
  }>> & {
18120
18344
  onClick?: () => any;
18121
18345
  onCopyToClipboard?: () => any;
18122
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "selectedOption" | "brandIconType">;
18346
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "valueToCopy" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "selectedOption" | "brandIconType">;
18123
18347
  $attrs: {
18124
18348
  [x: string]: unknown;
18125
18349
  };
@@ -18164,6 +18388,10 @@ declare const _default: {
18164
18388
  type: import("vue").PropType<boolean>;
18165
18389
  default: boolean;
18166
18390
  };
18391
+ valueToCopy: {
18392
+ type: import("vue").PropType<string>;
18393
+ default: any;
18394
+ };
18167
18395
  options: {
18168
18396
  type: import("vue").PropType<unknown[]>;
18169
18397
  default: any;
@@ -18208,10 +18436,6 @@ declare const _default: {
18208
18436
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18209
18437
  default: any;
18210
18438
  };
18211
- valueToCopy: {
18212
- type: import("vue").PropType<string>;
18213
- default: any;
18214
- };
18215
18439
  selectedOption: {
18216
18440
  type: import("vue").PropType<unknown>;
18217
18441
  default: any;
@@ -18234,6 +18458,7 @@ declare const _default: {
18234
18458
  open: boolean;
18235
18459
  mandatory: boolean;
18236
18460
  loading: boolean;
18461
+ valueToCopy: string;
18237
18462
  options: unknown[];
18238
18463
  singleAppSelection: boolean;
18239
18464
  placeholder: string;
@@ -18244,7 +18469,6 @@ declare const _default: {
18244
18469
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18245
18470
  optionEndIconKey: string;
18246
18471
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18247
- valueToCopy: string;
18248
18472
  selectedOption: any;
18249
18473
  brandIconType: "android" | "ios";
18250
18474
  }, {}, string> & {
@@ -18298,6 +18522,10 @@ declare const _default: {
18298
18522
  type: import("vue").PropType<boolean>;
18299
18523
  default: boolean;
18300
18524
  };
18525
+ valueToCopy: {
18526
+ type: import("vue").PropType<string>;
18527
+ default: any;
18528
+ };
18301
18529
  options: {
18302
18530
  type: import("vue").PropType<unknown[]>;
18303
18531
  default: any;
@@ -18342,10 +18570,6 @@ declare const _default: {
18342
18570
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18343
18571
  default: any;
18344
18572
  };
18345
- valueToCopy: {
18346
- type: import("vue").PropType<string>;
18347
- default: any;
18348
- };
18349
18573
  selectedOption: {
18350
18574
  type: import("vue").PropType<unknown>;
18351
18575
  default: any;
@@ -18392,6 +18616,10 @@ declare const _default: {
18392
18616
  type: import("vue").PropType<boolean>;
18393
18617
  default: boolean;
18394
18618
  };
18619
+ valueToCopy: {
18620
+ type: import("vue").PropType<string>;
18621
+ default: any;
18622
+ };
18395
18623
  options: {
18396
18624
  type: import("vue").PropType<unknown[]>;
18397
18625
  default: any;
@@ -18436,10 +18664,6 @@ declare const _default: {
18436
18664
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18437
18665
  default: any;
18438
18666
  };
18439
- valueToCopy: {
18440
- type: import("vue").PropType<string>;
18441
- default: any;
18442
- };
18443
18667
  selectedOption: {
18444
18668
  type: import("vue").PropType<unknown>;
18445
18669
  default: any;
@@ -18462,6 +18686,7 @@ declare const _default: {
18462
18686
  open: boolean;
18463
18687
  mandatory: boolean;
18464
18688
  loading: boolean;
18689
+ valueToCopy: string;
18465
18690
  options: unknown[];
18466
18691
  singleAppSelection: boolean;
18467
18692
  placeholder: string;
@@ -18472,7 +18697,6 @@ declare const _default: {
18472
18697
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18473
18698
  optionEndIconKey: string;
18474
18699
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18475
- valueToCopy: string;
18476
18700
  selectedOption: any;
18477
18701
  brandIconType: "android" | "ios";
18478
18702
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -19081,6 +19305,7 @@ declare const _default: {
19081
19305
  open: boolean;
19082
19306
  mandatory: boolean;
19083
19307
  loading: boolean;
19308
+ valueToCopy: string;
19084
19309
  options: unknown[];
19085
19310
  singleAppSelection: boolean;
19086
19311
  placeholder: string;
@@ -19091,7 +19316,6 @@ declare const _default: {
19091
19316
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19092
19317
  optionEndIconKey: string;
19093
19318
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19094
- valueToCopy: string;
19095
19319
  selectedOption: any;
19096
19320
  brandIconType: "android" | "ios";
19097
19321
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -19125,6 +19349,10 @@ declare const _default: {
19125
19349
  type: import("vue").PropType<boolean>;
19126
19350
  default: boolean;
19127
19351
  };
19352
+ valueToCopy: {
19353
+ type: import("vue").PropType<string>;
19354
+ default: any;
19355
+ };
19128
19356
  options: {
19129
19357
  type: import("vue").PropType<unknown[]>;
19130
19358
  default: any;
@@ -19169,10 +19397,6 @@ declare const _default: {
19169
19397
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19170
19398
  default: any;
19171
19399
  };
19172
- valueToCopy: {
19173
- type: import("vue").PropType<string>;
19174
- default: any;
19175
- };
19176
19400
  selectedOption: {
19177
19401
  type: import("vue").PropType<unknown>;
19178
19402
  default: any;
@@ -19184,7 +19408,7 @@ declare const _default: {
19184
19408
  }>> & {
19185
19409
  onClick?: () => any;
19186
19410
  onCopyToClipboard?: () => any;
19187
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "selectedOption" | "brandIconType">;
19411
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "valueToCopy" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "selectedOption" | "brandIconType">;
19188
19412
  $attrs: {
19189
19413
  [x: string]: unknown;
19190
19414
  };
@@ -19229,6 +19453,10 @@ declare const _default: {
19229
19453
  type: import("vue").PropType<boolean>;
19230
19454
  default: boolean;
19231
19455
  };
19456
+ valueToCopy: {
19457
+ type: import("vue").PropType<string>;
19458
+ default: any;
19459
+ };
19232
19460
  options: {
19233
19461
  type: import("vue").PropType<unknown[]>;
19234
19462
  default: any;
@@ -19273,10 +19501,6 @@ declare const _default: {
19273
19501
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19274
19502
  default: any;
19275
19503
  };
19276
- valueToCopy: {
19277
- type: import("vue").PropType<string>;
19278
- default: any;
19279
- };
19280
19504
  selectedOption: {
19281
19505
  type: import("vue").PropType<unknown>;
19282
19506
  default: any;
@@ -19299,6 +19523,7 @@ declare const _default: {
19299
19523
  open: boolean;
19300
19524
  mandatory: boolean;
19301
19525
  loading: boolean;
19526
+ valueToCopy: string;
19302
19527
  options: unknown[];
19303
19528
  singleAppSelection: boolean;
19304
19529
  placeholder: string;
@@ -19309,7 +19534,6 @@ declare const _default: {
19309
19534
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19310
19535
  optionEndIconKey: string;
19311
19536
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19312
- valueToCopy: string;
19313
19537
  selectedOption: any;
19314
19538
  brandIconType: "android" | "ios";
19315
19539
  }, {}, string> & {
@@ -19363,6 +19587,10 @@ declare const _default: {
19363
19587
  type: import("vue").PropType<boolean>;
19364
19588
  default: boolean;
19365
19589
  };
19590
+ valueToCopy: {
19591
+ type: import("vue").PropType<string>;
19592
+ default: any;
19593
+ };
19366
19594
  options: {
19367
19595
  type: import("vue").PropType<unknown[]>;
19368
19596
  default: any;
@@ -19407,10 +19635,6 @@ declare const _default: {
19407
19635
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19408
19636
  default: any;
19409
19637
  };
19410
- valueToCopy: {
19411
- type: import("vue").PropType<string>;
19412
- default: any;
19413
- };
19414
19638
  selectedOption: {
19415
19639
  type: import("vue").PropType<unknown>;
19416
19640
  default: any;
@@ -19457,6 +19681,10 @@ declare const _default: {
19457
19681
  type: import("vue").PropType<boolean>;
19458
19682
  default: boolean;
19459
19683
  };
19684
+ valueToCopy: {
19685
+ type: import("vue").PropType<string>;
19686
+ default: any;
19687
+ };
19460
19688
  options: {
19461
19689
  type: import("vue").PropType<unknown[]>;
19462
19690
  default: any;
@@ -19501,10 +19729,6 @@ declare const _default: {
19501
19729
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19502
19730
  default: any;
19503
19731
  };
19504
- valueToCopy: {
19505
- type: import("vue").PropType<string>;
19506
- default: any;
19507
- };
19508
19732
  selectedOption: {
19509
19733
  type: import("vue").PropType<unknown>;
19510
19734
  default: any;
@@ -19527,6 +19751,7 @@ declare const _default: {
19527
19751
  open: boolean;
19528
19752
  mandatory: boolean;
19529
19753
  loading: boolean;
19754
+ valueToCopy: string;
19530
19755
  options: unknown[];
19531
19756
  singleAppSelection: boolean;
19532
19757
  placeholder: string;
@@ -19537,7 +19762,6 @@ declare const _default: {
19537
19762
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19538
19763
  optionEndIconKey: string;
19539
19764
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19540
- valueToCopy: string;
19541
19765
  selectedOption: any;
19542
19766
  brandIconType: "android" | "ios";
19543
19767
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -19566,11 +19790,13 @@ declare const _default: {
19566
19790
  iconKey: string;
19567
19791
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19568
19792
  endIconKey: string;
19793
+ endTextIconKey: string;
19569
19794
  toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
19570
19795
  treeMainOption: boolean;
19571
19796
  treeMainOptionExpanded: boolean;
19572
19797
  stopOptionClickEventPropagation: boolean;
19573
19798
  treeChildShown: boolean;
19799
+ isMulti: boolean;
19574
19800
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
19575
19801
  option: {
19576
19802
  type: import("vue").PropType<unknown>;
@@ -19632,6 +19858,10 @@ declare const _default: {
19632
19858
  type: import("vue").PropType<string>;
19633
19859
  default: any;
19634
19860
  };
19861
+ endTextIconKey: {
19862
+ type: import("vue").PropType<string>;
19863
+ default: any;
19864
+ };
19635
19865
  toolTipPlacement: {
19636
19866
  type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
19637
19867
  default: string;
@@ -19652,12 +19882,16 @@ declare const _default: {
19652
19882
  type: import("vue").PropType<boolean>;
19653
19883
  default: boolean;
19654
19884
  };
19885
+ isMulti: {
19886
+ type: import("vue").PropType<boolean>;
19887
+ default: boolean;
19888
+ };
19655
19889
  selectedProp: {
19656
19890
  type: import("vue").PropType<boolean>;
19657
19891
  };
19658
19892
  }>> & {
19659
19893
  onToggleTreeCollapse?: (option: unknown) => any;
19660
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
19894
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
19661
19895
  $attrs: {
19662
19896
  [x: string]: unknown;
19663
19897
  };
@@ -19732,6 +19966,10 @@ declare const _default: {
19732
19966
  type: import("vue").PropType<string>;
19733
19967
  default: any;
19734
19968
  };
19969
+ endTextIconKey: {
19970
+ type: import("vue").PropType<string>;
19971
+ default: any;
19972
+ };
19735
19973
  toolTipPlacement: {
19736
19974
  type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
19737
19975
  default: string;
@@ -19752,6 +19990,10 @@ declare const _default: {
19752
19990
  type: import("vue").PropType<boolean>;
19753
19991
  default: boolean;
19754
19992
  };
19993
+ isMulti: {
19994
+ type: import("vue").PropType<boolean>;
19995
+ default: boolean;
19996
+ };
19755
19997
  selectedProp: {
19756
19998
  type: import("vue").PropType<boolean>;
19757
19999
  };
@@ -19775,11 +20017,13 @@ declare const _default: {
19775
20017
  iconKey: string;
19776
20018
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19777
20019
  endIconKey: string;
20020
+ endTextIconKey: string;
19778
20021
  toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
19779
20022
  treeMainOption: boolean;
19780
20023
  treeMainOptionExpanded: boolean;
19781
20024
  stopOptionClickEventPropagation: boolean;
19782
20025
  treeChildShown: boolean;
20026
+ isMulti: boolean;
19783
20027
  }, {}, string> & {
19784
20028
  beforeCreate?: (() => void) | (() => void)[];
19785
20029
  created?: (() => void) | (() => void)[];
@@ -19861,6 +20105,10 @@ declare const _default: {
19861
20105
  type: import("vue").PropType<string>;
19862
20106
  default: any;
19863
20107
  };
20108
+ endTextIconKey: {
20109
+ type: import("vue").PropType<string>;
20110
+ default: any;
20111
+ };
19864
20112
  toolTipPlacement: {
19865
20113
  type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
19866
20114
  default: string;
@@ -19881,6 +20129,10 @@ declare const _default: {
19881
20129
  type: import("vue").PropType<boolean>;
19882
20130
  default: boolean;
19883
20131
  };
20132
+ isMulti: {
20133
+ type: import("vue").PropType<boolean>;
20134
+ default: boolean;
20135
+ };
19884
20136
  selectedProp: {
19885
20137
  type: import("vue").PropType<boolean>;
19886
20138
  };
@@ -19951,6 +20203,10 @@ declare const _default: {
19951
20203
  type: import("vue").PropType<string>;
19952
20204
  default: any;
19953
20205
  };
20206
+ endTextIconKey: {
20207
+ type: import("vue").PropType<string>;
20208
+ default: any;
20209
+ };
19954
20210
  toolTipPlacement: {
19955
20211
  type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
19956
20212
  default: string;
@@ -19971,6 +20227,10 @@ declare const _default: {
19971
20227
  type: import("vue").PropType<boolean>;
19972
20228
  default: boolean;
19973
20229
  };
20230
+ isMulti: {
20231
+ type: import("vue").PropType<boolean>;
20232
+ default: boolean;
20233
+ };
19974
20234
  selectedProp: {
19975
20235
  type: import("vue").PropType<boolean>;
19976
20236
  };
@@ -19994,11 +20254,13 @@ declare const _default: {
19994
20254
  iconKey: string;
19995
20255
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19996
20256
  endIconKey: string;
20257
+ endTextIconKey: string;
19997
20258
  toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
19998
20259
  treeMainOption: boolean;
19999
20260
  treeMainOptionExpanded: boolean;
20000
20261
  stopOptionClickEventPropagation: boolean;
20001
20262
  treeChildShown: boolean;
20263
+ isMulti: boolean;
20002
20264
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
20003
20265
  $slots: {
20004
20266
  image?(_: {}): any;
@@ -20145,7 +20407,7 @@ declare const _default: {
20145
20407
  skidding: number;
20146
20408
  modelValue: any;
20147
20409
  selected: any;
20148
- onClear: () => void;
20410
+ valueToCopy: string;
20149
20411
  placeholder: string;
20150
20412
  multi: boolean;
20151
20413
  showSelectAll: boolean;
@@ -20166,14 +20428,15 @@ declare const _default: {
20166
20428
  onSearch: (option: any, term: string) => boolean;
20167
20429
  noResultsText: string;
20168
20430
  searchAutoFocus: boolean;
20431
+ onClearSearch: () => void;
20169
20432
  optionNameKey: string;
20170
20433
  optionIconKey: string;
20171
20434
  optionImageKey: string;
20172
20435
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20173
20436
  optionEndIconKey: string;
20174
20437
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20438
+ optionsEndTextIconKey: string;
20175
20439
  optionFlagKey: string;
20176
- valueToCopy: string;
20177
20440
  disabledOptionKey: string;
20178
20441
  optionTwoLinesVariant: "horizontal" | "vertical";
20179
20442
  optionTwoLinesKey: string;
@@ -20185,6 +20448,7 @@ declare const _default: {
20185
20448
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
20186
20449
  disableVirtualScroll: boolean;
20187
20450
  overrideOptionCountCalculation: (option: unknown) => number;
20451
+ withConditions: boolean;
20188
20452
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
20189
20453
  theme: {
20190
20454
  type: import("vue").PropType<string>;
@@ -20229,13 +20493,13 @@ declare const _default: {
20229
20493
  loading: {
20230
20494
  type: import("vue").PropType<boolean>;
20231
20495
  };
20496
+ isOpen: {
20497
+ type: import("vue").PropType<boolean>;
20498
+ };
20232
20499
  skidding: {
20233
20500
  type: import("vue").PropType<number>;
20234
20501
  default: number;
20235
20502
  };
20236
- isOpen: {
20237
- type: import("vue").PropType<boolean>;
20238
- };
20239
20503
  modelValue: {
20240
20504
  type: import("vue").PropType<unknown>;
20241
20505
  default: any;
@@ -20244,14 +20508,14 @@ declare const _default: {
20244
20508
  type: import("vue").PropType<unknown>;
20245
20509
  default: any;
20246
20510
  };
20511
+ valueToCopy: {
20512
+ type: import("vue").PropType<string>;
20513
+ default: any;
20514
+ };
20247
20515
  options: {
20248
20516
  type: import("vue").PropType<unknown[]>;
20249
20517
  required: true;
20250
20518
  };
20251
- onClear: {
20252
- type: import("vue").PropType<() => void>;
20253
- default: () => true;
20254
- };
20255
20519
  placeholder: {
20256
20520
  type: import("vue").PropType<string>;
20257
20521
  default: string;
@@ -20332,6 +20596,10 @@ declare const _default: {
20332
20596
  type: import("vue").PropType<boolean>;
20333
20597
  default: boolean;
20334
20598
  };
20599
+ onClearSearch: {
20600
+ type: import("vue").PropType<() => void>;
20601
+ default: () => true;
20602
+ };
20335
20603
  displayValue: {
20336
20604
  type: import("vue").PropType<(option: unknown) => string>;
20337
20605
  required: true;
@@ -20360,11 +20628,11 @@ declare const _default: {
20360
20628
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
20361
20629
  default: any;
20362
20630
  };
20363
- optionFlagKey: {
20631
+ optionsEndTextIconKey: {
20364
20632
  type: import("vue").PropType<string>;
20365
20633
  default: any;
20366
20634
  };
20367
- valueToCopy: {
20635
+ optionFlagKey: {
20368
20636
  type: import("vue").PropType<string>;
20369
20637
  default: any;
20370
20638
  };
@@ -20412,6 +20680,10 @@ declare const _default: {
20412
20680
  type: import("vue").PropType<(option: unknown) => number>;
20413
20681
  default: any;
20414
20682
  };
20683
+ withConditions: {
20684
+ type: import("vue").PropType<boolean>;
20685
+ default: boolean;
20686
+ };
20415
20687
  }>> & {
20416
20688
  onCopyToClipboard?: () => any;
20417
20689
  onClear?: () => any;
@@ -20422,7 +20694,7 @@ declare const _default: {
20422
20694
  onOnsearch?: (value: string) => any;
20423
20695
  onOpened?: () => any;
20424
20696
  onClosed?: () => any;
20425
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
20697
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
20426
20698
  $attrs: {
20427
20699
  [x: string]: unknown;
20428
20700
  };
@@ -20480,13 +20752,13 @@ declare const _default: {
20480
20752
  loading: {
20481
20753
  type: import("vue").PropType<boolean>;
20482
20754
  };
20755
+ isOpen: {
20756
+ type: import("vue").PropType<boolean>;
20757
+ };
20483
20758
  skidding: {
20484
20759
  type: import("vue").PropType<number>;
20485
20760
  default: number;
20486
20761
  };
20487
- isOpen: {
20488
- type: import("vue").PropType<boolean>;
20489
- };
20490
20762
  modelValue: {
20491
20763
  type: import("vue").PropType<unknown>;
20492
20764
  default: any;
@@ -20495,14 +20767,14 @@ declare const _default: {
20495
20767
  type: import("vue").PropType<unknown>;
20496
20768
  default: any;
20497
20769
  };
20770
+ valueToCopy: {
20771
+ type: import("vue").PropType<string>;
20772
+ default: any;
20773
+ };
20498
20774
  options: {
20499
20775
  type: import("vue").PropType<unknown[]>;
20500
20776
  required: true;
20501
20777
  };
20502
- onClear: {
20503
- type: import("vue").PropType<() => void>;
20504
- default: () => true;
20505
- };
20506
20778
  placeholder: {
20507
20779
  type: import("vue").PropType<string>;
20508
20780
  default: string;
@@ -20583,6 +20855,10 @@ declare const _default: {
20583
20855
  type: import("vue").PropType<boolean>;
20584
20856
  default: boolean;
20585
20857
  };
20858
+ onClearSearch: {
20859
+ type: import("vue").PropType<() => void>;
20860
+ default: () => true;
20861
+ };
20586
20862
  displayValue: {
20587
20863
  type: import("vue").PropType<(option: unknown) => string>;
20588
20864
  required: true;
@@ -20611,11 +20887,11 @@ declare const _default: {
20611
20887
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
20612
20888
  default: any;
20613
20889
  };
20614
- optionFlagKey: {
20890
+ optionsEndTextIconKey: {
20615
20891
  type: import("vue").PropType<string>;
20616
20892
  default: any;
20617
20893
  };
20618
- valueToCopy: {
20894
+ optionFlagKey: {
20619
20895
  type: import("vue").PropType<string>;
20620
20896
  default: any;
20621
20897
  };
@@ -20663,6 +20939,10 @@ declare const _default: {
20663
20939
  type: import("vue").PropType<(option: unknown) => number>;
20664
20940
  default: any;
20665
20941
  };
20942
+ withConditions: {
20943
+ type: import("vue").PropType<boolean>;
20944
+ default: boolean;
20945
+ };
20666
20946
  }>> & {
20667
20947
  onCopyToClipboard?: () => any;
20668
20948
  onClear?: () => any;
@@ -20700,7 +20980,7 @@ declare const _default: {
20700
20980
  skidding: number;
20701
20981
  modelValue: any;
20702
20982
  selected: any;
20703
- onClear: () => void;
20983
+ valueToCopy: string;
20704
20984
  placeholder: string;
20705
20985
  multi: boolean;
20706
20986
  showSelectAll: boolean;
@@ -20721,14 +21001,15 @@ declare const _default: {
20721
21001
  onSearch: (option: any, term: string) => boolean;
20722
21002
  noResultsText: string;
20723
21003
  searchAutoFocus: boolean;
21004
+ onClearSearch: () => void;
20724
21005
  optionNameKey: string;
20725
21006
  optionIconKey: string;
20726
21007
  optionImageKey: string;
20727
21008
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20728
21009
  optionEndIconKey: string;
20729
21010
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21011
+ optionsEndTextIconKey: string;
20730
21012
  optionFlagKey: string;
20731
- valueToCopy: string;
20732
21013
  disabledOptionKey: string;
20733
21014
  optionTwoLinesVariant: "horizontal" | "vertical";
20734
21015
  optionTwoLinesKey: string;
@@ -20740,6 +21021,7 @@ declare const _default: {
20740
21021
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
20741
21022
  disableVirtualScroll: boolean;
20742
21023
  overrideOptionCountCalculation: (option: unknown) => number;
21024
+ withConditions: boolean;
20743
21025
  }, {}, string> & {
20744
21026
  beforeCreate?: (() => void) | (() => void)[];
20745
21027
  created?: (() => void) | (() => void)[];
@@ -20804,13 +21086,13 @@ declare const _default: {
20804
21086
  loading: {
20805
21087
  type: import("vue").PropType<boolean>;
20806
21088
  };
21089
+ isOpen: {
21090
+ type: import("vue").PropType<boolean>;
21091
+ };
20807
21092
  skidding: {
20808
21093
  type: import("vue").PropType<number>;
20809
21094
  default: number;
20810
21095
  };
20811
- isOpen: {
20812
- type: import("vue").PropType<boolean>;
20813
- };
20814
21096
  modelValue: {
20815
21097
  type: import("vue").PropType<unknown>;
20816
21098
  default: any;
@@ -20819,14 +21101,14 @@ declare const _default: {
20819
21101
  type: import("vue").PropType<unknown>;
20820
21102
  default: any;
20821
21103
  };
21104
+ valueToCopy: {
21105
+ type: import("vue").PropType<string>;
21106
+ default: any;
21107
+ };
20822
21108
  options: {
20823
21109
  type: import("vue").PropType<unknown[]>;
20824
21110
  required: true;
20825
21111
  };
20826
- onClear: {
20827
- type: import("vue").PropType<() => void>;
20828
- default: () => true;
20829
- };
20830
21112
  placeholder: {
20831
21113
  type: import("vue").PropType<string>;
20832
21114
  default: string;
@@ -20907,6 +21189,10 @@ declare const _default: {
20907
21189
  type: import("vue").PropType<boolean>;
20908
21190
  default: boolean;
20909
21191
  };
21192
+ onClearSearch: {
21193
+ type: import("vue").PropType<() => void>;
21194
+ default: () => true;
21195
+ };
20910
21196
  displayValue: {
20911
21197
  type: import("vue").PropType<(option: unknown) => string>;
20912
21198
  required: true;
@@ -20935,11 +21221,11 @@ declare const _default: {
20935
21221
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
20936
21222
  default: any;
20937
21223
  };
20938
- optionFlagKey: {
21224
+ optionsEndTextIconKey: {
20939
21225
  type: import("vue").PropType<string>;
20940
21226
  default: any;
20941
21227
  };
20942
- valueToCopy: {
21228
+ optionFlagKey: {
20943
21229
  type: import("vue").PropType<string>;
20944
21230
  default: any;
20945
21231
  };
@@ -20987,6 +21273,10 @@ declare const _default: {
20987
21273
  type: import("vue").PropType<(option: unknown) => number>;
20988
21274
  default: any;
20989
21275
  };
21276
+ withConditions: {
21277
+ type: import("vue").PropType<boolean>;
21278
+ default: boolean;
21279
+ };
20990
21280
  }>> & {
20991
21281
  onCopyToClipboard?: () => any;
20992
21282
  onClear?: () => any;
@@ -21048,13 +21338,13 @@ declare const _default: {
21048
21338
  loading: {
21049
21339
  type: import("vue").PropType<boolean>;
21050
21340
  };
21341
+ isOpen: {
21342
+ type: import("vue").PropType<boolean>;
21343
+ };
21051
21344
  skidding: {
21052
21345
  type: import("vue").PropType<number>;
21053
21346
  default: number;
21054
21347
  };
21055
- isOpen: {
21056
- type: import("vue").PropType<boolean>;
21057
- };
21058
21348
  modelValue: {
21059
21349
  type: import("vue").PropType<unknown>;
21060
21350
  default: any;
@@ -21063,14 +21353,14 @@ declare const _default: {
21063
21353
  type: import("vue").PropType<unknown>;
21064
21354
  default: any;
21065
21355
  };
21356
+ valueToCopy: {
21357
+ type: import("vue").PropType<string>;
21358
+ default: any;
21359
+ };
21066
21360
  options: {
21067
21361
  type: import("vue").PropType<unknown[]>;
21068
21362
  required: true;
21069
21363
  };
21070
- onClear: {
21071
- type: import("vue").PropType<() => void>;
21072
- default: () => true;
21073
- };
21074
21364
  placeholder: {
21075
21365
  type: import("vue").PropType<string>;
21076
21366
  default: string;
@@ -21151,6 +21441,10 @@ declare const _default: {
21151
21441
  type: import("vue").PropType<boolean>;
21152
21442
  default: boolean;
21153
21443
  };
21444
+ onClearSearch: {
21445
+ type: import("vue").PropType<() => void>;
21446
+ default: () => true;
21447
+ };
21154
21448
  displayValue: {
21155
21449
  type: import("vue").PropType<(option: unknown) => string>;
21156
21450
  required: true;
@@ -21179,11 +21473,11 @@ declare const _default: {
21179
21473
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21180
21474
  default: any;
21181
21475
  };
21182
- optionFlagKey: {
21476
+ optionsEndTextIconKey: {
21183
21477
  type: import("vue").PropType<string>;
21184
21478
  default: any;
21185
21479
  };
21186
- valueToCopy: {
21480
+ optionFlagKey: {
21187
21481
  type: import("vue").PropType<string>;
21188
21482
  default: any;
21189
21483
  };
@@ -21231,6 +21525,10 @@ declare const _default: {
21231
21525
  type: import("vue").PropType<(option: unknown) => number>;
21232
21526
  default: any;
21233
21527
  };
21528
+ withConditions: {
21529
+ type: import("vue").PropType<boolean>;
21530
+ default: boolean;
21531
+ };
21234
21532
  }>> & {
21235
21533
  onCopyToClipboard?: () => any;
21236
21534
  onClear?: () => any;
@@ -21268,7 +21566,7 @@ declare const _default: {
21268
21566
  skidding: number;
21269
21567
  modelValue: any;
21270
21568
  selected: any;
21271
- onClear: () => void;
21569
+ valueToCopy: string;
21272
21570
  placeholder: string;
21273
21571
  multi: boolean;
21274
21572
  showSelectAll: boolean;
@@ -21289,14 +21587,15 @@ declare const _default: {
21289
21587
  onSearch: (option: any, term: string) => boolean;
21290
21588
  noResultsText: string;
21291
21589
  searchAutoFocus: boolean;
21590
+ onClearSearch: () => void;
21292
21591
  optionNameKey: string;
21293
21592
  optionIconKey: string;
21294
21593
  optionImageKey: string;
21295
21594
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21296
21595
  optionEndIconKey: string;
21297
21596
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21597
+ optionsEndTextIconKey: string;
21298
21598
  optionFlagKey: string;
21299
- valueToCopy: string;
21300
21599
  disabledOptionKey: string;
21301
21600
  optionTwoLinesVariant: "horizontal" | "vertical";
21302
21601
  optionTwoLinesKey: string;
@@ -21308,6 +21607,7 @@ declare const _default: {
21308
21607
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
21309
21608
  disableVirtualScroll: boolean;
21310
21609
  overrideOptionCountCalculation: (option: unknown) => number;
21610
+ withConditions: boolean;
21311
21611
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
21312
21612
  $slots: {
21313
21613
  label?(_: {}): any;
@@ -21336,6 +21636,7 @@ declare const _default: {
21336
21636
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21337
21637
  optionAndIconKey: string;
21338
21638
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21639
+ optionsEndTextIconKey: string;
21339
21640
  optionFlagKey: string;
21340
21641
  feedbackVariant: "success" | "warning" | "error";
21341
21642
  valueToCopy: string;
@@ -21347,10 +21648,13 @@ declare const _default: {
21347
21648
  onClick: () => void;
21348
21649
  };
21349
21650
  }): any;
21651
+ "dropdown-conditions"?(_: {}): any;
21350
21652
  "inline-search"?(_: {}): any;
21351
21653
  "input-list"?(_: {
21352
21654
  open: true;
21353
21655
  }): any;
21656
+ "custom-list-area"?(_: {}): any;
21657
+ "select-all"?(_: {}): any;
21354
21658
  "group-option"?(_: {}): any;
21355
21659
  default?(_: {
21356
21660
  option: unknown;
@@ -21447,6 +21751,7 @@ declare const _default: {
21447
21751
  disabled: boolean;
21448
21752
  size: "small" | "medium" | "large";
21449
21753
  selected: unknown[];
21754
+ valueToCopy: string;
21450
21755
  placeholder: string;
21451
21756
  inlineSearchPlaceholder: string;
21452
21757
  optionNameKey: string;
@@ -21455,8 +21760,8 @@ declare const _default: {
21455
21760
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21456
21761
  optionEndIconKey: string;
21457
21762
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21458
- valueToCopy: string;
21459
21763
  disabledOptionKey: string;
21764
+ optionEndTextIconKey: string;
21460
21765
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
21461
21766
  testId: {
21462
21767
  type: import("vue").PropType<string>;
@@ -21477,6 +21782,10 @@ declare const _default: {
21477
21782
  type: import("vue").PropType<unknown[]>;
21478
21783
  default: any;
21479
21784
  };
21785
+ valueToCopy: {
21786
+ type: import("vue").PropType<string>;
21787
+ default: any;
21788
+ };
21480
21789
  options: {
21481
21790
  type: import("vue").PropType<unknown[]>;
21482
21791
  required: true;
@@ -21517,14 +21826,14 @@ declare const _default: {
21517
21826
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21518
21827
  default: any;
21519
21828
  };
21520
- valueToCopy: {
21521
- type: import("vue").PropType<string>;
21522
- default: any;
21523
- };
21524
21829
  disabledOptionKey: {
21525
21830
  type: import("vue").PropType<string>;
21526
21831
  default: string;
21527
21832
  };
21833
+ optionEndTextIconKey: {
21834
+ type: import("vue").PropType<string>;
21835
+ default: any;
21836
+ };
21528
21837
  optionChildrenKey: {
21529
21838
  type: import("vue").PropType<string>;
21530
21839
  required: true;
@@ -21540,7 +21849,7 @@ declare const _default: {
21540
21849
  }>> & {
21541
21850
  "onUpdate:selected"?: (value: unknown) => any;
21542
21851
  "onUpdate:isOpen"?: (value: unknown) => any;
21543
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey">;
21852
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "valueToCopy" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
21544
21853
  $attrs: {
21545
21854
  [x: string]: unknown;
21546
21855
  };
@@ -21574,6 +21883,10 @@ declare const _default: {
21574
21883
  type: import("vue").PropType<unknown[]>;
21575
21884
  default: any;
21576
21885
  };
21886
+ valueToCopy: {
21887
+ type: import("vue").PropType<string>;
21888
+ default: any;
21889
+ };
21577
21890
  options: {
21578
21891
  type: import("vue").PropType<unknown[]>;
21579
21892
  required: true;
@@ -21614,14 +21927,14 @@ declare const _default: {
21614
21927
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21615
21928
  default: any;
21616
21929
  };
21617
- valueToCopy: {
21618
- type: import("vue").PropType<string>;
21619
- default: any;
21620
- };
21621
21930
  disabledOptionKey: {
21622
21931
  type: import("vue").PropType<string>;
21623
21932
  default: string;
21624
21933
  };
21934
+ optionEndTextIconKey: {
21935
+ type: import("vue").PropType<string>;
21936
+ default: any;
21937
+ };
21625
21938
  optionChildrenKey: {
21626
21939
  type: import("vue").PropType<string>;
21627
21940
  required: true;
@@ -21645,6 +21958,7 @@ declare const _default: {
21645
21958
  disabled: boolean;
21646
21959
  size: "small" | "medium" | "large";
21647
21960
  selected: unknown[];
21961
+ valueToCopy: string;
21648
21962
  placeholder: string;
21649
21963
  inlineSearchPlaceholder: string;
21650
21964
  optionNameKey: string;
@@ -21653,8 +21967,8 @@ declare const _default: {
21653
21967
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21654
21968
  optionEndIconKey: string;
21655
21969
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21656
- valueToCopy: string;
21657
21970
  disabledOptionKey: string;
21971
+ optionEndTextIconKey: string;
21658
21972
  }, {}, string> & {
21659
21973
  beforeCreate?: (() => void) | (() => void)[];
21660
21974
  created?: (() => void) | (() => void)[];
@@ -21695,6 +22009,10 @@ declare const _default: {
21695
22009
  type: import("vue").PropType<unknown[]>;
21696
22010
  default: any;
21697
22011
  };
22012
+ valueToCopy: {
22013
+ type: import("vue").PropType<string>;
22014
+ default: any;
22015
+ };
21698
22016
  options: {
21699
22017
  type: import("vue").PropType<unknown[]>;
21700
22018
  required: true;
@@ -21735,14 +22053,14 @@ declare const _default: {
21735
22053
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21736
22054
  default: any;
21737
22055
  };
21738
- valueToCopy: {
21739
- type: import("vue").PropType<string>;
21740
- default: any;
21741
- };
21742
22056
  disabledOptionKey: {
21743
22057
  type: import("vue").PropType<string>;
21744
22058
  default: string;
21745
22059
  };
22060
+ optionEndTextIconKey: {
22061
+ type: import("vue").PropType<string>;
22062
+ default: any;
22063
+ };
21746
22064
  optionChildrenKey: {
21747
22065
  type: import("vue").PropType<string>;
21748
22066
  required: true;
@@ -21782,6 +22100,10 @@ declare const _default: {
21782
22100
  type: import("vue").PropType<unknown[]>;
21783
22101
  default: any;
21784
22102
  };
22103
+ valueToCopy: {
22104
+ type: import("vue").PropType<string>;
22105
+ default: any;
22106
+ };
21785
22107
  options: {
21786
22108
  type: import("vue").PropType<unknown[]>;
21787
22109
  required: true;
@@ -21822,14 +22144,14 @@ declare const _default: {
21822
22144
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21823
22145
  default: any;
21824
22146
  };
21825
- valueToCopy: {
21826
- type: import("vue").PropType<string>;
21827
- default: any;
21828
- };
21829
22147
  disabledOptionKey: {
21830
22148
  type: import("vue").PropType<string>;
21831
22149
  default: string;
21832
22150
  };
22151
+ optionEndTextIconKey: {
22152
+ type: import("vue").PropType<string>;
22153
+ default: any;
22154
+ };
21833
22155
  optionChildrenKey: {
21834
22156
  type: import("vue").PropType<string>;
21835
22157
  required: true;
@@ -21853,6 +22175,7 @@ declare const _default: {
21853
22175
  disabled: boolean;
21854
22176
  size: "small" | "medium" | "large";
21855
22177
  selected: unknown[];
22178
+ valueToCopy: string;
21856
22179
  placeholder: string;
21857
22180
  inlineSearchPlaceholder: string;
21858
22181
  optionNameKey: string;
@@ -21861,13 +22184,140 @@ declare const _default: {
21861
22184
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21862
22185
  optionEndIconKey: string;
21863
22186
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21864
- valueToCopy: string;
21865
22187
  disabledOptionKey: string;
22188
+ optionEndTextIconKey: string;
21866
22189
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
21867
22190
  $slots: {
21868
22191
  "trigger-end-icon"?(_: {}): any;
21869
22192
  };
21870
- })))[];
22193
+ })) | import("vue").DefineComponent<{
22194
+ label: {
22195
+ type: import("vue").PropType<string>;
22196
+ required: true;
22197
+ default: string;
22198
+ };
22199
+ testId: {
22200
+ type: import("vue").PropType<string>;
22201
+ default: string;
22202
+ };
22203
+ isOpen: {
22204
+ type: import("vue").PropType<boolean>;
22205
+ default: boolean;
22206
+ };
22207
+ optionNameKey: {
22208
+ type: import("vue").PropType<string>;
22209
+ required: true;
22210
+ default: string;
22211
+ };
22212
+ comparingKey: {
22213
+ type: import("vue").PropType<string>;
22214
+ required: true;
22215
+ default: string;
22216
+ };
22217
+ conditionalOptions: {
22218
+ type: import("vue").PropType<{
22219
+ label: string;
22220
+ value: string;
22221
+ multi: boolean;
22222
+ }[]>;
22223
+ required: true;
22224
+ };
22225
+ selectedCondition: {
22226
+ type: import("vue").PropType<{
22227
+ label: string;
22228
+ value: string;
22229
+ multi: boolean;
22230
+ }>;
22231
+ required: true;
22232
+ };
22233
+ appliedSelections: {
22234
+ type: import("vue").PropType<unknown>;
22235
+ required: true;
22236
+ };
22237
+ fetchFnCallback: {
22238
+ type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
22239
+ required: true;
22240
+ };
22241
+ minCharsToStart: {
22242
+ type: import("vue").PropType<number>;
22243
+ default: number;
22244
+ };
22245
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22246
+ "update:selectedCondition": (value: {
22247
+ label: string;
22248
+ value: string;
22249
+ multi: boolean;
22250
+ }) => void;
22251
+ "update:appliedSelections": (value: unknown) => void;
22252
+ clear: () => void;
22253
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
22254
+ label: {
22255
+ type: import("vue").PropType<string>;
22256
+ required: true;
22257
+ default: string;
22258
+ };
22259
+ testId: {
22260
+ type: import("vue").PropType<string>;
22261
+ default: string;
22262
+ };
22263
+ isOpen: {
22264
+ type: import("vue").PropType<boolean>;
22265
+ default: boolean;
22266
+ };
22267
+ optionNameKey: {
22268
+ type: import("vue").PropType<string>;
22269
+ required: true;
22270
+ default: string;
22271
+ };
22272
+ comparingKey: {
22273
+ type: import("vue").PropType<string>;
22274
+ required: true;
22275
+ default: string;
22276
+ };
22277
+ conditionalOptions: {
22278
+ type: import("vue").PropType<{
22279
+ label: string;
22280
+ value: string;
22281
+ multi: boolean;
22282
+ }[]>;
22283
+ required: true;
22284
+ };
22285
+ selectedCondition: {
22286
+ type: import("vue").PropType<{
22287
+ label: string;
22288
+ value: string;
22289
+ multi: boolean;
22290
+ }>;
22291
+ required: true;
22292
+ };
22293
+ appliedSelections: {
22294
+ type: import("vue").PropType<unknown>;
22295
+ required: true;
22296
+ };
22297
+ fetchFnCallback: {
22298
+ type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
22299
+ required: true;
22300
+ };
22301
+ minCharsToStart: {
22302
+ type: import("vue").PropType<number>;
22303
+ default: number;
22304
+ };
22305
+ }>> & {
22306
+ onClear?: () => any;
22307
+ "onUpdate:selectedCondition"?: (value: {
22308
+ label: string;
22309
+ value: string;
22310
+ multi: boolean;
22311
+ }) => any;
22312
+ "onUpdate:appliedSelections"?: (value: unknown) => any;
22313
+ }, {
22314
+ label: string;
22315
+ testId: string;
22316
+ isOpen: boolean;
22317
+ optionNameKey: string;
22318
+ comparingKey: string;
22319
+ minCharsToStart: number;
22320
+ }>)[];
21871
22321
  Option: {
21872
22322
  new (...args: any[]): {
21873
22323
  $: import("vue").ComponentInternalInstance;
@@ -21888,11 +22338,13 @@ declare const _default: {
21888
22338
  iconKey: string;
21889
22339
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21890
22340
  endIconKey: string;
22341
+ endTextIconKey: string;
21891
22342
  toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
21892
22343
  treeMainOption: boolean;
21893
22344
  treeMainOptionExpanded: boolean;
21894
22345
  stopOptionClickEventPropagation: boolean;
21895
22346
  treeChildShown: boolean;
22347
+ isMulti: boolean;
21896
22348
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
21897
22349
  option: {
21898
22350
  type: import("vue").PropType<unknown>;
@@ -21954,6 +22406,10 @@ declare const _default: {
21954
22406
  type: import("vue").PropType<string>;
21955
22407
  default: any;
21956
22408
  };
22409
+ endTextIconKey: {
22410
+ type: import("vue").PropType<string>;
22411
+ default: any;
22412
+ };
21957
22413
  toolTipPlacement: {
21958
22414
  type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
21959
22415
  default: string;
@@ -21974,12 +22430,16 @@ declare const _default: {
21974
22430
  type: import("vue").PropType<boolean>;
21975
22431
  default: boolean;
21976
22432
  };
22433
+ isMulti: {
22434
+ type: import("vue").PropType<boolean>;
22435
+ default: boolean;
22436
+ };
21977
22437
  selectedProp: {
21978
22438
  type: import("vue").PropType<boolean>;
21979
22439
  };
21980
22440
  }>> & {
21981
22441
  onToggleTreeCollapse?: (option: unknown) => any;
21982
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
22442
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
21983
22443
  $attrs: {
21984
22444
  [x: string]: unknown;
21985
22445
  };
@@ -22054,6 +22514,10 @@ declare const _default: {
22054
22514
  type: import("vue").PropType<string>;
22055
22515
  default: any;
22056
22516
  };
22517
+ endTextIconKey: {
22518
+ type: import("vue").PropType<string>;
22519
+ default: any;
22520
+ };
22057
22521
  toolTipPlacement: {
22058
22522
  type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
22059
22523
  default: string;
@@ -22074,6 +22538,10 @@ declare const _default: {
22074
22538
  type: import("vue").PropType<boolean>;
22075
22539
  default: boolean;
22076
22540
  };
22541
+ isMulti: {
22542
+ type: import("vue").PropType<boolean>;
22543
+ default: boolean;
22544
+ };
22077
22545
  selectedProp: {
22078
22546
  type: import("vue").PropType<boolean>;
22079
22547
  };
@@ -22097,11 +22565,13 @@ declare const _default: {
22097
22565
  iconKey: string;
22098
22566
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22099
22567
  endIconKey: string;
22568
+ endTextIconKey: string;
22100
22569
  toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
22101
22570
  treeMainOption: boolean;
22102
22571
  treeMainOptionExpanded: boolean;
22103
22572
  stopOptionClickEventPropagation: boolean;
22104
22573
  treeChildShown: boolean;
22574
+ isMulti: boolean;
22105
22575
  }, {}, string> & {
22106
22576
  beforeCreate?: (() => void) | (() => void)[];
22107
22577
  created?: (() => void) | (() => void)[];
@@ -22183,6 +22653,10 @@ declare const _default: {
22183
22653
  type: import("vue").PropType<string>;
22184
22654
  default: any;
22185
22655
  };
22656
+ endTextIconKey: {
22657
+ type: import("vue").PropType<string>;
22658
+ default: any;
22659
+ };
22186
22660
  toolTipPlacement: {
22187
22661
  type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
22188
22662
  default: string;
@@ -22203,6 +22677,10 @@ declare const _default: {
22203
22677
  type: import("vue").PropType<boolean>;
22204
22678
  default: boolean;
22205
22679
  };
22680
+ isMulti: {
22681
+ type: import("vue").PropType<boolean>;
22682
+ default: boolean;
22683
+ };
22206
22684
  selectedProp: {
22207
22685
  type: import("vue").PropType<boolean>;
22208
22686
  };
@@ -22273,6 +22751,10 @@ declare const _default: {
22273
22751
  type: import("vue").PropType<string>;
22274
22752
  default: any;
22275
22753
  };
22754
+ endTextIconKey: {
22755
+ type: import("vue").PropType<string>;
22756
+ default: any;
22757
+ };
22276
22758
  toolTipPlacement: {
22277
22759
  type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
22278
22760
  default: string;
@@ -22293,6 +22775,10 @@ declare const _default: {
22293
22775
  type: import("vue").PropType<boolean>;
22294
22776
  default: boolean;
22295
22777
  };
22778
+ isMulti: {
22779
+ type: import("vue").PropType<boolean>;
22780
+ default: boolean;
22781
+ };
22296
22782
  selectedProp: {
22297
22783
  type: import("vue").PropType<boolean>;
22298
22784
  };
@@ -22316,11 +22802,13 @@ declare const _default: {
22316
22802
  iconKey: string;
22317
22803
  iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22318
22804
  endIconKey: string;
22805
+ endTextIconKey: string;
22319
22806
  toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
22320
22807
  treeMainOption: boolean;
22321
22808
  treeMainOptionExpanded: boolean;
22322
22809
  stopOptionClickEventPropagation: boolean;
22323
22810
  treeChildShown: boolean;
22811
+ isMulti: boolean;
22324
22812
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22325
22813
  $slots: {
22326
22814
  image?(_: {}): any;
@@ -22339,6 +22827,7 @@ declare const _default: {
22339
22827
  disabled: boolean;
22340
22828
  size: "small" | "medium" | "large";
22341
22829
  selected: unknown[];
22830
+ valueToCopy: string;
22342
22831
  placeholder: string;
22343
22832
  inlineSearchPlaceholder: string;
22344
22833
  optionNameKey: string;
@@ -22347,8 +22836,8 @@ declare const _default: {
22347
22836
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22348
22837
  optionEndIconKey: string;
22349
22838
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22350
- valueToCopy: string;
22351
22839
  disabledOptionKey: string;
22840
+ optionEndTextIconKey: string;
22352
22841
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
22353
22842
  testId: {
22354
22843
  type: import("vue").PropType<string>;
@@ -22369,6 +22858,10 @@ declare const _default: {
22369
22858
  type: import("vue").PropType<unknown[]>;
22370
22859
  default: any;
22371
22860
  };
22861
+ valueToCopy: {
22862
+ type: import("vue").PropType<string>;
22863
+ default: any;
22864
+ };
22372
22865
  options: {
22373
22866
  type: import("vue").PropType<unknown[]>;
22374
22867
  required: true;
@@ -22409,14 +22902,14 @@ declare const _default: {
22409
22902
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
22410
22903
  default: any;
22411
22904
  };
22412
- valueToCopy: {
22413
- type: import("vue").PropType<string>;
22414
- default: any;
22415
- };
22416
22905
  disabledOptionKey: {
22417
22906
  type: import("vue").PropType<string>;
22418
22907
  default: string;
22419
22908
  };
22909
+ optionEndTextIconKey: {
22910
+ type: import("vue").PropType<string>;
22911
+ default: any;
22912
+ };
22420
22913
  optionChildrenKey: {
22421
22914
  type: import("vue").PropType<string>;
22422
22915
  required: true;
@@ -22432,7 +22925,7 @@ declare const _default: {
22432
22925
  }>> & {
22433
22926
  "onUpdate:selected"?: (value: unknown) => any;
22434
22927
  "onUpdate:isOpen"?: (value: unknown) => any;
22435
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey">;
22928
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "valueToCopy" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
22436
22929
  $attrs: {
22437
22930
  [x: string]: unknown;
22438
22931
  };
@@ -22466,6 +22959,10 @@ declare const _default: {
22466
22959
  type: import("vue").PropType<unknown[]>;
22467
22960
  default: any;
22468
22961
  };
22962
+ valueToCopy: {
22963
+ type: import("vue").PropType<string>;
22964
+ default: any;
22965
+ };
22469
22966
  options: {
22470
22967
  type: import("vue").PropType<unknown[]>;
22471
22968
  required: true;
@@ -22506,14 +23003,14 @@ declare const _default: {
22506
23003
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
22507
23004
  default: any;
22508
23005
  };
22509
- valueToCopy: {
22510
- type: import("vue").PropType<string>;
22511
- default: any;
22512
- };
22513
23006
  disabledOptionKey: {
22514
23007
  type: import("vue").PropType<string>;
22515
23008
  default: string;
22516
23009
  };
23010
+ optionEndTextIconKey: {
23011
+ type: import("vue").PropType<string>;
23012
+ default: any;
23013
+ };
22517
23014
  optionChildrenKey: {
22518
23015
  type: import("vue").PropType<string>;
22519
23016
  required: true;
@@ -22537,6 +23034,7 @@ declare const _default: {
22537
23034
  disabled: boolean;
22538
23035
  size: "small" | "medium" | "large";
22539
23036
  selected: unknown[];
23037
+ valueToCopy: string;
22540
23038
  placeholder: string;
22541
23039
  inlineSearchPlaceholder: string;
22542
23040
  optionNameKey: string;
@@ -22545,8 +23043,8 @@ declare const _default: {
22545
23043
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22546
23044
  optionEndIconKey: string;
22547
23045
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22548
- valueToCopy: string;
22549
23046
  disabledOptionKey: string;
23047
+ optionEndTextIconKey: string;
22550
23048
  }, {}, string> & {
22551
23049
  beforeCreate?: (() => void) | (() => void)[];
22552
23050
  created?: (() => void) | (() => void)[];
@@ -22587,6 +23085,10 @@ declare const _default: {
22587
23085
  type: import("vue").PropType<unknown[]>;
22588
23086
  default: any;
22589
23087
  };
23088
+ valueToCopy: {
23089
+ type: import("vue").PropType<string>;
23090
+ default: any;
23091
+ };
22590
23092
  options: {
22591
23093
  type: import("vue").PropType<unknown[]>;
22592
23094
  required: true;
@@ -22627,14 +23129,14 @@ declare const _default: {
22627
23129
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
22628
23130
  default: any;
22629
23131
  };
22630
- valueToCopy: {
22631
- type: import("vue").PropType<string>;
22632
- default: any;
22633
- };
22634
23132
  disabledOptionKey: {
22635
23133
  type: import("vue").PropType<string>;
22636
23134
  default: string;
22637
23135
  };
23136
+ optionEndTextIconKey: {
23137
+ type: import("vue").PropType<string>;
23138
+ default: any;
23139
+ };
22638
23140
  optionChildrenKey: {
22639
23141
  type: import("vue").PropType<string>;
22640
23142
  required: true;
@@ -22674,6 +23176,10 @@ declare const _default: {
22674
23176
  type: import("vue").PropType<unknown[]>;
22675
23177
  default: any;
22676
23178
  };
23179
+ valueToCopy: {
23180
+ type: import("vue").PropType<string>;
23181
+ default: any;
23182
+ };
22677
23183
  options: {
22678
23184
  type: import("vue").PropType<unknown[]>;
22679
23185
  required: true;
@@ -22714,14 +23220,14 @@ declare const _default: {
22714
23220
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
22715
23221
  default: any;
22716
23222
  };
22717
- valueToCopy: {
22718
- type: import("vue").PropType<string>;
22719
- default: any;
22720
- };
22721
23223
  disabledOptionKey: {
22722
23224
  type: import("vue").PropType<string>;
22723
23225
  default: string;
22724
23226
  };
23227
+ optionEndTextIconKey: {
23228
+ type: import("vue").PropType<string>;
23229
+ default: any;
23230
+ };
22725
23231
  optionChildrenKey: {
22726
23232
  type: import("vue").PropType<string>;
22727
23233
  required: true;
@@ -22745,6 +23251,7 @@ declare const _default: {
22745
23251
  disabled: boolean;
22746
23252
  size: "small" | "medium" | "large";
22747
23253
  selected: unknown[];
23254
+ valueToCopy: string;
22748
23255
  placeholder: string;
22749
23256
  inlineSearchPlaceholder: string;
22750
23257
  optionNameKey: string;
@@ -22753,13 +23260,141 @@ declare const _default: {
22753
23260
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22754
23261
  optionEndIconKey: string;
22755
23262
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22756
- valueToCopy: string;
22757
23263
  disabledOptionKey: string;
23264
+ optionEndTextIconKey: string;
22758
23265
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22759
23266
  $slots: {
22760
23267
  "trigger-end-icon"?(_: {}): any;
22761
23268
  };
22762
23269
  });
23270
+ ConditionalDropdown: import("vue").DefineComponent<{
23271
+ label: {
23272
+ type: import("vue").PropType<string>;
23273
+ required: true;
23274
+ default: string;
23275
+ };
23276
+ testId: {
23277
+ type: import("vue").PropType<string>;
23278
+ default: string;
23279
+ };
23280
+ isOpen: {
23281
+ type: import("vue").PropType<boolean>;
23282
+ default: boolean;
23283
+ };
23284
+ optionNameKey: {
23285
+ type: import("vue").PropType<string>;
23286
+ required: true;
23287
+ default: string;
23288
+ };
23289
+ comparingKey: {
23290
+ type: import("vue").PropType<string>;
23291
+ required: true;
23292
+ default: string;
23293
+ };
23294
+ conditionalOptions: {
23295
+ type: import("vue").PropType<{
23296
+ label: string;
23297
+ value: string;
23298
+ multi: boolean;
23299
+ }[]>;
23300
+ required: true;
23301
+ };
23302
+ selectedCondition: {
23303
+ type: import("vue").PropType<{
23304
+ label: string;
23305
+ value: string;
23306
+ multi: boolean;
23307
+ }>;
23308
+ required: true;
23309
+ };
23310
+ appliedSelections: {
23311
+ type: import("vue").PropType<unknown>;
23312
+ required: true;
23313
+ };
23314
+ fetchFnCallback: {
23315
+ type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
23316
+ required: true;
23317
+ };
23318
+ minCharsToStart: {
23319
+ type: import("vue").PropType<number>;
23320
+ default: number;
23321
+ };
23322
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23323
+ "update:selectedCondition": (value: {
23324
+ label: string;
23325
+ value: string;
23326
+ multi: boolean;
23327
+ }) => void;
23328
+ "update:appliedSelections": (value: unknown) => void;
23329
+ clear: () => void;
23330
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23331
+ label: {
23332
+ type: import("vue").PropType<string>;
23333
+ required: true;
23334
+ default: string;
23335
+ };
23336
+ testId: {
23337
+ type: import("vue").PropType<string>;
23338
+ default: string;
23339
+ };
23340
+ isOpen: {
23341
+ type: import("vue").PropType<boolean>;
23342
+ default: boolean;
23343
+ };
23344
+ optionNameKey: {
23345
+ type: import("vue").PropType<string>;
23346
+ required: true;
23347
+ default: string;
23348
+ };
23349
+ comparingKey: {
23350
+ type: import("vue").PropType<string>;
23351
+ required: true;
23352
+ default: string;
23353
+ };
23354
+ conditionalOptions: {
23355
+ type: import("vue").PropType<{
23356
+ label: string;
23357
+ value: string;
23358
+ multi: boolean;
23359
+ }[]>;
23360
+ required: true;
23361
+ };
23362
+ selectedCondition: {
23363
+ type: import("vue").PropType<{
23364
+ label: string;
23365
+ value: string;
23366
+ multi: boolean;
23367
+ }>;
23368
+ required: true;
23369
+ };
23370
+ appliedSelections: {
23371
+ type: import("vue").PropType<unknown>;
23372
+ required: true;
23373
+ };
23374
+ fetchFnCallback: {
23375
+ type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
23376
+ required: true;
23377
+ };
23378
+ minCharsToStart: {
23379
+ type: import("vue").PropType<number>;
23380
+ default: number;
23381
+ };
23382
+ }>> & {
23383
+ onClear?: () => any;
23384
+ "onUpdate:selectedCondition"?: (value: {
23385
+ label: string;
23386
+ value: string;
23387
+ multi: boolean;
23388
+ }) => any;
23389
+ "onUpdate:appliedSelections"?: (value: unknown) => any;
23390
+ }, {
23391
+ label: string;
23392
+ testId: string;
23393
+ isOpen: boolean;
23394
+ optionNameKey: string;
23395
+ comparingKey: string;
23396
+ minCharsToStart: number;
23397
+ }>;
22763
23398
  Label: {
22764
23399
  new (...args: any[]): {
22765
23400
  $: import("vue").ComponentInternalInstance;
@@ -23498,7 +24133,9 @@ declare const _default: {
23498
24133
  };
23499
24134
  }>> & {
23500
24135
  "onUpdate:modelValue"?: (...args: any[]) => any;
23501
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
24136
+ }, {
24137
+ toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
24138
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23502
24139
  "update:modelValue": (...args: any[]) => void;
23503
24140
  }, string, {
23504
24141
  testId: string;
@@ -23550,7 +24187,9 @@ declare const _default: {
23550
24187
  };
23551
24188
  }>> & {
23552
24189
  "onUpdate:modelValue"?: (...args: any[]) => any;
23553
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
24190
+ } & import("vue").ShallowUnwrapRef<{
24191
+ toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
24192
+ }> & {} & import("vue").ComponentCustomProperties & {};
23554
24193
  __isFragment?: never;
23555
24194
  __isTeleport?: never;
23556
24195
  __isSuspense?: never;
@@ -23582,7 +24221,9 @@ declare const _default: {
23582
24221
  };
23583
24222
  }>> & {
23584
24223
  "onUpdate:modelValue"?: (...args: any[]) => any;
23585
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
24224
+ }, {
24225
+ toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
24226
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23586
24227
  "update:modelValue": (...args: any[]) => void;
23587
24228
  }, string, {
23588
24229
  testId: string;
@@ -23963,7 +24604,9 @@ declare const _default: {
23963
24604
  };
23964
24605
  }>> & {
23965
24606
  "onUpdate:modelValue"?: (...args: any[]) => any;
23966
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
24607
+ }, {
24608
+ toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
24609
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23967
24610
  "update:modelValue": (...args: any[]) => void;
23968
24611
  }, string, {
23969
24612
  testId: string;
@@ -24015,7 +24658,9 @@ declare const _default: {
24015
24658
  };
24016
24659
  }>> & {
24017
24660
  "onUpdate:modelValue"?: (...args: any[]) => any;
24018
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
24661
+ } & import("vue").ShallowUnwrapRef<{
24662
+ toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
24663
+ }> & {} & import("vue").ComponentCustomProperties & {};
24019
24664
  __isFragment?: never;
24020
24665
  __isTeleport?: never;
24021
24666
  __isSuspense?: never;
@@ -24047,7 +24692,9 @@ declare const _default: {
24047
24692
  };
24048
24693
  }>> & {
24049
24694
  "onUpdate:modelValue"?: (...args: any[]) => any;
24050
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
24695
+ }, {
24696
+ toggle: import("vue").ComputedRef<(value?: boolean) => boolean>;
24697
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
24051
24698
  "update:modelValue": (...args: any[]) => void;
24052
24699
  }, string, {
24053
24700
  testId: string;