@ironsource/shared-ui 2.1.7-rc.4 → 2.1.7-rc.6

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 (100) hide show
  1. package/Autocomplete.vue_vue_type_style_index_0_scoped_e361f9fd_lang.css +1 -0
  2. package/Chart.vue_vue_type_style_index_0_scoped_f06a4764_lang.css +1 -0
  3. package/ChartHeader.vue_vue_type_style_index_0_scoped_88d4532f_lang.css +1 -0
  4. package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +1 -0
  5. package/ChartLoader.vue_vue_type_style_index_0_scoped_142c444a_lang.css +1 -0
  6. package/ChartTooltip.vue_vue_type_style_index_0_scoped_ec636f18_lang.css +1 -0
  7. package/DropdownV4.vue_vue_type_style_index_0_scoped_938772ee_lang.css +1 -0
  8. package/FieldMaxLength.vue_vue_type_style_index_0_scoped_47877984_lang.css +1 -0
  9. package/IncludeExclude.vue_vue_type_style_index_0_scoped_cc2adbf5_lang.css +1 -0
  10. package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_bd6145ce_lang.css +1 -0
  11. package/OptionV4.vue_vue_type_style_index_0_scoped_b6a06f00_lang.css +1 -0
  12. package/Popover.vue_vue_type_style_index_0_scoped_c607b770_lang.css +1 -0
  13. package/PopoverV4.vue_vue_type_style_index_0_scoped_c54cd089_lang.css +1 -0
  14. package/PopoverV4.vue_vue_type_style_index_1_lang.css +1 -0
  15. package/SortableItem.vue_vue_type_style_index_0_scoped_9dd4d372_lang.css +1 -0
  16. package/SortableItemLabel.vue_vue_type_style_index_0_scoped_1386ae20_lang.css +1 -0
  17. package/SortableList.vue_vue_type_style_index_0_scoped_21842d59_lang.css +1 -0
  18. package/TextAreaV4.vue_vue_type_style_index_0_scoped_4114ef89_lang.css +1 -0
  19. package/TextField.vue_vue_type_style_index_0_scoped_eb472aa3_lang.css +1 -0
  20. package/components/autocomplete/Autocomplete.vue.d.ts +5 -0
  21. package/components/autocomplete/Autocomplete.vue.js +2 -2
  22. package/components/autocomplete/Autocomplete.vue2.js +57 -45
  23. package/components/autocomplete/index.d.ts +20 -1
  24. package/components/chart/Chart.vue.js +7 -0
  25. package/components/chart/Chart.vue2.js +281 -0
  26. package/components/chart/ChartHeader.vue.js +7 -0
  27. package/components/chart/ChartHeader.vue2.js +51 -0
  28. package/components/chart/ChartLegend.vue.js +7 -0
  29. package/components/chart/ChartLegend.vue2.js +65 -0
  30. package/components/chart/ChartLoader.vue.js +25 -0
  31. package/components/chart/ChartLoader.vue2.js +0 -0
  32. package/components/chart/ChartTooltip.vue.js +7 -0
  33. package/components/chart/ChartTooltip.vue2.js +81 -0
  34. package/components/chart/composables/useChartValues.js +32 -0
  35. package/components/chart/composables/useTooltipPosition.js +22 -0
  36. package/components/chart/consts.js +21 -0
  37. package/components/chart/index.js +6 -0
  38. package/components/chart/plugins/HoverVerticalLine.js +12 -0
  39. package/components/chart/types.js +4 -0
  40. package/components/chart/utils/formatNumber.js +11 -0
  41. package/components/chart/utils/utils.js +12 -0
  42. package/components/dropdown/v4/DropdownV4.vue.d.ts +10 -0
  43. package/components/dropdown/v4/DropdownV4.vue.js +3 -3
  44. package/components/dropdown/v4/DropdownV4.vue2.js +151 -147
  45. package/components/dropdown/v4/OptionV4.vue.d.ts +10 -0
  46. package/components/dropdown/v4/OptionV4.vue.js +2 -2
  47. package/components/dropdown/v4/OptionV4.vue2.js +70 -53
  48. package/components/dropdown/v4/dropdownStoryArgs.d.ts +14 -0
  49. package/components/dropdown/v4/index.d.ts +78 -2
  50. package/components/includeExclude/IncludeExclude.vue.js +4 -4
  51. package/components/includeExclude/IncludeExclude.vue2.js +2 -2
  52. package/components/includeExclude/IncludeExcludeDragDrop.vue.js +4 -4
  53. package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +2 -2
  54. package/components/input/v4/TextField.vue.d.ts +6 -1
  55. package/components/input/v4/TextField.vue.js +3 -3
  56. package/components/input/v4/TextField.vue2.js +95 -90
  57. package/components/input/v4/index.d.ts +20 -1
  58. package/components/popover/common/Popover.common.d.ts +6 -0
  59. package/components/popover/common/Popover.common.js +17 -0
  60. package/components/popover/v3/Popover.vue.js +8 -0
  61. package/components/popover/{Popover.vue2.js → v3/Popover.vue2.js} +1 -1
  62. package/components/popover/v4/PopoverV4.vue.d.ts +73 -0
  63. package/components/popover/v4/PopoverV4.vue.js +7 -0
  64. package/components/popover/v4/PopoverV4.vue2.js +54 -0
  65. package/components/popover/v4/index.d.ts +209 -0
  66. package/components/popover/v4/index.js +6 -0
  67. package/components/shared/FieldMaxLength.vue.js +3 -3
  68. package/components/shared/FieldMaxLength.vue2.js +2 -2
  69. package/components/shared/commonTypes.d.ts +2 -0
  70. package/components/sortableList/SortableItem.vue.js +7 -0
  71. package/components/sortableList/SortableItem.vue2.js +140 -0
  72. package/components/sortableList/SortableItemLabel.vue.js +7 -0
  73. package/components/sortableList/SortableItemLabel.vue2.js +60 -0
  74. package/components/sortableList/SortableList.vue.js +7 -0
  75. package/components/sortableList/SortableList.vue2.js +120 -0
  76. package/components/sortableList/composables/useHoverEffect.js +19 -0
  77. package/components/sortableList/consts.js +4 -0
  78. package/components/sortableList/index.js +6 -0
  79. package/components/textArea/v4/TextAreaV4.vue.d.ts +6 -1
  80. package/components/textArea/v4/TextAreaV4.vue.js +3 -3
  81. package/components/textArea/v4/TextAreaV4.vue2.js +18 -12
  82. package/components/textArea/v4/index.d.ts +9 -0
  83. package/index.d.ts +1314 -100
  84. package/index.js +136 -131
  85. package/package.json +15 -3
  86. package/testids/index.js +5 -4
  87. package/utils/search.js +4 -0
  88. package/Autocomplete.vue_vue_type_style_index_0_scoped_a7bfd237_lang.css +0 -1
  89. package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +0 -1
  90. package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +0 -1
  91. package/IncludeExclude.vue_vue_type_style_index_0_scoped_fb054d88_lang.css +0 -1
  92. package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_5764fd61_lang.css +0 -1
  93. package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +0 -1
  94. package/Popover.vue_vue_type_style_index_0_scoped_25eb53db_lang.css +0 -1
  95. package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +0 -1
  96. package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +0 -1
  97. package/components/popover/Popover.vue.js +0 -8
  98. /package/components/popover/{Popover.vue.d.ts → v3/Popover.vue.d.ts} +0 -0
  99. /package/components/popover/{index.d.ts → v3/index.d.ts} +0 -0
  100. /package/components/popover/{index.js → v3/index.js} +0 -0
package/index.d.ts CHANGED
@@ -10,7 +10,6 @@ export * from '@/composables/useId';
10
10
  export * from '@/components/filterDropdown';
11
11
  export * from '@/components/typography';
12
12
  export * from '@/components/typography/v4';
13
- export * from '@/components/popover';
14
13
  export * from '@/components/multibar';
15
14
  export * from '@/components/layout';
16
15
  export * from '@/components/forms';
@@ -21,6 +20,420 @@ import * as tableV4 from '@/components/table/v4';
21
20
  import * as tableCellsV3 from '@/components/table-cells/v3';
22
21
  import * as snackbarV3 from '@/components/snackbar/v3';
23
22
  declare const _default: {
23
+ Popover: {
24
+ new (...args: any[]): {
25
+ $: import("vue").ComponentInternalInstance;
26
+ $data: {};
27
+ $props: Partial<{
28
+ disabled: boolean;
29
+ testId: string;
30
+ placement: import("floating-vue").Placement;
31
+ distance: number;
32
+ popperClass: string;
33
+ autoHide: boolean;
34
+ skidding: number;
35
+ trigger: "touch" | "click" | "focus" | "hover" | "managed";
36
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
37
+ disabled: {
38
+ type: import("vue").PropType<boolean>;
39
+ default: boolean;
40
+ };
41
+ testId: {
42
+ type: import("vue").PropType<string>;
43
+ default: string;
44
+ };
45
+ placement: {
46
+ type: import("vue").PropType<import("floating-vue").Placement>;
47
+ default: string;
48
+ };
49
+ distance: {
50
+ type: import("vue").PropType<number>;
51
+ default: number;
52
+ };
53
+ popperClass: {
54
+ type: import("vue").PropType<string>;
55
+ default: string;
56
+ };
57
+ autoHide: {
58
+ type: import("vue").PropType<boolean>;
59
+ default: boolean;
60
+ };
61
+ skidding: {
62
+ type: import("vue").PropType<number>;
63
+ default: number;
64
+ };
65
+ trigger: {
66
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
67
+ default: string;
68
+ };
69
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "placement" | "distance" | "popperClass" | "autoHide" | "skidding" | "trigger">;
70
+ $attrs: {
71
+ [x: string]: unknown;
72
+ };
73
+ $refs: {
74
+ [x: string]: unknown;
75
+ };
76
+ $slots: Readonly<{
77
+ [name: string]: import("vue").Slot;
78
+ }>;
79
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
80
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
81
+ $emit: (event: string, ...args: any[]) => void;
82
+ $el: any;
83
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
84
+ disabled: {
85
+ type: import("vue").PropType<boolean>;
86
+ default: boolean;
87
+ };
88
+ testId: {
89
+ type: import("vue").PropType<string>;
90
+ default: string;
91
+ };
92
+ placement: {
93
+ type: import("vue").PropType<import("floating-vue").Placement>;
94
+ default: string;
95
+ };
96
+ distance: {
97
+ type: import("vue").PropType<number>;
98
+ default: number;
99
+ };
100
+ popperClass: {
101
+ type: import("vue").PropType<string>;
102
+ default: string;
103
+ };
104
+ autoHide: {
105
+ type: import("vue").PropType<boolean>;
106
+ default: boolean;
107
+ };
108
+ skidding: {
109
+ type: import("vue").PropType<number>;
110
+ default: number;
111
+ };
112
+ trigger: {
113
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
114
+ default: string;
115
+ };
116
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
117
+ disabled: boolean;
118
+ testId: string;
119
+ placement: import("floating-vue").Placement;
120
+ distance: number;
121
+ popperClass: string;
122
+ autoHide: boolean;
123
+ skidding: number;
124
+ trigger: "touch" | "click" | "focus" | "hover" | "managed";
125
+ }, {}, string> & {
126
+ beforeCreate?: (() => void) | (() => void)[];
127
+ created?: (() => void) | (() => void)[];
128
+ beforeMount?: (() => void) | (() => void)[];
129
+ mounted?: (() => void) | (() => void)[];
130
+ beforeUpdate?: (() => void) | (() => void)[];
131
+ updated?: (() => void) | (() => void)[];
132
+ activated?: (() => void) | (() => void)[];
133
+ deactivated?: (() => void) | (() => void)[];
134
+ beforeDestroy?: (() => void) | (() => void)[];
135
+ beforeUnmount?: (() => void) | (() => void)[];
136
+ destroyed?: (() => void) | (() => void)[];
137
+ unmounted?: (() => void) | (() => void)[];
138
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
139
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
140
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
141
+ };
142
+ $forceUpdate: () => void;
143
+ $nextTick: typeof import("vue").nextTick;
144
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
145
+ } & Readonly<import("vue").ExtractPropTypes<{
146
+ disabled: {
147
+ type: import("vue").PropType<boolean>;
148
+ default: boolean;
149
+ };
150
+ testId: {
151
+ type: import("vue").PropType<string>;
152
+ default: string;
153
+ };
154
+ placement: {
155
+ type: import("vue").PropType<import("floating-vue").Placement>;
156
+ default: string;
157
+ };
158
+ distance: {
159
+ type: import("vue").PropType<number>;
160
+ default: number;
161
+ };
162
+ popperClass: {
163
+ type: import("vue").PropType<string>;
164
+ default: string;
165
+ };
166
+ autoHide: {
167
+ type: import("vue").PropType<boolean>;
168
+ default: boolean;
169
+ };
170
+ skidding: {
171
+ type: import("vue").PropType<number>;
172
+ default: number;
173
+ };
174
+ trigger: {
175
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
176
+ default: string;
177
+ };
178
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
179
+ __isFragment?: never;
180
+ __isTeleport?: never;
181
+ __isSuspense?: never;
182
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
183
+ disabled: {
184
+ type: import("vue").PropType<boolean>;
185
+ default: boolean;
186
+ };
187
+ testId: {
188
+ type: import("vue").PropType<string>;
189
+ default: string;
190
+ };
191
+ placement: {
192
+ type: import("vue").PropType<import("floating-vue").Placement>;
193
+ default: string;
194
+ };
195
+ distance: {
196
+ type: import("vue").PropType<number>;
197
+ default: number;
198
+ };
199
+ popperClass: {
200
+ type: import("vue").PropType<string>;
201
+ default: string;
202
+ };
203
+ autoHide: {
204
+ type: import("vue").PropType<boolean>;
205
+ default: boolean;
206
+ };
207
+ skidding: {
208
+ type: import("vue").PropType<number>;
209
+ default: number;
210
+ };
211
+ trigger: {
212
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
213
+ default: string;
214
+ };
215
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
216
+ disabled: boolean;
217
+ testId: string;
218
+ placement: import("floating-vue").Placement;
219
+ distance: number;
220
+ popperClass: string;
221
+ autoHide: boolean;
222
+ skidding: number;
223
+ trigger: "touch" | "click" | "focus" | "hover" | "managed";
224
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
225
+ $slots: {
226
+ trigger?(_: {}): any;
227
+ content?(_: {}): any;
228
+ };
229
+ });
230
+ PopoverTypes: () => ({
231
+ new (...args: any[]): {
232
+ $: import("vue").ComponentInternalInstance;
233
+ $data: {};
234
+ $props: Partial<{
235
+ disabled: boolean;
236
+ testId: string;
237
+ placement: import("floating-vue").Placement;
238
+ distance: number;
239
+ popperClass: string;
240
+ autoHide: boolean;
241
+ skidding: number;
242
+ trigger: "touch" | "click" | "focus" | "hover" | "managed";
243
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
244
+ disabled: {
245
+ type: import("vue").PropType<boolean>;
246
+ default: boolean;
247
+ };
248
+ testId: {
249
+ type: import("vue").PropType<string>;
250
+ default: string;
251
+ };
252
+ placement: {
253
+ type: import("vue").PropType<import("floating-vue").Placement>;
254
+ default: string;
255
+ };
256
+ distance: {
257
+ type: import("vue").PropType<number>;
258
+ default: number;
259
+ };
260
+ popperClass: {
261
+ type: import("vue").PropType<string>;
262
+ default: string;
263
+ };
264
+ autoHide: {
265
+ type: import("vue").PropType<boolean>;
266
+ default: boolean;
267
+ };
268
+ skidding: {
269
+ type: import("vue").PropType<number>;
270
+ default: number;
271
+ };
272
+ trigger: {
273
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
274
+ default: string;
275
+ };
276
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "placement" | "distance" | "popperClass" | "autoHide" | "skidding" | "trigger">;
277
+ $attrs: {
278
+ [x: string]: unknown;
279
+ };
280
+ $refs: {
281
+ [x: string]: unknown;
282
+ };
283
+ $slots: Readonly<{
284
+ [name: string]: import("vue").Slot;
285
+ }>;
286
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
287
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
288
+ $emit: (event: string, ...args: any[]) => void;
289
+ $el: any;
290
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
291
+ disabled: {
292
+ type: import("vue").PropType<boolean>;
293
+ default: boolean;
294
+ };
295
+ testId: {
296
+ type: import("vue").PropType<string>;
297
+ default: string;
298
+ };
299
+ placement: {
300
+ type: import("vue").PropType<import("floating-vue").Placement>;
301
+ default: string;
302
+ };
303
+ distance: {
304
+ type: import("vue").PropType<number>;
305
+ default: number;
306
+ };
307
+ popperClass: {
308
+ type: import("vue").PropType<string>;
309
+ default: string;
310
+ };
311
+ autoHide: {
312
+ type: import("vue").PropType<boolean>;
313
+ default: boolean;
314
+ };
315
+ skidding: {
316
+ type: import("vue").PropType<number>;
317
+ default: number;
318
+ };
319
+ trigger: {
320
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
321
+ default: string;
322
+ };
323
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
324
+ disabled: boolean;
325
+ testId: string;
326
+ placement: import("floating-vue").Placement;
327
+ distance: number;
328
+ popperClass: string;
329
+ autoHide: boolean;
330
+ skidding: number;
331
+ trigger: "touch" | "click" | "focus" | "hover" | "managed";
332
+ }, {}, string> & {
333
+ beforeCreate?: (() => void) | (() => void)[];
334
+ created?: (() => void) | (() => void)[];
335
+ beforeMount?: (() => void) | (() => void)[];
336
+ mounted?: (() => void) | (() => void)[];
337
+ beforeUpdate?: (() => void) | (() => void)[];
338
+ updated?: (() => void) | (() => void)[];
339
+ activated?: (() => void) | (() => void)[];
340
+ deactivated?: (() => void) | (() => void)[];
341
+ beforeDestroy?: (() => void) | (() => void)[];
342
+ beforeUnmount?: (() => void) | (() => void)[];
343
+ destroyed?: (() => void) | (() => void)[];
344
+ unmounted?: (() => void) | (() => void)[];
345
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
346
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
347
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
348
+ };
349
+ $forceUpdate: () => void;
350
+ $nextTick: typeof import("vue").nextTick;
351
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
352
+ } & Readonly<import("vue").ExtractPropTypes<{
353
+ disabled: {
354
+ type: import("vue").PropType<boolean>;
355
+ default: boolean;
356
+ };
357
+ testId: {
358
+ type: import("vue").PropType<string>;
359
+ default: string;
360
+ };
361
+ placement: {
362
+ type: import("vue").PropType<import("floating-vue").Placement>;
363
+ default: string;
364
+ };
365
+ distance: {
366
+ type: import("vue").PropType<number>;
367
+ default: number;
368
+ };
369
+ popperClass: {
370
+ type: import("vue").PropType<string>;
371
+ default: string;
372
+ };
373
+ autoHide: {
374
+ type: import("vue").PropType<boolean>;
375
+ default: boolean;
376
+ };
377
+ skidding: {
378
+ type: import("vue").PropType<number>;
379
+ default: number;
380
+ };
381
+ trigger: {
382
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
383
+ default: string;
384
+ };
385
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
386
+ __isFragment?: never;
387
+ __isTeleport?: never;
388
+ __isSuspense?: never;
389
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
390
+ disabled: {
391
+ type: import("vue").PropType<boolean>;
392
+ default: boolean;
393
+ };
394
+ testId: {
395
+ type: import("vue").PropType<string>;
396
+ default: string;
397
+ };
398
+ placement: {
399
+ type: import("vue").PropType<import("floating-vue").Placement>;
400
+ default: string;
401
+ };
402
+ distance: {
403
+ type: import("vue").PropType<number>;
404
+ default: number;
405
+ };
406
+ popperClass: {
407
+ type: import("vue").PropType<string>;
408
+ default: string;
409
+ };
410
+ autoHide: {
411
+ type: import("vue").PropType<boolean>;
412
+ default: boolean;
413
+ };
414
+ skidding: {
415
+ type: import("vue").PropType<number>;
416
+ default: number;
417
+ };
418
+ trigger: {
419
+ type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
420
+ default: string;
421
+ };
422
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
423
+ disabled: boolean;
424
+ testId: string;
425
+ placement: import("floating-vue").Placement;
426
+ distance: number;
427
+ popperClass: string;
428
+ autoHide: boolean;
429
+ skidding: number;
430
+ trigger: "touch" | "click" | "focus" | "hover" | "managed";
431
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
432
+ $slots: {
433
+ trigger?(_: {}): any;
434
+ content?(_: {}): any;
435
+ };
436
+ }))[];
24
437
  DateRange: {
25
438
  new (...args: any[]): {
26
439
  $: import("vue").ComponentInternalInstance;
@@ -803,37 +1216,219 @@ declare const _default: {
803
1216
  onDateRangePresetNameChanged?: (...args: any[]) => any;
804
1217
  onDismissed?: (...args: any[]) => any;
805
1218
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
806
- opened: (...args: any[]) => void;
807
- rangeTypeChanged: (...args: any[]) => void;
808
- currentDateChanged: (...args: any[]) => void;
809
- rangeChanged: (...args: any[]) => void;
810
- dateRangePresetNameChanged: (...args: any[]) => void;
811
- dismissed: (...args: any[]) => void;
1219
+ opened: (...args: any[]) => void;
1220
+ rangeTypeChanged: (...args: any[]) => void;
1221
+ currentDateChanged: (...args: any[]) => void;
1222
+ rangeChanged: (...args: any[]) => void;
1223
+ dateRangePresetNameChanged: (...args: any[]) => void;
1224
+ dismissed: (...args: any[]) => void;
1225
+ }, string, {
1226
+ disabled: boolean;
1227
+ testId: string;
1228
+ allowedDays: number;
1229
+ uniqueId: string | number;
1230
+ includeToday: boolean;
1231
+ dateFormat: string;
1232
+ types: ("date" | "week" | "month")[];
1233
+ maxDaysInRange: number;
1234
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
1235
+ regex: RegExp;
1236
+ initialType: "date" | "week" | "month";
1237
+ openOnTop: boolean;
1238
+ showPresets: boolean;
1239
+ maxDate: Date;
1240
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1241
+ $slots: {
1242
+ field?(_: {
1243
+ currentDate: any;
1244
+ isOpen: boolean;
1245
+ }): any;
1246
+ footer?(_: {}): any;
1247
+ };
1248
+ }))[];
1249
+ DatePicker: {
1250
+ new (...args: any[]): {
1251
+ $: import("vue").ComponentInternalInstance;
1252
+ $data: {};
1253
+ $props: Partial<{
1254
+ testId: string;
1255
+ modelValue: string | Date;
1256
+ placeholder: string;
1257
+ uniqueId: string | number;
1258
+ allowFutureDates: boolean;
1259
+ dateFormat: string;
1260
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1261
+ testId: {
1262
+ type: import("vue").PropType<string>;
1263
+ default: string;
1264
+ };
1265
+ modelValue: {
1266
+ type: import("vue").PropType<string | Date>;
1267
+ default: any;
1268
+ };
1269
+ placeholder: {
1270
+ type: import("vue").PropType<string>;
1271
+ default: string;
1272
+ };
1273
+ uniqueId: {
1274
+ type: import("vue").PropType<string | number>;
1275
+ default: number;
1276
+ };
1277
+ allowFutureDates: {
1278
+ type: import("vue").PropType<boolean>;
1279
+ default: boolean;
1280
+ };
1281
+ dateFormat: {
1282
+ type: import("vue").PropType<string>;
1283
+ default: string;
1284
+ };
1285
+ }>> & {
1286
+ "onUpdate:modelValue"?: (val: string | Date) => any;
1287
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "modelValue" | "placeholder" | "uniqueId" | "allowFutureDates" | "dateFormat">;
1288
+ $attrs: {
1289
+ [x: string]: unknown;
1290
+ };
1291
+ $refs: {
1292
+ [x: string]: unknown;
1293
+ };
1294
+ $slots: Readonly<{
1295
+ [name: string]: import("vue").Slot;
1296
+ }>;
1297
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1298
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1299
+ $emit: (event: "update:modelValue", val: string | Date) => void;
1300
+ $el: any;
1301
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1302
+ testId: {
1303
+ type: import("vue").PropType<string>;
1304
+ default: string;
1305
+ };
1306
+ modelValue: {
1307
+ type: import("vue").PropType<string | Date>;
1308
+ default: any;
1309
+ };
1310
+ placeholder: {
1311
+ type: import("vue").PropType<string>;
1312
+ default: string;
1313
+ };
1314
+ uniqueId: {
1315
+ type: import("vue").PropType<string | number>;
1316
+ default: number;
1317
+ };
1318
+ allowFutureDates: {
1319
+ type: import("vue").PropType<boolean>;
1320
+ default: boolean;
1321
+ };
1322
+ dateFormat: {
1323
+ type: import("vue").PropType<string>;
1324
+ default: string;
1325
+ };
1326
+ }>> & {
1327
+ "onUpdate:modelValue"?: (val: string | Date) => any;
1328
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1329
+ "update:modelValue": (val: string | Date) => void;
1330
+ }, string, {
1331
+ testId: string;
1332
+ modelValue: string | Date;
1333
+ placeholder: string;
1334
+ uniqueId: string | number;
1335
+ allowFutureDates: boolean;
1336
+ dateFormat: string;
1337
+ }, {}, string> & {
1338
+ beforeCreate?: (() => void) | (() => void)[];
1339
+ created?: (() => void) | (() => void)[];
1340
+ beforeMount?: (() => void) | (() => void)[];
1341
+ mounted?: (() => void) | (() => void)[];
1342
+ beforeUpdate?: (() => void) | (() => void)[];
1343
+ updated?: (() => void) | (() => void)[];
1344
+ activated?: (() => void) | (() => void)[];
1345
+ deactivated?: (() => void) | (() => void)[];
1346
+ beforeDestroy?: (() => void) | (() => void)[];
1347
+ beforeUnmount?: (() => void) | (() => void)[];
1348
+ destroyed?: (() => void) | (() => void)[];
1349
+ unmounted?: (() => void) | (() => void)[];
1350
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1351
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1352
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1353
+ };
1354
+ $forceUpdate: () => void;
1355
+ $nextTick: typeof import("vue").nextTick;
1356
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
1357
+ } & Readonly<import("vue").ExtractPropTypes<{
1358
+ testId: {
1359
+ type: import("vue").PropType<string>;
1360
+ default: string;
1361
+ };
1362
+ modelValue: {
1363
+ type: import("vue").PropType<string | Date>;
1364
+ default: any;
1365
+ };
1366
+ placeholder: {
1367
+ type: import("vue").PropType<string>;
1368
+ default: string;
1369
+ };
1370
+ uniqueId: {
1371
+ type: import("vue").PropType<string | number>;
1372
+ default: number;
1373
+ };
1374
+ allowFutureDates: {
1375
+ type: import("vue").PropType<boolean>;
1376
+ default: boolean;
1377
+ };
1378
+ dateFormat: {
1379
+ type: import("vue").PropType<string>;
1380
+ default: string;
1381
+ };
1382
+ }>> & {
1383
+ "onUpdate:modelValue"?: (val: string | Date) => any;
1384
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
1385
+ __isFragment?: never;
1386
+ __isTeleport?: never;
1387
+ __isSuspense?: never;
1388
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1389
+ testId: {
1390
+ type: import("vue").PropType<string>;
1391
+ default: string;
1392
+ };
1393
+ modelValue: {
1394
+ type: import("vue").PropType<string | Date>;
1395
+ default: any;
1396
+ };
1397
+ placeholder: {
1398
+ type: import("vue").PropType<string>;
1399
+ default: string;
1400
+ };
1401
+ uniqueId: {
1402
+ type: import("vue").PropType<string | number>;
1403
+ default: number;
1404
+ };
1405
+ allowFutureDates: {
1406
+ type: import("vue").PropType<boolean>;
1407
+ default: boolean;
1408
+ };
1409
+ dateFormat: {
1410
+ type: import("vue").PropType<string>;
1411
+ default: string;
1412
+ };
1413
+ }>> & {
1414
+ "onUpdate:modelValue"?: (val: string | Date) => any;
1415
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1416
+ "update:modelValue": (val: string | Date) => void;
812
1417
  }, string, {
813
- disabled: boolean;
814
1418
  testId: string;
815
- allowedDays: number;
1419
+ modelValue: string | Date;
1420
+ placeholder: string;
816
1421
  uniqueId: string | number;
817
- includeToday: boolean;
1422
+ allowFutureDates: boolean;
818
1423
  dateFormat: string;
819
- types: ("date" | "week" | "month")[];
820
- maxDaysInRange: number;
821
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth";
822
- regex: RegExp;
823
- initialType: "date" | "week" | "month";
824
- openOnTop: boolean;
825
- showPresets: boolean;
826
- maxDate: Date;
827
1424
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
828
1425
  $slots: {
829
- field?(_: {
830
- currentDate: any;
831
- isOpen: boolean;
1426
+ default?(_: {
1427
+ formattedDate: any;
832
1428
  }): any;
833
- footer?(_: {}): any;
834
1429
  };
835
- }))[];
836
- DatePicker: {
1430
+ });
1431
+ DatePickerTypes: () => ({
837
1432
  new (...args: any[]): {
838
1433
  $: import("vue").ComponentInternalInstance;
839
1434
  $data: {};
@@ -1014,46 +1609,369 @@ declare const _default: {
1014
1609
  formattedDate: any;
1015
1610
  }): any;
1016
1611
  };
1612
+ }))[];
1613
+ SortableList: {
1614
+ new (...args: any[]): {
1615
+ $: import("vue").ComponentInternalInstance;
1616
+ $data: {};
1617
+ $props: Partial<{
1618
+ search: string;
1619
+ testId: string;
1620
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1621
+ searchPlaceholder: string;
1622
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1623
+ selectedChildId: string | number;
1624
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1625
+ openId: string | number;
1626
+ selectedId: string | number;
1627
+ showSearch: boolean;
1628
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1629
+ search: {
1630
+ type: import("vue").PropType<string>;
1631
+ default: any;
1632
+ };
1633
+ testId: {
1634
+ type: import("vue").PropType<string>;
1635
+ default: string;
1636
+ };
1637
+ displayValue: {
1638
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1639
+ required: true;
1640
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1641
+ };
1642
+ searchPlaceholder: {
1643
+ type: import("vue").PropType<string>;
1644
+ default: string;
1645
+ };
1646
+ items: {
1647
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1648
+ required: true;
1649
+ default: () => any[];
1650
+ };
1651
+ selectedChildId: {
1652
+ type: import("vue").PropType<string | number>;
1653
+ default: any;
1654
+ };
1655
+ searchHandler: {
1656
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1657
+ default: any;
1658
+ };
1659
+ openId: {
1660
+ type: import("vue").PropType<string | number>;
1661
+ default: any;
1662
+ };
1663
+ selectedId: {
1664
+ type: import("vue").PropType<string | number>;
1665
+ default: any;
1666
+ };
1667
+ showSearch: {
1668
+ type: import("vue").PropType<boolean>;
1669
+ default: boolean;
1670
+ };
1671
+ }>> & {
1672
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1673
+ "onUpdate:openId"?: (id: string | number) => any;
1674
+ "onUpdate:selectedId"?: (id: string | number) => any;
1675
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1676
+ "onUpdate:search"?: (query: string) => any;
1677
+ onClearSearch?: () => any;
1678
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
1679
+ $attrs: {
1680
+ [x: string]: unknown;
1681
+ };
1682
+ $refs: {
1683
+ [x: string]: unknown;
1684
+ };
1685
+ $slots: Readonly<{
1686
+ [name: string]: import("vue").Slot;
1687
+ }>;
1688
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1689
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1690
+ $emit: ((event: "update:items", items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void) & ((event: "update:openId", id: string | number) => void) & ((event: "update:selectedId", id: string | number) => void) & ((event: "update:selectedChildId", id: string | number) => void) & ((event: "update:search", query: string) => void) & ((event: "clearSearch") => void);
1691
+ $el: any;
1692
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1693
+ search: {
1694
+ type: import("vue").PropType<string>;
1695
+ default: any;
1696
+ };
1697
+ testId: {
1698
+ type: import("vue").PropType<string>;
1699
+ default: string;
1700
+ };
1701
+ displayValue: {
1702
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1703
+ required: true;
1704
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1705
+ };
1706
+ searchPlaceholder: {
1707
+ type: import("vue").PropType<string>;
1708
+ default: string;
1709
+ };
1710
+ items: {
1711
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1712
+ required: true;
1713
+ default: () => any[];
1714
+ };
1715
+ selectedChildId: {
1716
+ type: import("vue").PropType<string | number>;
1717
+ default: any;
1718
+ };
1719
+ searchHandler: {
1720
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1721
+ default: any;
1722
+ };
1723
+ openId: {
1724
+ type: import("vue").PropType<string | number>;
1725
+ default: any;
1726
+ };
1727
+ selectedId: {
1728
+ type: import("vue").PropType<string | number>;
1729
+ default: any;
1730
+ };
1731
+ showSearch: {
1732
+ type: import("vue").PropType<boolean>;
1733
+ default: boolean;
1734
+ };
1735
+ }>> & {
1736
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1737
+ "onUpdate:openId"?: (id: string | number) => any;
1738
+ "onUpdate:selectedId"?: (id: string | number) => any;
1739
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1740
+ "onUpdate:search"?: (query: string) => any;
1741
+ onClearSearch?: () => any;
1742
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1743
+ "update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
1744
+ "update:openId": (id: string | number) => void;
1745
+ "update:selectedId": (id: string | number) => void;
1746
+ "update:selectedChildId": (id: string | number) => void;
1747
+ "update:search": (query: string) => void;
1748
+ clearSearch: () => void;
1749
+ }, string, {
1750
+ search: string;
1751
+ testId: string;
1752
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1753
+ searchPlaceholder: string;
1754
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1755
+ selectedChildId: string | number;
1756
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1757
+ openId: string | number;
1758
+ selectedId: string | number;
1759
+ showSearch: boolean;
1760
+ }, {}, string> & {
1761
+ beforeCreate?: (() => void) | (() => void)[];
1762
+ created?: (() => void) | (() => void)[];
1763
+ beforeMount?: (() => void) | (() => void)[];
1764
+ mounted?: (() => void) | (() => void)[];
1765
+ beforeUpdate?: (() => void) | (() => void)[];
1766
+ updated?: (() => void) | (() => void)[];
1767
+ activated?: (() => void) | (() => void)[];
1768
+ deactivated?: (() => void) | (() => void)[];
1769
+ beforeDestroy?: (() => void) | (() => void)[];
1770
+ beforeUnmount?: (() => void) | (() => void)[];
1771
+ destroyed?: (() => void) | (() => void)[];
1772
+ unmounted?: (() => void) | (() => void)[];
1773
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1774
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1775
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1776
+ };
1777
+ $forceUpdate: () => void;
1778
+ $nextTick: typeof import("vue").nextTick;
1779
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
1780
+ } & Readonly<import("vue").ExtractPropTypes<{
1781
+ search: {
1782
+ type: import("vue").PropType<string>;
1783
+ default: any;
1784
+ };
1785
+ testId: {
1786
+ type: import("vue").PropType<string>;
1787
+ default: string;
1788
+ };
1789
+ displayValue: {
1790
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1791
+ required: true;
1792
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1793
+ };
1794
+ searchPlaceholder: {
1795
+ type: import("vue").PropType<string>;
1796
+ default: string;
1797
+ };
1798
+ items: {
1799
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1800
+ required: true;
1801
+ default: () => any[];
1802
+ };
1803
+ selectedChildId: {
1804
+ type: import("vue").PropType<string | number>;
1805
+ default: any;
1806
+ };
1807
+ searchHandler: {
1808
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1809
+ default: any;
1810
+ };
1811
+ openId: {
1812
+ type: import("vue").PropType<string | number>;
1813
+ default: any;
1814
+ };
1815
+ selectedId: {
1816
+ type: import("vue").PropType<string | number>;
1817
+ default: any;
1818
+ };
1819
+ showSearch: {
1820
+ type: import("vue").PropType<boolean>;
1821
+ default: boolean;
1822
+ };
1823
+ }>> & {
1824
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1825
+ "onUpdate:openId"?: (id: string | number) => any;
1826
+ "onUpdate:selectedId"?: (id: string | number) => any;
1827
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1828
+ "onUpdate:search"?: (query: string) => any;
1829
+ onClearSearch?: () => any;
1830
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
1831
+ __isFragment?: never;
1832
+ __isTeleport?: never;
1833
+ __isSuspense?: never;
1834
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1835
+ search: {
1836
+ type: import("vue").PropType<string>;
1837
+ default: any;
1838
+ };
1839
+ testId: {
1840
+ type: import("vue").PropType<string>;
1841
+ default: string;
1842
+ };
1843
+ displayValue: {
1844
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1845
+ required: true;
1846
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1847
+ };
1848
+ searchPlaceholder: {
1849
+ type: import("vue").PropType<string>;
1850
+ default: string;
1851
+ };
1852
+ items: {
1853
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1854
+ required: true;
1855
+ default: () => any[];
1856
+ };
1857
+ selectedChildId: {
1858
+ type: import("vue").PropType<string | number>;
1859
+ default: any;
1860
+ };
1861
+ searchHandler: {
1862
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1863
+ default: any;
1864
+ };
1865
+ openId: {
1866
+ type: import("vue").PropType<string | number>;
1867
+ default: any;
1868
+ };
1869
+ selectedId: {
1870
+ type: import("vue").PropType<string | number>;
1871
+ default: any;
1872
+ };
1873
+ showSearch: {
1874
+ type: import("vue").PropType<boolean>;
1875
+ default: boolean;
1876
+ };
1877
+ }>> & {
1878
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1879
+ "onUpdate:openId"?: (id: string | number) => any;
1880
+ "onUpdate:selectedId"?: (id: string | number) => any;
1881
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1882
+ "onUpdate:search"?: (query: string) => any;
1883
+ onClearSearch?: () => any;
1884
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1885
+ "update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
1886
+ "update:openId": (id: string | number) => void;
1887
+ "update:selectedId": (id: string | number) => void;
1888
+ "update:selectedChildId": (id: string | number) => void;
1889
+ "update:search": (query: string) => void;
1890
+ clearSearch: () => void;
1891
+ }, string, {
1892
+ search: string;
1893
+ testId: string;
1894
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1895
+ searchPlaceholder: string;
1896
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1897
+ selectedChildId: string | number;
1898
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1899
+ openId: string | number;
1900
+ selectedId: string | number;
1901
+ showSearch: boolean;
1902
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1903
+ $slots: {
1904
+ menu?(_: {
1905
+ item: import("./components/sortableList/SortableList.types").SortableListItem;
1906
+ }): any;
1907
+ };
1017
1908
  });
1018
- DatePickerTypes: () => ({
1909
+ SortableListTypes: () => ({
1019
1910
  new (...args: any[]): {
1020
1911
  $: import("vue").ComponentInternalInstance;
1021
1912
  $data: {};
1022
1913
  $props: Partial<{
1914
+ search: string;
1023
1915
  testId: string;
1024
- modelValue: string | Date;
1025
- placeholder: string;
1026
- uniqueId: string | number;
1027
- allowFutureDates: boolean;
1028
- dateFormat: string;
1916
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1917
+ searchPlaceholder: string;
1918
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
1919
+ selectedChildId: string | number;
1920
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1921
+ openId: string | number;
1922
+ selectedId: string | number;
1923
+ showSearch: boolean;
1029
1924
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1925
+ search: {
1926
+ type: import("vue").PropType<string>;
1927
+ default: any;
1928
+ };
1030
1929
  testId: {
1031
1930
  type: import("vue").PropType<string>;
1032
1931
  default: string;
1033
1932
  };
1034
- modelValue: {
1035
- type: import("vue").PropType<string | Date>;
1036
- default: any;
1933
+ displayValue: {
1934
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1935
+ required: true;
1936
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1037
1937
  };
1038
- placeholder: {
1938
+ searchPlaceholder: {
1039
1939
  type: import("vue").PropType<string>;
1040
1940
  default: string;
1041
1941
  };
1042
- uniqueId: {
1942
+ items: {
1943
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
1944
+ required: true;
1945
+ default: () => any[];
1946
+ };
1947
+ selectedChildId: {
1043
1948
  type: import("vue").PropType<string | number>;
1044
- default: number;
1949
+ default: any;
1045
1950
  };
1046
- allowFutureDates: {
1951
+ searchHandler: {
1952
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1953
+ default: any;
1954
+ };
1955
+ openId: {
1956
+ type: import("vue").PropType<string | number>;
1957
+ default: any;
1958
+ };
1959
+ selectedId: {
1960
+ type: import("vue").PropType<string | number>;
1961
+ default: any;
1962
+ };
1963
+ showSearch: {
1047
1964
  type: import("vue").PropType<boolean>;
1048
1965
  default: boolean;
1049
1966
  };
1050
- dateFormat: {
1051
- type: import("vue").PropType<string>;
1052
- default: string;
1053
- };
1054
1967
  }>> & {
1055
- "onUpdate:modelValue"?: (val: string | Date) => any;
1056
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "modelValue" | "placeholder" | "uniqueId" | "allowFutureDates" | "dateFormat">;
1968
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1969
+ "onUpdate:openId"?: (id: string | number) => any;
1970
+ "onUpdate:selectedId"?: (id: string | number) => any;
1971
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
1972
+ "onUpdate:search"?: (query: string) => any;
1973
+ onClearSearch?: () => any;
1974
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
1057
1975
  $attrs: {
1058
1976
  [x: string]: unknown;
1059
1977
  };
@@ -1065,44 +1983,76 @@ declare const _default: {
1065
1983
  }>;
1066
1984
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1067
1985
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1068
- $emit: (event: "update:modelValue", val: string | Date) => void;
1986
+ $emit: ((event: "update:items", items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void) & ((event: "update:openId", id: string | number) => void) & ((event: "update:selectedId", id: string | number) => void) & ((event: "update:selectedChildId", id: string | number) => void) & ((event: "update:search", query: string) => void) & ((event: "clearSearch") => void);
1069
1987
  $el: any;
1070
1988
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1989
+ search: {
1990
+ type: import("vue").PropType<string>;
1991
+ default: any;
1992
+ };
1071
1993
  testId: {
1072
1994
  type: import("vue").PropType<string>;
1073
1995
  default: string;
1074
1996
  };
1075
- modelValue: {
1076
- type: import("vue").PropType<string | Date>;
1077
- default: any;
1997
+ displayValue: {
1998
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1999
+ required: true;
2000
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1078
2001
  };
1079
- placeholder: {
2002
+ searchPlaceholder: {
1080
2003
  type: import("vue").PropType<string>;
1081
2004
  default: string;
1082
2005
  };
1083
- uniqueId: {
2006
+ items: {
2007
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
2008
+ required: true;
2009
+ default: () => any[];
2010
+ };
2011
+ selectedChildId: {
1084
2012
  type: import("vue").PropType<string | number>;
1085
- default: number;
2013
+ default: any;
1086
2014
  };
1087
- allowFutureDates: {
2015
+ searchHandler: {
2016
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
2017
+ default: any;
2018
+ };
2019
+ openId: {
2020
+ type: import("vue").PropType<string | number>;
2021
+ default: any;
2022
+ };
2023
+ selectedId: {
2024
+ type: import("vue").PropType<string | number>;
2025
+ default: any;
2026
+ };
2027
+ showSearch: {
1088
2028
  type: import("vue").PropType<boolean>;
1089
2029
  default: boolean;
1090
2030
  };
1091
- dateFormat: {
1092
- type: import("vue").PropType<string>;
1093
- default: string;
1094
- };
1095
2031
  }>> & {
1096
- "onUpdate:modelValue"?: (val: string | Date) => any;
2032
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
2033
+ "onUpdate:openId"?: (id: string | number) => any;
2034
+ "onUpdate:selectedId"?: (id: string | number) => any;
2035
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
2036
+ "onUpdate:search"?: (query: string) => any;
2037
+ onClearSearch?: () => any;
1097
2038
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1098
- "update:modelValue": (val: string | Date) => void;
2039
+ "update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
2040
+ "update:openId": (id: string | number) => void;
2041
+ "update:selectedId": (id: string | number) => void;
2042
+ "update:selectedChildId": (id: string | number) => void;
2043
+ "update:search": (query: string) => void;
2044
+ clearSearch: () => void;
1099
2045
  }, string, {
2046
+ search: string;
1100
2047
  testId: string;
1101
- modelValue: string | Date;
1102
- placeholder: string;
1103
- uniqueId: string | number;
1104
- allowFutureDates: boolean;
1105
- dateFormat: string;
2048
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
2049
+ searchPlaceholder: string;
2050
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
2051
+ selectedChildId: string | number;
2052
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
2053
+ openId: string | number;
2054
+ selectedId: string | number;
2055
+ showSearch: boolean;
1106
2056
  }, {}, string> & {
1107
2057
  beforeCreate?: (() => void) | (() => void)[];
1108
2058
  created?: (() => void) | (() => void)[];
@@ -1124,76 +2074,131 @@ declare const _default: {
1124
2074
  $nextTick: typeof import("vue").nextTick;
1125
2075
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
1126
2076
  } & Readonly<import("vue").ExtractPropTypes<{
2077
+ search: {
2078
+ type: import("vue").PropType<string>;
2079
+ default: any;
2080
+ };
1127
2081
  testId: {
1128
2082
  type: import("vue").PropType<string>;
1129
2083
  default: string;
1130
2084
  };
1131
- modelValue: {
1132
- type: import("vue").PropType<string | Date>;
1133
- default: any;
2085
+ displayValue: {
2086
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
2087
+ required: true;
2088
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1134
2089
  };
1135
- placeholder: {
2090
+ searchPlaceholder: {
1136
2091
  type: import("vue").PropType<string>;
1137
2092
  default: string;
1138
2093
  };
1139
- uniqueId: {
2094
+ items: {
2095
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
2096
+ required: true;
2097
+ default: () => any[];
2098
+ };
2099
+ selectedChildId: {
1140
2100
  type: import("vue").PropType<string | number>;
1141
- default: number;
2101
+ default: any;
1142
2102
  };
1143
- allowFutureDates: {
2103
+ searchHandler: {
2104
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
2105
+ default: any;
2106
+ };
2107
+ openId: {
2108
+ type: import("vue").PropType<string | number>;
2109
+ default: any;
2110
+ };
2111
+ selectedId: {
2112
+ type: import("vue").PropType<string | number>;
2113
+ default: any;
2114
+ };
2115
+ showSearch: {
1144
2116
  type: import("vue").PropType<boolean>;
1145
2117
  default: boolean;
1146
2118
  };
1147
- dateFormat: {
1148
- type: import("vue").PropType<string>;
1149
- default: string;
1150
- };
1151
2119
  }>> & {
1152
- "onUpdate:modelValue"?: (val: string | Date) => any;
2120
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
2121
+ "onUpdate:openId"?: (id: string | number) => any;
2122
+ "onUpdate:selectedId"?: (id: string | number) => any;
2123
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
2124
+ "onUpdate:search"?: (query: string) => any;
2125
+ onClearSearch?: () => any;
1153
2126
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
1154
2127
  __isFragment?: never;
1155
2128
  __isTeleport?: never;
1156
2129
  __isSuspense?: never;
1157
2130
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2131
+ search: {
2132
+ type: import("vue").PropType<string>;
2133
+ default: any;
2134
+ };
1158
2135
  testId: {
1159
2136
  type: import("vue").PropType<string>;
1160
2137
  default: string;
1161
2138
  };
1162
- modelValue: {
1163
- type: import("vue").PropType<string | Date>;
1164
- default: any;
2139
+ displayValue: {
2140
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
2141
+ required: true;
2142
+ default: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1165
2143
  };
1166
- placeholder: {
2144
+ searchPlaceholder: {
1167
2145
  type: import("vue").PropType<string>;
1168
2146
  default: string;
1169
2147
  };
1170
- uniqueId: {
2148
+ items: {
2149
+ type: import("vue").PropType<import("./components/sortableList/SortableList.types").SortableListItem[]>;
2150
+ required: true;
2151
+ default: () => any[];
2152
+ };
2153
+ selectedChildId: {
1171
2154
  type: import("vue").PropType<string | number>;
1172
- default: number;
2155
+ default: any;
1173
2156
  };
1174
- allowFutureDates: {
2157
+ searchHandler: {
2158
+ type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
2159
+ default: any;
2160
+ };
2161
+ openId: {
2162
+ type: import("vue").PropType<string | number>;
2163
+ default: any;
2164
+ };
2165
+ selectedId: {
2166
+ type: import("vue").PropType<string | number>;
2167
+ default: any;
2168
+ };
2169
+ showSearch: {
1175
2170
  type: import("vue").PropType<boolean>;
1176
2171
  default: boolean;
1177
2172
  };
1178
- dateFormat: {
1179
- type: import("vue").PropType<string>;
1180
- default: string;
1181
- };
1182
2173
  }>> & {
1183
- "onUpdate:modelValue"?: (val: string | Date) => any;
2174
+ "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
2175
+ "onUpdate:openId"?: (id: string | number) => any;
2176
+ "onUpdate:selectedId"?: (id: string | number) => any;
2177
+ "onUpdate:selectedChildId"?: (id: string | number) => any;
2178
+ "onUpdate:search"?: (query: string) => any;
2179
+ onClearSearch?: () => any;
1184
2180
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1185
- "update:modelValue": (val: string | Date) => void;
2181
+ "update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
2182
+ "update:openId": (id: string | number) => void;
2183
+ "update:selectedId": (id: string | number) => void;
2184
+ "update:selectedChildId": (id: string | number) => void;
2185
+ "update:search": (query: string) => void;
2186
+ clearSearch: () => void;
1186
2187
  }, string, {
2188
+ search: string;
1187
2189
  testId: string;
1188
- modelValue: string | Date;
1189
- placeholder: string;
1190
- uniqueId: string | number;
1191
- allowFutureDates: boolean;
1192
- dateFormat: string;
2190
+ displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
2191
+ searchPlaceholder: string;
2192
+ items: import("./components/sortableList/SortableList.types").SortableListItem[];
2193
+ selectedChildId: string | number;
2194
+ searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
2195
+ openId: string | number;
2196
+ selectedId: string | number;
2197
+ showSearch: boolean;
1193
2198
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1194
2199
  $slots: {
1195
- default?(_: {
1196
- formattedDate: any;
2200
+ menu?(_: {
2201
+ item: import("./components/sortableList/SortableList.types").SortableListItem;
1197
2202
  }): any;
1198
2203
  };
1199
2204
  }))[];
@@ -2419,6 +3424,10 @@ declare const _default: {
2419
3424
  type: import("vue").PropType<string>;
2420
3425
  default: string;
2421
3426
  };
3427
+ maxLengthCounterPosition: {
3428
+ type: import("vue").PropType<"inside" | "outside">;
3429
+ default: string;
3430
+ };
2422
3431
  feedbackText: {
2423
3432
  type: import("vue").PropType<string>;
2424
3433
  default: string;
@@ -2478,6 +3487,10 @@ declare const _default: {
2478
3487
  type: import("vue").PropType<string>;
2479
3488
  default: string;
2480
3489
  };
3490
+ maxLengthCounterPosition: {
3491
+ type: import("vue").PropType<"inside" | "outside">;
3492
+ default: string;
3493
+ };
2481
3494
  feedbackText: {
2482
3495
  type: import("vue").PropType<string>;
2483
3496
  default: string;
@@ -2504,6 +3517,7 @@ declare const _default: {
2504
3517
  maxLength: number;
2505
3518
  modelValue: string;
2506
3519
  placeholder: string;
3520
+ maxLengthCounterPosition: "inside" | "outside";
2507
3521
  feedbackText: string;
2508
3522
  feedbackVariant: "success" | "warning" | "error";
2509
3523
  showFeedbackTextIcon: boolean;
@@ -2553,6 +3567,10 @@ declare const _default: {
2553
3567
  type: import("vue").PropType<string>;
2554
3568
  default: string;
2555
3569
  };
3570
+ maxLengthCounterPosition: {
3571
+ type: import("vue").PropType<"inside" | "outside">;
3572
+ default: string;
3573
+ };
2556
3574
  feedbackText: {
2557
3575
  type: import("vue").PropType<string>;
2558
3576
  default: string;
@@ -2612,6 +3630,10 @@ declare const _default: {
2612
3630
  type: import("vue").PropType<string>;
2613
3631
  default: string;
2614
3632
  };
3633
+ maxLengthCounterPosition: {
3634
+ type: import("vue").PropType<"inside" | "outside">;
3635
+ default: string;
3636
+ };
2615
3637
  feedbackText: {
2616
3638
  type: import("vue").PropType<string>;
2617
3639
  default: string;
@@ -2638,6 +3660,7 @@ declare const _default: {
2638
3660
  maxLength: number;
2639
3661
  modelValue: string;
2640
3662
  placeholder: string;
3663
+ maxLengthCounterPosition: "inside" | "outside";
2641
3664
  feedbackText: string;
2642
3665
  feedbackVariant: "success" | "warning" | "error";
2643
3666
  showFeedbackTextIcon: boolean;
@@ -10634,6 +11657,7 @@ declare const _default: {
10634
11657
  onlyDigits: boolean;
10635
11658
  prefix: string;
10636
11659
  suffix: string;
11660
+ maxLengthCounterPosition: "inside" | "outside";
10637
11661
  showApply: boolean;
10638
11662
  inlineError: boolean;
10639
11663
  inlineErrorText: string;
@@ -10719,6 +11743,10 @@ declare const _default: {
10719
11743
  type: import("vue").PropType<string>;
10720
11744
  default: string;
10721
11745
  };
11746
+ maxLengthCounterPosition: {
11747
+ type: import("vue").PropType<"inside" | "outside">;
11748
+ default: string;
11749
+ };
10722
11750
  showApply: {
10723
11751
  type: import("vue").PropType<boolean>;
10724
11752
  default: boolean;
@@ -10754,7 +11782,7 @@ declare const _default: {
10754
11782
  }>> & {
10755
11783
  "onUpdate:modelValue"?: (value: string | number) => any;
10756
11784
  onApply?: () => any;
10757
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
11785
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "maxLengthCounterPosition" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
10758
11786
  $attrs: {
10759
11787
  [x: string]: unknown;
10760
11788
  };
@@ -10845,6 +11873,10 @@ declare const _default: {
10845
11873
  type: import("vue").PropType<string>;
10846
11874
  default: string;
10847
11875
  };
11876
+ maxLengthCounterPosition: {
11877
+ type: import("vue").PropType<"inside" | "outside">;
11878
+ default: string;
11879
+ };
10848
11880
  showApply: {
10849
11881
  type: import("vue").PropType<boolean>;
10850
11882
  default: boolean;
@@ -10905,6 +11937,7 @@ declare const _default: {
10905
11937
  onlyDigits: boolean;
10906
11938
  prefix: string;
10907
11939
  suffix: string;
11940
+ maxLengthCounterPosition: "inside" | "outside";
10908
11941
  showApply: boolean;
10909
11942
  inlineError: boolean;
10910
11943
  inlineErrorText: string;
@@ -11010,6 +12043,10 @@ declare const _default: {
11010
12043
  type: import("vue").PropType<string>;
11011
12044
  default: string;
11012
12045
  };
12046
+ maxLengthCounterPosition: {
12047
+ type: import("vue").PropType<"inside" | "outside">;
12048
+ default: string;
12049
+ };
11013
12050
  showApply: {
11014
12051
  type: import("vue").PropType<boolean>;
11015
12052
  default: boolean;
@@ -11128,6 +12165,10 @@ declare const _default: {
11128
12165
  type: import("vue").PropType<string>;
11129
12166
  default: string;
11130
12167
  };
12168
+ maxLengthCounterPosition: {
12169
+ type: import("vue").PropType<"inside" | "outside">;
12170
+ default: string;
12171
+ };
11131
12172
  showApply: {
11132
12173
  type: import("vue").PropType<boolean>;
11133
12174
  default: boolean;
@@ -11188,6 +12229,7 @@ declare const _default: {
11188
12229
  onlyDigits: boolean;
11189
12230
  prefix: string;
11190
12231
  suffix: string;
12232
+ maxLengthCounterPosition: "inside" | "outside";
11191
12233
  showApply: boolean;
11192
12234
  inlineError: boolean;
11193
12235
  inlineErrorText: string;
@@ -11226,6 +12268,7 @@ declare const _default: {
11226
12268
  onlyDigits: boolean;
11227
12269
  prefix: string;
11228
12270
  suffix: string;
12271
+ maxLengthCounterPosition: "inside" | "outside";
11229
12272
  showApply: boolean;
11230
12273
  inlineError: boolean;
11231
12274
  inlineErrorText: string;
@@ -11311,6 +12354,10 @@ declare const _default: {
11311
12354
  type: import("vue").PropType<string>;
11312
12355
  default: string;
11313
12356
  };
12357
+ maxLengthCounterPosition: {
12358
+ type: import("vue").PropType<"inside" | "outside">;
12359
+ default: string;
12360
+ };
11314
12361
  showApply: {
11315
12362
  type: import("vue").PropType<boolean>;
11316
12363
  default: boolean;
@@ -11346,7 +12393,7 @@ declare const _default: {
11346
12393
  }>> & {
11347
12394
  "onUpdate:modelValue"?: (value: string | number) => any;
11348
12395
  onApply?: () => any;
11349
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
12396
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "maxLengthCounterPosition" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
11350
12397
  $attrs: {
11351
12398
  [x: string]: unknown;
11352
12399
  };
@@ -11437,6 +12484,10 @@ declare const _default: {
11437
12484
  type: import("vue").PropType<string>;
11438
12485
  default: string;
11439
12486
  };
12487
+ maxLengthCounterPosition: {
12488
+ type: import("vue").PropType<"inside" | "outside">;
12489
+ default: string;
12490
+ };
11440
12491
  showApply: {
11441
12492
  type: import("vue").PropType<boolean>;
11442
12493
  default: boolean;
@@ -11497,6 +12548,7 @@ declare const _default: {
11497
12548
  onlyDigits: boolean;
11498
12549
  prefix: string;
11499
12550
  suffix: string;
12551
+ maxLengthCounterPosition: "inside" | "outside";
11500
12552
  showApply: boolean;
11501
12553
  inlineError: boolean;
11502
12554
  inlineErrorText: string;
@@ -11602,6 +12654,10 @@ declare const _default: {
11602
12654
  type: import("vue").PropType<string>;
11603
12655
  default: string;
11604
12656
  };
12657
+ maxLengthCounterPosition: {
12658
+ type: import("vue").PropType<"inside" | "outside">;
12659
+ default: string;
12660
+ };
11605
12661
  showApply: {
11606
12662
  type: import("vue").PropType<boolean>;
11607
12663
  default: boolean;
@@ -11720,6 +12776,10 @@ declare const _default: {
11720
12776
  type: import("vue").PropType<string>;
11721
12777
  default: string;
11722
12778
  };
12779
+ maxLengthCounterPosition: {
12780
+ type: import("vue").PropType<"inside" | "outside">;
12781
+ default: string;
12782
+ };
11723
12783
  showApply: {
11724
12784
  type: import("vue").PropType<boolean>;
11725
12785
  default: boolean;
@@ -11780,6 +12840,7 @@ declare const _default: {
11780
12840
  onlyDigits: boolean;
11781
12841
  prefix: string;
11782
12842
  suffix: string;
12843
+ maxLengthCounterPosition: "inside" | "outside";
11783
12844
  showApply: boolean;
11784
12845
  inlineError: boolean;
11785
12846
  inlineErrorText: string;
@@ -13944,6 +15005,8 @@ declare const _default: {
13944
15005
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
13945
15006
  valueToCopy: string;
13946
15007
  disabledOptionKey: string;
15008
+ optionTwoLinesVariant: "horizontal" | "vertical";
15009
+ optionTwoLinesKey: string;
13947
15010
  fullWidth: boolean;
13948
15011
  optionsListWidth: string;
13949
15012
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -14132,6 +15195,14 @@ declare const _default: {
14132
15195
  type: import("vue").PropType<string>;
14133
15196
  default: string;
14134
15197
  };
15198
+ optionTwoLinesVariant: {
15199
+ type: import("vue").PropType<"horizontal" | "vertical">;
15200
+ default: any;
15201
+ };
15202
+ optionTwoLinesKey: {
15203
+ type: import("vue").PropType<string>;
15204
+ default: any;
15205
+ };
14135
15206
  fullWidth: {
14136
15207
  type: import("vue").PropType<boolean>;
14137
15208
  default: boolean;
@@ -14161,7 +15232,7 @@ declare const _default: {
14161
15232
  "onUpdate:isOpen"?: (value: unknown) => any;
14162
15233
  onOpened?: () => any;
14163
15234
  onClosed?: () => any;
14164
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
15235
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
14165
15236
  $attrs: {
14166
15237
  [x: string]: unknown;
14167
15238
  };
@@ -14358,6 +15429,14 @@ declare const _default: {
14358
15429
  type: import("vue").PropType<string>;
14359
15430
  default: string;
14360
15431
  };
15432
+ optionTwoLinesVariant: {
15433
+ type: import("vue").PropType<"horizontal" | "vertical">;
15434
+ default: any;
15435
+ };
15436
+ optionTwoLinesKey: {
15437
+ type: import("vue").PropType<string>;
15438
+ default: any;
15439
+ };
14361
15440
  fullWidth: {
14362
15441
  type: import("vue").PropType<boolean>;
14363
15442
  default: boolean;
@@ -14442,6 +15521,8 @@ declare const _default: {
14442
15521
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
14443
15522
  valueToCopy: string;
14444
15523
  disabledOptionKey: string;
15524
+ optionTwoLinesVariant: "horizontal" | "vertical";
15525
+ optionTwoLinesKey: string;
14445
15526
  fullWidth: boolean;
14446
15527
  optionsListWidth: string;
14447
15528
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -14650,6 +15731,14 @@ declare const _default: {
14650
15731
  type: import("vue").PropType<string>;
14651
15732
  default: string;
14652
15733
  };
15734
+ optionTwoLinesVariant: {
15735
+ type: import("vue").PropType<"horizontal" | "vertical">;
15736
+ default: any;
15737
+ };
15738
+ optionTwoLinesKey: {
15739
+ type: import("vue").PropType<string>;
15740
+ default: any;
15741
+ };
14653
15742
  fullWidth: {
14654
15743
  type: import("vue").PropType<boolean>;
14655
15744
  default: boolean;
@@ -14869,6 +15958,14 @@ declare const _default: {
14869
15958
  type: import("vue").PropType<string>;
14870
15959
  default: string;
14871
15960
  };
15961
+ optionTwoLinesVariant: {
15962
+ type: import("vue").PropType<"horizontal" | "vertical">;
15963
+ default: any;
15964
+ };
15965
+ optionTwoLinesKey: {
15966
+ type: import("vue").PropType<string>;
15967
+ default: any;
15968
+ };
14872
15969
  fullWidth: {
14873
15970
  type: import("vue").PropType<boolean>;
14874
15971
  default: boolean;
@@ -14953,6 +16050,8 @@ declare const _default: {
14953
16050
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
14954
16051
  valueToCopy: string;
14955
16052
  disabledOptionKey: string;
16053
+ optionTwoLinesVariant: "horizontal" | "vertical";
16054
+ optionTwoLinesKey: string;
14956
16055
  fullWidth: boolean;
14957
16056
  optionsListWidth: string;
14958
16057
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -17318,6 +18417,8 @@ declare const _default: {
17318
18417
  disabled: boolean;
17319
18418
  active: boolean;
17320
18419
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18420
+ optionTwoLinesVariant: "horizontal" | "vertical";
18421
+ optionTwoLinesKey: string;
17321
18422
  isIndeterminate: boolean;
17322
18423
  subtitle: string;
17323
18424
  selectAllOption: boolean;
@@ -17344,6 +18445,14 @@ declare const _default: {
17344
18445
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
17345
18446
  default: string;
17346
18447
  };
18448
+ optionTwoLinesVariant: {
18449
+ type: import("vue").PropType<"horizontal" | "vertical">;
18450
+ default: any;
18451
+ };
18452
+ optionTwoLinesKey: {
18453
+ type: import("vue").PropType<string>;
18454
+ default: any;
18455
+ };
17347
18456
  isIndeterminate: {
17348
18457
  type: import("vue").PropType<boolean>;
17349
18458
  default: boolean;
@@ -17383,7 +18492,7 @@ declare const _default: {
17383
18492
  selectedProp: {
17384
18493
  type: import("vue").PropType<boolean>;
17385
18494
  };
17386
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
18495
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
17387
18496
  $attrs: {
17388
18497
  [x: string]: unknown;
17389
18498
  };
@@ -17414,6 +18523,14 @@ declare const _default: {
17414
18523
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
17415
18524
  default: string;
17416
18525
  };
18526
+ optionTwoLinesVariant: {
18527
+ type: import("vue").PropType<"horizontal" | "vertical">;
18528
+ default: any;
18529
+ };
18530
+ optionTwoLinesKey: {
18531
+ type: import("vue").PropType<string>;
18532
+ default: any;
18533
+ };
17417
18534
  isIndeterminate: {
17418
18535
  type: import("vue").PropType<boolean>;
17419
18536
  default: boolean;
@@ -17458,6 +18575,8 @@ declare const _default: {
17458
18575
  disabled: boolean;
17459
18576
  active: boolean;
17460
18577
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18578
+ optionTwoLinesVariant: "horizontal" | "vertical";
18579
+ optionTwoLinesKey: string;
17461
18580
  isIndeterminate: boolean;
17462
18581
  subtitle: string;
17463
18582
  selectAllOption: boolean;
@@ -17504,6 +18623,14 @@ declare const _default: {
17504
18623
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
17505
18624
  default: string;
17506
18625
  };
18626
+ optionTwoLinesVariant: {
18627
+ type: import("vue").PropType<"horizontal" | "vertical">;
18628
+ default: any;
18629
+ };
18630
+ optionTwoLinesKey: {
18631
+ type: import("vue").PropType<string>;
18632
+ default: any;
18633
+ };
17507
18634
  isIndeterminate: {
17508
18635
  type: import("vue").PropType<boolean>;
17509
18636
  default: boolean;
@@ -17564,6 +18691,14 @@ declare const _default: {
17564
18691
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
17565
18692
  default: string;
17566
18693
  };
18694
+ optionTwoLinesVariant: {
18695
+ type: import("vue").PropType<"horizontal" | "vertical">;
18696
+ default: any;
18697
+ };
18698
+ optionTwoLinesKey: {
18699
+ type: import("vue").PropType<string>;
18700
+ default: any;
18701
+ };
17567
18702
  isIndeterminate: {
17568
18703
  type: import("vue").PropType<boolean>;
17569
18704
  default: boolean;
@@ -17608,6 +18743,8 @@ declare const _default: {
17608
18743
  disabled: boolean;
17609
18744
  active: boolean;
17610
18745
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18746
+ optionTwoLinesVariant: "horizontal" | "vertical";
18747
+ optionTwoLinesKey: string;
17611
18748
  isIndeterminate: boolean;
17612
18749
  subtitle: string;
17613
18750
  selectAllOption: boolean;
@@ -17782,6 +18919,8 @@ declare const _default: {
17782
18919
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
17783
18920
  valueToCopy: string;
17784
18921
  disabledOptionKey: string;
18922
+ optionTwoLinesVariant: "horizontal" | "vertical";
18923
+ optionTwoLinesKey: string;
17785
18924
  fullWidth: boolean;
17786
18925
  optionsListWidth: string;
17787
18926
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -17970,6 +19109,14 @@ declare const _default: {
17970
19109
  type: import("vue").PropType<string>;
17971
19110
  default: string;
17972
19111
  };
19112
+ optionTwoLinesVariant: {
19113
+ type: import("vue").PropType<"horizontal" | "vertical">;
19114
+ default: any;
19115
+ };
19116
+ optionTwoLinesKey: {
19117
+ type: import("vue").PropType<string>;
19118
+ default: any;
19119
+ };
17973
19120
  fullWidth: {
17974
19121
  type: import("vue").PropType<boolean>;
17975
19122
  default: boolean;
@@ -17999,7 +19146,7 @@ declare const _default: {
17999
19146
  "onUpdate:isOpen"?: (value: unknown) => any;
18000
19147
  onOpened?: () => any;
18001
19148
  onClosed?: () => any;
18002
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
19149
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
18003
19150
  $attrs: {
18004
19151
  [x: string]: unknown;
18005
19152
  };
@@ -18196,6 +19343,14 @@ declare const _default: {
18196
19343
  type: import("vue").PropType<string>;
18197
19344
  default: string;
18198
19345
  };
19346
+ optionTwoLinesVariant: {
19347
+ type: import("vue").PropType<"horizontal" | "vertical">;
19348
+ default: any;
19349
+ };
19350
+ optionTwoLinesKey: {
19351
+ type: import("vue").PropType<string>;
19352
+ default: any;
19353
+ };
18199
19354
  fullWidth: {
18200
19355
  type: import("vue").PropType<boolean>;
18201
19356
  default: boolean;
@@ -18280,6 +19435,8 @@ declare const _default: {
18280
19435
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18281
19436
  valueToCopy: string;
18282
19437
  disabledOptionKey: string;
19438
+ optionTwoLinesVariant: "horizontal" | "vertical";
19439
+ optionTwoLinesKey: string;
18283
19440
  fullWidth: boolean;
18284
19441
  optionsListWidth: string;
18285
19442
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -18488,6 +19645,14 @@ declare const _default: {
18488
19645
  type: import("vue").PropType<string>;
18489
19646
  default: string;
18490
19647
  };
19648
+ optionTwoLinesVariant: {
19649
+ type: import("vue").PropType<"horizontal" | "vertical">;
19650
+ default: any;
19651
+ };
19652
+ optionTwoLinesKey: {
19653
+ type: import("vue").PropType<string>;
19654
+ default: any;
19655
+ };
18491
19656
  fullWidth: {
18492
19657
  type: import("vue").PropType<boolean>;
18493
19658
  default: boolean;
@@ -18707,6 +19872,14 @@ declare const _default: {
18707
19872
  type: import("vue").PropType<string>;
18708
19873
  default: string;
18709
19874
  };
19875
+ optionTwoLinesVariant: {
19876
+ type: import("vue").PropType<"horizontal" | "vertical">;
19877
+ default: any;
19878
+ };
19879
+ optionTwoLinesKey: {
19880
+ type: import("vue").PropType<string>;
19881
+ default: any;
19882
+ };
18710
19883
  fullWidth: {
18711
19884
  type: import("vue").PropType<boolean>;
18712
19885
  default: boolean;
@@ -18791,6 +19964,8 @@ declare const _default: {
18791
19964
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18792
19965
  valueToCopy: string;
18793
19966
  disabledOptionKey: string;
19967
+ optionTwoLinesVariant: "horizontal" | "vertical";
19968
+ optionTwoLinesKey: string;
18794
19969
  fullWidth: boolean;
18795
19970
  optionsListWidth: string;
18796
19971
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -19072,6 +20247,8 @@ declare const _default: {
19072
20247
  disabled: boolean;
19073
20248
  active: boolean;
19074
20249
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20250
+ optionTwoLinesVariant: "horizontal" | "vertical";
20251
+ optionTwoLinesKey: string;
19075
20252
  isIndeterminate: boolean;
19076
20253
  subtitle: string;
19077
20254
  selectAllOption: boolean;
@@ -19098,6 +20275,14 @@ declare const _default: {
19098
20275
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19099
20276
  default: string;
19100
20277
  };
20278
+ optionTwoLinesVariant: {
20279
+ type: import("vue").PropType<"horizontal" | "vertical">;
20280
+ default: any;
20281
+ };
20282
+ optionTwoLinesKey: {
20283
+ type: import("vue").PropType<string>;
20284
+ default: any;
20285
+ };
19101
20286
  isIndeterminate: {
19102
20287
  type: import("vue").PropType<boolean>;
19103
20288
  default: boolean;
@@ -19137,7 +20322,7 @@ declare const _default: {
19137
20322
  selectedProp: {
19138
20323
  type: import("vue").PropType<boolean>;
19139
20324
  };
19140
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
20325
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
19141
20326
  $attrs: {
19142
20327
  [x: string]: unknown;
19143
20328
  };
@@ -19168,6 +20353,14 @@ declare const _default: {
19168
20353
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19169
20354
  default: string;
19170
20355
  };
20356
+ optionTwoLinesVariant: {
20357
+ type: import("vue").PropType<"horizontal" | "vertical">;
20358
+ default: any;
20359
+ };
20360
+ optionTwoLinesKey: {
20361
+ type: import("vue").PropType<string>;
20362
+ default: any;
20363
+ };
19171
20364
  isIndeterminate: {
19172
20365
  type: import("vue").PropType<boolean>;
19173
20366
  default: boolean;
@@ -19212,6 +20405,8 @@ declare const _default: {
19212
20405
  disabled: boolean;
19213
20406
  active: boolean;
19214
20407
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20408
+ optionTwoLinesVariant: "horizontal" | "vertical";
20409
+ optionTwoLinesKey: string;
19215
20410
  isIndeterminate: boolean;
19216
20411
  subtitle: string;
19217
20412
  selectAllOption: boolean;
@@ -19258,6 +20453,14 @@ declare const _default: {
19258
20453
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19259
20454
  default: string;
19260
20455
  };
20456
+ optionTwoLinesVariant: {
20457
+ type: import("vue").PropType<"horizontal" | "vertical">;
20458
+ default: any;
20459
+ };
20460
+ optionTwoLinesKey: {
20461
+ type: import("vue").PropType<string>;
20462
+ default: any;
20463
+ };
19261
20464
  isIndeterminate: {
19262
20465
  type: import("vue").PropType<boolean>;
19263
20466
  default: boolean;
@@ -19318,6 +20521,14 @@ declare const _default: {
19318
20521
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19319
20522
  default: string;
19320
20523
  };
20524
+ optionTwoLinesVariant: {
20525
+ type: import("vue").PropType<"horizontal" | "vertical">;
20526
+ default: any;
20527
+ };
20528
+ optionTwoLinesKey: {
20529
+ type: import("vue").PropType<string>;
20530
+ default: any;
20531
+ };
19321
20532
  isIndeterminate: {
19322
20533
  type: import("vue").PropType<boolean>;
19323
20534
  default: boolean;
@@ -19362,6 +20573,8 @@ declare const _default: {
19362
20573
  disabled: boolean;
19363
20574
  active: boolean;
19364
20575
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20576
+ optionTwoLinesVariant: "horizontal" | "vertical";
20577
+ optionTwoLinesKey: string;
19365
20578
  isIndeterminate: boolean;
19366
20579
  subtitle: string;
19367
20580
  selectAllOption: boolean;
@@ -20803,3 +22016,4 @@ export * from '@/composables/useFormValidation';
20803
22016
  export * from '@/components/banner';
20804
22017
  export * from '@/components/alert';
20805
22018
  export * from '@/components/autocomplete';
22019
+ export * from '@/components/chart';