@ironsource/shared-ui 2.1.12-test.75 → 2.1.12-test.76
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/ChartPlane.vue_vue_type_style_index_0_scoped_a4130027_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_683b8a75_lang.css +1 -0
- package/components/chart/ChartPlane.vue.js +4 -4
- package/components/chart/ChartPlane.vue2.js +25 -17
- package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +17 -9
- package/components/dropdown/v4/ConditionalDropdown.vue.js +4 -4
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +78 -70
- package/components/dropdown/v4/index.d.ts +432 -106
- package/index.d.ts +1545 -893
- package/index.js +1 -1
- package/package.json +1 -1
- package/ChartPlane.vue_vue_type_style_index_0_scoped_903fc6ae_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_acd8417d_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -23069,371 +23069,1200 @@ declare const _default: {
|
|
|
23069
23069
|
$slots: {
|
|
23070
23070
|
"trigger-end-icon"?(_: {}): any;
|
|
23071
23071
|
};
|
|
23072
|
-
})) |
|
|
23073
|
-
|
|
23074
|
-
|
|
23075
|
-
|
|
23076
|
-
|
|
23077
|
-
};
|
|
23078
|
-
testId: {
|
|
23079
|
-
type: import("vue").PropType<string>;
|
|
23080
|
-
default: string;
|
|
23081
|
-
};
|
|
23082
|
-
isOpen: {
|
|
23083
|
-
type: import("vue").PropType<boolean>;
|
|
23084
|
-
default: boolean;
|
|
23085
|
-
};
|
|
23086
|
-
infiniteLoading: {
|
|
23087
|
-
type: import("vue").PropType<boolean>;
|
|
23088
|
-
default: boolean;
|
|
23089
|
-
};
|
|
23090
|
-
triggerShownValuesCount: {
|
|
23091
|
-
type: import("vue").PropType<number>;
|
|
23092
|
-
default: number;
|
|
23093
|
-
};
|
|
23094
|
-
optionNameKey: {
|
|
23095
|
-
type: import("vue").PropType<string>;
|
|
23096
|
-
required: true;
|
|
23097
|
-
default: string;
|
|
23098
|
-
};
|
|
23099
|
-
optionIconKey: {
|
|
23100
|
-
type: import("vue").PropType<string>;
|
|
23101
|
-
default: string;
|
|
23102
|
-
};
|
|
23103
|
-
optionImageKey: {
|
|
23104
|
-
type: import("vue").PropType<string>;
|
|
23105
|
-
default: string;
|
|
23106
|
-
};
|
|
23107
|
-
optionIconType: {
|
|
23108
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23109
|
-
default: any;
|
|
23110
|
-
};
|
|
23111
|
-
optionFlagKey: {
|
|
23112
|
-
type: import("vue").PropType<string>;
|
|
23113
|
-
default: string;
|
|
23114
|
-
};
|
|
23115
|
-
groupedOptions: {
|
|
23116
|
-
type: import("vue").PropType<boolean>;
|
|
23117
|
-
default: boolean;
|
|
23118
|
-
};
|
|
23119
|
-
comparingKey: {
|
|
23120
|
-
type: import("vue").PropType<string>;
|
|
23121
|
-
required: true;
|
|
23122
|
-
default: string;
|
|
23123
|
-
};
|
|
23124
|
-
conditionalOptions: {
|
|
23125
|
-
type: import("vue").PropType<{
|
|
23072
|
+
})) | ({
|
|
23073
|
+
new (...args: any[]): {
|
|
23074
|
+
$: import("vue").ComponentInternalInstance;
|
|
23075
|
+
$data: {};
|
|
23076
|
+
$props: Partial<{
|
|
23126
23077
|
label: string;
|
|
23127
|
-
|
|
23128
|
-
|
|
23129
|
-
|
|
23130
|
-
|
|
23131
|
-
|
|
23132
|
-
|
|
23133
|
-
|
|
23078
|
+
testId: string;
|
|
23079
|
+
isOpen: boolean;
|
|
23080
|
+
infiniteLoading: boolean;
|
|
23081
|
+
triggerShownValuesCount: number;
|
|
23082
|
+
optionNameKey: string;
|
|
23083
|
+
optionIconKey: string;
|
|
23084
|
+
optionImageKey: string;
|
|
23085
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23086
|
+
optionFlagKey: string;
|
|
23087
|
+
groupedOptions: boolean;
|
|
23088
|
+
comparingKey: string;
|
|
23089
|
+
minCharsToStart: number;
|
|
23090
|
+
searchQuery: string;
|
|
23091
|
+
loadMoreFn: () => Promise<any[]>;
|
|
23092
|
+
fetchDataDebounceTime: number;
|
|
23093
|
+
autoFocusSearch: boolean;
|
|
23094
|
+
loadingOverride: boolean;
|
|
23095
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23096
|
+
label: {
|
|
23097
|
+
type: import("vue").PropType<string>;
|
|
23098
|
+
required: true;
|
|
23099
|
+
default: string;
|
|
23100
|
+
};
|
|
23101
|
+
testId: {
|
|
23102
|
+
type: import("vue").PropType<string>;
|
|
23103
|
+
default: string;
|
|
23104
|
+
};
|
|
23105
|
+
isOpen: {
|
|
23106
|
+
type: import("vue").PropType<boolean>;
|
|
23107
|
+
default: boolean;
|
|
23108
|
+
};
|
|
23109
|
+
infiniteLoading: {
|
|
23110
|
+
type: import("vue").PropType<boolean>;
|
|
23111
|
+
default: boolean;
|
|
23112
|
+
};
|
|
23113
|
+
triggerShownValuesCount: {
|
|
23114
|
+
type: import("vue").PropType<number>;
|
|
23115
|
+
default: number;
|
|
23116
|
+
};
|
|
23117
|
+
optionNameKey: {
|
|
23118
|
+
type: import("vue").PropType<string>;
|
|
23119
|
+
required: true;
|
|
23120
|
+
default: string;
|
|
23121
|
+
};
|
|
23122
|
+
optionIconKey: {
|
|
23123
|
+
type: import("vue").PropType<string>;
|
|
23124
|
+
default: string;
|
|
23125
|
+
};
|
|
23126
|
+
optionImageKey: {
|
|
23127
|
+
type: import("vue").PropType<string>;
|
|
23128
|
+
default: string;
|
|
23129
|
+
};
|
|
23130
|
+
optionIconType: {
|
|
23131
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23132
|
+
default: any;
|
|
23133
|
+
};
|
|
23134
|
+
optionFlagKey: {
|
|
23135
|
+
type: import("vue").PropType<string>;
|
|
23136
|
+
default: string;
|
|
23137
|
+
};
|
|
23138
|
+
groupedOptions: {
|
|
23139
|
+
type: import("vue").PropType<boolean>;
|
|
23140
|
+
default: boolean;
|
|
23141
|
+
};
|
|
23142
|
+
comparingKey: {
|
|
23143
|
+
type: import("vue").PropType<string>;
|
|
23144
|
+
required: true;
|
|
23145
|
+
default: string;
|
|
23146
|
+
};
|
|
23147
|
+
conditionalOptions: {
|
|
23148
|
+
type: import("vue").PropType<{
|
|
23149
|
+
label: string;
|
|
23150
|
+
value: string;
|
|
23151
|
+
multi: boolean;
|
|
23152
|
+
}[]>;
|
|
23153
|
+
required: true;
|
|
23154
|
+
};
|
|
23155
|
+
selectedCondition: {
|
|
23156
|
+
type: import("vue").PropType<{
|
|
23157
|
+
label: string;
|
|
23158
|
+
value: string;
|
|
23159
|
+
multi: boolean;
|
|
23160
|
+
}>;
|
|
23161
|
+
required: true;
|
|
23162
|
+
};
|
|
23163
|
+
appliedSelections: {
|
|
23164
|
+
type: import("vue").PropType<unknown>;
|
|
23165
|
+
required: true;
|
|
23166
|
+
};
|
|
23167
|
+
fetchFnCallback: {
|
|
23168
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23169
|
+
required: true;
|
|
23170
|
+
};
|
|
23171
|
+
minCharsToStart: {
|
|
23172
|
+
type: import("vue").PropType<number>;
|
|
23173
|
+
default: number;
|
|
23174
|
+
};
|
|
23175
|
+
searchQuery: {
|
|
23176
|
+
type: import("vue").PropType<string>;
|
|
23177
|
+
default: string;
|
|
23178
|
+
};
|
|
23179
|
+
loadMoreFn: {
|
|
23180
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23181
|
+
default: any;
|
|
23182
|
+
};
|
|
23183
|
+
fetchDataDebounceTime: {
|
|
23184
|
+
type: import("vue").PropType<number>;
|
|
23185
|
+
default: number;
|
|
23186
|
+
};
|
|
23187
|
+
autoFocusSearch: {
|
|
23188
|
+
type: import("vue").PropType<boolean>;
|
|
23189
|
+
default: boolean;
|
|
23190
|
+
};
|
|
23191
|
+
loadingOverride: {
|
|
23192
|
+
type: import("vue").PropType<boolean>;
|
|
23193
|
+
default: boolean;
|
|
23194
|
+
};
|
|
23195
|
+
}>> & {
|
|
23196
|
+
onClear?: () => any;
|
|
23197
|
+
onClosed?: () => any;
|
|
23198
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23199
|
+
label: string;
|
|
23200
|
+
value: string;
|
|
23201
|
+
multi: boolean;
|
|
23202
|
+
}) => any;
|
|
23203
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23204
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "isOpen" | "infiniteLoading" | "triggerShownValuesCount" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "groupedOptions" | "comparingKey" | "minCharsToStart" | "searchQuery" | "loadMoreFn" | "fetchDataDebounceTime" | "autoFocusSearch" | "loadingOverride">;
|
|
23205
|
+
$attrs: {
|
|
23206
|
+
[x: string]: unknown;
|
|
23207
|
+
};
|
|
23208
|
+
$refs: {
|
|
23209
|
+
[x: string]: unknown;
|
|
23210
|
+
};
|
|
23211
|
+
$slots: Readonly<{
|
|
23212
|
+
[name: string]: import("vue").Slot;
|
|
23213
|
+
}>;
|
|
23214
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23215
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23216
|
+
$emit: ((event: "clear") => void) & ((event: "closed") => void) & ((event: "update:selectedCondition", value: {
|
|
23134
23217
|
label: string;
|
|
23135
23218
|
value: string;
|
|
23136
23219
|
multi: boolean;
|
|
23137
|
-
}
|
|
23138
|
-
|
|
23139
|
-
|
|
23140
|
-
|
|
23220
|
+
}) => void) & ((event: "update:appliedSelections", value: unknown) => void);
|
|
23221
|
+
$el: any;
|
|
23222
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23223
|
+
label: {
|
|
23224
|
+
type: import("vue").PropType<string>;
|
|
23225
|
+
required: true;
|
|
23226
|
+
default: string;
|
|
23227
|
+
};
|
|
23228
|
+
testId: {
|
|
23229
|
+
type: import("vue").PropType<string>;
|
|
23230
|
+
default: string;
|
|
23231
|
+
};
|
|
23232
|
+
isOpen: {
|
|
23233
|
+
type: import("vue").PropType<boolean>;
|
|
23234
|
+
default: boolean;
|
|
23235
|
+
};
|
|
23236
|
+
infiniteLoading: {
|
|
23237
|
+
type: import("vue").PropType<boolean>;
|
|
23238
|
+
default: boolean;
|
|
23239
|
+
};
|
|
23240
|
+
triggerShownValuesCount: {
|
|
23241
|
+
type: import("vue").PropType<number>;
|
|
23242
|
+
default: number;
|
|
23243
|
+
};
|
|
23244
|
+
optionNameKey: {
|
|
23245
|
+
type: import("vue").PropType<string>;
|
|
23246
|
+
required: true;
|
|
23247
|
+
default: string;
|
|
23248
|
+
};
|
|
23249
|
+
optionIconKey: {
|
|
23250
|
+
type: import("vue").PropType<string>;
|
|
23251
|
+
default: string;
|
|
23252
|
+
};
|
|
23253
|
+
optionImageKey: {
|
|
23254
|
+
type: import("vue").PropType<string>;
|
|
23255
|
+
default: string;
|
|
23256
|
+
};
|
|
23257
|
+
optionIconType: {
|
|
23258
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23259
|
+
default: any;
|
|
23260
|
+
};
|
|
23261
|
+
optionFlagKey: {
|
|
23262
|
+
type: import("vue").PropType<string>;
|
|
23263
|
+
default: string;
|
|
23264
|
+
};
|
|
23265
|
+
groupedOptions: {
|
|
23266
|
+
type: import("vue").PropType<boolean>;
|
|
23267
|
+
default: boolean;
|
|
23268
|
+
};
|
|
23269
|
+
comparingKey: {
|
|
23270
|
+
type: import("vue").PropType<string>;
|
|
23271
|
+
required: true;
|
|
23272
|
+
default: string;
|
|
23273
|
+
};
|
|
23274
|
+
conditionalOptions: {
|
|
23275
|
+
type: import("vue").PropType<{
|
|
23276
|
+
label: string;
|
|
23277
|
+
value: string;
|
|
23278
|
+
multi: boolean;
|
|
23279
|
+
}[]>;
|
|
23280
|
+
required: true;
|
|
23281
|
+
};
|
|
23282
|
+
selectedCondition: {
|
|
23283
|
+
type: import("vue").PropType<{
|
|
23284
|
+
label: string;
|
|
23285
|
+
value: string;
|
|
23286
|
+
multi: boolean;
|
|
23287
|
+
}>;
|
|
23288
|
+
required: true;
|
|
23289
|
+
};
|
|
23290
|
+
appliedSelections: {
|
|
23291
|
+
type: import("vue").PropType<unknown>;
|
|
23292
|
+
required: true;
|
|
23293
|
+
};
|
|
23294
|
+
fetchFnCallback: {
|
|
23295
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23296
|
+
required: true;
|
|
23297
|
+
};
|
|
23298
|
+
minCharsToStart: {
|
|
23299
|
+
type: import("vue").PropType<number>;
|
|
23300
|
+
default: number;
|
|
23301
|
+
};
|
|
23302
|
+
searchQuery: {
|
|
23303
|
+
type: import("vue").PropType<string>;
|
|
23304
|
+
default: string;
|
|
23305
|
+
};
|
|
23306
|
+
loadMoreFn: {
|
|
23307
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23308
|
+
default: any;
|
|
23309
|
+
};
|
|
23310
|
+
fetchDataDebounceTime: {
|
|
23311
|
+
type: import("vue").PropType<number>;
|
|
23312
|
+
default: number;
|
|
23313
|
+
};
|
|
23314
|
+
autoFocusSearch: {
|
|
23315
|
+
type: import("vue").PropType<boolean>;
|
|
23316
|
+
default: boolean;
|
|
23317
|
+
};
|
|
23318
|
+
loadingOverride: {
|
|
23319
|
+
type: import("vue").PropType<boolean>;
|
|
23320
|
+
default: boolean;
|
|
23321
|
+
};
|
|
23322
|
+
}>> & {
|
|
23323
|
+
onClear?: () => any;
|
|
23324
|
+
onClosed?: () => any;
|
|
23325
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23326
|
+
label: string;
|
|
23327
|
+
value: string;
|
|
23328
|
+
multi: boolean;
|
|
23329
|
+
}) => any;
|
|
23330
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23331
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23332
|
+
"update:selectedCondition": (value: {
|
|
23333
|
+
label: string;
|
|
23334
|
+
value: string;
|
|
23335
|
+
multi: boolean;
|
|
23336
|
+
}) => void;
|
|
23337
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
23338
|
+
clear: () => void;
|
|
23339
|
+
closed: () => void;
|
|
23340
|
+
}, string, {
|
|
23341
|
+
label: string;
|
|
23342
|
+
testId: string;
|
|
23343
|
+
isOpen: boolean;
|
|
23344
|
+
infiniteLoading: boolean;
|
|
23345
|
+
triggerShownValuesCount: number;
|
|
23346
|
+
optionNameKey: string;
|
|
23347
|
+
optionIconKey: string;
|
|
23348
|
+
optionImageKey: string;
|
|
23349
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23350
|
+
optionFlagKey: string;
|
|
23351
|
+
groupedOptions: boolean;
|
|
23352
|
+
comparingKey: string;
|
|
23353
|
+
minCharsToStart: number;
|
|
23354
|
+
searchQuery: string;
|
|
23355
|
+
loadMoreFn: () => Promise<any[]>;
|
|
23356
|
+
fetchDataDebounceTime: number;
|
|
23357
|
+
autoFocusSearch: boolean;
|
|
23358
|
+
loadingOverride: boolean;
|
|
23359
|
+
}, {}, string> & {
|
|
23360
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
23361
|
+
created?: (() => void) | (() => void)[];
|
|
23362
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
23363
|
+
mounted?: (() => void) | (() => void)[];
|
|
23364
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
23365
|
+
updated?: (() => void) | (() => void)[];
|
|
23366
|
+
activated?: (() => void) | (() => void)[];
|
|
23367
|
+
deactivated?: (() => void) | (() => void)[];
|
|
23368
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
23369
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
23370
|
+
destroyed?: (() => void) | (() => void)[];
|
|
23371
|
+
unmounted?: (() => void) | (() => void)[];
|
|
23372
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23373
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23374
|
+
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)[];
|
|
23375
|
+
};
|
|
23376
|
+
$forceUpdate: () => void;
|
|
23377
|
+
$nextTick: typeof import("vue").nextTick;
|
|
23378
|
+
$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;
|
|
23379
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
23380
|
+
label: {
|
|
23381
|
+
type: import("vue").PropType<string>;
|
|
23382
|
+
required: true;
|
|
23383
|
+
default: string;
|
|
23384
|
+
};
|
|
23385
|
+
testId: {
|
|
23386
|
+
type: import("vue").PropType<string>;
|
|
23387
|
+
default: string;
|
|
23388
|
+
};
|
|
23389
|
+
isOpen: {
|
|
23390
|
+
type: import("vue").PropType<boolean>;
|
|
23391
|
+
default: boolean;
|
|
23392
|
+
};
|
|
23393
|
+
infiniteLoading: {
|
|
23394
|
+
type: import("vue").PropType<boolean>;
|
|
23395
|
+
default: boolean;
|
|
23396
|
+
};
|
|
23397
|
+
triggerShownValuesCount: {
|
|
23398
|
+
type: import("vue").PropType<number>;
|
|
23399
|
+
default: number;
|
|
23400
|
+
};
|
|
23401
|
+
optionNameKey: {
|
|
23402
|
+
type: import("vue").PropType<string>;
|
|
23403
|
+
required: true;
|
|
23404
|
+
default: string;
|
|
23405
|
+
};
|
|
23406
|
+
optionIconKey: {
|
|
23407
|
+
type: import("vue").PropType<string>;
|
|
23408
|
+
default: string;
|
|
23409
|
+
};
|
|
23410
|
+
optionImageKey: {
|
|
23411
|
+
type: import("vue").PropType<string>;
|
|
23412
|
+
default: string;
|
|
23413
|
+
};
|
|
23414
|
+
optionIconType: {
|
|
23415
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23416
|
+
default: any;
|
|
23417
|
+
};
|
|
23418
|
+
optionFlagKey: {
|
|
23419
|
+
type: import("vue").PropType<string>;
|
|
23420
|
+
default: string;
|
|
23421
|
+
};
|
|
23422
|
+
groupedOptions: {
|
|
23423
|
+
type: import("vue").PropType<boolean>;
|
|
23424
|
+
default: boolean;
|
|
23425
|
+
};
|
|
23426
|
+
comparingKey: {
|
|
23427
|
+
type: import("vue").PropType<string>;
|
|
23428
|
+
required: true;
|
|
23429
|
+
default: string;
|
|
23430
|
+
};
|
|
23431
|
+
conditionalOptions: {
|
|
23432
|
+
type: import("vue").PropType<{
|
|
23433
|
+
label: string;
|
|
23434
|
+
value: string;
|
|
23435
|
+
multi: boolean;
|
|
23436
|
+
}[]>;
|
|
23437
|
+
required: true;
|
|
23438
|
+
};
|
|
23439
|
+
selectedCondition: {
|
|
23440
|
+
type: import("vue").PropType<{
|
|
23441
|
+
label: string;
|
|
23442
|
+
value: string;
|
|
23443
|
+
multi: boolean;
|
|
23444
|
+
}>;
|
|
23445
|
+
required: true;
|
|
23446
|
+
};
|
|
23447
|
+
appliedSelections: {
|
|
23448
|
+
type: import("vue").PropType<unknown>;
|
|
23449
|
+
required: true;
|
|
23450
|
+
};
|
|
23451
|
+
fetchFnCallback: {
|
|
23452
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23453
|
+
required: true;
|
|
23454
|
+
};
|
|
23455
|
+
minCharsToStart: {
|
|
23456
|
+
type: import("vue").PropType<number>;
|
|
23457
|
+
default: number;
|
|
23458
|
+
};
|
|
23459
|
+
searchQuery: {
|
|
23460
|
+
type: import("vue").PropType<string>;
|
|
23461
|
+
default: string;
|
|
23462
|
+
};
|
|
23463
|
+
loadMoreFn: {
|
|
23464
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23465
|
+
default: any;
|
|
23466
|
+
};
|
|
23467
|
+
fetchDataDebounceTime: {
|
|
23468
|
+
type: import("vue").PropType<number>;
|
|
23469
|
+
default: number;
|
|
23470
|
+
};
|
|
23471
|
+
autoFocusSearch: {
|
|
23472
|
+
type: import("vue").PropType<boolean>;
|
|
23473
|
+
default: boolean;
|
|
23474
|
+
};
|
|
23475
|
+
loadingOverride: {
|
|
23476
|
+
type: import("vue").PropType<boolean>;
|
|
23477
|
+
default: boolean;
|
|
23478
|
+
};
|
|
23479
|
+
}>> & {
|
|
23480
|
+
onClear?: () => any;
|
|
23481
|
+
onClosed?: () => any;
|
|
23482
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23483
|
+
label: string;
|
|
23484
|
+
value: string;
|
|
23485
|
+
multi: boolean;
|
|
23486
|
+
}) => any;
|
|
23487
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23488
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
23489
|
+
__isFragment?: never;
|
|
23490
|
+
__isTeleport?: never;
|
|
23491
|
+
__isSuspense?: never;
|
|
23492
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23493
|
+
label: {
|
|
23494
|
+
type: import("vue").PropType<string>;
|
|
23495
|
+
required: true;
|
|
23496
|
+
default: string;
|
|
23497
|
+
};
|
|
23498
|
+
testId: {
|
|
23499
|
+
type: import("vue").PropType<string>;
|
|
23500
|
+
default: string;
|
|
23501
|
+
};
|
|
23502
|
+
isOpen: {
|
|
23503
|
+
type: import("vue").PropType<boolean>;
|
|
23504
|
+
default: boolean;
|
|
23505
|
+
};
|
|
23506
|
+
infiniteLoading: {
|
|
23507
|
+
type: import("vue").PropType<boolean>;
|
|
23508
|
+
default: boolean;
|
|
23509
|
+
};
|
|
23510
|
+
triggerShownValuesCount: {
|
|
23511
|
+
type: import("vue").PropType<number>;
|
|
23512
|
+
default: number;
|
|
23513
|
+
};
|
|
23514
|
+
optionNameKey: {
|
|
23515
|
+
type: import("vue").PropType<string>;
|
|
23516
|
+
required: true;
|
|
23517
|
+
default: string;
|
|
23518
|
+
};
|
|
23519
|
+
optionIconKey: {
|
|
23520
|
+
type: import("vue").PropType<string>;
|
|
23521
|
+
default: string;
|
|
23522
|
+
};
|
|
23523
|
+
optionImageKey: {
|
|
23524
|
+
type: import("vue").PropType<string>;
|
|
23525
|
+
default: string;
|
|
23526
|
+
};
|
|
23527
|
+
optionIconType: {
|
|
23528
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23529
|
+
default: any;
|
|
23530
|
+
};
|
|
23531
|
+
optionFlagKey: {
|
|
23532
|
+
type: import("vue").PropType<string>;
|
|
23533
|
+
default: string;
|
|
23534
|
+
};
|
|
23535
|
+
groupedOptions: {
|
|
23536
|
+
type: import("vue").PropType<boolean>;
|
|
23537
|
+
default: boolean;
|
|
23538
|
+
};
|
|
23539
|
+
comparingKey: {
|
|
23540
|
+
type: import("vue").PropType<string>;
|
|
23541
|
+
required: true;
|
|
23542
|
+
default: string;
|
|
23543
|
+
};
|
|
23544
|
+
conditionalOptions: {
|
|
23545
|
+
type: import("vue").PropType<{
|
|
23546
|
+
label: string;
|
|
23547
|
+
value: string;
|
|
23548
|
+
multi: boolean;
|
|
23549
|
+
}[]>;
|
|
23550
|
+
required: true;
|
|
23551
|
+
};
|
|
23552
|
+
selectedCondition: {
|
|
23553
|
+
type: import("vue").PropType<{
|
|
23554
|
+
label: string;
|
|
23555
|
+
value: string;
|
|
23556
|
+
multi: boolean;
|
|
23557
|
+
}>;
|
|
23558
|
+
required: true;
|
|
23559
|
+
};
|
|
23560
|
+
appliedSelections: {
|
|
23561
|
+
type: import("vue").PropType<unknown>;
|
|
23562
|
+
required: true;
|
|
23563
|
+
};
|
|
23564
|
+
fetchFnCallback: {
|
|
23565
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23566
|
+
required: true;
|
|
23567
|
+
};
|
|
23568
|
+
minCharsToStart: {
|
|
23569
|
+
type: import("vue").PropType<number>;
|
|
23570
|
+
default: number;
|
|
23571
|
+
};
|
|
23572
|
+
searchQuery: {
|
|
23573
|
+
type: import("vue").PropType<string>;
|
|
23574
|
+
default: string;
|
|
23575
|
+
};
|
|
23576
|
+
loadMoreFn: {
|
|
23577
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23578
|
+
default: any;
|
|
23579
|
+
};
|
|
23580
|
+
fetchDataDebounceTime: {
|
|
23581
|
+
type: import("vue").PropType<number>;
|
|
23582
|
+
default: number;
|
|
23583
|
+
};
|
|
23584
|
+
autoFocusSearch: {
|
|
23585
|
+
type: import("vue").PropType<boolean>;
|
|
23586
|
+
default: boolean;
|
|
23587
|
+
};
|
|
23588
|
+
loadingOverride: {
|
|
23589
|
+
type: import("vue").PropType<boolean>;
|
|
23590
|
+
default: boolean;
|
|
23591
|
+
};
|
|
23592
|
+
}>> & {
|
|
23593
|
+
onClear?: () => any;
|
|
23594
|
+
onClosed?: () => any;
|
|
23595
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23596
|
+
label: string;
|
|
23597
|
+
value: string;
|
|
23598
|
+
multi: boolean;
|
|
23599
|
+
}) => any;
|
|
23600
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23601
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23602
|
+
"update:selectedCondition": (value: {
|
|
23603
|
+
label: string;
|
|
23604
|
+
value: string;
|
|
23605
|
+
multi: boolean;
|
|
23606
|
+
}) => void;
|
|
23607
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
23608
|
+
clear: () => void;
|
|
23609
|
+
closed: () => void;
|
|
23610
|
+
}, string, {
|
|
23611
|
+
label: string;
|
|
23612
|
+
testId: string;
|
|
23613
|
+
isOpen: boolean;
|
|
23614
|
+
infiniteLoading: boolean;
|
|
23615
|
+
triggerShownValuesCount: number;
|
|
23616
|
+
optionNameKey: string;
|
|
23617
|
+
optionIconKey: string;
|
|
23618
|
+
optionImageKey: string;
|
|
23619
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23620
|
+
optionFlagKey: string;
|
|
23621
|
+
groupedOptions: boolean;
|
|
23622
|
+
comparingKey: string;
|
|
23623
|
+
minCharsToStart: number;
|
|
23624
|
+
searchQuery: string;
|
|
23625
|
+
loadMoreFn: () => Promise<any[]>;
|
|
23626
|
+
fetchDataDebounceTime: number;
|
|
23627
|
+
autoFocusSearch: boolean;
|
|
23628
|
+
loadingOverride: boolean;
|
|
23629
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
23630
|
+
$slots: {
|
|
23631
|
+
"option-end"?(_: {
|
|
23632
|
+
option: any;
|
|
23633
|
+
}): any;
|
|
23634
|
+
};
|
|
23635
|
+
})))[];
|
|
23636
|
+
Option: {
|
|
23637
|
+
new (...args: any[]): {
|
|
23638
|
+
$: import("vue").ComponentInternalInstance;
|
|
23639
|
+
$data: {};
|
|
23640
|
+
$props: Partial<{
|
|
23641
|
+
option: any;
|
|
23642
|
+
disabled: boolean;
|
|
23643
|
+
active: boolean;
|
|
23644
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23645
|
+
optionFlagKey: string;
|
|
23646
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
23647
|
+
optionTwoLinesKey: string;
|
|
23648
|
+
isIndeterminate: boolean;
|
|
23649
|
+
subtitle: string;
|
|
23650
|
+
selectAllOption: boolean;
|
|
23651
|
+
nameKey: string;
|
|
23652
|
+
imageKey: string;
|
|
23653
|
+
iconKey: string;
|
|
23654
|
+
warningKey: string;
|
|
23655
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23656
|
+
endIconKey: string;
|
|
23657
|
+
endTextIconKey: string;
|
|
23658
|
+
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
23659
|
+
treeMainOption: boolean;
|
|
23660
|
+
treeMainOptionExpanded: boolean;
|
|
23661
|
+
stopOptionClickEventPropagation: boolean;
|
|
23662
|
+
treeChildShown: boolean;
|
|
23663
|
+
isMulti: boolean;
|
|
23664
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23665
|
+
option: {
|
|
23666
|
+
type: import("vue").PropType<unknown>;
|
|
23667
|
+
default: any;
|
|
23668
|
+
};
|
|
23669
|
+
disabled: {
|
|
23670
|
+
type: import("vue").PropType<boolean>;
|
|
23671
|
+
default: boolean;
|
|
23672
|
+
};
|
|
23673
|
+
active: {
|
|
23674
|
+
type: import("vue").PropType<boolean>;
|
|
23675
|
+
default: any;
|
|
23676
|
+
};
|
|
23677
|
+
endIconType: {
|
|
23678
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23679
|
+
default: string;
|
|
23680
|
+
};
|
|
23681
|
+
optionFlagKey: {
|
|
23682
|
+
type: import("vue").PropType<string>;
|
|
23683
|
+
default: any;
|
|
23684
|
+
};
|
|
23685
|
+
optionTwoLinesVariant: {
|
|
23686
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
23687
|
+
default: any;
|
|
23688
|
+
};
|
|
23689
|
+
optionTwoLinesKey: {
|
|
23690
|
+
type: import("vue").PropType<string>;
|
|
23691
|
+
default: any;
|
|
23692
|
+
};
|
|
23693
|
+
isIndeterminate: {
|
|
23694
|
+
type: import("vue").PropType<boolean>;
|
|
23695
|
+
default: boolean;
|
|
23696
|
+
};
|
|
23697
|
+
subtitle: {
|
|
23698
|
+
type: import("vue").PropType<string>;
|
|
23699
|
+
default: string;
|
|
23700
|
+
};
|
|
23701
|
+
selectAllOption: {
|
|
23702
|
+
type: import("vue").PropType<boolean>;
|
|
23703
|
+
default: boolean;
|
|
23704
|
+
};
|
|
23705
|
+
nameKey: {
|
|
23706
|
+
type: import("vue").PropType<string>;
|
|
23707
|
+
default: any;
|
|
23708
|
+
};
|
|
23709
|
+
imageKey: {
|
|
23710
|
+
type: import("vue").PropType<string>;
|
|
23711
|
+
default: any;
|
|
23712
|
+
};
|
|
23713
|
+
iconKey: {
|
|
23714
|
+
type: import("vue").PropType<string>;
|
|
23715
|
+
default: any;
|
|
23716
|
+
};
|
|
23717
|
+
warningKey: {
|
|
23718
|
+
type: import("vue").PropType<string>;
|
|
23719
|
+
default: any;
|
|
23720
|
+
};
|
|
23721
|
+
iconType: {
|
|
23722
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23723
|
+
default: string;
|
|
23724
|
+
};
|
|
23725
|
+
endIconKey: {
|
|
23726
|
+
type: import("vue").PropType<string>;
|
|
23727
|
+
default: any;
|
|
23728
|
+
};
|
|
23729
|
+
endTextIconKey: {
|
|
23730
|
+
type: import("vue").PropType<string>;
|
|
23731
|
+
default: any;
|
|
23732
|
+
};
|
|
23733
|
+
toolTipPlacement: {
|
|
23734
|
+
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
23735
|
+
default: string;
|
|
23736
|
+
};
|
|
23737
|
+
treeMainOption: {
|
|
23738
|
+
type: import("vue").PropType<boolean>;
|
|
23739
|
+
default: boolean;
|
|
23740
|
+
};
|
|
23741
|
+
treeMainOptionExpanded: {
|
|
23742
|
+
type: import("vue").PropType<boolean>;
|
|
23743
|
+
default: boolean;
|
|
23744
|
+
};
|
|
23745
|
+
stopOptionClickEventPropagation: {
|
|
23746
|
+
type: import("vue").PropType<boolean>;
|
|
23747
|
+
default: boolean;
|
|
23748
|
+
};
|
|
23749
|
+
treeChildShown: {
|
|
23750
|
+
type: import("vue").PropType<boolean>;
|
|
23751
|
+
default: boolean;
|
|
23752
|
+
};
|
|
23753
|
+
isMulti: {
|
|
23754
|
+
type: import("vue").PropType<boolean>;
|
|
23755
|
+
default: boolean;
|
|
23756
|
+
};
|
|
23757
|
+
selectedProp: {
|
|
23758
|
+
type: import("vue").PropType<boolean>;
|
|
23759
|
+
};
|
|
23760
|
+
}>> & {
|
|
23761
|
+
onToggleTreeCollapse?: (option: unknown) => any;
|
|
23762
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
23763
|
+
$attrs: {
|
|
23764
|
+
[x: string]: unknown;
|
|
23765
|
+
};
|
|
23766
|
+
$refs: {
|
|
23767
|
+
[x: string]: unknown;
|
|
23768
|
+
};
|
|
23769
|
+
$slots: Readonly<{
|
|
23770
|
+
[name: string]: import("vue").Slot;
|
|
23771
|
+
}>;
|
|
23772
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23773
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23774
|
+
$emit: (event: "toggleTreeCollapse", option: unknown) => void;
|
|
23775
|
+
$el: any;
|
|
23776
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23777
|
+
option: {
|
|
23778
|
+
type: import("vue").PropType<unknown>;
|
|
23779
|
+
default: any;
|
|
23780
|
+
};
|
|
23781
|
+
disabled: {
|
|
23782
|
+
type: import("vue").PropType<boolean>;
|
|
23783
|
+
default: boolean;
|
|
23784
|
+
};
|
|
23785
|
+
active: {
|
|
23786
|
+
type: import("vue").PropType<boolean>;
|
|
23787
|
+
default: any;
|
|
23788
|
+
};
|
|
23789
|
+
endIconType: {
|
|
23790
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23791
|
+
default: string;
|
|
23792
|
+
};
|
|
23793
|
+
optionFlagKey: {
|
|
23794
|
+
type: import("vue").PropType<string>;
|
|
23795
|
+
default: any;
|
|
23796
|
+
};
|
|
23797
|
+
optionTwoLinesVariant: {
|
|
23798
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
23799
|
+
default: any;
|
|
23800
|
+
};
|
|
23801
|
+
optionTwoLinesKey: {
|
|
23802
|
+
type: import("vue").PropType<string>;
|
|
23803
|
+
default: any;
|
|
23804
|
+
};
|
|
23805
|
+
isIndeterminate: {
|
|
23806
|
+
type: import("vue").PropType<boolean>;
|
|
23807
|
+
default: boolean;
|
|
23808
|
+
};
|
|
23809
|
+
subtitle: {
|
|
23810
|
+
type: import("vue").PropType<string>;
|
|
23811
|
+
default: string;
|
|
23812
|
+
};
|
|
23813
|
+
selectAllOption: {
|
|
23814
|
+
type: import("vue").PropType<boolean>;
|
|
23815
|
+
default: boolean;
|
|
23816
|
+
};
|
|
23817
|
+
nameKey: {
|
|
23818
|
+
type: import("vue").PropType<string>;
|
|
23819
|
+
default: any;
|
|
23820
|
+
};
|
|
23821
|
+
imageKey: {
|
|
23822
|
+
type: import("vue").PropType<string>;
|
|
23823
|
+
default: any;
|
|
23824
|
+
};
|
|
23825
|
+
iconKey: {
|
|
23826
|
+
type: import("vue").PropType<string>;
|
|
23827
|
+
default: any;
|
|
23828
|
+
};
|
|
23829
|
+
warningKey: {
|
|
23830
|
+
type: import("vue").PropType<string>;
|
|
23831
|
+
default: any;
|
|
23832
|
+
};
|
|
23833
|
+
iconType: {
|
|
23834
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23835
|
+
default: string;
|
|
23836
|
+
};
|
|
23837
|
+
endIconKey: {
|
|
23838
|
+
type: import("vue").PropType<string>;
|
|
23839
|
+
default: any;
|
|
23840
|
+
};
|
|
23841
|
+
endTextIconKey: {
|
|
23842
|
+
type: import("vue").PropType<string>;
|
|
23843
|
+
default: any;
|
|
23844
|
+
};
|
|
23845
|
+
toolTipPlacement: {
|
|
23846
|
+
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
23847
|
+
default: string;
|
|
23848
|
+
};
|
|
23849
|
+
treeMainOption: {
|
|
23850
|
+
type: import("vue").PropType<boolean>;
|
|
23851
|
+
default: boolean;
|
|
23852
|
+
};
|
|
23853
|
+
treeMainOptionExpanded: {
|
|
23854
|
+
type: import("vue").PropType<boolean>;
|
|
23855
|
+
default: boolean;
|
|
23856
|
+
};
|
|
23857
|
+
stopOptionClickEventPropagation: {
|
|
23858
|
+
type: import("vue").PropType<boolean>;
|
|
23859
|
+
default: boolean;
|
|
23860
|
+
};
|
|
23861
|
+
treeChildShown: {
|
|
23862
|
+
type: import("vue").PropType<boolean>;
|
|
23863
|
+
default: boolean;
|
|
23864
|
+
};
|
|
23865
|
+
isMulti: {
|
|
23866
|
+
type: import("vue").PropType<boolean>;
|
|
23867
|
+
default: boolean;
|
|
23868
|
+
};
|
|
23869
|
+
selectedProp: {
|
|
23870
|
+
type: import("vue").PropType<boolean>;
|
|
23871
|
+
};
|
|
23872
|
+
}>> & {
|
|
23873
|
+
onToggleTreeCollapse?: (option: unknown) => any;
|
|
23874
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23875
|
+
toggleTreeCollapse: (option: unknown) => void;
|
|
23876
|
+
}, string, {
|
|
23877
|
+
option: any;
|
|
23878
|
+
disabled: boolean;
|
|
23879
|
+
active: boolean;
|
|
23880
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23881
|
+
optionFlagKey: string;
|
|
23882
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
23883
|
+
optionTwoLinesKey: string;
|
|
23884
|
+
isIndeterminate: boolean;
|
|
23885
|
+
subtitle: string;
|
|
23886
|
+
selectAllOption: boolean;
|
|
23887
|
+
nameKey: string;
|
|
23888
|
+
imageKey: string;
|
|
23889
|
+
iconKey: string;
|
|
23890
|
+
warningKey: string;
|
|
23891
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23892
|
+
endIconKey: string;
|
|
23893
|
+
endTextIconKey: string;
|
|
23894
|
+
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
23895
|
+
treeMainOption: boolean;
|
|
23896
|
+
treeMainOptionExpanded: boolean;
|
|
23897
|
+
stopOptionClickEventPropagation: boolean;
|
|
23898
|
+
treeChildShown: boolean;
|
|
23899
|
+
isMulti: boolean;
|
|
23900
|
+
}, {}, string> & {
|
|
23901
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
23902
|
+
created?: (() => void) | (() => void)[];
|
|
23903
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
23904
|
+
mounted?: (() => void) | (() => void)[];
|
|
23905
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
23906
|
+
updated?: (() => void) | (() => void)[];
|
|
23907
|
+
activated?: (() => void) | (() => void)[];
|
|
23908
|
+
deactivated?: (() => void) | (() => void)[];
|
|
23909
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
23910
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
23911
|
+
destroyed?: (() => void) | (() => void)[];
|
|
23912
|
+
unmounted?: (() => void) | (() => void)[];
|
|
23913
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23914
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23915
|
+
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)[];
|
|
23916
|
+
};
|
|
23917
|
+
$forceUpdate: () => void;
|
|
23918
|
+
$nextTick: typeof import("vue").nextTick;
|
|
23919
|
+
$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;
|
|
23920
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
23921
|
+
option: {
|
|
23922
|
+
type: import("vue").PropType<unknown>;
|
|
23923
|
+
default: any;
|
|
23924
|
+
};
|
|
23925
|
+
disabled: {
|
|
23926
|
+
type: import("vue").PropType<boolean>;
|
|
23927
|
+
default: boolean;
|
|
23928
|
+
};
|
|
23929
|
+
active: {
|
|
23930
|
+
type: import("vue").PropType<boolean>;
|
|
23931
|
+
default: any;
|
|
23932
|
+
};
|
|
23933
|
+
endIconType: {
|
|
23934
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23935
|
+
default: string;
|
|
23936
|
+
};
|
|
23937
|
+
optionFlagKey: {
|
|
23938
|
+
type: import("vue").PropType<string>;
|
|
23939
|
+
default: any;
|
|
23940
|
+
};
|
|
23941
|
+
optionTwoLinesVariant: {
|
|
23942
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
23943
|
+
default: any;
|
|
23944
|
+
};
|
|
23945
|
+
optionTwoLinesKey: {
|
|
23946
|
+
type: import("vue").PropType<string>;
|
|
23947
|
+
default: any;
|
|
23948
|
+
};
|
|
23949
|
+
isIndeterminate: {
|
|
23950
|
+
type: import("vue").PropType<boolean>;
|
|
23951
|
+
default: boolean;
|
|
23952
|
+
};
|
|
23953
|
+
subtitle: {
|
|
23954
|
+
type: import("vue").PropType<string>;
|
|
23955
|
+
default: string;
|
|
23956
|
+
};
|
|
23957
|
+
selectAllOption: {
|
|
23958
|
+
type: import("vue").PropType<boolean>;
|
|
23959
|
+
default: boolean;
|
|
23960
|
+
};
|
|
23961
|
+
nameKey: {
|
|
23962
|
+
type: import("vue").PropType<string>;
|
|
23963
|
+
default: any;
|
|
23964
|
+
};
|
|
23965
|
+
imageKey: {
|
|
23966
|
+
type: import("vue").PropType<string>;
|
|
23967
|
+
default: any;
|
|
23968
|
+
};
|
|
23969
|
+
iconKey: {
|
|
23970
|
+
type: import("vue").PropType<string>;
|
|
23971
|
+
default: any;
|
|
23972
|
+
};
|
|
23973
|
+
warningKey: {
|
|
23974
|
+
type: import("vue").PropType<string>;
|
|
23975
|
+
default: any;
|
|
23976
|
+
};
|
|
23977
|
+
iconType: {
|
|
23978
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23979
|
+
default: string;
|
|
23980
|
+
};
|
|
23981
|
+
endIconKey: {
|
|
23982
|
+
type: import("vue").PropType<string>;
|
|
23983
|
+
default: any;
|
|
23984
|
+
};
|
|
23985
|
+
endTextIconKey: {
|
|
23986
|
+
type: import("vue").PropType<string>;
|
|
23987
|
+
default: any;
|
|
23988
|
+
};
|
|
23989
|
+
toolTipPlacement: {
|
|
23990
|
+
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
23991
|
+
default: string;
|
|
23992
|
+
};
|
|
23993
|
+
treeMainOption: {
|
|
23994
|
+
type: import("vue").PropType<boolean>;
|
|
23995
|
+
default: boolean;
|
|
23996
|
+
};
|
|
23997
|
+
treeMainOptionExpanded: {
|
|
23998
|
+
type: import("vue").PropType<boolean>;
|
|
23999
|
+
default: boolean;
|
|
24000
|
+
};
|
|
24001
|
+
stopOptionClickEventPropagation: {
|
|
24002
|
+
type: import("vue").PropType<boolean>;
|
|
24003
|
+
default: boolean;
|
|
24004
|
+
};
|
|
24005
|
+
treeChildShown: {
|
|
24006
|
+
type: import("vue").PropType<boolean>;
|
|
24007
|
+
default: boolean;
|
|
24008
|
+
};
|
|
24009
|
+
isMulti: {
|
|
24010
|
+
type: import("vue").PropType<boolean>;
|
|
24011
|
+
default: boolean;
|
|
24012
|
+
};
|
|
24013
|
+
selectedProp: {
|
|
24014
|
+
type: import("vue").PropType<boolean>;
|
|
24015
|
+
};
|
|
24016
|
+
}>> & {
|
|
24017
|
+
onToggleTreeCollapse?: (option: unknown) => any;
|
|
24018
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
24019
|
+
__isFragment?: never;
|
|
24020
|
+
__isTeleport?: never;
|
|
24021
|
+
__isSuspense?: never;
|
|
24022
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
24023
|
+
option: {
|
|
23141
24024
|
type: import("vue").PropType<unknown>;
|
|
23142
|
-
required: true;
|
|
23143
|
-
};
|
|
23144
|
-
fetchFnCallback: {
|
|
23145
|
-
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23146
|
-
required: true;
|
|
23147
|
-
};
|
|
23148
|
-
minCharsToStart: {
|
|
23149
|
-
type: import("vue").PropType<number>;
|
|
23150
|
-
default: number;
|
|
23151
|
-
};
|
|
23152
|
-
searchQuery: {
|
|
23153
|
-
type: import("vue").PropType<string>;
|
|
23154
|
-
default: string;
|
|
23155
|
-
};
|
|
23156
|
-
loadMoreFn: {
|
|
23157
|
-
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23158
24025
|
default: any;
|
|
23159
24026
|
};
|
|
23160
|
-
|
|
23161
|
-
type: import("vue").PropType<number>;
|
|
23162
|
-
default: number;
|
|
23163
|
-
};
|
|
23164
|
-
autoFocusSearch: {
|
|
24027
|
+
disabled: {
|
|
23165
24028
|
type: import("vue").PropType<boolean>;
|
|
23166
24029
|
default: boolean;
|
|
23167
24030
|
};
|
|
23168
|
-
|
|
24031
|
+
active: {
|
|
23169
24032
|
type: import("vue").PropType<boolean>;
|
|
23170
|
-
default:
|
|
23171
|
-
};
|
|
23172
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23173
|
-
"update:selectedCondition": (value: {
|
|
23174
|
-
label: string;
|
|
23175
|
-
value: string;
|
|
23176
|
-
multi: boolean;
|
|
23177
|
-
}) => void;
|
|
23178
|
-
"update:appliedSelections": (value: unknown) => void;
|
|
23179
|
-
clear: () => void;
|
|
23180
|
-
closed: () => void;
|
|
23181
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23182
|
-
label: {
|
|
23183
|
-
type: import("vue").PropType<string>;
|
|
23184
|
-
required: true;
|
|
23185
|
-
default: string;
|
|
24033
|
+
default: any;
|
|
23186
24034
|
};
|
|
23187
|
-
|
|
23188
|
-
type: import("vue").PropType<
|
|
24035
|
+
endIconType: {
|
|
24036
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23189
24037
|
default: string;
|
|
23190
24038
|
};
|
|
23191
|
-
|
|
23192
|
-
type: import("vue").PropType<boolean>;
|
|
23193
|
-
default: boolean;
|
|
23194
|
-
};
|
|
23195
|
-
infiniteLoading: {
|
|
23196
|
-
type: import("vue").PropType<boolean>;
|
|
23197
|
-
default: boolean;
|
|
23198
|
-
};
|
|
23199
|
-
triggerShownValuesCount: {
|
|
23200
|
-
type: import("vue").PropType<number>;
|
|
23201
|
-
default: number;
|
|
23202
|
-
};
|
|
23203
|
-
optionNameKey: {
|
|
24039
|
+
optionFlagKey: {
|
|
23204
24040
|
type: import("vue").PropType<string>;
|
|
23205
|
-
|
|
23206
|
-
default: string;
|
|
24041
|
+
default: any;
|
|
23207
24042
|
};
|
|
23208
|
-
|
|
23209
|
-
type: import("vue").PropType<
|
|
23210
|
-
default:
|
|
24043
|
+
optionTwoLinesVariant: {
|
|
24044
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
24045
|
+
default: any;
|
|
23211
24046
|
};
|
|
23212
|
-
|
|
24047
|
+
optionTwoLinesKey: {
|
|
23213
24048
|
type: import("vue").PropType<string>;
|
|
23214
|
-
default: string;
|
|
23215
|
-
};
|
|
23216
|
-
optionIconType: {
|
|
23217
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23218
24049
|
default: any;
|
|
23219
24050
|
};
|
|
23220
|
-
|
|
24051
|
+
isIndeterminate: {
|
|
24052
|
+
type: import("vue").PropType<boolean>;
|
|
24053
|
+
default: boolean;
|
|
24054
|
+
};
|
|
24055
|
+
subtitle: {
|
|
23221
24056
|
type: import("vue").PropType<string>;
|
|
23222
24057
|
default: string;
|
|
23223
24058
|
};
|
|
23224
|
-
|
|
24059
|
+
selectAllOption: {
|
|
23225
24060
|
type: import("vue").PropType<boolean>;
|
|
23226
24061
|
default: boolean;
|
|
23227
24062
|
};
|
|
23228
|
-
|
|
24063
|
+
nameKey: {
|
|
23229
24064
|
type: import("vue").PropType<string>;
|
|
23230
|
-
|
|
23231
|
-
default: string;
|
|
24065
|
+
default: any;
|
|
23232
24066
|
};
|
|
23233
|
-
|
|
23234
|
-
type: import("vue").PropType<
|
|
23235
|
-
|
|
23236
|
-
value: string;
|
|
23237
|
-
multi: boolean;
|
|
23238
|
-
}[]>;
|
|
23239
|
-
required: true;
|
|
24067
|
+
imageKey: {
|
|
24068
|
+
type: import("vue").PropType<string>;
|
|
24069
|
+
default: any;
|
|
23240
24070
|
};
|
|
23241
|
-
|
|
23242
|
-
type: import("vue").PropType<
|
|
23243
|
-
|
|
23244
|
-
value: string;
|
|
23245
|
-
multi: boolean;
|
|
23246
|
-
}>;
|
|
23247
|
-
required: true;
|
|
24071
|
+
iconKey: {
|
|
24072
|
+
type: import("vue").PropType<string>;
|
|
24073
|
+
default: any;
|
|
23248
24074
|
};
|
|
23249
|
-
|
|
23250
|
-
type: import("vue").PropType<
|
|
23251
|
-
|
|
24075
|
+
warningKey: {
|
|
24076
|
+
type: import("vue").PropType<string>;
|
|
24077
|
+
default: any;
|
|
23252
24078
|
};
|
|
23253
|
-
|
|
23254
|
-
type: import("vue").PropType<
|
|
23255
|
-
|
|
24079
|
+
iconType: {
|
|
24080
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24081
|
+
default: string;
|
|
23256
24082
|
};
|
|
23257
|
-
|
|
23258
|
-
type: import("vue").PropType<
|
|
23259
|
-
default:
|
|
24083
|
+
endIconKey: {
|
|
24084
|
+
type: import("vue").PropType<string>;
|
|
24085
|
+
default: any;
|
|
23260
24086
|
};
|
|
23261
|
-
|
|
24087
|
+
endTextIconKey: {
|
|
23262
24088
|
type: import("vue").PropType<string>;
|
|
24089
|
+
default: any;
|
|
24090
|
+
};
|
|
24091
|
+
toolTipPlacement: {
|
|
24092
|
+
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
23263
24093
|
default: string;
|
|
23264
24094
|
};
|
|
23265
|
-
|
|
23266
|
-
type: import("vue").PropType<
|
|
23267
|
-
default:
|
|
24095
|
+
treeMainOption: {
|
|
24096
|
+
type: import("vue").PropType<boolean>;
|
|
24097
|
+
default: boolean;
|
|
23268
24098
|
};
|
|
23269
|
-
|
|
23270
|
-
type: import("vue").PropType<
|
|
23271
|
-
default:
|
|
24099
|
+
treeMainOptionExpanded: {
|
|
24100
|
+
type: import("vue").PropType<boolean>;
|
|
24101
|
+
default: boolean;
|
|
23272
24102
|
};
|
|
23273
|
-
|
|
24103
|
+
stopOptionClickEventPropagation: {
|
|
23274
24104
|
type: import("vue").PropType<boolean>;
|
|
23275
24105
|
default: boolean;
|
|
23276
24106
|
};
|
|
23277
|
-
|
|
24107
|
+
treeChildShown: {
|
|
24108
|
+
type: import("vue").PropType<boolean>;
|
|
24109
|
+
default: boolean;
|
|
24110
|
+
};
|
|
24111
|
+
isMulti: {
|
|
23278
24112
|
type: import("vue").PropType<boolean>;
|
|
23279
24113
|
default: boolean;
|
|
23280
24114
|
};
|
|
24115
|
+
selectedProp: {
|
|
24116
|
+
type: import("vue").PropType<boolean>;
|
|
24117
|
+
};
|
|
23281
24118
|
}>> & {
|
|
23282
|
-
|
|
23283
|
-
|
|
23284
|
-
|
|
23285
|
-
|
|
23286
|
-
|
|
23287
|
-
|
|
23288
|
-
|
|
23289
|
-
|
|
23290
|
-
}, {
|
|
23291
|
-
label: string;
|
|
23292
|
-
testId: string;
|
|
23293
|
-
isOpen: boolean;
|
|
23294
|
-
infiniteLoading: boolean;
|
|
23295
|
-
triggerShownValuesCount: number;
|
|
23296
|
-
optionNameKey: string;
|
|
23297
|
-
optionIconKey: string;
|
|
23298
|
-
optionImageKey: string;
|
|
23299
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24119
|
+
onToggleTreeCollapse?: (option: unknown) => any;
|
|
24120
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24121
|
+
toggleTreeCollapse: (option: unknown) => void;
|
|
24122
|
+
}, string, {
|
|
24123
|
+
option: any;
|
|
24124
|
+
disabled: boolean;
|
|
24125
|
+
active: boolean;
|
|
24126
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23300
24127
|
optionFlagKey: string;
|
|
23301
|
-
|
|
23302
|
-
|
|
23303
|
-
|
|
23304
|
-
|
|
23305
|
-
|
|
23306
|
-
|
|
23307
|
-
|
|
23308
|
-
|
|
23309
|
-
|
|
23310
|
-
|
|
24128
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
24129
|
+
optionTwoLinesKey: string;
|
|
24130
|
+
isIndeterminate: boolean;
|
|
24131
|
+
subtitle: string;
|
|
24132
|
+
selectAllOption: boolean;
|
|
24133
|
+
nameKey: string;
|
|
24134
|
+
imageKey: string;
|
|
24135
|
+
iconKey: string;
|
|
24136
|
+
warningKey: string;
|
|
24137
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24138
|
+
endIconKey: string;
|
|
24139
|
+
endTextIconKey: string;
|
|
24140
|
+
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
24141
|
+
treeMainOption: boolean;
|
|
24142
|
+
treeMainOptionExpanded: boolean;
|
|
24143
|
+
stopOptionClickEventPropagation: boolean;
|
|
24144
|
+
treeChildShown: boolean;
|
|
24145
|
+
isMulti: boolean;
|
|
24146
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
24147
|
+
$slots: {
|
|
24148
|
+
image?(_: {}): any;
|
|
24149
|
+
flag?(_: {}): any;
|
|
24150
|
+
"icon-start"?(_: {}): any;
|
|
24151
|
+
default?(_: {}): any;
|
|
24152
|
+
"icon-end"?(_: {}): any;
|
|
24153
|
+
"option-end"?(_: {
|
|
24154
|
+
option: any;
|
|
24155
|
+
}): any;
|
|
24156
|
+
};
|
|
24157
|
+
});
|
|
24158
|
+
TreeDropdown: {
|
|
23311
24159
|
new (...args: any[]): {
|
|
23312
24160
|
$: import("vue").ComponentInternalInstance;
|
|
23313
24161
|
$data: {};
|
|
23314
24162
|
$props: Partial<{
|
|
23315
|
-
|
|
24163
|
+
testId: string;
|
|
23316
24164
|
disabled: boolean;
|
|
23317
|
-
|
|
23318
|
-
|
|
23319
|
-
|
|
23320
|
-
|
|
23321
|
-
|
|
23322
|
-
|
|
23323
|
-
|
|
23324
|
-
|
|
23325
|
-
|
|
23326
|
-
|
|
23327
|
-
|
|
23328
|
-
|
|
23329
|
-
|
|
23330
|
-
endIconKey: string;
|
|
23331
|
-
endTextIconKey: string;
|
|
23332
|
-
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
23333
|
-
treeMainOption: boolean;
|
|
23334
|
-
treeMainOptionExpanded: boolean;
|
|
23335
|
-
stopOptionClickEventPropagation: boolean;
|
|
23336
|
-
treeChildShown: boolean;
|
|
23337
|
-
isMulti: boolean;
|
|
24165
|
+
size: "small" | "medium" | "large";
|
|
24166
|
+
valueToCopy: string;
|
|
24167
|
+
selected: unknown[];
|
|
24168
|
+
placeholder: string;
|
|
24169
|
+
inlineSearchPlaceholder: string;
|
|
24170
|
+
optionNameKey: string;
|
|
24171
|
+
optionIconKey: string;
|
|
24172
|
+
optionImageKey: string;
|
|
24173
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24174
|
+
optionEndIconKey: string;
|
|
24175
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24176
|
+
disabledOptionKey: string;
|
|
24177
|
+
optionEndTextIconKey: string;
|
|
23338
24178
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23339
|
-
|
|
23340
|
-
type: import("vue").PropType<
|
|
23341
|
-
default:
|
|
24179
|
+
testId: {
|
|
24180
|
+
type: import("vue").PropType<string>;
|
|
24181
|
+
default: string;
|
|
23342
24182
|
};
|
|
23343
24183
|
disabled: {
|
|
23344
24184
|
type: import("vue").PropType<boolean>;
|
|
23345
24185
|
default: boolean;
|
|
23346
24186
|
};
|
|
23347
|
-
|
|
23348
|
-
type: import("vue").PropType<
|
|
23349
|
-
default: any;
|
|
23350
|
-
};
|
|
23351
|
-
endIconType: {
|
|
23352
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24187
|
+
size: {
|
|
24188
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
23353
24189
|
default: string;
|
|
23354
24190
|
};
|
|
23355
|
-
|
|
23356
|
-
type: import("vue").PropType<
|
|
23357
|
-
default: any;
|
|
24191
|
+
isOpen: {
|
|
24192
|
+
type: import("vue").PropType<boolean>;
|
|
23358
24193
|
};
|
|
23359
|
-
|
|
23360
|
-
type: import("vue").PropType<
|
|
24194
|
+
valueToCopy: {
|
|
24195
|
+
type: import("vue").PropType<string>;
|
|
23361
24196
|
default: any;
|
|
23362
24197
|
};
|
|
23363
|
-
|
|
23364
|
-
type: import("vue").PropType<
|
|
24198
|
+
selected: {
|
|
24199
|
+
type: import("vue").PropType<unknown[]>;
|
|
23365
24200
|
default: any;
|
|
23366
24201
|
};
|
|
23367
|
-
|
|
23368
|
-
type: import("vue").PropType<
|
|
23369
|
-
|
|
24202
|
+
options: {
|
|
24203
|
+
type: import("vue").PropType<unknown[]>;
|
|
24204
|
+
required: true;
|
|
23370
24205
|
};
|
|
23371
|
-
|
|
24206
|
+
placeholder: {
|
|
23372
24207
|
type: import("vue").PropType<string>;
|
|
23373
24208
|
default: string;
|
|
23374
24209
|
};
|
|
23375
|
-
|
|
23376
|
-
type: import("vue").PropType<boolean>;
|
|
23377
|
-
default: boolean;
|
|
23378
|
-
};
|
|
23379
|
-
nameKey: {
|
|
24210
|
+
inlineSearchPlaceholder: {
|
|
23380
24211
|
type: import("vue").PropType<string>;
|
|
23381
|
-
default:
|
|
24212
|
+
default: string;
|
|
23382
24213
|
};
|
|
23383
|
-
|
|
23384
|
-
type: import("vue").PropType<string>;
|
|
23385
|
-
|
|
24214
|
+
displayValue: {
|
|
24215
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
24216
|
+
required: true;
|
|
23386
24217
|
};
|
|
23387
|
-
|
|
24218
|
+
optionNameKey: {
|
|
23388
24219
|
type: import("vue").PropType<string>;
|
|
23389
|
-
default:
|
|
24220
|
+
default: string;
|
|
23390
24221
|
};
|
|
23391
|
-
|
|
24222
|
+
optionIconKey: {
|
|
23392
24223
|
type: import("vue").PropType<string>;
|
|
23393
|
-
default: any;
|
|
23394
|
-
};
|
|
23395
|
-
iconType: {
|
|
23396
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23397
24224
|
default: string;
|
|
23398
24225
|
};
|
|
23399
|
-
|
|
24226
|
+
optionImageKey: {
|
|
23400
24227
|
type: import("vue").PropType<string>;
|
|
23401
|
-
default:
|
|
24228
|
+
default: string;
|
|
23402
24229
|
};
|
|
23403
|
-
|
|
23404
|
-
type: import("vue").PropType<
|
|
24230
|
+
optionIconType: {
|
|
24231
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23405
24232
|
default: any;
|
|
23406
24233
|
};
|
|
23407
|
-
|
|
23408
|
-
type: import("vue").PropType<
|
|
24234
|
+
optionEndIconKey: {
|
|
24235
|
+
type: import("vue").PropType<string>;
|
|
23409
24236
|
default: string;
|
|
23410
24237
|
};
|
|
23411
|
-
|
|
23412
|
-
type: import("vue").PropType<
|
|
23413
|
-
default:
|
|
24238
|
+
optionEndIconType: {
|
|
24239
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24240
|
+
default: any;
|
|
23414
24241
|
};
|
|
23415
|
-
|
|
23416
|
-
type: import("vue").PropType<
|
|
23417
|
-
default:
|
|
24242
|
+
disabledOptionKey: {
|
|
24243
|
+
type: import("vue").PropType<string>;
|
|
24244
|
+
default: string;
|
|
23418
24245
|
};
|
|
23419
|
-
|
|
23420
|
-
type: import("vue").PropType<
|
|
23421
|
-
default:
|
|
24246
|
+
optionEndTextIconKey: {
|
|
24247
|
+
type: import("vue").PropType<string>;
|
|
24248
|
+
default: any;
|
|
23422
24249
|
};
|
|
23423
|
-
|
|
23424
|
-
type: import("vue").PropType<
|
|
23425
|
-
|
|
24250
|
+
optionChildrenKey: {
|
|
24251
|
+
type: import("vue").PropType<string>;
|
|
24252
|
+
required: true;
|
|
23426
24253
|
};
|
|
23427
|
-
|
|
23428
|
-
type: import("vue").PropType<
|
|
23429
|
-
|
|
24254
|
+
optionUniqueIdKey: {
|
|
24255
|
+
type: import("vue").PropType<string | number>;
|
|
24256
|
+
required: true;
|
|
23430
24257
|
};
|
|
23431
|
-
|
|
23432
|
-
type: import("vue").PropType<
|
|
24258
|
+
preExpandedOptions: {
|
|
24259
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
24260
|
+
required: true;
|
|
23433
24261
|
};
|
|
23434
24262
|
}>> & {
|
|
23435
|
-
|
|
23436
|
-
|
|
24263
|
+
"onUpdate:selected"?: (value: unknown) => any;
|
|
24264
|
+
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
24265
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "valueToCopy" | "selected" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
|
|
23437
24266
|
$attrs: {
|
|
23438
24267
|
[x: string]: unknown;
|
|
23439
24268
|
};
|
|
@@ -23445,132 +24274,114 @@ declare const _default: {
|
|
|
23445
24274
|
}>;
|
|
23446
24275
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23447
24276
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23448
|
-
$emit: (event: "
|
|
24277
|
+
$emit: ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void);
|
|
23449
24278
|
$el: any;
|
|
23450
24279
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23451
|
-
|
|
23452
|
-
type: import("vue").PropType<
|
|
23453
|
-
default:
|
|
24280
|
+
testId: {
|
|
24281
|
+
type: import("vue").PropType<string>;
|
|
24282
|
+
default: string;
|
|
23454
24283
|
};
|
|
23455
24284
|
disabled: {
|
|
23456
24285
|
type: import("vue").PropType<boolean>;
|
|
23457
24286
|
default: boolean;
|
|
23458
24287
|
};
|
|
23459
|
-
|
|
23460
|
-
type: import("vue").PropType<
|
|
23461
|
-
default: any;
|
|
23462
|
-
};
|
|
23463
|
-
endIconType: {
|
|
23464
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24288
|
+
size: {
|
|
24289
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
23465
24290
|
default: string;
|
|
23466
24291
|
};
|
|
23467
|
-
|
|
24292
|
+
isOpen: {
|
|
24293
|
+
type: import("vue").PropType<boolean>;
|
|
24294
|
+
};
|
|
24295
|
+
valueToCopy: {
|
|
23468
24296
|
type: import("vue").PropType<string>;
|
|
23469
24297
|
default: any;
|
|
23470
24298
|
};
|
|
23471
|
-
|
|
23472
|
-
type: import("vue").PropType<
|
|
24299
|
+
selected: {
|
|
24300
|
+
type: import("vue").PropType<unknown[]>;
|
|
23473
24301
|
default: any;
|
|
23474
24302
|
};
|
|
23475
|
-
|
|
23476
|
-
type: import("vue").PropType<
|
|
23477
|
-
|
|
24303
|
+
options: {
|
|
24304
|
+
type: import("vue").PropType<unknown[]>;
|
|
24305
|
+
required: true;
|
|
23478
24306
|
};
|
|
23479
|
-
|
|
23480
|
-
type: import("vue").PropType<
|
|
23481
|
-
default:
|
|
24307
|
+
placeholder: {
|
|
24308
|
+
type: import("vue").PropType<string>;
|
|
24309
|
+
default: string;
|
|
23482
24310
|
};
|
|
23483
|
-
|
|
24311
|
+
inlineSearchPlaceholder: {
|
|
23484
24312
|
type: import("vue").PropType<string>;
|
|
23485
24313
|
default: string;
|
|
23486
24314
|
};
|
|
23487
|
-
|
|
23488
|
-
type: import("vue").PropType<
|
|
23489
|
-
|
|
24315
|
+
displayValue: {
|
|
24316
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
24317
|
+
required: true;
|
|
23490
24318
|
};
|
|
23491
|
-
|
|
24319
|
+
optionNameKey: {
|
|
23492
24320
|
type: import("vue").PropType<string>;
|
|
23493
|
-
default:
|
|
24321
|
+
default: string;
|
|
23494
24322
|
};
|
|
23495
|
-
|
|
24323
|
+
optionIconKey: {
|
|
23496
24324
|
type: import("vue").PropType<string>;
|
|
23497
|
-
default:
|
|
24325
|
+
default: string;
|
|
23498
24326
|
};
|
|
23499
|
-
|
|
24327
|
+
optionImageKey: {
|
|
23500
24328
|
type: import("vue").PropType<string>;
|
|
23501
|
-
default:
|
|
24329
|
+
default: string;
|
|
23502
24330
|
};
|
|
23503
|
-
|
|
23504
|
-
type: import("vue").PropType<
|
|
24331
|
+
optionIconType: {
|
|
24332
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23505
24333
|
default: any;
|
|
23506
24334
|
};
|
|
23507
|
-
|
|
23508
|
-
type: import("vue").PropType<
|
|
24335
|
+
optionEndIconKey: {
|
|
24336
|
+
type: import("vue").PropType<string>;
|
|
23509
24337
|
default: string;
|
|
23510
24338
|
};
|
|
23511
|
-
|
|
23512
|
-
type: import("vue").PropType<
|
|
24339
|
+
optionEndIconType: {
|
|
24340
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23513
24341
|
default: any;
|
|
23514
24342
|
};
|
|
23515
|
-
|
|
24343
|
+
disabledOptionKey: {
|
|
23516
24344
|
type: import("vue").PropType<string>;
|
|
23517
|
-
default: any;
|
|
23518
|
-
};
|
|
23519
|
-
toolTipPlacement: {
|
|
23520
|
-
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
23521
24345
|
default: string;
|
|
23522
24346
|
};
|
|
23523
|
-
|
|
23524
|
-
type: import("vue").PropType<
|
|
23525
|
-
default:
|
|
23526
|
-
};
|
|
23527
|
-
treeMainOptionExpanded: {
|
|
23528
|
-
type: import("vue").PropType<boolean>;
|
|
23529
|
-
default: boolean;
|
|
23530
|
-
};
|
|
23531
|
-
stopOptionClickEventPropagation: {
|
|
23532
|
-
type: import("vue").PropType<boolean>;
|
|
23533
|
-
default: boolean;
|
|
24347
|
+
optionEndTextIconKey: {
|
|
24348
|
+
type: import("vue").PropType<string>;
|
|
24349
|
+
default: any;
|
|
23534
24350
|
};
|
|
23535
|
-
|
|
23536
|
-
type: import("vue").PropType<
|
|
23537
|
-
|
|
24351
|
+
optionChildrenKey: {
|
|
24352
|
+
type: import("vue").PropType<string>;
|
|
24353
|
+
required: true;
|
|
23538
24354
|
};
|
|
23539
|
-
|
|
23540
|
-
type: import("vue").PropType<
|
|
23541
|
-
|
|
24355
|
+
optionUniqueIdKey: {
|
|
24356
|
+
type: import("vue").PropType<string | number>;
|
|
24357
|
+
required: true;
|
|
23542
24358
|
};
|
|
23543
|
-
|
|
23544
|
-
type: import("vue").PropType<
|
|
24359
|
+
preExpandedOptions: {
|
|
24360
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
24361
|
+
required: true;
|
|
23545
24362
|
};
|
|
23546
24363
|
}>> & {
|
|
23547
|
-
|
|
24364
|
+
"onUpdate:selected"?: (value: unknown) => any;
|
|
24365
|
+
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
23548
24366
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23549
|
-
|
|
24367
|
+
"update:selected": (value: unknown) => void;
|
|
24368
|
+
"update:isOpen": (value: unknown) => void;
|
|
23550
24369
|
}, string, {
|
|
23551
|
-
|
|
24370
|
+
testId: string;
|
|
23552
24371
|
disabled: boolean;
|
|
23553
|
-
|
|
23554
|
-
|
|
23555
|
-
|
|
23556
|
-
|
|
23557
|
-
|
|
23558
|
-
|
|
23559
|
-
|
|
23560
|
-
|
|
23561
|
-
|
|
23562
|
-
|
|
23563
|
-
|
|
23564
|
-
|
|
23565
|
-
|
|
23566
|
-
endIconKey: string;
|
|
23567
|
-
endTextIconKey: string;
|
|
23568
|
-
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
23569
|
-
treeMainOption: boolean;
|
|
23570
|
-
treeMainOptionExpanded: boolean;
|
|
23571
|
-
stopOptionClickEventPropagation: boolean;
|
|
23572
|
-
treeChildShown: boolean;
|
|
23573
|
-
isMulti: boolean;
|
|
24372
|
+
size: "small" | "medium" | "large";
|
|
24373
|
+
valueToCopy: string;
|
|
24374
|
+
selected: unknown[];
|
|
24375
|
+
placeholder: string;
|
|
24376
|
+
inlineSearchPlaceholder: string;
|
|
24377
|
+
optionNameKey: string;
|
|
24378
|
+
optionIconKey: string;
|
|
24379
|
+
optionImageKey: string;
|
|
24380
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24381
|
+
optionEndIconKey: string;
|
|
24382
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24383
|
+
disabledOptionKey: string;
|
|
24384
|
+
optionEndTextIconKey: string;
|
|
23574
24385
|
}, {}, string> & {
|
|
23575
24386
|
beforeCreate?: (() => void) | (() => void)[];
|
|
23576
24387
|
created?: (() => void) | (() => void)[];
|
|
@@ -23592,305 +24403,255 @@ declare const _default: {
|
|
|
23592
24403
|
$nextTick: typeof import("vue").nextTick;
|
|
23593
24404
|
$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;
|
|
23594
24405
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
23595
|
-
|
|
23596
|
-
type: import("vue").PropType<
|
|
23597
|
-
default:
|
|
24406
|
+
testId: {
|
|
24407
|
+
type: import("vue").PropType<string>;
|
|
24408
|
+
default: string;
|
|
23598
24409
|
};
|
|
23599
24410
|
disabled: {
|
|
23600
24411
|
type: import("vue").PropType<boolean>;
|
|
23601
24412
|
default: boolean;
|
|
23602
24413
|
};
|
|
23603
|
-
|
|
23604
|
-
type: import("vue").PropType<
|
|
23605
|
-
default: any;
|
|
23606
|
-
};
|
|
23607
|
-
endIconType: {
|
|
23608
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24414
|
+
size: {
|
|
24415
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
23609
24416
|
default: string;
|
|
23610
24417
|
};
|
|
23611
|
-
|
|
24418
|
+
isOpen: {
|
|
24419
|
+
type: import("vue").PropType<boolean>;
|
|
24420
|
+
};
|
|
24421
|
+
valueToCopy: {
|
|
23612
24422
|
type: import("vue").PropType<string>;
|
|
23613
24423
|
default: any;
|
|
23614
24424
|
};
|
|
23615
|
-
|
|
23616
|
-
type: import("vue").PropType<
|
|
24425
|
+
selected: {
|
|
24426
|
+
type: import("vue").PropType<unknown[]>;
|
|
23617
24427
|
default: any;
|
|
23618
24428
|
};
|
|
23619
|
-
|
|
23620
|
-
type: import("vue").PropType<
|
|
23621
|
-
|
|
24429
|
+
options: {
|
|
24430
|
+
type: import("vue").PropType<unknown[]>;
|
|
24431
|
+
required: true;
|
|
23622
24432
|
};
|
|
23623
|
-
|
|
23624
|
-
type: import("vue").PropType<
|
|
23625
|
-
default:
|
|
24433
|
+
placeholder: {
|
|
24434
|
+
type: import("vue").PropType<string>;
|
|
24435
|
+
default: string;
|
|
23626
24436
|
};
|
|
23627
|
-
|
|
24437
|
+
inlineSearchPlaceholder: {
|
|
23628
24438
|
type: import("vue").PropType<string>;
|
|
23629
24439
|
default: string;
|
|
23630
24440
|
};
|
|
23631
|
-
|
|
23632
|
-
type: import("vue").PropType<
|
|
23633
|
-
|
|
24441
|
+
displayValue: {
|
|
24442
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
24443
|
+
required: true;
|
|
23634
24444
|
};
|
|
23635
|
-
|
|
24445
|
+
optionNameKey: {
|
|
23636
24446
|
type: import("vue").PropType<string>;
|
|
23637
|
-
default:
|
|
24447
|
+
default: string;
|
|
23638
24448
|
};
|
|
23639
|
-
|
|
24449
|
+
optionIconKey: {
|
|
24450
|
+
type: import("vue").PropType<string>;
|
|
24451
|
+
default: string;
|
|
24452
|
+
};
|
|
24453
|
+
optionImageKey: {
|
|
23640
24454
|
type: import("vue").PropType<string>;
|
|
24455
|
+
default: string;
|
|
24456
|
+
};
|
|
24457
|
+
optionIconType: {
|
|
24458
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23641
24459
|
default: any;
|
|
23642
24460
|
};
|
|
23643
|
-
|
|
24461
|
+
optionEndIconKey: {
|
|
23644
24462
|
type: import("vue").PropType<string>;
|
|
24463
|
+
default: string;
|
|
24464
|
+
};
|
|
24465
|
+
optionEndIconType: {
|
|
24466
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23645
24467
|
default: any;
|
|
23646
24468
|
};
|
|
23647
|
-
|
|
24469
|
+
disabledOptionKey: {
|
|
23648
24470
|
type: import("vue").PropType<string>;
|
|
23649
|
-
default: any;
|
|
23650
|
-
};
|
|
23651
|
-
iconType: {
|
|
23652
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23653
24471
|
default: string;
|
|
23654
24472
|
};
|
|
23655
|
-
|
|
24473
|
+
optionEndTextIconKey: {
|
|
23656
24474
|
type: import("vue").PropType<string>;
|
|
23657
24475
|
default: any;
|
|
23658
24476
|
};
|
|
23659
|
-
|
|
24477
|
+
optionChildrenKey: {
|
|
23660
24478
|
type: import("vue").PropType<string>;
|
|
23661
|
-
|
|
23662
|
-
};
|
|
23663
|
-
toolTipPlacement: {
|
|
23664
|
-
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
23665
|
-
default: string;
|
|
23666
|
-
};
|
|
23667
|
-
treeMainOption: {
|
|
23668
|
-
type: import("vue").PropType<boolean>;
|
|
23669
|
-
default: boolean;
|
|
23670
|
-
};
|
|
23671
|
-
treeMainOptionExpanded: {
|
|
23672
|
-
type: import("vue").PropType<boolean>;
|
|
23673
|
-
default: boolean;
|
|
23674
|
-
};
|
|
23675
|
-
stopOptionClickEventPropagation: {
|
|
23676
|
-
type: import("vue").PropType<boolean>;
|
|
23677
|
-
default: boolean;
|
|
23678
|
-
};
|
|
23679
|
-
treeChildShown: {
|
|
23680
|
-
type: import("vue").PropType<boolean>;
|
|
23681
|
-
default: boolean;
|
|
24479
|
+
required: true;
|
|
23682
24480
|
};
|
|
23683
|
-
|
|
23684
|
-
type: import("vue").PropType<
|
|
23685
|
-
|
|
24481
|
+
optionUniqueIdKey: {
|
|
24482
|
+
type: import("vue").PropType<string | number>;
|
|
24483
|
+
required: true;
|
|
23686
24484
|
};
|
|
23687
|
-
|
|
23688
|
-
type: import("vue").PropType<
|
|
24485
|
+
preExpandedOptions: {
|
|
24486
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
24487
|
+
required: true;
|
|
23689
24488
|
};
|
|
23690
24489
|
}>> & {
|
|
23691
|
-
|
|
24490
|
+
"onUpdate:selected"?: (value: unknown) => any;
|
|
24491
|
+
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
23692
24492
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
23693
24493
|
__isFragment?: never;
|
|
23694
24494
|
__isTeleport?: never;
|
|
23695
24495
|
__isSuspense?: never;
|
|
23696
24496
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23697
|
-
|
|
23698
|
-
type: import("vue").PropType<
|
|
23699
|
-
default:
|
|
24497
|
+
testId: {
|
|
24498
|
+
type: import("vue").PropType<string>;
|
|
24499
|
+
default: string;
|
|
23700
24500
|
};
|
|
23701
24501
|
disabled: {
|
|
23702
24502
|
type: import("vue").PropType<boolean>;
|
|
23703
24503
|
default: boolean;
|
|
23704
24504
|
};
|
|
23705
|
-
|
|
23706
|
-
type: import("vue").PropType<
|
|
23707
|
-
default: any;
|
|
23708
|
-
};
|
|
23709
|
-
endIconType: {
|
|
23710
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24505
|
+
size: {
|
|
24506
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
23711
24507
|
default: string;
|
|
23712
24508
|
};
|
|
23713
|
-
|
|
24509
|
+
isOpen: {
|
|
24510
|
+
type: import("vue").PropType<boolean>;
|
|
24511
|
+
};
|
|
24512
|
+
valueToCopy: {
|
|
23714
24513
|
type: import("vue").PropType<string>;
|
|
23715
24514
|
default: any;
|
|
23716
24515
|
};
|
|
23717
|
-
|
|
23718
|
-
type: import("vue").PropType<
|
|
24516
|
+
selected: {
|
|
24517
|
+
type: import("vue").PropType<unknown[]>;
|
|
23719
24518
|
default: any;
|
|
23720
24519
|
};
|
|
23721
|
-
|
|
23722
|
-
type: import("vue").PropType<
|
|
23723
|
-
|
|
24520
|
+
options: {
|
|
24521
|
+
type: import("vue").PropType<unknown[]>;
|
|
24522
|
+
required: true;
|
|
23724
24523
|
};
|
|
23725
|
-
|
|
23726
|
-
type: import("vue").PropType<
|
|
23727
|
-
default:
|
|
24524
|
+
placeholder: {
|
|
24525
|
+
type: import("vue").PropType<string>;
|
|
24526
|
+
default: string;
|
|
23728
24527
|
};
|
|
23729
|
-
|
|
24528
|
+
inlineSearchPlaceholder: {
|
|
23730
24529
|
type: import("vue").PropType<string>;
|
|
23731
24530
|
default: string;
|
|
23732
24531
|
};
|
|
23733
|
-
|
|
23734
|
-
type: import("vue").PropType<
|
|
23735
|
-
|
|
24532
|
+
displayValue: {
|
|
24533
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
24534
|
+
required: true;
|
|
23736
24535
|
};
|
|
23737
|
-
|
|
24536
|
+
optionNameKey: {
|
|
23738
24537
|
type: import("vue").PropType<string>;
|
|
23739
|
-
default:
|
|
24538
|
+
default: string;
|
|
23740
24539
|
};
|
|
23741
|
-
|
|
24540
|
+
optionIconKey: {
|
|
23742
24541
|
type: import("vue").PropType<string>;
|
|
23743
|
-
default:
|
|
24542
|
+
default: string;
|
|
23744
24543
|
};
|
|
23745
|
-
|
|
24544
|
+
optionImageKey: {
|
|
23746
24545
|
type: import("vue").PropType<string>;
|
|
23747
|
-
default:
|
|
24546
|
+
default: string;
|
|
23748
24547
|
};
|
|
23749
|
-
|
|
23750
|
-
type: import("vue").PropType<
|
|
24548
|
+
optionIconType: {
|
|
24549
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23751
24550
|
default: any;
|
|
23752
24551
|
};
|
|
23753
|
-
|
|
23754
|
-
type: import("vue").PropType<
|
|
24552
|
+
optionEndIconKey: {
|
|
24553
|
+
type: import("vue").PropType<string>;
|
|
23755
24554
|
default: string;
|
|
23756
24555
|
};
|
|
23757
|
-
|
|
23758
|
-
type: import("vue").PropType<
|
|
24556
|
+
optionEndIconType: {
|
|
24557
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23759
24558
|
default: any;
|
|
23760
24559
|
};
|
|
23761
|
-
|
|
24560
|
+
disabledOptionKey: {
|
|
23762
24561
|
type: import("vue").PropType<string>;
|
|
23763
|
-
default: any;
|
|
23764
|
-
};
|
|
23765
|
-
toolTipPlacement: {
|
|
23766
|
-
type: import("vue").PropType<"top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
23767
24562
|
default: string;
|
|
23768
24563
|
};
|
|
23769
|
-
|
|
23770
|
-
type: import("vue").PropType<
|
|
23771
|
-
default:
|
|
23772
|
-
};
|
|
23773
|
-
treeMainOptionExpanded: {
|
|
23774
|
-
type: import("vue").PropType<boolean>;
|
|
23775
|
-
default: boolean;
|
|
23776
|
-
};
|
|
23777
|
-
stopOptionClickEventPropagation: {
|
|
23778
|
-
type: import("vue").PropType<boolean>;
|
|
23779
|
-
default: boolean;
|
|
24564
|
+
optionEndTextIconKey: {
|
|
24565
|
+
type: import("vue").PropType<string>;
|
|
24566
|
+
default: any;
|
|
23780
24567
|
};
|
|
23781
|
-
|
|
23782
|
-
type: import("vue").PropType<
|
|
23783
|
-
|
|
24568
|
+
optionChildrenKey: {
|
|
24569
|
+
type: import("vue").PropType<string>;
|
|
24570
|
+
required: true;
|
|
23784
24571
|
};
|
|
23785
|
-
|
|
23786
|
-
type: import("vue").PropType<
|
|
23787
|
-
|
|
24572
|
+
optionUniqueIdKey: {
|
|
24573
|
+
type: import("vue").PropType<string | number>;
|
|
24574
|
+
required: true;
|
|
23788
24575
|
};
|
|
23789
|
-
|
|
23790
|
-
type: import("vue").PropType<
|
|
24576
|
+
preExpandedOptions: {
|
|
24577
|
+
type: import("vue").PropType<string[] | number[]>;
|
|
24578
|
+
required: true;
|
|
23791
24579
|
};
|
|
23792
24580
|
}>> & {
|
|
23793
|
-
|
|
24581
|
+
"onUpdate:selected"?: (value: unknown) => any;
|
|
24582
|
+
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
23794
24583
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23795
|
-
|
|
24584
|
+
"update:selected": (value: unknown) => void;
|
|
24585
|
+
"update:isOpen": (value: unknown) => void;
|
|
23796
24586
|
}, string, {
|
|
23797
|
-
|
|
24587
|
+
testId: string;
|
|
23798
24588
|
disabled: boolean;
|
|
23799
|
-
|
|
23800
|
-
|
|
23801
|
-
|
|
23802
|
-
|
|
23803
|
-
|
|
23804
|
-
|
|
23805
|
-
|
|
23806
|
-
|
|
23807
|
-
|
|
23808
|
-
|
|
23809
|
-
|
|
23810
|
-
|
|
23811
|
-
|
|
23812
|
-
endIconKey: string;
|
|
23813
|
-
endTextIconKey: string;
|
|
23814
|
-
toolTipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
23815
|
-
treeMainOption: boolean;
|
|
23816
|
-
treeMainOptionExpanded: boolean;
|
|
23817
|
-
stopOptionClickEventPropagation: boolean;
|
|
23818
|
-
treeChildShown: boolean;
|
|
23819
|
-
isMulti: boolean;
|
|
24589
|
+
size: "small" | "medium" | "large";
|
|
24590
|
+
valueToCopy: string;
|
|
24591
|
+
selected: unknown[];
|
|
24592
|
+
placeholder: string;
|
|
24593
|
+
inlineSearchPlaceholder: string;
|
|
24594
|
+
optionNameKey: string;
|
|
24595
|
+
optionIconKey: string;
|
|
24596
|
+
optionImageKey: string;
|
|
24597
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24598
|
+
optionEndIconKey: string;
|
|
24599
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24600
|
+
disabledOptionKey: string;
|
|
24601
|
+
optionEndTextIconKey: string;
|
|
23820
24602
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
23821
24603
|
$slots: {
|
|
23822
|
-
|
|
23823
|
-
flag?(_: {}): any;
|
|
23824
|
-
"icon-start"?(_: {}): any;
|
|
23825
|
-
default?(_: {}): any;
|
|
23826
|
-
"icon-end"?(_: {}): any;
|
|
23827
|
-
"option-end"?(_: {
|
|
23828
|
-
option: any;
|
|
23829
|
-
}): any;
|
|
24604
|
+
"trigger-end-icon"?(_: {}): any;
|
|
23830
24605
|
};
|
|
23831
24606
|
});
|
|
23832
|
-
|
|
24607
|
+
ConditionalDropdown: {
|
|
23833
24608
|
new (...args: any[]): {
|
|
23834
24609
|
$: import("vue").ComponentInternalInstance;
|
|
23835
24610
|
$data: {};
|
|
23836
24611
|
$props: Partial<{
|
|
24612
|
+
label: string;
|
|
23837
24613
|
testId: string;
|
|
23838
|
-
|
|
23839
|
-
|
|
23840
|
-
|
|
23841
|
-
selected: unknown[];
|
|
23842
|
-
placeholder: string;
|
|
23843
|
-
inlineSearchPlaceholder: string;
|
|
24614
|
+
isOpen: boolean;
|
|
24615
|
+
infiniteLoading: boolean;
|
|
24616
|
+
triggerShownValuesCount: number;
|
|
23844
24617
|
optionNameKey: string;
|
|
23845
24618
|
optionIconKey: string;
|
|
23846
24619
|
optionImageKey: string;
|
|
23847
24620
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23848
|
-
|
|
23849
|
-
|
|
23850
|
-
|
|
23851
|
-
|
|
24621
|
+
optionFlagKey: string;
|
|
24622
|
+
groupedOptions: boolean;
|
|
24623
|
+
comparingKey: string;
|
|
24624
|
+
minCharsToStart: number;
|
|
24625
|
+
searchQuery: string;
|
|
24626
|
+
loadMoreFn: () => Promise<any[]>;
|
|
24627
|
+
fetchDataDebounceTime: number;
|
|
24628
|
+
autoFocusSearch: boolean;
|
|
24629
|
+
loadingOverride: boolean;
|
|
23852
24630
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23853
|
-
|
|
24631
|
+
label: {
|
|
23854
24632
|
type: import("vue").PropType<string>;
|
|
24633
|
+
required: true;
|
|
23855
24634
|
default: string;
|
|
23856
24635
|
};
|
|
23857
|
-
|
|
23858
|
-
type: import("vue").PropType<
|
|
23859
|
-
default: boolean;
|
|
23860
|
-
};
|
|
23861
|
-
size: {
|
|
23862
|
-
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
24636
|
+
testId: {
|
|
24637
|
+
type: import("vue").PropType<string>;
|
|
23863
24638
|
default: string;
|
|
23864
24639
|
};
|
|
23865
24640
|
isOpen: {
|
|
23866
24641
|
type: import("vue").PropType<boolean>;
|
|
24642
|
+
default: boolean;
|
|
23867
24643
|
};
|
|
23868
|
-
|
|
23869
|
-
type: import("vue").PropType<
|
|
23870
|
-
default:
|
|
23871
|
-
};
|
|
23872
|
-
|
|
23873
|
-
type: import("vue").PropType<
|
|
23874
|
-
default:
|
|
23875
|
-
};
|
|
23876
|
-
options: {
|
|
23877
|
-
type: import("vue").PropType<unknown[]>;
|
|
23878
|
-
required: true;
|
|
23879
|
-
};
|
|
23880
|
-
placeholder: {
|
|
23881
|
-
type: import("vue").PropType<string>;
|
|
23882
|
-
default: string;
|
|
23883
|
-
};
|
|
23884
|
-
inlineSearchPlaceholder: {
|
|
23885
|
-
type: import("vue").PropType<string>;
|
|
23886
|
-
default: string;
|
|
23887
|
-
};
|
|
23888
|
-
displayValue: {
|
|
23889
|
-
type: import("vue").PropType<(option: unknown) => string>;
|
|
23890
|
-
required: true;
|
|
24644
|
+
infiniteLoading: {
|
|
24645
|
+
type: import("vue").PropType<boolean>;
|
|
24646
|
+
default: boolean;
|
|
24647
|
+
};
|
|
24648
|
+
triggerShownValuesCount: {
|
|
24649
|
+
type: import("vue").PropType<number>;
|
|
24650
|
+
default: number;
|
|
23891
24651
|
};
|
|
23892
24652
|
optionNameKey: {
|
|
23893
24653
|
type: import("vue").PropType<string>;
|
|
24654
|
+
required: true;
|
|
23894
24655
|
default: string;
|
|
23895
24656
|
};
|
|
23896
24657
|
optionIconKey: {
|
|
@@ -23905,38 +24666,77 @@ declare const _default: {
|
|
|
23905
24666
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23906
24667
|
default: any;
|
|
23907
24668
|
};
|
|
23908
|
-
|
|
24669
|
+
optionFlagKey: {
|
|
23909
24670
|
type: import("vue").PropType<string>;
|
|
23910
24671
|
default: string;
|
|
23911
24672
|
};
|
|
23912
|
-
|
|
23913
|
-
type: import("vue").PropType<
|
|
23914
|
-
default:
|
|
24673
|
+
groupedOptions: {
|
|
24674
|
+
type: import("vue").PropType<boolean>;
|
|
24675
|
+
default: boolean;
|
|
23915
24676
|
};
|
|
23916
|
-
|
|
24677
|
+
comparingKey: {
|
|
23917
24678
|
type: import("vue").PropType<string>;
|
|
24679
|
+
required: true;
|
|
23918
24680
|
default: string;
|
|
23919
24681
|
};
|
|
23920
|
-
|
|
23921
|
-
type: import("vue").PropType<
|
|
23922
|
-
|
|
24682
|
+
conditionalOptions: {
|
|
24683
|
+
type: import("vue").PropType<{
|
|
24684
|
+
label: string;
|
|
24685
|
+
value: string;
|
|
24686
|
+
multi: boolean;
|
|
24687
|
+
}[]>;
|
|
24688
|
+
required: true;
|
|
23923
24689
|
};
|
|
23924
|
-
|
|
23925
|
-
type: import("vue").PropType<
|
|
24690
|
+
selectedCondition: {
|
|
24691
|
+
type: import("vue").PropType<{
|
|
24692
|
+
label: string;
|
|
24693
|
+
value: string;
|
|
24694
|
+
multi: boolean;
|
|
24695
|
+
}>;
|
|
23926
24696
|
required: true;
|
|
23927
24697
|
};
|
|
23928
|
-
|
|
23929
|
-
type: import("vue").PropType<
|
|
24698
|
+
appliedSelections: {
|
|
24699
|
+
type: import("vue").PropType<unknown>;
|
|
23930
24700
|
required: true;
|
|
23931
24701
|
};
|
|
23932
|
-
|
|
23933
|
-
type: import("vue").PropType<string
|
|
24702
|
+
fetchFnCallback: {
|
|
24703
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23934
24704
|
required: true;
|
|
23935
24705
|
};
|
|
24706
|
+
minCharsToStart: {
|
|
24707
|
+
type: import("vue").PropType<number>;
|
|
24708
|
+
default: number;
|
|
24709
|
+
};
|
|
24710
|
+
searchQuery: {
|
|
24711
|
+
type: import("vue").PropType<string>;
|
|
24712
|
+
default: string;
|
|
24713
|
+
};
|
|
24714
|
+
loadMoreFn: {
|
|
24715
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
24716
|
+
default: any;
|
|
24717
|
+
};
|
|
24718
|
+
fetchDataDebounceTime: {
|
|
24719
|
+
type: import("vue").PropType<number>;
|
|
24720
|
+
default: number;
|
|
24721
|
+
};
|
|
24722
|
+
autoFocusSearch: {
|
|
24723
|
+
type: import("vue").PropType<boolean>;
|
|
24724
|
+
default: boolean;
|
|
24725
|
+
};
|
|
24726
|
+
loadingOverride: {
|
|
24727
|
+
type: import("vue").PropType<boolean>;
|
|
24728
|
+
default: boolean;
|
|
24729
|
+
};
|
|
23936
24730
|
}>> & {
|
|
23937
|
-
|
|
23938
|
-
|
|
23939
|
-
|
|
24731
|
+
onClear?: () => any;
|
|
24732
|
+
onClosed?: () => any;
|
|
24733
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
24734
|
+
label: string;
|
|
24735
|
+
value: string;
|
|
24736
|
+
multi: boolean;
|
|
24737
|
+
}) => any;
|
|
24738
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24739
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "isOpen" | "infiniteLoading" | "triggerShownValuesCount" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "groupedOptions" | "comparingKey" | "minCharsToStart" | "searchQuery" | "loadMoreFn" | "fetchDataDebounceTime" | "autoFocusSearch" | "loadingOverride">;
|
|
23940
24740
|
$attrs: {
|
|
23941
24741
|
[x: string]: unknown;
|
|
23942
24742
|
};
|
|
@@ -23948,50 +24748,37 @@ declare const _default: {
|
|
|
23948
24748
|
}>;
|
|
23949
24749
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23950
24750
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23951
|
-
$emit: ((event: "
|
|
24751
|
+
$emit: ((event: "clear") => void) & ((event: "closed") => void) & ((event: "update:selectedCondition", value: {
|
|
24752
|
+
label: string;
|
|
24753
|
+
value: string;
|
|
24754
|
+
multi: boolean;
|
|
24755
|
+
}) => void) & ((event: "update:appliedSelections", value: unknown) => void);
|
|
23952
24756
|
$el: any;
|
|
23953
24757
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23954
|
-
|
|
24758
|
+
label: {
|
|
23955
24759
|
type: import("vue").PropType<string>;
|
|
24760
|
+
required: true;
|
|
23956
24761
|
default: string;
|
|
23957
24762
|
};
|
|
23958
|
-
|
|
23959
|
-
type: import("vue").PropType<
|
|
23960
|
-
default: boolean;
|
|
23961
|
-
};
|
|
23962
|
-
size: {
|
|
23963
|
-
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
24763
|
+
testId: {
|
|
24764
|
+
type: import("vue").PropType<string>;
|
|
23964
24765
|
default: string;
|
|
23965
24766
|
};
|
|
23966
24767
|
isOpen: {
|
|
23967
24768
|
type: import("vue").PropType<boolean>;
|
|
24769
|
+
default: boolean;
|
|
23968
24770
|
};
|
|
23969
|
-
|
|
23970
|
-
type: import("vue").PropType<
|
|
23971
|
-
default:
|
|
23972
|
-
};
|
|
23973
|
-
selected: {
|
|
23974
|
-
type: import("vue").PropType<unknown[]>;
|
|
23975
|
-
default: any;
|
|
23976
|
-
};
|
|
23977
|
-
options: {
|
|
23978
|
-
type: import("vue").PropType<unknown[]>;
|
|
23979
|
-
required: true;
|
|
23980
|
-
};
|
|
23981
|
-
placeholder: {
|
|
23982
|
-
type: import("vue").PropType<string>;
|
|
23983
|
-
default: string;
|
|
23984
|
-
};
|
|
23985
|
-
inlineSearchPlaceholder: {
|
|
23986
|
-
type: import("vue").PropType<string>;
|
|
23987
|
-
default: string;
|
|
24771
|
+
infiniteLoading: {
|
|
24772
|
+
type: import("vue").PropType<boolean>;
|
|
24773
|
+
default: boolean;
|
|
23988
24774
|
};
|
|
23989
|
-
|
|
23990
|
-
type: import("vue").PropType<
|
|
23991
|
-
|
|
24775
|
+
triggerShownValuesCount: {
|
|
24776
|
+
type: import("vue").PropType<number>;
|
|
24777
|
+
default: number;
|
|
23992
24778
|
};
|
|
23993
24779
|
optionNameKey: {
|
|
23994
24780
|
type: import("vue").PropType<string>;
|
|
24781
|
+
required: true;
|
|
23995
24782
|
default: string;
|
|
23996
24783
|
};
|
|
23997
24784
|
optionIconKey: {
|
|
@@ -24006,56 +24793,104 @@ declare const _default: {
|
|
|
24006
24793
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24007
24794
|
default: any;
|
|
24008
24795
|
};
|
|
24009
|
-
|
|
24796
|
+
optionFlagKey: {
|
|
24010
24797
|
type: import("vue").PropType<string>;
|
|
24011
24798
|
default: string;
|
|
24012
24799
|
};
|
|
24013
|
-
|
|
24014
|
-
type: import("vue").PropType<
|
|
24015
|
-
default:
|
|
24800
|
+
groupedOptions: {
|
|
24801
|
+
type: import("vue").PropType<boolean>;
|
|
24802
|
+
default: boolean;
|
|
24016
24803
|
};
|
|
24017
|
-
|
|
24804
|
+
comparingKey: {
|
|
24018
24805
|
type: import("vue").PropType<string>;
|
|
24806
|
+
required: true;
|
|
24019
24807
|
default: string;
|
|
24020
24808
|
};
|
|
24021
|
-
|
|
24022
|
-
type: import("vue").PropType<
|
|
24023
|
-
|
|
24809
|
+
conditionalOptions: {
|
|
24810
|
+
type: import("vue").PropType<{
|
|
24811
|
+
label: string;
|
|
24812
|
+
value: string;
|
|
24813
|
+
multi: boolean;
|
|
24814
|
+
}[]>;
|
|
24815
|
+
required: true;
|
|
24024
24816
|
};
|
|
24025
|
-
|
|
24026
|
-
type: import("vue").PropType<
|
|
24817
|
+
selectedCondition: {
|
|
24818
|
+
type: import("vue").PropType<{
|
|
24819
|
+
label: string;
|
|
24820
|
+
value: string;
|
|
24821
|
+
multi: boolean;
|
|
24822
|
+
}>;
|
|
24027
24823
|
required: true;
|
|
24028
24824
|
};
|
|
24029
|
-
|
|
24030
|
-
type: import("vue").PropType<
|
|
24825
|
+
appliedSelections: {
|
|
24826
|
+
type: import("vue").PropType<unknown>;
|
|
24031
24827
|
required: true;
|
|
24032
24828
|
};
|
|
24033
|
-
|
|
24034
|
-
type: import("vue").PropType<string
|
|
24829
|
+
fetchFnCallback: {
|
|
24830
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
24035
24831
|
required: true;
|
|
24036
24832
|
};
|
|
24833
|
+
minCharsToStart: {
|
|
24834
|
+
type: import("vue").PropType<number>;
|
|
24835
|
+
default: number;
|
|
24836
|
+
};
|
|
24837
|
+
searchQuery: {
|
|
24838
|
+
type: import("vue").PropType<string>;
|
|
24839
|
+
default: string;
|
|
24840
|
+
};
|
|
24841
|
+
loadMoreFn: {
|
|
24842
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
24843
|
+
default: any;
|
|
24844
|
+
};
|
|
24845
|
+
fetchDataDebounceTime: {
|
|
24846
|
+
type: import("vue").PropType<number>;
|
|
24847
|
+
default: number;
|
|
24848
|
+
};
|
|
24849
|
+
autoFocusSearch: {
|
|
24850
|
+
type: import("vue").PropType<boolean>;
|
|
24851
|
+
default: boolean;
|
|
24852
|
+
};
|
|
24853
|
+
loadingOverride: {
|
|
24854
|
+
type: import("vue").PropType<boolean>;
|
|
24855
|
+
default: boolean;
|
|
24856
|
+
};
|
|
24037
24857
|
}>> & {
|
|
24038
|
-
|
|
24039
|
-
|
|
24858
|
+
onClear?: () => any;
|
|
24859
|
+
onClosed?: () => any;
|
|
24860
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
24861
|
+
label: string;
|
|
24862
|
+
value: string;
|
|
24863
|
+
multi: boolean;
|
|
24864
|
+
}) => any;
|
|
24865
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24040
24866
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24041
|
-
"update:
|
|
24042
|
-
|
|
24867
|
+
"update:selectedCondition": (value: {
|
|
24868
|
+
label: string;
|
|
24869
|
+
value: string;
|
|
24870
|
+
multi: boolean;
|
|
24871
|
+
}) => void;
|
|
24872
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
24873
|
+
clear: () => void;
|
|
24874
|
+
closed: () => void;
|
|
24043
24875
|
}, string, {
|
|
24876
|
+
label: string;
|
|
24044
24877
|
testId: string;
|
|
24045
|
-
|
|
24046
|
-
|
|
24047
|
-
|
|
24048
|
-
selected: unknown[];
|
|
24049
|
-
placeholder: string;
|
|
24050
|
-
inlineSearchPlaceholder: string;
|
|
24878
|
+
isOpen: boolean;
|
|
24879
|
+
infiniteLoading: boolean;
|
|
24880
|
+
triggerShownValuesCount: number;
|
|
24051
24881
|
optionNameKey: string;
|
|
24052
24882
|
optionIconKey: string;
|
|
24053
24883
|
optionImageKey: string;
|
|
24054
24884
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24055
|
-
|
|
24056
|
-
|
|
24057
|
-
|
|
24058
|
-
|
|
24885
|
+
optionFlagKey: string;
|
|
24886
|
+
groupedOptions: boolean;
|
|
24887
|
+
comparingKey: string;
|
|
24888
|
+
minCharsToStart: number;
|
|
24889
|
+
searchQuery: string;
|
|
24890
|
+
loadMoreFn: () => Promise<any[]>;
|
|
24891
|
+
fetchDataDebounceTime: number;
|
|
24892
|
+
autoFocusSearch: boolean;
|
|
24893
|
+
loadingOverride: boolean;
|
|
24059
24894
|
}, {}, string> & {
|
|
24060
24895
|
beforeCreate?: (() => void) | (() => void)[];
|
|
24061
24896
|
created?: (() => void) | (() => void)[];
|
|
@@ -24077,47 +24912,30 @@ declare const _default: {
|
|
|
24077
24912
|
$nextTick: typeof import("vue").nextTick;
|
|
24078
24913
|
$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;
|
|
24079
24914
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
24080
|
-
|
|
24915
|
+
label: {
|
|
24081
24916
|
type: import("vue").PropType<string>;
|
|
24917
|
+
required: true;
|
|
24082
24918
|
default: string;
|
|
24083
24919
|
};
|
|
24084
|
-
|
|
24085
|
-
type: import("vue").PropType<
|
|
24086
|
-
default: boolean;
|
|
24087
|
-
};
|
|
24088
|
-
size: {
|
|
24089
|
-
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
24920
|
+
testId: {
|
|
24921
|
+
type: import("vue").PropType<string>;
|
|
24090
24922
|
default: string;
|
|
24091
24923
|
};
|
|
24092
24924
|
isOpen: {
|
|
24093
24925
|
type: import("vue").PropType<boolean>;
|
|
24926
|
+
default: boolean;
|
|
24094
24927
|
};
|
|
24095
|
-
|
|
24096
|
-
type: import("vue").PropType<
|
|
24097
|
-
default:
|
|
24098
|
-
};
|
|
24099
|
-
selected: {
|
|
24100
|
-
type: import("vue").PropType<unknown[]>;
|
|
24101
|
-
default: any;
|
|
24102
|
-
};
|
|
24103
|
-
options: {
|
|
24104
|
-
type: import("vue").PropType<unknown[]>;
|
|
24105
|
-
required: true;
|
|
24106
|
-
};
|
|
24107
|
-
placeholder: {
|
|
24108
|
-
type: import("vue").PropType<string>;
|
|
24109
|
-
default: string;
|
|
24110
|
-
};
|
|
24111
|
-
inlineSearchPlaceholder: {
|
|
24112
|
-
type: import("vue").PropType<string>;
|
|
24113
|
-
default: string;
|
|
24928
|
+
infiniteLoading: {
|
|
24929
|
+
type: import("vue").PropType<boolean>;
|
|
24930
|
+
default: boolean;
|
|
24114
24931
|
};
|
|
24115
|
-
|
|
24116
|
-
type: import("vue").PropType<
|
|
24117
|
-
|
|
24932
|
+
triggerShownValuesCount: {
|
|
24933
|
+
type: import("vue").PropType<number>;
|
|
24934
|
+
default: number;
|
|
24118
24935
|
};
|
|
24119
24936
|
optionNameKey: {
|
|
24120
24937
|
type: import("vue").PropType<string>;
|
|
24938
|
+
required: true;
|
|
24121
24939
|
default: string;
|
|
24122
24940
|
};
|
|
24123
24941
|
optionIconKey: {
|
|
@@ -24132,262 +24950,81 @@ declare const _default: {
|
|
|
24132
24950
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24133
24951
|
default: any;
|
|
24134
24952
|
};
|
|
24135
|
-
|
|
24953
|
+
optionFlagKey: {
|
|
24136
24954
|
type: import("vue").PropType<string>;
|
|
24137
24955
|
default: string;
|
|
24138
24956
|
};
|
|
24139
|
-
|
|
24140
|
-
type: import("vue").PropType<
|
|
24141
|
-
default:
|
|
24957
|
+
groupedOptions: {
|
|
24958
|
+
type: import("vue").PropType<boolean>;
|
|
24959
|
+
default: boolean;
|
|
24142
24960
|
};
|
|
24143
|
-
|
|
24961
|
+
comparingKey: {
|
|
24144
24962
|
type: import("vue").PropType<string>;
|
|
24963
|
+
required: true;
|
|
24145
24964
|
default: string;
|
|
24146
24965
|
};
|
|
24147
|
-
|
|
24966
|
+
conditionalOptions: {
|
|
24967
|
+
type: import("vue").PropType<{
|
|
24968
|
+
label: string;
|
|
24969
|
+
value: string;
|
|
24970
|
+
multi: boolean;
|
|
24971
|
+
}[]>;
|
|
24972
|
+
required: true;
|
|
24973
|
+
};
|
|
24974
|
+
selectedCondition: {
|
|
24975
|
+
type: import("vue").PropType<{
|
|
24976
|
+
label: string;
|
|
24977
|
+
value: string;
|
|
24978
|
+
multi: boolean;
|
|
24979
|
+
}>;
|
|
24980
|
+
required: true;
|
|
24981
|
+
};
|
|
24982
|
+
appliedSelections: {
|
|
24983
|
+
type: import("vue").PropType<unknown>;
|
|
24984
|
+
required: true;
|
|
24985
|
+
};
|
|
24986
|
+
fetchFnCallback: {
|
|
24987
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
24988
|
+
required: true;
|
|
24989
|
+
};
|
|
24990
|
+
minCharsToStart: {
|
|
24991
|
+
type: import("vue").PropType<number>;
|
|
24992
|
+
default: number;
|
|
24993
|
+
};
|
|
24994
|
+
searchQuery: {
|
|
24148
24995
|
type: import("vue").PropType<string>;
|
|
24996
|
+
default: string;
|
|
24997
|
+
};
|
|
24998
|
+
loadMoreFn: {
|
|
24999
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
24149
25000
|
default: any;
|
|
24150
25001
|
};
|
|
24151
|
-
|
|
24152
|
-
type: import("vue").PropType<
|
|
24153
|
-
|
|
25002
|
+
fetchDataDebounceTime: {
|
|
25003
|
+
type: import("vue").PropType<number>;
|
|
25004
|
+
default: number;
|
|
24154
25005
|
};
|
|
24155
|
-
|
|
24156
|
-
type: import("vue").PropType<
|
|
24157
|
-
|
|
25006
|
+
autoFocusSearch: {
|
|
25007
|
+
type: import("vue").PropType<boolean>;
|
|
25008
|
+
default: boolean;
|
|
24158
25009
|
};
|
|
24159
|
-
|
|
24160
|
-
type: import("vue").PropType<
|
|
24161
|
-
|
|
25010
|
+
loadingOverride: {
|
|
25011
|
+
type: import("vue").PropType<boolean>;
|
|
25012
|
+
default: boolean;
|
|
24162
25013
|
};
|
|
24163
25014
|
}>> & {
|
|
24164
|
-
|
|
24165
|
-
|
|
25015
|
+
onClear?: () => any;
|
|
25016
|
+
onClosed?: () => any;
|
|
25017
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
25018
|
+
label: string;
|
|
25019
|
+
value: string;
|
|
25020
|
+
multi: boolean;
|
|
25021
|
+
}) => any;
|
|
25022
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24166
25023
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
24167
25024
|
__isFragment?: never;
|
|
24168
25025
|
__isTeleport?: never;
|
|
24169
25026
|
__isSuspense?: never;
|
|
24170
25027
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
24171
|
-
testId: {
|
|
24172
|
-
type: import("vue").PropType<string>;
|
|
24173
|
-
default: string;
|
|
24174
|
-
};
|
|
24175
|
-
disabled: {
|
|
24176
|
-
type: import("vue").PropType<boolean>;
|
|
24177
|
-
default: boolean;
|
|
24178
|
-
};
|
|
24179
|
-
size: {
|
|
24180
|
-
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
24181
|
-
default: string;
|
|
24182
|
-
};
|
|
24183
|
-
isOpen: {
|
|
24184
|
-
type: import("vue").PropType<boolean>;
|
|
24185
|
-
};
|
|
24186
|
-
valueToCopy: {
|
|
24187
|
-
type: import("vue").PropType<string>;
|
|
24188
|
-
default: any;
|
|
24189
|
-
};
|
|
24190
|
-
selected: {
|
|
24191
|
-
type: import("vue").PropType<unknown[]>;
|
|
24192
|
-
default: any;
|
|
24193
|
-
};
|
|
24194
|
-
options: {
|
|
24195
|
-
type: import("vue").PropType<unknown[]>;
|
|
24196
|
-
required: true;
|
|
24197
|
-
};
|
|
24198
|
-
placeholder: {
|
|
24199
|
-
type: import("vue").PropType<string>;
|
|
24200
|
-
default: string;
|
|
24201
|
-
};
|
|
24202
|
-
inlineSearchPlaceholder: {
|
|
24203
|
-
type: import("vue").PropType<string>;
|
|
24204
|
-
default: string;
|
|
24205
|
-
};
|
|
24206
|
-
displayValue: {
|
|
24207
|
-
type: import("vue").PropType<(option: unknown) => string>;
|
|
24208
|
-
required: true;
|
|
24209
|
-
};
|
|
24210
|
-
optionNameKey: {
|
|
24211
|
-
type: import("vue").PropType<string>;
|
|
24212
|
-
default: string;
|
|
24213
|
-
};
|
|
24214
|
-
optionIconKey: {
|
|
24215
|
-
type: import("vue").PropType<string>;
|
|
24216
|
-
default: string;
|
|
24217
|
-
};
|
|
24218
|
-
optionImageKey: {
|
|
24219
|
-
type: import("vue").PropType<string>;
|
|
24220
|
-
default: string;
|
|
24221
|
-
};
|
|
24222
|
-
optionIconType: {
|
|
24223
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24224
|
-
default: any;
|
|
24225
|
-
};
|
|
24226
|
-
optionEndIconKey: {
|
|
24227
|
-
type: import("vue").PropType<string>;
|
|
24228
|
-
default: string;
|
|
24229
|
-
};
|
|
24230
|
-
optionEndIconType: {
|
|
24231
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24232
|
-
default: any;
|
|
24233
|
-
};
|
|
24234
|
-
disabledOptionKey: {
|
|
24235
|
-
type: import("vue").PropType<string>;
|
|
24236
|
-
default: string;
|
|
24237
|
-
};
|
|
24238
|
-
optionEndTextIconKey: {
|
|
24239
|
-
type: import("vue").PropType<string>;
|
|
24240
|
-
default: any;
|
|
24241
|
-
};
|
|
24242
|
-
optionChildrenKey: {
|
|
24243
|
-
type: import("vue").PropType<string>;
|
|
24244
|
-
required: true;
|
|
24245
|
-
};
|
|
24246
|
-
optionUniqueIdKey: {
|
|
24247
|
-
type: import("vue").PropType<string | number>;
|
|
24248
|
-
required: true;
|
|
24249
|
-
};
|
|
24250
|
-
preExpandedOptions: {
|
|
24251
|
-
type: import("vue").PropType<string[] | number[]>;
|
|
24252
|
-
required: true;
|
|
24253
|
-
};
|
|
24254
|
-
}>> & {
|
|
24255
|
-
"onUpdate:selected"?: (value: unknown) => any;
|
|
24256
|
-
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
24257
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24258
|
-
"update:selected": (value: unknown) => void;
|
|
24259
|
-
"update:isOpen": (value: unknown) => void;
|
|
24260
|
-
}, string, {
|
|
24261
|
-
testId: string;
|
|
24262
|
-
disabled: boolean;
|
|
24263
|
-
size: "small" | "medium" | "large";
|
|
24264
|
-
valueToCopy: string;
|
|
24265
|
-
selected: unknown[];
|
|
24266
|
-
placeholder: string;
|
|
24267
|
-
inlineSearchPlaceholder: string;
|
|
24268
|
-
optionNameKey: string;
|
|
24269
|
-
optionIconKey: string;
|
|
24270
|
-
optionImageKey: string;
|
|
24271
|
-
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24272
|
-
optionEndIconKey: string;
|
|
24273
|
-
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24274
|
-
disabledOptionKey: string;
|
|
24275
|
-
optionEndTextIconKey: string;
|
|
24276
|
-
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
24277
|
-
$slots: {
|
|
24278
|
-
"trigger-end-icon"?(_: {}): any;
|
|
24279
|
-
};
|
|
24280
|
-
});
|
|
24281
|
-
ConditionalDropdown: import("vue").DefineComponent<{
|
|
24282
|
-
label: {
|
|
24283
|
-
type: import("vue").PropType<string>;
|
|
24284
|
-
required: true;
|
|
24285
|
-
default: string;
|
|
24286
|
-
};
|
|
24287
|
-
testId: {
|
|
24288
|
-
type: import("vue").PropType<string>;
|
|
24289
|
-
default: string;
|
|
24290
|
-
};
|
|
24291
|
-
isOpen: {
|
|
24292
|
-
type: import("vue").PropType<boolean>;
|
|
24293
|
-
default: boolean;
|
|
24294
|
-
};
|
|
24295
|
-
infiniteLoading: {
|
|
24296
|
-
type: import("vue").PropType<boolean>;
|
|
24297
|
-
default: boolean;
|
|
24298
|
-
};
|
|
24299
|
-
triggerShownValuesCount: {
|
|
24300
|
-
type: import("vue").PropType<number>;
|
|
24301
|
-
default: number;
|
|
24302
|
-
};
|
|
24303
|
-
optionNameKey: {
|
|
24304
|
-
type: import("vue").PropType<string>;
|
|
24305
|
-
required: true;
|
|
24306
|
-
default: string;
|
|
24307
|
-
};
|
|
24308
|
-
optionIconKey: {
|
|
24309
|
-
type: import("vue").PropType<string>;
|
|
24310
|
-
default: string;
|
|
24311
|
-
};
|
|
24312
|
-
optionImageKey: {
|
|
24313
|
-
type: import("vue").PropType<string>;
|
|
24314
|
-
default: string;
|
|
24315
|
-
};
|
|
24316
|
-
optionIconType: {
|
|
24317
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24318
|
-
default: any;
|
|
24319
|
-
};
|
|
24320
|
-
optionFlagKey: {
|
|
24321
|
-
type: import("vue").PropType<string>;
|
|
24322
|
-
default: string;
|
|
24323
|
-
};
|
|
24324
|
-
groupedOptions: {
|
|
24325
|
-
type: import("vue").PropType<boolean>;
|
|
24326
|
-
default: boolean;
|
|
24327
|
-
};
|
|
24328
|
-
comparingKey: {
|
|
24329
|
-
type: import("vue").PropType<string>;
|
|
24330
|
-
required: true;
|
|
24331
|
-
default: string;
|
|
24332
|
-
};
|
|
24333
|
-
conditionalOptions: {
|
|
24334
|
-
type: import("vue").PropType<{
|
|
24335
|
-
label: string;
|
|
24336
|
-
value: string;
|
|
24337
|
-
multi: boolean;
|
|
24338
|
-
}[]>;
|
|
24339
|
-
required: true;
|
|
24340
|
-
};
|
|
24341
|
-
selectedCondition: {
|
|
24342
|
-
type: import("vue").PropType<{
|
|
24343
|
-
label: string;
|
|
24344
|
-
value: string;
|
|
24345
|
-
multi: boolean;
|
|
24346
|
-
}>;
|
|
24347
|
-
required: true;
|
|
24348
|
-
};
|
|
24349
|
-
appliedSelections: {
|
|
24350
|
-
type: import("vue").PropType<unknown>;
|
|
24351
|
-
required: true;
|
|
24352
|
-
};
|
|
24353
|
-
fetchFnCallback: {
|
|
24354
|
-
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
24355
|
-
required: true;
|
|
24356
|
-
};
|
|
24357
|
-
minCharsToStart: {
|
|
24358
|
-
type: import("vue").PropType<number>;
|
|
24359
|
-
default: number;
|
|
24360
|
-
};
|
|
24361
|
-
searchQuery: {
|
|
24362
|
-
type: import("vue").PropType<string>;
|
|
24363
|
-
default: string;
|
|
24364
|
-
};
|
|
24365
|
-
loadMoreFn: {
|
|
24366
|
-
type: import("vue").PropType<() => Promise<any[]>>;
|
|
24367
|
-
default: any;
|
|
24368
|
-
};
|
|
24369
|
-
fetchDataDebounceTime: {
|
|
24370
|
-
type: import("vue").PropType<number>;
|
|
24371
|
-
default: number;
|
|
24372
|
-
};
|
|
24373
|
-
autoFocusSearch: {
|
|
24374
|
-
type: import("vue").PropType<boolean>;
|
|
24375
|
-
default: boolean;
|
|
24376
|
-
};
|
|
24377
|
-
loadingOverride: {
|
|
24378
|
-
type: import("vue").PropType<boolean>;
|
|
24379
|
-
default: boolean;
|
|
24380
|
-
};
|
|
24381
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24382
|
-
"update:selectedCondition": (value: {
|
|
24383
|
-
label: string;
|
|
24384
|
-
value: string;
|
|
24385
|
-
multi: boolean;
|
|
24386
|
-
}) => void;
|
|
24387
|
-
"update:appliedSelections": (value: unknown) => void;
|
|
24388
|
-
clear: () => void;
|
|
24389
|
-
closed: () => void;
|
|
24390
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24391
25028
|
label: {
|
|
24392
25029
|
type: import("vue").PropType<string>;
|
|
24393
25030
|
required: true;
|
|
@@ -24496,7 +25133,16 @@ declare const _default: {
|
|
|
24496
25133
|
multi: boolean;
|
|
24497
25134
|
}) => any;
|
|
24498
25135
|
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24499
|
-
}, {
|
|
25136
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25137
|
+
"update:selectedCondition": (value: {
|
|
25138
|
+
label: string;
|
|
25139
|
+
value: string;
|
|
25140
|
+
multi: boolean;
|
|
25141
|
+
}) => void;
|
|
25142
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
25143
|
+
clear: () => void;
|
|
25144
|
+
closed: () => void;
|
|
25145
|
+
}, string, {
|
|
24500
25146
|
label: string;
|
|
24501
25147
|
testId: string;
|
|
24502
25148
|
isOpen: boolean;
|
|
@@ -24515,7 +25161,13 @@ declare const _default: {
|
|
|
24515
25161
|
fetchDataDebounceTime: number;
|
|
24516
25162
|
autoFocusSearch: boolean;
|
|
24517
25163
|
loadingOverride: boolean;
|
|
24518
|
-
}
|
|
25164
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
25165
|
+
$slots: {
|
|
25166
|
+
"option-end"?(_: {
|
|
25167
|
+
option: any;
|
|
25168
|
+
}): any;
|
|
25169
|
+
};
|
|
25170
|
+
});
|
|
24519
25171
|
Label: {
|
|
24520
25172
|
new (...args: any[]): {
|
|
24521
25173
|
$: import("vue").ComponentInternalInstance;
|