@ironsource/shared-ui 2.1.7-rc.5 → 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.
- package/Autocomplete.vue_vue_type_style_index_0_scoped_e361f9fd_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_938772ee_lang.css +1 -0
- package/FieldMaxLength.vue_vue_type_style_index_0_scoped_47877984_lang.css +1 -0
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_cc2adbf5_lang.css +1 -0
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_bd6145ce_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_b6a06f00_lang.css +1 -0
- package/Popover.vue_vue_type_style_index_0_scoped_c607b770_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_0_scoped_c54cd089_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_1_lang.css +1 -0
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_4114ef89_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_eb472aa3_lang.css +1 -0
- package/components/autocomplete/Autocomplete.vue.d.ts +5 -0
- package/components/autocomplete/Autocomplete.vue.js +2 -2
- package/components/autocomplete/Autocomplete.vue2.js +57 -45
- package/components/autocomplete/index.d.ts +20 -1
- package/components/dropdown/v4/DropdownV4.vue.d.ts +10 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +151 -147
- package/components/dropdown/v4/OptionV4.vue.d.ts +10 -0
- package/components/dropdown/v4/OptionV4.vue.js +2 -2
- package/components/dropdown/v4/OptionV4.vue2.js +70 -53
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +14 -0
- package/components/dropdown/v4/index.d.ts +78 -2
- package/components/includeExclude/IncludeExclude.vue.js +4 -4
- package/components/includeExclude/IncludeExclude.vue2.js +2 -2
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +4 -4
- package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +2 -2
- package/components/input/v4/TextField.vue.d.ts +6 -1
- package/components/input/v4/TextField.vue.js +3 -3
- package/components/input/v4/TextField.vue2.js +95 -90
- package/components/input/v4/index.d.ts +20 -1
- package/components/popover/common/Popover.common.d.ts +6 -0
- package/components/popover/common/Popover.common.js +17 -0
- package/components/popover/v3/Popover.vue.js +8 -0
- package/components/popover/{Popover.vue2.js → v3/Popover.vue2.js} +1 -1
- package/components/popover/v4/PopoverV4.vue.d.ts +73 -0
- package/components/popover/v4/PopoverV4.vue.js +7 -0
- package/components/popover/v4/PopoverV4.vue2.js +54 -0
- package/components/popover/v4/index.d.ts +209 -0
- package/components/popover/v4/index.js +6 -0
- package/components/shared/FieldMaxLength.vue.js +3 -3
- package/components/shared/FieldMaxLength.vue2.js +2 -2
- package/components/shared/commonTypes.d.ts +2 -0
- package/components/textArea/v4/TextAreaV4.vue.d.ts +6 -1
- package/components/textArea/v4/TextAreaV4.vue.js +3 -3
- package/components/textArea/v4/TextAreaV4.vue2.js +18 -12
- package/components/textArea/v4/index.d.ts +9 -0
- package/index.d.ts +628 -7
- package/index.js +70 -70
- package/package.json +7 -3
- package/Autocomplete.vue_vue_type_style_index_0_scoped_a7bfd237_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +0 -1
- package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +0 -1
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_fb054d88_lang.css +0 -1
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_5764fd61_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +0 -1
- package/Popover.vue_vue_type_style_index_0_scoped_25eb53db_lang.css +0 -1
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +0 -1
- package/components/popover/Popover.vue.js +0 -8
- /package/components/popover/{Popover.vue.d.ts → v3/Popover.vue.d.ts} +0 -0
- /package/components/popover/{index.d.ts → v3/index.d.ts} +0 -0
- /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;
|
|
@@ -3011,6 +3424,10 @@ declare const _default: {
|
|
|
3011
3424
|
type: import("vue").PropType<string>;
|
|
3012
3425
|
default: string;
|
|
3013
3426
|
};
|
|
3427
|
+
maxLengthCounterPosition: {
|
|
3428
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
3429
|
+
default: string;
|
|
3430
|
+
};
|
|
3014
3431
|
feedbackText: {
|
|
3015
3432
|
type: import("vue").PropType<string>;
|
|
3016
3433
|
default: string;
|
|
@@ -3070,6 +3487,10 @@ declare const _default: {
|
|
|
3070
3487
|
type: import("vue").PropType<string>;
|
|
3071
3488
|
default: string;
|
|
3072
3489
|
};
|
|
3490
|
+
maxLengthCounterPosition: {
|
|
3491
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
3492
|
+
default: string;
|
|
3493
|
+
};
|
|
3073
3494
|
feedbackText: {
|
|
3074
3495
|
type: import("vue").PropType<string>;
|
|
3075
3496
|
default: string;
|
|
@@ -3096,6 +3517,7 @@ declare const _default: {
|
|
|
3096
3517
|
maxLength: number;
|
|
3097
3518
|
modelValue: string;
|
|
3098
3519
|
placeholder: string;
|
|
3520
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
3099
3521
|
feedbackText: string;
|
|
3100
3522
|
feedbackVariant: "success" | "warning" | "error";
|
|
3101
3523
|
showFeedbackTextIcon: boolean;
|
|
@@ -3145,6 +3567,10 @@ declare const _default: {
|
|
|
3145
3567
|
type: import("vue").PropType<string>;
|
|
3146
3568
|
default: string;
|
|
3147
3569
|
};
|
|
3570
|
+
maxLengthCounterPosition: {
|
|
3571
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
3572
|
+
default: string;
|
|
3573
|
+
};
|
|
3148
3574
|
feedbackText: {
|
|
3149
3575
|
type: import("vue").PropType<string>;
|
|
3150
3576
|
default: string;
|
|
@@ -3204,6 +3630,10 @@ declare const _default: {
|
|
|
3204
3630
|
type: import("vue").PropType<string>;
|
|
3205
3631
|
default: string;
|
|
3206
3632
|
};
|
|
3633
|
+
maxLengthCounterPosition: {
|
|
3634
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
3635
|
+
default: string;
|
|
3636
|
+
};
|
|
3207
3637
|
feedbackText: {
|
|
3208
3638
|
type: import("vue").PropType<string>;
|
|
3209
3639
|
default: string;
|
|
@@ -3230,6 +3660,7 @@ declare const _default: {
|
|
|
3230
3660
|
maxLength: number;
|
|
3231
3661
|
modelValue: string;
|
|
3232
3662
|
placeholder: string;
|
|
3663
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
3233
3664
|
feedbackText: string;
|
|
3234
3665
|
feedbackVariant: "success" | "warning" | "error";
|
|
3235
3666
|
showFeedbackTextIcon: boolean;
|
|
@@ -11226,6 +11657,7 @@ declare const _default: {
|
|
|
11226
11657
|
onlyDigits: boolean;
|
|
11227
11658
|
prefix: string;
|
|
11228
11659
|
suffix: string;
|
|
11660
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
11229
11661
|
showApply: boolean;
|
|
11230
11662
|
inlineError: boolean;
|
|
11231
11663
|
inlineErrorText: string;
|
|
@@ -11311,6 +11743,10 @@ declare const _default: {
|
|
|
11311
11743
|
type: import("vue").PropType<string>;
|
|
11312
11744
|
default: string;
|
|
11313
11745
|
};
|
|
11746
|
+
maxLengthCounterPosition: {
|
|
11747
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
11748
|
+
default: string;
|
|
11749
|
+
};
|
|
11314
11750
|
showApply: {
|
|
11315
11751
|
type: import("vue").PropType<boolean>;
|
|
11316
11752
|
default: boolean;
|
|
@@ -11346,7 +11782,7 @@ declare const _default: {
|
|
|
11346
11782
|
}>> & {
|
|
11347
11783
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
11348
11784
|
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">;
|
|
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">;
|
|
11350
11786
|
$attrs: {
|
|
11351
11787
|
[x: string]: unknown;
|
|
11352
11788
|
};
|
|
@@ -11437,6 +11873,10 @@ declare const _default: {
|
|
|
11437
11873
|
type: import("vue").PropType<string>;
|
|
11438
11874
|
default: string;
|
|
11439
11875
|
};
|
|
11876
|
+
maxLengthCounterPosition: {
|
|
11877
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
11878
|
+
default: string;
|
|
11879
|
+
};
|
|
11440
11880
|
showApply: {
|
|
11441
11881
|
type: import("vue").PropType<boolean>;
|
|
11442
11882
|
default: boolean;
|
|
@@ -11497,6 +11937,7 @@ declare const _default: {
|
|
|
11497
11937
|
onlyDigits: boolean;
|
|
11498
11938
|
prefix: string;
|
|
11499
11939
|
suffix: string;
|
|
11940
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
11500
11941
|
showApply: boolean;
|
|
11501
11942
|
inlineError: boolean;
|
|
11502
11943
|
inlineErrorText: string;
|
|
@@ -11602,6 +12043,10 @@ declare const _default: {
|
|
|
11602
12043
|
type: import("vue").PropType<string>;
|
|
11603
12044
|
default: string;
|
|
11604
12045
|
};
|
|
12046
|
+
maxLengthCounterPosition: {
|
|
12047
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12048
|
+
default: string;
|
|
12049
|
+
};
|
|
11605
12050
|
showApply: {
|
|
11606
12051
|
type: import("vue").PropType<boolean>;
|
|
11607
12052
|
default: boolean;
|
|
@@ -11720,6 +12165,10 @@ declare const _default: {
|
|
|
11720
12165
|
type: import("vue").PropType<string>;
|
|
11721
12166
|
default: string;
|
|
11722
12167
|
};
|
|
12168
|
+
maxLengthCounterPosition: {
|
|
12169
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12170
|
+
default: string;
|
|
12171
|
+
};
|
|
11723
12172
|
showApply: {
|
|
11724
12173
|
type: import("vue").PropType<boolean>;
|
|
11725
12174
|
default: boolean;
|
|
@@ -11780,6 +12229,7 @@ declare const _default: {
|
|
|
11780
12229
|
onlyDigits: boolean;
|
|
11781
12230
|
prefix: string;
|
|
11782
12231
|
suffix: string;
|
|
12232
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
11783
12233
|
showApply: boolean;
|
|
11784
12234
|
inlineError: boolean;
|
|
11785
12235
|
inlineErrorText: string;
|
|
@@ -11818,6 +12268,7 @@ declare const _default: {
|
|
|
11818
12268
|
onlyDigits: boolean;
|
|
11819
12269
|
prefix: string;
|
|
11820
12270
|
suffix: string;
|
|
12271
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
11821
12272
|
showApply: boolean;
|
|
11822
12273
|
inlineError: boolean;
|
|
11823
12274
|
inlineErrorText: string;
|
|
@@ -11903,6 +12354,10 @@ declare const _default: {
|
|
|
11903
12354
|
type: import("vue").PropType<string>;
|
|
11904
12355
|
default: string;
|
|
11905
12356
|
};
|
|
12357
|
+
maxLengthCounterPosition: {
|
|
12358
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12359
|
+
default: string;
|
|
12360
|
+
};
|
|
11906
12361
|
showApply: {
|
|
11907
12362
|
type: import("vue").PropType<boolean>;
|
|
11908
12363
|
default: boolean;
|
|
@@ -11938,7 +12393,7 @@ declare const _default: {
|
|
|
11938
12393
|
}>> & {
|
|
11939
12394
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
11940
12395
|
onApply?: () => any;
|
|
11941
|
-
} & 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">;
|
|
11942
12397
|
$attrs: {
|
|
11943
12398
|
[x: string]: unknown;
|
|
11944
12399
|
};
|
|
@@ -12029,6 +12484,10 @@ declare const _default: {
|
|
|
12029
12484
|
type: import("vue").PropType<string>;
|
|
12030
12485
|
default: string;
|
|
12031
12486
|
};
|
|
12487
|
+
maxLengthCounterPosition: {
|
|
12488
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12489
|
+
default: string;
|
|
12490
|
+
};
|
|
12032
12491
|
showApply: {
|
|
12033
12492
|
type: import("vue").PropType<boolean>;
|
|
12034
12493
|
default: boolean;
|
|
@@ -12089,6 +12548,7 @@ declare const _default: {
|
|
|
12089
12548
|
onlyDigits: boolean;
|
|
12090
12549
|
prefix: string;
|
|
12091
12550
|
suffix: string;
|
|
12551
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
12092
12552
|
showApply: boolean;
|
|
12093
12553
|
inlineError: boolean;
|
|
12094
12554
|
inlineErrorText: string;
|
|
@@ -12194,6 +12654,10 @@ declare const _default: {
|
|
|
12194
12654
|
type: import("vue").PropType<string>;
|
|
12195
12655
|
default: string;
|
|
12196
12656
|
};
|
|
12657
|
+
maxLengthCounterPosition: {
|
|
12658
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12659
|
+
default: string;
|
|
12660
|
+
};
|
|
12197
12661
|
showApply: {
|
|
12198
12662
|
type: import("vue").PropType<boolean>;
|
|
12199
12663
|
default: boolean;
|
|
@@ -12312,6 +12776,10 @@ declare const _default: {
|
|
|
12312
12776
|
type: import("vue").PropType<string>;
|
|
12313
12777
|
default: string;
|
|
12314
12778
|
};
|
|
12779
|
+
maxLengthCounterPosition: {
|
|
12780
|
+
type: import("vue").PropType<"inside" | "outside">;
|
|
12781
|
+
default: string;
|
|
12782
|
+
};
|
|
12315
12783
|
showApply: {
|
|
12316
12784
|
type: import("vue").PropType<boolean>;
|
|
12317
12785
|
default: boolean;
|
|
@@ -12372,6 +12840,7 @@ declare const _default: {
|
|
|
12372
12840
|
onlyDigits: boolean;
|
|
12373
12841
|
prefix: string;
|
|
12374
12842
|
suffix: string;
|
|
12843
|
+
maxLengthCounterPosition: "inside" | "outside";
|
|
12375
12844
|
showApply: boolean;
|
|
12376
12845
|
inlineError: boolean;
|
|
12377
12846
|
inlineErrorText: string;
|
|
@@ -14536,6 +15005,8 @@ declare const _default: {
|
|
|
14536
15005
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
14537
15006
|
valueToCopy: string;
|
|
14538
15007
|
disabledOptionKey: string;
|
|
15008
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
15009
|
+
optionTwoLinesKey: string;
|
|
14539
15010
|
fullWidth: boolean;
|
|
14540
15011
|
optionsListWidth: string;
|
|
14541
15012
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -14724,6 +15195,14 @@ declare const _default: {
|
|
|
14724
15195
|
type: import("vue").PropType<string>;
|
|
14725
15196
|
default: string;
|
|
14726
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
|
+
};
|
|
14727
15206
|
fullWidth: {
|
|
14728
15207
|
type: import("vue").PropType<boolean>;
|
|
14729
15208
|
default: boolean;
|
|
@@ -14753,7 +15232,7 @@ declare const _default: {
|
|
|
14753
15232
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
14754
15233
|
onOpened?: () => any;
|
|
14755
15234
|
onClosed?: () => any;
|
|
14756
|
-
} & 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">;
|
|
14757
15236
|
$attrs: {
|
|
14758
15237
|
[x: string]: unknown;
|
|
14759
15238
|
};
|
|
@@ -14950,6 +15429,14 @@ declare const _default: {
|
|
|
14950
15429
|
type: import("vue").PropType<string>;
|
|
14951
15430
|
default: string;
|
|
14952
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
|
+
};
|
|
14953
15440
|
fullWidth: {
|
|
14954
15441
|
type: import("vue").PropType<boolean>;
|
|
14955
15442
|
default: boolean;
|
|
@@ -15034,6 +15521,8 @@ declare const _default: {
|
|
|
15034
15521
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15035
15522
|
valueToCopy: string;
|
|
15036
15523
|
disabledOptionKey: string;
|
|
15524
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
15525
|
+
optionTwoLinesKey: string;
|
|
15037
15526
|
fullWidth: boolean;
|
|
15038
15527
|
optionsListWidth: string;
|
|
15039
15528
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -15242,6 +15731,14 @@ declare const _default: {
|
|
|
15242
15731
|
type: import("vue").PropType<string>;
|
|
15243
15732
|
default: string;
|
|
15244
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
|
+
};
|
|
15245
15742
|
fullWidth: {
|
|
15246
15743
|
type: import("vue").PropType<boolean>;
|
|
15247
15744
|
default: boolean;
|
|
@@ -15461,6 +15958,14 @@ declare const _default: {
|
|
|
15461
15958
|
type: import("vue").PropType<string>;
|
|
15462
15959
|
default: string;
|
|
15463
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
|
+
};
|
|
15464
15969
|
fullWidth: {
|
|
15465
15970
|
type: import("vue").PropType<boolean>;
|
|
15466
15971
|
default: boolean;
|
|
@@ -15545,6 +16050,8 @@ declare const _default: {
|
|
|
15545
16050
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15546
16051
|
valueToCopy: string;
|
|
15547
16052
|
disabledOptionKey: string;
|
|
16053
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16054
|
+
optionTwoLinesKey: string;
|
|
15548
16055
|
fullWidth: boolean;
|
|
15549
16056
|
optionsListWidth: string;
|
|
15550
16057
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -17910,6 +18417,8 @@ declare const _default: {
|
|
|
17910
18417
|
disabled: boolean;
|
|
17911
18418
|
active: boolean;
|
|
17912
18419
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18420
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18421
|
+
optionTwoLinesKey: string;
|
|
17913
18422
|
isIndeterminate: boolean;
|
|
17914
18423
|
subtitle: string;
|
|
17915
18424
|
selectAllOption: boolean;
|
|
@@ -17936,6 +18445,14 @@ declare const _default: {
|
|
|
17936
18445
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17937
18446
|
default: string;
|
|
17938
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
|
+
};
|
|
17939
18456
|
isIndeterminate: {
|
|
17940
18457
|
type: import("vue").PropType<boolean>;
|
|
17941
18458
|
default: boolean;
|
|
@@ -17975,7 +18492,7 @@ declare const _default: {
|
|
|
17975
18492
|
selectedProp: {
|
|
17976
18493
|
type: import("vue").PropType<boolean>;
|
|
17977
18494
|
};
|
|
17978
|
-
}>> & 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">;
|
|
17979
18496
|
$attrs: {
|
|
17980
18497
|
[x: string]: unknown;
|
|
17981
18498
|
};
|
|
@@ -18006,6 +18523,14 @@ declare const _default: {
|
|
|
18006
18523
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18007
18524
|
default: string;
|
|
18008
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
|
+
};
|
|
18009
18534
|
isIndeterminate: {
|
|
18010
18535
|
type: import("vue").PropType<boolean>;
|
|
18011
18536
|
default: boolean;
|
|
@@ -18050,6 +18575,8 @@ declare const _default: {
|
|
|
18050
18575
|
disabled: boolean;
|
|
18051
18576
|
active: boolean;
|
|
18052
18577
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18578
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18579
|
+
optionTwoLinesKey: string;
|
|
18053
18580
|
isIndeterminate: boolean;
|
|
18054
18581
|
subtitle: string;
|
|
18055
18582
|
selectAllOption: boolean;
|
|
@@ -18096,6 +18623,14 @@ declare const _default: {
|
|
|
18096
18623
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18097
18624
|
default: string;
|
|
18098
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
|
+
};
|
|
18099
18634
|
isIndeterminate: {
|
|
18100
18635
|
type: import("vue").PropType<boolean>;
|
|
18101
18636
|
default: boolean;
|
|
@@ -18156,6 +18691,14 @@ declare const _default: {
|
|
|
18156
18691
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18157
18692
|
default: string;
|
|
18158
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
|
+
};
|
|
18159
18702
|
isIndeterminate: {
|
|
18160
18703
|
type: import("vue").PropType<boolean>;
|
|
18161
18704
|
default: boolean;
|
|
@@ -18200,6 +18743,8 @@ declare const _default: {
|
|
|
18200
18743
|
disabled: boolean;
|
|
18201
18744
|
active: boolean;
|
|
18202
18745
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18746
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18747
|
+
optionTwoLinesKey: string;
|
|
18203
18748
|
isIndeterminate: boolean;
|
|
18204
18749
|
subtitle: string;
|
|
18205
18750
|
selectAllOption: boolean;
|
|
@@ -18374,6 +18919,8 @@ declare const _default: {
|
|
|
18374
18919
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18375
18920
|
valueToCopy: string;
|
|
18376
18921
|
disabledOptionKey: string;
|
|
18922
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18923
|
+
optionTwoLinesKey: string;
|
|
18377
18924
|
fullWidth: boolean;
|
|
18378
18925
|
optionsListWidth: string;
|
|
18379
18926
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -18562,6 +19109,14 @@ declare const _default: {
|
|
|
18562
19109
|
type: import("vue").PropType<string>;
|
|
18563
19110
|
default: string;
|
|
18564
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
|
+
};
|
|
18565
19120
|
fullWidth: {
|
|
18566
19121
|
type: import("vue").PropType<boolean>;
|
|
18567
19122
|
default: boolean;
|
|
@@ -18591,7 +19146,7 @@ declare const _default: {
|
|
|
18591
19146
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
18592
19147
|
onOpened?: () => any;
|
|
18593
19148
|
onClosed?: () => any;
|
|
18594
|
-
} & 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">;
|
|
18595
19150
|
$attrs: {
|
|
18596
19151
|
[x: string]: unknown;
|
|
18597
19152
|
};
|
|
@@ -18788,6 +19343,14 @@ declare const _default: {
|
|
|
18788
19343
|
type: import("vue").PropType<string>;
|
|
18789
19344
|
default: string;
|
|
18790
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
|
+
};
|
|
18791
19354
|
fullWidth: {
|
|
18792
19355
|
type: import("vue").PropType<boolean>;
|
|
18793
19356
|
default: boolean;
|
|
@@ -18872,6 +19435,8 @@ declare const _default: {
|
|
|
18872
19435
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18873
19436
|
valueToCopy: string;
|
|
18874
19437
|
disabledOptionKey: string;
|
|
19438
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19439
|
+
optionTwoLinesKey: string;
|
|
18875
19440
|
fullWidth: boolean;
|
|
18876
19441
|
optionsListWidth: string;
|
|
18877
19442
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -19080,6 +19645,14 @@ declare const _default: {
|
|
|
19080
19645
|
type: import("vue").PropType<string>;
|
|
19081
19646
|
default: string;
|
|
19082
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
|
+
};
|
|
19083
19656
|
fullWidth: {
|
|
19084
19657
|
type: import("vue").PropType<boolean>;
|
|
19085
19658
|
default: boolean;
|
|
@@ -19299,6 +19872,14 @@ declare const _default: {
|
|
|
19299
19872
|
type: import("vue").PropType<string>;
|
|
19300
19873
|
default: string;
|
|
19301
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
|
+
};
|
|
19302
19883
|
fullWidth: {
|
|
19303
19884
|
type: import("vue").PropType<boolean>;
|
|
19304
19885
|
default: boolean;
|
|
@@ -19383,6 +19964,8 @@ declare const _default: {
|
|
|
19383
19964
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19384
19965
|
valueToCopy: string;
|
|
19385
19966
|
disabledOptionKey: string;
|
|
19967
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19968
|
+
optionTwoLinesKey: string;
|
|
19386
19969
|
fullWidth: boolean;
|
|
19387
19970
|
optionsListWidth: string;
|
|
19388
19971
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -19664,6 +20247,8 @@ declare const _default: {
|
|
|
19664
20247
|
disabled: boolean;
|
|
19665
20248
|
active: boolean;
|
|
19666
20249
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20250
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20251
|
+
optionTwoLinesKey: string;
|
|
19667
20252
|
isIndeterminate: boolean;
|
|
19668
20253
|
subtitle: string;
|
|
19669
20254
|
selectAllOption: boolean;
|
|
@@ -19690,6 +20275,14 @@ declare const _default: {
|
|
|
19690
20275
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19691
20276
|
default: string;
|
|
19692
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
|
+
};
|
|
19693
20286
|
isIndeterminate: {
|
|
19694
20287
|
type: import("vue").PropType<boolean>;
|
|
19695
20288
|
default: boolean;
|
|
@@ -19729,7 +20322,7 @@ declare const _default: {
|
|
|
19729
20322
|
selectedProp: {
|
|
19730
20323
|
type: import("vue").PropType<boolean>;
|
|
19731
20324
|
};
|
|
19732
|
-
}>> & 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">;
|
|
19733
20326
|
$attrs: {
|
|
19734
20327
|
[x: string]: unknown;
|
|
19735
20328
|
};
|
|
@@ -19760,6 +20353,14 @@ declare const _default: {
|
|
|
19760
20353
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19761
20354
|
default: string;
|
|
19762
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
|
+
};
|
|
19763
20364
|
isIndeterminate: {
|
|
19764
20365
|
type: import("vue").PropType<boolean>;
|
|
19765
20366
|
default: boolean;
|
|
@@ -19804,6 +20405,8 @@ declare const _default: {
|
|
|
19804
20405
|
disabled: boolean;
|
|
19805
20406
|
active: boolean;
|
|
19806
20407
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20408
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20409
|
+
optionTwoLinesKey: string;
|
|
19807
20410
|
isIndeterminate: boolean;
|
|
19808
20411
|
subtitle: string;
|
|
19809
20412
|
selectAllOption: boolean;
|
|
@@ -19850,6 +20453,14 @@ declare const _default: {
|
|
|
19850
20453
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19851
20454
|
default: string;
|
|
19852
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
|
+
};
|
|
19853
20464
|
isIndeterminate: {
|
|
19854
20465
|
type: import("vue").PropType<boolean>;
|
|
19855
20466
|
default: boolean;
|
|
@@ -19910,6 +20521,14 @@ declare const _default: {
|
|
|
19910
20521
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19911
20522
|
default: string;
|
|
19912
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
|
+
};
|
|
19913
20532
|
isIndeterminate: {
|
|
19914
20533
|
type: import("vue").PropType<boolean>;
|
|
19915
20534
|
default: boolean;
|
|
@@ -19954,6 +20573,8 @@ declare const _default: {
|
|
|
19954
20573
|
disabled: boolean;
|
|
19955
20574
|
active: boolean;
|
|
19956
20575
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20576
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20577
|
+
optionTwoLinesKey: string;
|
|
19957
20578
|
isIndeterminate: boolean;
|
|
19958
20579
|
subtitle: string;
|
|
19959
20580
|
selectAllOption: boolean;
|