@ironsource/shared-ui 2.1.12-rc.24 → 2.1.12-rc.26
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_ff7e556e_lang.css +1 -0
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_38354f10_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_683b8a75_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_0963bb3c_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_1f7f7f9c_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_9560a062_lang.css +1 -0
- package/SwitchV4.vue_vue_type_style_index_0_scoped_cd6621a7_lang.css +1 -0
- package/components/chart/Chart.vue.d.ts +1 -1
- package/components/chart/ChartPlane.vue.d.ts +1 -1
- package/components/chart/ChartPlane.vue.js +3 -3
- package/components/chart/ChartPlane.vue2.js +141 -141
- package/components/chart/index.d.ts +24 -24
- package/components/chart/utils/utils.d.ts +1 -2
- package/components/chart/utils/utils.js +13 -19
- package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +5 -0
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +64 -54
- package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +22 -9
- package/components/dropdown/v4/ConditionalDropdown.vue.js +4 -4
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +144 -131
- package/components/dropdown/v4/DropdownV4.vue.d.ts +10 -0
- package/components/dropdown/v4/DropdownV4.vue.js +2 -2
- package/components/dropdown/v4/DropdownV4.vue2.js +78 -74
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +41 -39
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +8 -0
- package/components/dropdown/v4/index.d.ts +485 -103
- package/components/includeExclude/IncludeExclude.vue.d.ts +1 -1
- package/components/includeExclude/IncludeExcludeDragDrop.vue.d.ts +1 -1
- package/components/includeExclude/index.d.ts +40 -40
- package/components/switch/v4/SwitchV4.vue.d.ts +11 -0
- package/components/switch/v4/SwitchV4.vue.js +2 -2
- package/components/switch/v4/SwitchV4.vue2.js +39 -26
- package/components/switch/v4/index.d.ts +18 -0
- package/components/table/v4/DataGrid.vue.js +2 -2
- package/components/table/v4/DataGrid.vue2.js +5 -5
- package/index.d.ts +1010 -210
- package/index.js +1 -1
- package/mocks/optionsWithIcons.d.ts +1 -0
- package/package.json +1 -1
- package/ChartPlane.vue_vue_type_style_index_0_scoped_903fc6ae_lang.css +0 -1
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_e43ac1c9_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8d5521da_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_086c5b0d_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_86b82f0c_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_3dc741c1_lang.css +0 -1
- package/SwitchV4.vue_vue_type_style_index_0_scoped_fa120cf6_lang.css +0 -1
- package/components/chart/composables/useChartValues.d.ts +0 -12
- package/components/chart/composables/useChartValues.js +0 -32
package/index.d.ts
CHANGED
|
@@ -16368,6 +16368,7 @@ declare const _default: {
|
|
|
16368
16368
|
multi: boolean;
|
|
16369
16369
|
infiniteLoading: boolean;
|
|
16370
16370
|
showSelectAll: boolean;
|
|
16371
|
+
showClearAll: boolean;
|
|
16371
16372
|
defaultOpen: boolean;
|
|
16372
16373
|
keepOpen: boolean;
|
|
16373
16374
|
autoSize: boolean;
|
|
@@ -16382,6 +16383,7 @@ declare const _default: {
|
|
|
16382
16383
|
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
16383
16384
|
triggerFeedbackShowIcon: boolean;
|
|
16384
16385
|
triggerShowAllSelectedText: boolean;
|
|
16386
|
+
triggerShownValuesCount: number;
|
|
16385
16387
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
16386
16388
|
inlineSearch: boolean;
|
|
16387
16389
|
inlineSearchPlaceholder: string;
|
|
@@ -16496,6 +16498,10 @@ declare const _default: {
|
|
|
16496
16498
|
type: import("vue").PropType<boolean>;
|
|
16497
16499
|
default: boolean;
|
|
16498
16500
|
};
|
|
16501
|
+
showClearAll: {
|
|
16502
|
+
type: import("vue").PropType<boolean>;
|
|
16503
|
+
default: boolean;
|
|
16504
|
+
};
|
|
16499
16505
|
defaultOpen: {
|
|
16500
16506
|
type: import("vue").PropType<boolean>;
|
|
16501
16507
|
default: boolean;
|
|
@@ -16552,6 +16558,10 @@ declare const _default: {
|
|
|
16552
16558
|
type: import("vue").PropType<boolean>;
|
|
16553
16559
|
default: boolean;
|
|
16554
16560
|
};
|
|
16561
|
+
triggerShownValuesCount: {
|
|
16562
|
+
type: import("vue").PropType<number>;
|
|
16563
|
+
default: number;
|
|
16564
|
+
};
|
|
16555
16565
|
predefinedTrigger: {
|
|
16556
16566
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
16557
16567
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -16681,7 +16691,7 @@ declare const _default: {
|
|
|
16681
16691
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
16682
16692
|
onOpened?: () => any;
|
|
16683
16693
|
onClosed?: () => any;
|
|
16684
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16694
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16685
16695
|
$attrs: {
|
|
16686
16696
|
[x: string]: unknown;
|
|
16687
16697
|
};
|
|
@@ -16781,6 +16791,10 @@ declare const _default: {
|
|
|
16781
16791
|
type: import("vue").PropType<boolean>;
|
|
16782
16792
|
default: boolean;
|
|
16783
16793
|
};
|
|
16794
|
+
showClearAll: {
|
|
16795
|
+
type: import("vue").PropType<boolean>;
|
|
16796
|
+
default: boolean;
|
|
16797
|
+
};
|
|
16784
16798
|
defaultOpen: {
|
|
16785
16799
|
type: import("vue").PropType<boolean>;
|
|
16786
16800
|
default: boolean;
|
|
@@ -16837,6 +16851,10 @@ declare const _default: {
|
|
|
16837
16851
|
type: import("vue").PropType<boolean>;
|
|
16838
16852
|
default: boolean;
|
|
16839
16853
|
};
|
|
16854
|
+
triggerShownValuesCount: {
|
|
16855
|
+
type: import("vue").PropType<number>;
|
|
16856
|
+
default: number;
|
|
16857
|
+
};
|
|
16840
16858
|
predefinedTrigger: {
|
|
16841
16859
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
16842
16860
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -17001,6 +17019,7 @@ declare const _default: {
|
|
|
17001
17019
|
multi: boolean;
|
|
17002
17020
|
infiniteLoading: boolean;
|
|
17003
17021
|
showSelectAll: boolean;
|
|
17022
|
+
showClearAll: boolean;
|
|
17004
17023
|
defaultOpen: boolean;
|
|
17005
17024
|
keepOpen: boolean;
|
|
17006
17025
|
autoSize: boolean;
|
|
@@ -17015,6 +17034,7 @@ declare const _default: {
|
|
|
17015
17034
|
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
17016
17035
|
triggerFeedbackShowIcon: boolean;
|
|
17017
17036
|
triggerShowAllSelectedText: boolean;
|
|
17037
|
+
triggerShownValuesCount: number;
|
|
17018
17038
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
17019
17039
|
inlineSearch: boolean;
|
|
17020
17040
|
inlineSearchPlaceholder: string;
|
|
@@ -17149,6 +17169,10 @@ declare const _default: {
|
|
|
17149
17169
|
type: import("vue").PropType<boolean>;
|
|
17150
17170
|
default: boolean;
|
|
17151
17171
|
};
|
|
17172
|
+
showClearAll: {
|
|
17173
|
+
type: import("vue").PropType<boolean>;
|
|
17174
|
+
default: boolean;
|
|
17175
|
+
};
|
|
17152
17176
|
defaultOpen: {
|
|
17153
17177
|
type: import("vue").PropType<boolean>;
|
|
17154
17178
|
default: boolean;
|
|
@@ -17205,6 +17229,10 @@ declare const _default: {
|
|
|
17205
17229
|
type: import("vue").PropType<boolean>;
|
|
17206
17230
|
default: boolean;
|
|
17207
17231
|
};
|
|
17232
|
+
triggerShownValuesCount: {
|
|
17233
|
+
type: import("vue").PropType<number>;
|
|
17234
|
+
default: number;
|
|
17235
|
+
};
|
|
17208
17236
|
predefinedTrigger: {
|
|
17209
17237
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
17210
17238
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -17427,6 +17455,10 @@ declare const _default: {
|
|
|
17427
17455
|
type: import("vue").PropType<boolean>;
|
|
17428
17456
|
default: boolean;
|
|
17429
17457
|
};
|
|
17458
|
+
showClearAll: {
|
|
17459
|
+
type: import("vue").PropType<boolean>;
|
|
17460
|
+
default: boolean;
|
|
17461
|
+
};
|
|
17430
17462
|
defaultOpen: {
|
|
17431
17463
|
type: import("vue").PropType<boolean>;
|
|
17432
17464
|
default: boolean;
|
|
@@ -17483,6 +17515,10 @@ declare const _default: {
|
|
|
17483
17515
|
type: import("vue").PropType<boolean>;
|
|
17484
17516
|
default: boolean;
|
|
17485
17517
|
};
|
|
17518
|
+
triggerShownValuesCount: {
|
|
17519
|
+
type: import("vue").PropType<number>;
|
|
17520
|
+
default: number;
|
|
17521
|
+
};
|
|
17486
17522
|
predefinedTrigger: {
|
|
17487
17523
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
17488
17524
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -17647,6 +17683,7 @@ declare const _default: {
|
|
|
17647
17683
|
multi: boolean;
|
|
17648
17684
|
infiniteLoading: boolean;
|
|
17649
17685
|
showSelectAll: boolean;
|
|
17686
|
+
showClearAll: boolean;
|
|
17650
17687
|
defaultOpen: boolean;
|
|
17651
17688
|
keepOpen: boolean;
|
|
17652
17689
|
autoSize: boolean;
|
|
@@ -17661,6 +17698,7 @@ declare const _default: {
|
|
|
17661
17698
|
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
17662
17699
|
triggerFeedbackShowIcon: boolean;
|
|
17663
17700
|
triggerShowAllSelectedText: boolean;
|
|
17701
|
+
triggerShownValuesCount: number;
|
|
17664
17702
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
17665
17703
|
inlineSearch: boolean;
|
|
17666
17704
|
inlineSearchPlaceholder: string;
|
|
@@ -18424,6 +18462,10 @@ declare const _default: {
|
|
|
18424
18462
|
type: import("vue").PropType<boolean>;
|
|
18425
18463
|
default: boolean;
|
|
18426
18464
|
};
|
|
18465
|
+
shownValuesCount: {
|
|
18466
|
+
type: import("vue").PropType<number>;
|
|
18467
|
+
default: number;
|
|
18468
|
+
};
|
|
18427
18469
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18428
18470
|
clear: () => void;
|
|
18429
18471
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -18482,6 +18524,10 @@ declare const _default: {
|
|
|
18482
18524
|
type: import("vue").PropType<boolean>;
|
|
18483
18525
|
default: boolean;
|
|
18484
18526
|
};
|
|
18527
|
+
shownValuesCount: {
|
|
18528
|
+
type: import("vue").PropType<number>;
|
|
18529
|
+
default: number;
|
|
18530
|
+
};
|
|
18485
18531
|
}>> & {
|
|
18486
18532
|
onClear?: () => any;
|
|
18487
18533
|
}, {
|
|
@@ -18494,6 +18540,7 @@ declare const _default: {
|
|
|
18494
18540
|
displayedValue: any;
|
|
18495
18541
|
cancelAllSelectedDisplay: boolean;
|
|
18496
18542
|
displayValueInQuotes: boolean;
|
|
18543
|
+
shownValuesCount: number;
|
|
18497
18544
|
}>;
|
|
18498
18545
|
ButtonDropdownTrigger: {
|
|
18499
18546
|
new (...args: any[]): {
|
|
@@ -21014,6 +21061,10 @@ declare const _default: {
|
|
|
21014
21061
|
type: import("vue").PropType<boolean>;
|
|
21015
21062
|
default: boolean;
|
|
21016
21063
|
};
|
|
21064
|
+
shownValuesCount: {
|
|
21065
|
+
type: import("vue").PropType<number>;
|
|
21066
|
+
default: number;
|
|
21067
|
+
};
|
|
21017
21068
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21018
21069
|
clear: () => void;
|
|
21019
21070
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -21072,6 +21123,10 @@ declare const _default: {
|
|
|
21072
21123
|
type: import("vue").PropType<boolean>;
|
|
21073
21124
|
default: boolean;
|
|
21074
21125
|
};
|
|
21126
|
+
shownValuesCount: {
|
|
21127
|
+
type: import("vue").PropType<number>;
|
|
21128
|
+
default: number;
|
|
21129
|
+
};
|
|
21075
21130
|
}>> & {
|
|
21076
21131
|
onClear?: () => any;
|
|
21077
21132
|
}, {
|
|
@@ -21084,6 +21139,7 @@ declare const _default: {
|
|
|
21084
21139
|
displayedValue: any;
|
|
21085
21140
|
cancelAllSelectedDisplay: boolean;
|
|
21086
21141
|
displayValueInQuotes: boolean;
|
|
21142
|
+
shownValuesCount: number;
|
|
21087
21143
|
}> | ({
|
|
21088
21144
|
new (...args: any[]): {
|
|
21089
21145
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -21107,6 +21163,7 @@ declare const _default: {
|
|
|
21107
21163
|
multi: boolean;
|
|
21108
21164
|
infiniteLoading: boolean;
|
|
21109
21165
|
showSelectAll: boolean;
|
|
21166
|
+
showClearAll: boolean;
|
|
21110
21167
|
defaultOpen: boolean;
|
|
21111
21168
|
keepOpen: boolean;
|
|
21112
21169
|
autoSize: boolean;
|
|
@@ -21121,6 +21178,7 @@ declare const _default: {
|
|
|
21121
21178
|
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
21122
21179
|
triggerFeedbackShowIcon: boolean;
|
|
21123
21180
|
triggerShowAllSelectedText: boolean;
|
|
21181
|
+
triggerShownValuesCount: number;
|
|
21124
21182
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
21125
21183
|
inlineSearch: boolean;
|
|
21126
21184
|
inlineSearchPlaceholder: string;
|
|
@@ -21235,6 +21293,10 @@ declare const _default: {
|
|
|
21235
21293
|
type: import("vue").PropType<boolean>;
|
|
21236
21294
|
default: boolean;
|
|
21237
21295
|
};
|
|
21296
|
+
showClearAll: {
|
|
21297
|
+
type: import("vue").PropType<boolean>;
|
|
21298
|
+
default: boolean;
|
|
21299
|
+
};
|
|
21238
21300
|
defaultOpen: {
|
|
21239
21301
|
type: import("vue").PropType<boolean>;
|
|
21240
21302
|
default: boolean;
|
|
@@ -21291,6 +21353,10 @@ declare const _default: {
|
|
|
21291
21353
|
type: import("vue").PropType<boolean>;
|
|
21292
21354
|
default: boolean;
|
|
21293
21355
|
};
|
|
21356
|
+
triggerShownValuesCount: {
|
|
21357
|
+
type: import("vue").PropType<number>;
|
|
21358
|
+
default: number;
|
|
21359
|
+
};
|
|
21294
21360
|
predefinedTrigger: {
|
|
21295
21361
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
21296
21362
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -21420,7 +21486,7 @@ declare const _default: {
|
|
|
21420
21486
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
21421
21487
|
onOpened?: () => any;
|
|
21422
21488
|
onClosed?: () => any;
|
|
21423
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21489
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "triggerShownValuesCount" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21424
21490
|
$attrs: {
|
|
21425
21491
|
[x: string]: unknown;
|
|
21426
21492
|
};
|
|
@@ -21520,6 +21586,10 @@ declare const _default: {
|
|
|
21520
21586
|
type: import("vue").PropType<boolean>;
|
|
21521
21587
|
default: boolean;
|
|
21522
21588
|
};
|
|
21589
|
+
showClearAll: {
|
|
21590
|
+
type: import("vue").PropType<boolean>;
|
|
21591
|
+
default: boolean;
|
|
21592
|
+
};
|
|
21523
21593
|
defaultOpen: {
|
|
21524
21594
|
type: import("vue").PropType<boolean>;
|
|
21525
21595
|
default: boolean;
|
|
@@ -21576,6 +21646,10 @@ declare const _default: {
|
|
|
21576
21646
|
type: import("vue").PropType<boolean>;
|
|
21577
21647
|
default: boolean;
|
|
21578
21648
|
};
|
|
21649
|
+
triggerShownValuesCount: {
|
|
21650
|
+
type: import("vue").PropType<number>;
|
|
21651
|
+
default: number;
|
|
21652
|
+
};
|
|
21579
21653
|
predefinedTrigger: {
|
|
21580
21654
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
21581
21655
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -21740,6 +21814,7 @@ declare const _default: {
|
|
|
21740
21814
|
multi: boolean;
|
|
21741
21815
|
infiniteLoading: boolean;
|
|
21742
21816
|
showSelectAll: boolean;
|
|
21817
|
+
showClearAll: boolean;
|
|
21743
21818
|
defaultOpen: boolean;
|
|
21744
21819
|
keepOpen: boolean;
|
|
21745
21820
|
autoSize: boolean;
|
|
@@ -21754,6 +21829,7 @@ declare const _default: {
|
|
|
21754
21829
|
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
21755
21830
|
triggerFeedbackShowIcon: boolean;
|
|
21756
21831
|
triggerShowAllSelectedText: boolean;
|
|
21832
|
+
triggerShownValuesCount: number;
|
|
21757
21833
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
21758
21834
|
inlineSearch: boolean;
|
|
21759
21835
|
inlineSearchPlaceholder: string;
|
|
@@ -21888,6 +21964,10 @@ declare const _default: {
|
|
|
21888
21964
|
type: import("vue").PropType<boolean>;
|
|
21889
21965
|
default: boolean;
|
|
21890
21966
|
};
|
|
21967
|
+
showClearAll: {
|
|
21968
|
+
type: import("vue").PropType<boolean>;
|
|
21969
|
+
default: boolean;
|
|
21970
|
+
};
|
|
21891
21971
|
defaultOpen: {
|
|
21892
21972
|
type: import("vue").PropType<boolean>;
|
|
21893
21973
|
default: boolean;
|
|
@@ -21944,6 +22024,10 @@ declare const _default: {
|
|
|
21944
22024
|
type: import("vue").PropType<boolean>;
|
|
21945
22025
|
default: boolean;
|
|
21946
22026
|
};
|
|
22027
|
+
triggerShownValuesCount: {
|
|
22028
|
+
type: import("vue").PropType<number>;
|
|
22029
|
+
default: number;
|
|
22030
|
+
};
|
|
21947
22031
|
predefinedTrigger: {
|
|
21948
22032
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
21949
22033
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -22166,6 +22250,10 @@ declare const _default: {
|
|
|
22166
22250
|
type: import("vue").PropType<boolean>;
|
|
22167
22251
|
default: boolean;
|
|
22168
22252
|
};
|
|
22253
|
+
showClearAll: {
|
|
22254
|
+
type: import("vue").PropType<boolean>;
|
|
22255
|
+
default: boolean;
|
|
22256
|
+
};
|
|
22169
22257
|
defaultOpen: {
|
|
22170
22258
|
type: import("vue").PropType<boolean>;
|
|
22171
22259
|
default: boolean;
|
|
@@ -22222,6 +22310,10 @@ declare const _default: {
|
|
|
22222
22310
|
type: import("vue").PropType<boolean>;
|
|
22223
22311
|
default: boolean;
|
|
22224
22312
|
};
|
|
22313
|
+
triggerShownValuesCount: {
|
|
22314
|
+
type: import("vue").PropType<number>;
|
|
22315
|
+
default: number;
|
|
22316
|
+
};
|
|
22225
22317
|
predefinedTrigger: {
|
|
22226
22318
|
type: import("vue").PropType<"default" | "icon-button" | "chip" | "app">;
|
|
22227
22319
|
default: "default" | "icon-button" | "chip" | "app";
|
|
@@ -22386,6 +22478,7 @@ declare const _default: {
|
|
|
22386
22478
|
multi: boolean;
|
|
22387
22479
|
infiniteLoading: boolean;
|
|
22388
22480
|
showSelectAll: boolean;
|
|
22481
|
+
showClearAll: boolean;
|
|
22389
22482
|
defaultOpen: boolean;
|
|
22390
22483
|
keepOpen: boolean;
|
|
22391
22484
|
autoSize: boolean;
|
|
@@ -22400,6 +22493,7 @@ declare const _default: {
|
|
|
22400
22493
|
triggerFeedbackVariant: "success" | "warning" | "error";
|
|
22401
22494
|
triggerFeedbackShowIcon: boolean;
|
|
22402
22495
|
triggerShowAllSelectedText: boolean;
|
|
22496
|
+
triggerShownValuesCount: number;
|
|
22403
22497
|
predefinedTrigger: "default" | "icon-button" | "chip" | "app";
|
|
22404
22498
|
inlineSearch: boolean;
|
|
22405
22499
|
inlineSearchPlaceholder: string;
|
|
@@ -23013,112 +23107,427 @@ declare const _default: {
|
|
|
23013
23107
|
$slots: {
|
|
23014
23108
|
"trigger-end-icon"?(_: {}): any;
|
|
23015
23109
|
};
|
|
23016
|
-
})) |
|
|
23017
|
-
|
|
23018
|
-
|
|
23019
|
-
|
|
23020
|
-
|
|
23021
|
-
};
|
|
23022
|
-
testId: {
|
|
23023
|
-
type: import("vue").PropType<string>;
|
|
23024
|
-
default: string;
|
|
23025
|
-
};
|
|
23026
|
-
isOpen: {
|
|
23027
|
-
type: import("vue").PropType<boolean>;
|
|
23028
|
-
default: boolean;
|
|
23029
|
-
};
|
|
23030
|
-
infiniteLoading: {
|
|
23031
|
-
type: import("vue").PropType<boolean>;
|
|
23032
|
-
default: boolean;
|
|
23033
|
-
};
|
|
23034
|
-
optionNameKey: {
|
|
23035
|
-
type: import("vue").PropType<string>;
|
|
23036
|
-
required: true;
|
|
23037
|
-
default: string;
|
|
23038
|
-
};
|
|
23039
|
-
optionIconKey: {
|
|
23040
|
-
type: import("vue").PropType<string>;
|
|
23041
|
-
default: string;
|
|
23042
|
-
};
|
|
23043
|
-
optionImageKey: {
|
|
23044
|
-
type: import("vue").PropType<string>;
|
|
23045
|
-
default: string;
|
|
23046
|
-
};
|
|
23047
|
-
optionIconType: {
|
|
23048
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23049
|
-
default: any;
|
|
23050
|
-
};
|
|
23051
|
-
optionFlagKey: {
|
|
23052
|
-
type: import("vue").PropType<string>;
|
|
23053
|
-
default: string;
|
|
23054
|
-
};
|
|
23055
|
-
groupedOptions: {
|
|
23056
|
-
type: import("vue").PropType<boolean>;
|
|
23057
|
-
default: boolean;
|
|
23058
|
-
};
|
|
23059
|
-
comparingKey: {
|
|
23060
|
-
type: import("vue").PropType<string>;
|
|
23061
|
-
required: true;
|
|
23062
|
-
default: string;
|
|
23063
|
-
};
|
|
23064
|
-
conditionalOptions: {
|
|
23065
|
-
type: import("vue").PropType<{
|
|
23110
|
+
})) | ({
|
|
23111
|
+
new (...args: any[]): {
|
|
23112
|
+
$: import("vue").ComponentInternalInstance;
|
|
23113
|
+
$data: {};
|
|
23114
|
+
$props: Partial<{
|
|
23066
23115
|
label: string;
|
|
23067
|
-
|
|
23068
|
-
|
|
23069
|
-
|
|
23070
|
-
|
|
23071
|
-
|
|
23072
|
-
|
|
23073
|
-
|
|
23116
|
+
testId: string;
|
|
23117
|
+
isOpen: boolean;
|
|
23118
|
+
infiniteLoading: boolean;
|
|
23119
|
+
triggerShownValuesCount: number;
|
|
23120
|
+
optionNameKey: string;
|
|
23121
|
+
optionIconKey: string;
|
|
23122
|
+
optionImageKey: string;
|
|
23123
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23124
|
+
optionFlagKey: string;
|
|
23125
|
+
groupedOptions: boolean;
|
|
23126
|
+
comparingKey: string;
|
|
23127
|
+
minCharsToStart: number;
|
|
23128
|
+
searchQuery: string;
|
|
23129
|
+
loadMoreFn: () => Promise<any[]>;
|
|
23130
|
+
fetchDataDebounceTime: number;
|
|
23131
|
+
autoFocusSearch: boolean;
|
|
23132
|
+
loadingOverride: boolean;
|
|
23133
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23134
|
+
label: {
|
|
23135
|
+
type: import("vue").PropType<string>;
|
|
23136
|
+
required: true;
|
|
23137
|
+
default: string;
|
|
23138
|
+
};
|
|
23139
|
+
testId: {
|
|
23140
|
+
type: import("vue").PropType<string>;
|
|
23141
|
+
default: string;
|
|
23142
|
+
};
|
|
23143
|
+
isOpen: {
|
|
23144
|
+
type: import("vue").PropType<boolean>;
|
|
23145
|
+
default: boolean;
|
|
23146
|
+
};
|
|
23147
|
+
infiniteLoading: {
|
|
23148
|
+
type: import("vue").PropType<boolean>;
|
|
23149
|
+
default: boolean;
|
|
23150
|
+
};
|
|
23151
|
+
triggerShownValuesCount: {
|
|
23152
|
+
type: import("vue").PropType<number>;
|
|
23153
|
+
default: number;
|
|
23154
|
+
};
|
|
23155
|
+
optionNameKey: {
|
|
23156
|
+
type: import("vue").PropType<string>;
|
|
23157
|
+
required: true;
|
|
23158
|
+
default: string;
|
|
23159
|
+
};
|
|
23160
|
+
optionIconKey: {
|
|
23161
|
+
type: import("vue").PropType<string>;
|
|
23162
|
+
default: string;
|
|
23163
|
+
};
|
|
23164
|
+
optionImageKey: {
|
|
23165
|
+
type: import("vue").PropType<string>;
|
|
23166
|
+
default: string;
|
|
23167
|
+
};
|
|
23168
|
+
optionIconType: {
|
|
23169
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23170
|
+
default: any;
|
|
23171
|
+
};
|
|
23172
|
+
optionFlagKey: {
|
|
23173
|
+
type: import("vue").PropType<string>;
|
|
23174
|
+
default: string;
|
|
23175
|
+
};
|
|
23176
|
+
groupedOptions: {
|
|
23177
|
+
type: import("vue").PropType<boolean>;
|
|
23178
|
+
default: boolean;
|
|
23179
|
+
};
|
|
23180
|
+
comparingKey: {
|
|
23181
|
+
type: import("vue").PropType<string>;
|
|
23182
|
+
required: true;
|
|
23183
|
+
default: string;
|
|
23184
|
+
};
|
|
23185
|
+
conditionalOptions: {
|
|
23186
|
+
type: import("vue").PropType<{
|
|
23187
|
+
label: string;
|
|
23188
|
+
value: string;
|
|
23189
|
+
multi: boolean;
|
|
23190
|
+
}[]>;
|
|
23191
|
+
required: true;
|
|
23192
|
+
};
|
|
23193
|
+
selectedCondition: {
|
|
23194
|
+
type: import("vue").PropType<{
|
|
23195
|
+
label: string;
|
|
23196
|
+
value: string;
|
|
23197
|
+
multi: boolean;
|
|
23198
|
+
}>;
|
|
23199
|
+
required: true;
|
|
23200
|
+
};
|
|
23201
|
+
appliedSelections: {
|
|
23202
|
+
type: import("vue").PropType<unknown>;
|
|
23203
|
+
required: true;
|
|
23204
|
+
};
|
|
23205
|
+
fetchFnCallback: {
|
|
23206
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23207
|
+
required: true;
|
|
23208
|
+
};
|
|
23209
|
+
minCharsToStart: {
|
|
23210
|
+
type: import("vue").PropType<number>;
|
|
23211
|
+
default: number;
|
|
23212
|
+
};
|
|
23213
|
+
searchQuery: {
|
|
23214
|
+
type: import("vue").PropType<string>;
|
|
23215
|
+
default: string;
|
|
23216
|
+
};
|
|
23217
|
+
loadMoreFn: {
|
|
23218
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23219
|
+
default: any;
|
|
23220
|
+
};
|
|
23221
|
+
fetchDataDebounceTime: {
|
|
23222
|
+
type: import("vue").PropType<number>;
|
|
23223
|
+
default: number;
|
|
23224
|
+
};
|
|
23225
|
+
autoFocusSearch: {
|
|
23226
|
+
type: import("vue").PropType<boolean>;
|
|
23227
|
+
default: boolean;
|
|
23228
|
+
};
|
|
23229
|
+
loadingOverride: {
|
|
23230
|
+
type: import("vue").PropType<boolean>;
|
|
23231
|
+
default: boolean;
|
|
23232
|
+
};
|
|
23233
|
+
}>> & {
|
|
23234
|
+
onClear?: () => any;
|
|
23235
|
+
onClosed?: () => any;
|
|
23236
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23237
|
+
label: string;
|
|
23238
|
+
value: string;
|
|
23239
|
+
multi: boolean;
|
|
23240
|
+
}) => any;
|
|
23241
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23242
|
+
} & 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">;
|
|
23243
|
+
$attrs: {
|
|
23244
|
+
[x: string]: unknown;
|
|
23245
|
+
};
|
|
23246
|
+
$refs: {
|
|
23247
|
+
[x: string]: unknown;
|
|
23248
|
+
};
|
|
23249
|
+
$slots: Readonly<{
|
|
23250
|
+
[name: string]: import("vue").Slot;
|
|
23251
|
+
}>;
|
|
23252
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23253
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23254
|
+
$emit: ((event: "clear") => void) & ((event: "closed") => void) & ((event: "update:selectedCondition", value: {
|
|
23074
23255
|
label: string;
|
|
23075
23256
|
value: string;
|
|
23076
23257
|
multi: boolean;
|
|
23077
|
-
}
|
|
23078
|
-
|
|
23079
|
-
|
|
23080
|
-
|
|
23081
|
-
|
|
23082
|
-
|
|
23083
|
-
|
|
23084
|
-
|
|
23085
|
-
|
|
23086
|
-
|
|
23087
|
-
|
|
23088
|
-
|
|
23089
|
-
|
|
23090
|
-
|
|
23091
|
-
|
|
23092
|
-
|
|
23093
|
-
|
|
23094
|
-
|
|
23095
|
-
|
|
23096
|
-
|
|
23097
|
-
|
|
23098
|
-
|
|
23099
|
-
|
|
23100
|
-
|
|
23101
|
-
|
|
23102
|
-
|
|
23103
|
-
|
|
23104
|
-
|
|
23105
|
-
|
|
23106
|
-
|
|
23107
|
-
|
|
23108
|
-
|
|
23109
|
-
|
|
23110
|
-
|
|
23111
|
-
|
|
23112
|
-
|
|
23113
|
-
|
|
23114
|
-
|
|
23115
|
-
|
|
23116
|
-
|
|
23117
|
-
|
|
23118
|
-
|
|
23119
|
-
|
|
23120
|
-
|
|
23121
|
-
|
|
23258
|
+
}) => void) & ((event: "update:appliedSelections", value: unknown) => void);
|
|
23259
|
+
$el: any;
|
|
23260
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23261
|
+
label: {
|
|
23262
|
+
type: import("vue").PropType<string>;
|
|
23263
|
+
required: true;
|
|
23264
|
+
default: string;
|
|
23265
|
+
};
|
|
23266
|
+
testId: {
|
|
23267
|
+
type: import("vue").PropType<string>;
|
|
23268
|
+
default: string;
|
|
23269
|
+
};
|
|
23270
|
+
isOpen: {
|
|
23271
|
+
type: import("vue").PropType<boolean>;
|
|
23272
|
+
default: boolean;
|
|
23273
|
+
};
|
|
23274
|
+
infiniteLoading: {
|
|
23275
|
+
type: import("vue").PropType<boolean>;
|
|
23276
|
+
default: boolean;
|
|
23277
|
+
};
|
|
23278
|
+
triggerShownValuesCount: {
|
|
23279
|
+
type: import("vue").PropType<number>;
|
|
23280
|
+
default: number;
|
|
23281
|
+
};
|
|
23282
|
+
optionNameKey: {
|
|
23283
|
+
type: import("vue").PropType<string>;
|
|
23284
|
+
required: true;
|
|
23285
|
+
default: string;
|
|
23286
|
+
};
|
|
23287
|
+
optionIconKey: {
|
|
23288
|
+
type: import("vue").PropType<string>;
|
|
23289
|
+
default: string;
|
|
23290
|
+
};
|
|
23291
|
+
optionImageKey: {
|
|
23292
|
+
type: import("vue").PropType<string>;
|
|
23293
|
+
default: string;
|
|
23294
|
+
};
|
|
23295
|
+
optionIconType: {
|
|
23296
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23297
|
+
default: any;
|
|
23298
|
+
};
|
|
23299
|
+
optionFlagKey: {
|
|
23300
|
+
type: import("vue").PropType<string>;
|
|
23301
|
+
default: string;
|
|
23302
|
+
};
|
|
23303
|
+
groupedOptions: {
|
|
23304
|
+
type: import("vue").PropType<boolean>;
|
|
23305
|
+
default: boolean;
|
|
23306
|
+
};
|
|
23307
|
+
comparingKey: {
|
|
23308
|
+
type: import("vue").PropType<string>;
|
|
23309
|
+
required: true;
|
|
23310
|
+
default: string;
|
|
23311
|
+
};
|
|
23312
|
+
conditionalOptions: {
|
|
23313
|
+
type: import("vue").PropType<{
|
|
23314
|
+
label: string;
|
|
23315
|
+
value: string;
|
|
23316
|
+
multi: boolean;
|
|
23317
|
+
}[]>;
|
|
23318
|
+
required: true;
|
|
23319
|
+
};
|
|
23320
|
+
selectedCondition: {
|
|
23321
|
+
type: import("vue").PropType<{
|
|
23322
|
+
label: string;
|
|
23323
|
+
value: string;
|
|
23324
|
+
multi: boolean;
|
|
23325
|
+
}>;
|
|
23326
|
+
required: true;
|
|
23327
|
+
};
|
|
23328
|
+
appliedSelections: {
|
|
23329
|
+
type: import("vue").PropType<unknown>;
|
|
23330
|
+
required: true;
|
|
23331
|
+
};
|
|
23332
|
+
fetchFnCallback: {
|
|
23333
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23334
|
+
required: true;
|
|
23335
|
+
};
|
|
23336
|
+
minCharsToStart: {
|
|
23337
|
+
type: import("vue").PropType<number>;
|
|
23338
|
+
default: number;
|
|
23339
|
+
};
|
|
23340
|
+
searchQuery: {
|
|
23341
|
+
type: import("vue").PropType<string>;
|
|
23342
|
+
default: string;
|
|
23343
|
+
};
|
|
23344
|
+
loadMoreFn: {
|
|
23345
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23346
|
+
default: any;
|
|
23347
|
+
};
|
|
23348
|
+
fetchDataDebounceTime: {
|
|
23349
|
+
type: import("vue").PropType<number>;
|
|
23350
|
+
default: number;
|
|
23351
|
+
};
|
|
23352
|
+
autoFocusSearch: {
|
|
23353
|
+
type: import("vue").PropType<boolean>;
|
|
23354
|
+
default: boolean;
|
|
23355
|
+
};
|
|
23356
|
+
loadingOverride: {
|
|
23357
|
+
type: import("vue").PropType<boolean>;
|
|
23358
|
+
default: boolean;
|
|
23359
|
+
};
|
|
23360
|
+
}>> & {
|
|
23361
|
+
onClear?: () => any;
|
|
23362
|
+
onClosed?: () => any;
|
|
23363
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23364
|
+
label: string;
|
|
23365
|
+
value: string;
|
|
23366
|
+
multi: boolean;
|
|
23367
|
+
}) => any;
|
|
23368
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23369
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23370
|
+
"update:selectedCondition": (value: {
|
|
23371
|
+
label: string;
|
|
23372
|
+
value: string;
|
|
23373
|
+
multi: boolean;
|
|
23374
|
+
}) => void;
|
|
23375
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
23376
|
+
clear: () => void;
|
|
23377
|
+
closed: () => void;
|
|
23378
|
+
}, string, {
|
|
23379
|
+
label: string;
|
|
23380
|
+
testId: string;
|
|
23381
|
+
isOpen: boolean;
|
|
23382
|
+
infiniteLoading: boolean;
|
|
23383
|
+
triggerShownValuesCount: number;
|
|
23384
|
+
optionNameKey: string;
|
|
23385
|
+
optionIconKey: string;
|
|
23386
|
+
optionImageKey: string;
|
|
23387
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23388
|
+
optionFlagKey: string;
|
|
23389
|
+
groupedOptions: boolean;
|
|
23390
|
+
comparingKey: string;
|
|
23391
|
+
minCharsToStart: number;
|
|
23392
|
+
searchQuery: string;
|
|
23393
|
+
loadMoreFn: () => Promise<any[]>;
|
|
23394
|
+
fetchDataDebounceTime: number;
|
|
23395
|
+
autoFocusSearch: boolean;
|
|
23396
|
+
loadingOverride: boolean;
|
|
23397
|
+
}, {}, string> & {
|
|
23398
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
23399
|
+
created?: (() => void) | (() => void)[];
|
|
23400
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
23401
|
+
mounted?: (() => void) | (() => void)[];
|
|
23402
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
23403
|
+
updated?: (() => void) | (() => void)[];
|
|
23404
|
+
activated?: (() => void) | (() => void)[];
|
|
23405
|
+
deactivated?: (() => void) | (() => void)[];
|
|
23406
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
23407
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
23408
|
+
destroyed?: (() => void) | (() => void)[];
|
|
23409
|
+
unmounted?: (() => void) | (() => void)[];
|
|
23410
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23411
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23412
|
+
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)[];
|
|
23413
|
+
};
|
|
23414
|
+
$forceUpdate: () => void;
|
|
23415
|
+
$nextTick: typeof import("vue").nextTick;
|
|
23416
|
+
$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;
|
|
23417
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
23418
|
+
label: {
|
|
23419
|
+
type: import("vue").PropType<string>;
|
|
23420
|
+
required: true;
|
|
23421
|
+
default: string;
|
|
23422
|
+
};
|
|
23423
|
+
testId: {
|
|
23424
|
+
type: import("vue").PropType<string>;
|
|
23425
|
+
default: string;
|
|
23426
|
+
};
|
|
23427
|
+
isOpen: {
|
|
23428
|
+
type: import("vue").PropType<boolean>;
|
|
23429
|
+
default: boolean;
|
|
23430
|
+
};
|
|
23431
|
+
infiniteLoading: {
|
|
23432
|
+
type: import("vue").PropType<boolean>;
|
|
23433
|
+
default: boolean;
|
|
23434
|
+
};
|
|
23435
|
+
triggerShownValuesCount: {
|
|
23436
|
+
type: import("vue").PropType<number>;
|
|
23437
|
+
default: number;
|
|
23438
|
+
};
|
|
23439
|
+
optionNameKey: {
|
|
23440
|
+
type: import("vue").PropType<string>;
|
|
23441
|
+
required: true;
|
|
23442
|
+
default: string;
|
|
23443
|
+
};
|
|
23444
|
+
optionIconKey: {
|
|
23445
|
+
type: import("vue").PropType<string>;
|
|
23446
|
+
default: string;
|
|
23447
|
+
};
|
|
23448
|
+
optionImageKey: {
|
|
23449
|
+
type: import("vue").PropType<string>;
|
|
23450
|
+
default: string;
|
|
23451
|
+
};
|
|
23452
|
+
optionIconType: {
|
|
23453
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23454
|
+
default: any;
|
|
23455
|
+
};
|
|
23456
|
+
optionFlagKey: {
|
|
23457
|
+
type: import("vue").PropType<string>;
|
|
23458
|
+
default: string;
|
|
23459
|
+
};
|
|
23460
|
+
groupedOptions: {
|
|
23461
|
+
type: import("vue").PropType<boolean>;
|
|
23462
|
+
default: boolean;
|
|
23463
|
+
};
|
|
23464
|
+
comparingKey: {
|
|
23465
|
+
type: import("vue").PropType<string>;
|
|
23466
|
+
required: true;
|
|
23467
|
+
default: string;
|
|
23468
|
+
};
|
|
23469
|
+
conditionalOptions: {
|
|
23470
|
+
type: import("vue").PropType<{
|
|
23471
|
+
label: string;
|
|
23472
|
+
value: string;
|
|
23473
|
+
multi: boolean;
|
|
23474
|
+
}[]>;
|
|
23475
|
+
required: true;
|
|
23476
|
+
};
|
|
23477
|
+
selectedCondition: {
|
|
23478
|
+
type: import("vue").PropType<{
|
|
23479
|
+
label: string;
|
|
23480
|
+
value: string;
|
|
23481
|
+
multi: boolean;
|
|
23482
|
+
}>;
|
|
23483
|
+
required: true;
|
|
23484
|
+
};
|
|
23485
|
+
appliedSelections: {
|
|
23486
|
+
type: import("vue").PropType<unknown>;
|
|
23487
|
+
required: true;
|
|
23488
|
+
};
|
|
23489
|
+
fetchFnCallback: {
|
|
23490
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23491
|
+
required: true;
|
|
23492
|
+
};
|
|
23493
|
+
minCharsToStart: {
|
|
23494
|
+
type: import("vue").PropType<number>;
|
|
23495
|
+
default: number;
|
|
23496
|
+
};
|
|
23497
|
+
searchQuery: {
|
|
23498
|
+
type: import("vue").PropType<string>;
|
|
23499
|
+
default: string;
|
|
23500
|
+
};
|
|
23501
|
+
loadMoreFn: {
|
|
23502
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23503
|
+
default: any;
|
|
23504
|
+
};
|
|
23505
|
+
fetchDataDebounceTime: {
|
|
23506
|
+
type: import("vue").PropType<number>;
|
|
23507
|
+
default: number;
|
|
23508
|
+
};
|
|
23509
|
+
autoFocusSearch: {
|
|
23510
|
+
type: import("vue").PropType<boolean>;
|
|
23511
|
+
default: boolean;
|
|
23512
|
+
};
|
|
23513
|
+
loadingOverride: {
|
|
23514
|
+
type: import("vue").PropType<boolean>;
|
|
23515
|
+
default: boolean;
|
|
23516
|
+
};
|
|
23517
|
+
}>> & {
|
|
23518
|
+
onClear?: () => any;
|
|
23519
|
+
onClosed?: () => any;
|
|
23520
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23521
|
+
label: string;
|
|
23522
|
+
value: string;
|
|
23523
|
+
multi: boolean;
|
|
23524
|
+
}) => any;
|
|
23525
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23526
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
23527
|
+
__isFragment?: never;
|
|
23528
|
+
__isTeleport?: never;
|
|
23529
|
+
__isSuspense?: never;
|
|
23530
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23122
23531
|
label: {
|
|
23123
23532
|
type: import("vue").PropType<string>;
|
|
23124
23533
|
required: true;
|
|
@@ -23136,6 +23545,10 @@ declare const _default: {
|
|
|
23136
23545
|
type: import("vue").PropType<boolean>;
|
|
23137
23546
|
default: boolean;
|
|
23138
23547
|
};
|
|
23548
|
+
triggerShownValuesCount: {
|
|
23549
|
+
type: import("vue").PropType<number>;
|
|
23550
|
+
default: number;
|
|
23551
|
+
};
|
|
23139
23552
|
optionNameKey: {
|
|
23140
23553
|
type: import("vue").PropType<string>;
|
|
23141
23554
|
required: true;
|
|
@@ -23223,11 +23636,21 @@ declare const _default: {
|
|
|
23223
23636
|
multi: boolean;
|
|
23224
23637
|
}) => any;
|
|
23225
23638
|
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23226
|
-
}, {
|
|
23639
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23640
|
+
"update:selectedCondition": (value: {
|
|
23641
|
+
label: string;
|
|
23642
|
+
value: string;
|
|
23643
|
+
multi: boolean;
|
|
23644
|
+
}) => void;
|
|
23645
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
23646
|
+
clear: () => void;
|
|
23647
|
+
closed: () => void;
|
|
23648
|
+
}, string, {
|
|
23227
23649
|
label: string;
|
|
23228
23650
|
testId: string;
|
|
23229
23651
|
isOpen: boolean;
|
|
23230
23652
|
infiniteLoading: boolean;
|
|
23653
|
+
triggerShownValuesCount: number;
|
|
23231
23654
|
optionNameKey: string;
|
|
23232
23655
|
optionIconKey: string;
|
|
23233
23656
|
optionImageKey: string;
|
|
@@ -23241,7 +23664,13 @@ declare const _default: {
|
|
|
23241
23664
|
fetchDataDebounceTime: number;
|
|
23242
23665
|
autoFocusSearch: boolean;
|
|
23243
23666
|
loadingOverride: boolean;
|
|
23244
|
-
}>)
|
|
23667
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
23668
|
+
$slots: {
|
|
23669
|
+
"option-end"?(_: {
|
|
23670
|
+
option: any;
|
|
23671
|
+
}): any;
|
|
23672
|
+
};
|
|
23673
|
+
})))[];
|
|
23245
23674
|
Option: {
|
|
23246
23675
|
new (...args: any[]): {
|
|
23247
23676
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -24213,112 +24642,427 @@ declare const _default: {
|
|
|
24213
24642
|
"trigger-end-icon"?(_: {}): any;
|
|
24214
24643
|
};
|
|
24215
24644
|
});
|
|
24216
|
-
ConditionalDropdown:
|
|
24217
|
-
|
|
24218
|
-
|
|
24219
|
-
|
|
24220
|
-
|
|
24221
|
-
|
|
24222
|
-
|
|
24223
|
-
|
|
24224
|
-
|
|
24225
|
-
|
|
24226
|
-
|
|
24227
|
-
|
|
24228
|
-
|
|
24229
|
-
|
|
24230
|
-
|
|
24231
|
-
|
|
24232
|
-
|
|
24233
|
-
|
|
24234
|
-
|
|
24235
|
-
|
|
24236
|
-
|
|
24237
|
-
|
|
24238
|
-
|
|
24239
|
-
|
|
24240
|
-
|
|
24241
|
-
|
|
24242
|
-
|
|
24243
|
-
|
|
24244
|
-
|
|
24245
|
-
|
|
24246
|
-
|
|
24247
|
-
|
|
24248
|
-
|
|
24249
|
-
|
|
24250
|
-
|
|
24251
|
-
|
|
24252
|
-
|
|
24253
|
-
|
|
24254
|
-
|
|
24255
|
-
|
|
24256
|
-
|
|
24257
|
-
|
|
24258
|
-
|
|
24259
|
-
|
|
24260
|
-
|
|
24261
|
-
|
|
24262
|
-
|
|
24263
|
-
|
|
24264
|
-
|
|
24265
|
-
|
|
24645
|
+
ConditionalDropdown: {
|
|
24646
|
+
new (...args: any[]): {
|
|
24647
|
+
$: import("vue").ComponentInternalInstance;
|
|
24648
|
+
$data: {};
|
|
24649
|
+
$props: Partial<{
|
|
24650
|
+
label: string;
|
|
24651
|
+
testId: string;
|
|
24652
|
+
isOpen: boolean;
|
|
24653
|
+
infiniteLoading: boolean;
|
|
24654
|
+
triggerShownValuesCount: number;
|
|
24655
|
+
optionNameKey: string;
|
|
24656
|
+
optionIconKey: string;
|
|
24657
|
+
optionImageKey: string;
|
|
24658
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24659
|
+
optionFlagKey: string;
|
|
24660
|
+
groupedOptions: boolean;
|
|
24661
|
+
comparingKey: string;
|
|
24662
|
+
minCharsToStart: number;
|
|
24663
|
+
searchQuery: string;
|
|
24664
|
+
loadMoreFn: () => Promise<any[]>;
|
|
24665
|
+
fetchDataDebounceTime: number;
|
|
24666
|
+
autoFocusSearch: boolean;
|
|
24667
|
+
loadingOverride: boolean;
|
|
24668
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
24669
|
+
label: {
|
|
24670
|
+
type: import("vue").PropType<string>;
|
|
24671
|
+
required: true;
|
|
24672
|
+
default: string;
|
|
24673
|
+
};
|
|
24674
|
+
testId: {
|
|
24675
|
+
type: import("vue").PropType<string>;
|
|
24676
|
+
default: string;
|
|
24677
|
+
};
|
|
24678
|
+
isOpen: {
|
|
24679
|
+
type: import("vue").PropType<boolean>;
|
|
24680
|
+
default: boolean;
|
|
24681
|
+
};
|
|
24682
|
+
infiniteLoading: {
|
|
24683
|
+
type: import("vue").PropType<boolean>;
|
|
24684
|
+
default: boolean;
|
|
24685
|
+
};
|
|
24686
|
+
triggerShownValuesCount: {
|
|
24687
|
+
type: import("vue").PropType<number>;
|
|
24688
|
+
default: number;
|
|
24689
|
+
};
|
|
24690
|
+
optionNameKey: {
|
|
24691
|
+
type: import("vue").PropType<string>;
|
|
24692
|
+
required: true;
|
|
24693
|
+
default: string;
|
|
24694
|
+
};
|
|
24695
|
+
optionIconKey: {
|
|
24696
|
+
type: import("vue").PropType<string>;
|
|
24697
|
+
default: string;
|
|
24698
|
+
};
|
|
24699
|
+
optionImageKey: {
|
|
24700
|
+
type: import("vue").PropType<string>;
|
|
24701
|
+
default: string;
|
|
24702
|
+
};
|
|
24703
|
+
optionIconType: {
|
|
24704
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24705
|
+
default: any;
|
|
24706
|
+
};
|
|
24707
|
+
optionFlagKey: {
|
|
24708
|
+
type: import("vue").PropType<string>;
|
|
24709
|
+
default: string;
|
|
24710
|
+
};
|
|
24711
|
+
groupedOptions: {
|
|
24712
|
+
type: import("vue").PropType<boolean>;
|
|
24713
|
+
default: boolean;
|
|
24714
|
+
};
|
|
24715
|
+
comparingKey: {
|
|
24716
|
+
type: import("vue").PropType<string>;
|
|
24717
|
+
required: true;
|
|
24718
|
+
default: string;
|
|
24719
|
+
};
|
|
24720
|
+
conditionalOptions: {
|
|
24721
|
+
type: import("vue").PropType<{
|
|
24722
|
+
label: string;
|
|
24723
|
+
value: string;
|
|
24724
|
+
multi: boolean;
|
|
24725
|
+
}[]>;
|
|
24726
|
+
required: true;
|
|
24727
|
+
};
|
|
24728
|
+
selectedCondition: {
|
|
24729
|
+
type: import("vue").PropType<{
|
|
24730
|
+
label: string;
|
|
24731
|
+
value: string;
|
|
24732
|
+
multi: boolean;
|
|
24733
|
+
}>;
|
|
24734
|
+
required: true;
|
|
24735
|
+
};
|
|
24736
|
+
appliedSelections: {
|
|
24737
|
+
type: import("vue").PropType<unknown>;
|
|
24738
|
+
required: true;
|
|
24739
|
+
};
|
|
24740
|
+
fetchFnCallback: {
|
|
24741
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
24742
|
+
required: true;
|
|
24743
|
+
};
|
|
24744
|
+
minCharsToStart: {
|
|
24745
|
+
type: import("vue").PropType<number>;
|
|
24746
|
+
default: number;
|
|
24747
|
+
};
|
|
24748
|
+
searchQuery: {
|
|
24749
|
+
type: import("vue").PropType<string>;
|
|
24750
|
+
default: string;
|
|
24751
|
+
};
|
|
24752
|
+
loadMoreFn: {
|
|
24753
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
24754
|
+
default: any;
|
|
24755
|
+
};
|
|
24756
|
+
fetchDataDebounceTime: {
|
|
24757
|
+
type: import("vue").PropType<number>;
|
|
24758
|
+
default: number;
|
|
24759
|
+
};
|
|
24760
|
+
autoFocusSearch: {
|
|
24761
|
+
type: import("vue").PropType<boolean>;
|
|
24762
|
+
default: boolean;
|
|
24763
|
+
};
|
|
24764
|
+
loadingOverride: {
|
|
24765
|
+
type: import("vue").PropType<boolean>;
|
|
24766
|
+
default: boolean;
|
|
24767
|
+
};
|
|
24768
|
+
}>> & {
|
|
24769
|
+
onClear?: () => any;
|
|
24770
|
+
onClosed?: () => any;
|
|
24771
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
24772
|
+
label: string;
|
|
24773
|
+
value: string;
|
|
24774
|
+
multi: boolean;
|
|
24775
|
+
}) => any;
|
|
24776
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24777
|
+
} & 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">;
|
|
24778
|
+
$attrs: {
|
|
24779
|
+
[x: string]: unknown;
|
|
24780
|
+
};
|
|
24781
|
+
$refs: {
|
|
24782
|
+
[x: string]: unknown;
|
|
24783
|
+
};
|
|
24784
|
+
$slots: Readonly<{
|
|
24785
|
+
[name: string]: import("vue").Slot;
|
|
24786
|
+
}>;
|
|
24787
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
24788
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
24789
|
+
$emit: ((event: "clear") => void) & ((event: "closed") => void) & ((event: "update:selectedCondition", value: {
|
|
24790
|
+
label: string;
|
|
24791
|
+
value: string;
|
|
24792
|
+
multi: boolean;
|
|
24793
|
+
}) => void) & ((event: "update:appliedSelections", value: unknown) => void);
|
|
24794
|
+
$el: any;
|
|
24795
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
24796
|
+
label: {
|
|
24797
|
+
type: import("vue").PropType<string>;
|
|
24798
|
+
required: true;
|
|
24799
|
+
default: string;
|
|
24800
|
+
};
|
|
24801
|
+
testId: {
|
|
24802
|
+
type: import("vue").PropType<string>;
|
|
24803
|
+
default: string;
|
|
24804
|
+
};
|
|
24805
|
+
isOpen: {
|
|
24806
|
+
type: import("vue").PropType<boolean>;
|
|
24807
|
+
default: boolean;
|
|
24808
|
+
};
|
|
24809
|
+
infiniteLoading: {
|
|
24810
|
+
type: import("vue").PropType<boolean>;
|
|
24811
|
+
default: boolean;
|
|
24812
|
+
};
|
|
24813
|
+
triggerShownValuesCount: {
|
|
24814
|
+
type: import("vue").PropType<number>;
|
|
24815
|
+
default: number;
|
|
24816
|
+
};
|
|
24817
|
+
optionNameKey: {
|
|
24818
|
+
type: import("vue").PropType<string>;
|
|
24819
|
+
required: true;
|
|
24820
|
+
default: string;
|
|
24821
|
+
};
|
|
24822
|
+
optionIconKey: {
|
|
24823
|
+
type: import("vue").PropType<string>;
|
|
24824
|
+
default: string;
|
|
24825
|
+
};
|
|
24826
|
+
optionImageKey: {
|
|
24827
|
+
type: import("vue").PropType<string>;
|
|
24828
|
+
default: string;
|
|
24829
|
+
};
|
|
24830
|
+
optionIconType: {
|
|
24831
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24832
|
+
default: any;
|
|
24833
|
+
};
|
|
24834
|
+
optionFlagKey: {
|
|
24835
|
+
type: import("vue").PropType<string>;
|
|
24836
|
+
default: string;
|
|
24837
|
+
};
|
|
24838
|
+
groupedOptions: {
|
|
24839
|
+
type: import("vue").PropType<boolean>;
|
|
24840
|
+
default: boolean;
|
|
24841
|
+
};
|
|
24842
|
+
comparingKey: {
|
|
24843
|
+
type: import("vue").PropType<string>;
|
|
24844
|
+
required: true;
|
|
24845
|
+
default: string;
|
|
24846
|
+
};
|
|
24847
|
+
conditionalOptions: {
|
|
24848
|
+
type: import("vue").PropType<{
|
|
24849
|
+
label: string;
|
|
24850
|
+
value: string;
|
|
24851
|
+
multi: boolean;
|
|
24852
|
+
}[]>;
|
|
24853
|
+
required: true;
|
|
24854
|
+
};
|
|
24855
|
+
selectedCondition: {
|
|
24856
|
+
type: import("vue").PropType<{
|
|
24857
|
+
label: string;
|
|
24858
|
+
value: string;
|
|
24859
|
+
multi: boolean;
|
|
24860
|
+
}>;
|
|
24861
|
+
required: true;
|
|
24862
|
+
};
|
|
24863
|
+
appliedSelections: {
|
|
24864
|
+
type: import("vue").PropType<unknown>;
|
|
24865
|
+
required: true;
|
|
24866
|
+
};
|
|
24867
|
+
fetchFnCallback: {
|
|
24868
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
24869
|
+
required: true;
|
|
24870
|
+
};
|
|
24871
|
+
minCharsToStart: {
|
|
24872
|
+
type: import("vue").PropType<number>;
|
|
24873
|
+
default: number;
|
|
24874
|
+
};
|
|
24875
|
+
searchQuery: {
|
|
24876
|
+
type: import("vue").PropType<string>;
|
|
24877
|
+
default: string;
|
|
24878
|
+
};
|
|
24879
|
+
loadMoreFn: {
|
|
24880
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
24881
|
+
default: any;
|
|
24882
|
+
};
|
|
24883
|
+
fetchDataDebounceTime: {
|
|
24884
|
+
type: import("vue").PropType<number>;
|
|
24885
|
+
default: number;
|
|
24886
|
+
};
|
|
24887
|
+
autoFocusSearch: {
|
|
24888
|
+
type: import("vue").PropType<boolean>;
|
|
24889
|
+
default: boolean;
|
|
24890
|
+
};
|
|
24891
|
+
loadingOverride: {
|
|
24892
|
+
type: import("vue").PropType<boolean>;
|
|
24893
|
+
default: boolean;
|
|
24894
|
+
};
|
|
24895
|
+
}>> & {
|
|
24896
|
+
onClear?: () => any;
|
|
24897
|
+
onClosed?: () => any;
|
|
24898
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
24899
|
+
label: string;
|
|
24900
|
+
value: string;
|
|
24901
|
+
multi: boolean;
|
|
24902
|
+
}) => any;
|
|
24903
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24904
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24905
|
+
"update:selectedCondition": (value: {
|
|
24906
|
+
label: string;
|
|
24907
|
+
value: string;
|
|
24908
|
+
multi: boolean;
|
|
24909
|
+
}) => void;
|
|
24910
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
24911
|
+
clear: () => void;
|
|
24912
|
+
closed: () => void;
|
|
24913
|
+
}, string, {
|
|
24266
24914
|
label: string;
|
|
24267
|
-
|
|
24268
|
-
|
|
24269
|
-
|
|
24270
|
-
|
|
24271
|
-
|
|
24272
|
-
|
|
24273
|
-
|
|
24915
|
+
testId: string;
|
|
24916
|
+
isOpen: boolean;
|
|
24917
|
+
infiniteLoading: boolean;
|
|
24918
|
+
triggerShownValuesCount: number;
|
|
24919
|
+
optionNameKey: string;
|
|
24920
|
+
optionIconKey: string;
|
|
24921
|
+
optionImageKey: string;
|
|
24922
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24923
|
+
optionFlagKey: string;
|
|
24924
|
+
groupedOptions: boolean;
|
|
24925
|
+
comparingKey: string;
|
|
24926
|
+
minCharsToStart: number;
|
|
24927
|
+
searchQuery: string;
|
|
24928
|
+
loadMoreFn: () => Promise<any[]>;
|
|
24929
|
+
fetchDataDebounceTime: number;
|
|
24930
|
+
autoFocusSearch: boolean;
|
|
24931
|
+
loadingOverride: boolean;
|
|
24932
|
+
}, {}, string> & {
|
|
24933
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
24934
|
+
created?: (() => void) | (() => void)[];
|
|
24935
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
24936
|
+
mounted?: (() => void) | (() => void)[];
|
|
24937
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
24938
|
+
updated?: (() => void) | (() => void)[];
|
|
24939
|
+
activated?: (() => void) | (() => void)[];
|
|
24940
|
+
deactivated?: (() => void) | (() => void)[];
|
|
24941
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
24942
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
24943
|
+
destroyed?: (() => void) | (() => void)[];
|
|
24944
|
+
unmounted?: (() => void) | (() => void)[];
|
|
24945
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
24946
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
24947
|
+
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)[];
|
|
24948
|
+
};
|
|
24949
|
+
$forceUpdate: () => void;
|
|
24950
|
+
$nextTick: typeof import("vue").nextTick;
|
|
24951
|
+
$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;
|
|
24952
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
24953
|
+
label: {
|
|
24954
|
+
type: import("vue").PropType<string>;
|
|
24955
|
+
required: true;
|
|
24956
|
+
default: string;
|
|
24957
|
+
};
|
|
24958
|
+
testId: {
|
|
24959
|
+
type: import("vue").PropType<string>;
|
|
24960
|
+
default: string;
|
|
24961
|
+
};
|
|
24962
|
+
isOpen: {
|
|
24963
|
+
type: import("vue").PropType<boolean>;
|
|
24964
|
+
default: boolean;
|
|
24965
|
+
};
|
|
24966
|
+
infiniteLoading: {
|
|
24967
|
+
type: import("vue").PropType<boolean>;
|
|
24968
|
+
default: boolean;
|
|
24969
|
+
};
|
|
24970
|
+
triggerShownValuesCount: {
|
|
24971
|
+
type: import("vue").PropType<number>;
|
|
24972
|
+
default: number;
|
|
24973
|
+
};
|
|
24974
|
+
optionNameKey: {
|
|
24975
|
+
type: import("vue").PropType<string>;
|
|
24976
|
+
required: true;
|
|
24977
|
+
default: string;
|
|
24978
|
+
};
|
|
24979
|
+
optionIconKey: {
|
|
24980
|
+
type: import("vue").PropType<string>;
|
|
24981
|
+
default: string;
|
|
24982
|
+
};
|
|
24983
|
+
optionImageKey: {
|
|
24984
|
+
type: import("vue").PropType<string>;
|
|
24985
|
+
default: string;
|
|
24986
|
+
};
|
|
24987
|
+
optionIconType: {
|
|
24988
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24989
|
+
default: any;
|
|
24990
|
+
};
|
|
24991
|
+
optionFlagKey: {
|
|
24992
|
+
type: import("vue").PropType<string>;
|
|
24993
|
+
default: string;
|
|
24994
|
+
};
|
|
24995
|
+
groupedOptions: {
|
|
24996
|
+
type: import("vue").PropType<boolean>;
|
|
24997
|
+
default: boolean;
|
|
24998
|
+
};
|
|
24999
|
+
comparingKey: {
|
|
25000
|
+
type: import("vue").PropType<string>;
|
|
25001
|
+
required: true;
|
|
25002
|
+
default: string;
|
|
25003
|
+
};
|
|
25004
|
+
conditionalOptions: {
|
|
25005
|
+
type: import("vue").PropType<{
|
|
25006
|
+
label: string;
|
|
25007
|
+
value: string;
|
|
25008
|
+
multi: boolean;
|
|
25009
|
+
}[]>;
|
|
25010
|
+
required: true;
|
|
25011
|
+
};
|
|
25012
|
+
selectedCondition: {
|
|
25013
|
+
type: import("vue").PropType<{
|
|
25014
|
+
label: string;
|
|
25015
|
+
value: string;
|
|
25016
|
+
multi: boolean;
|
|
25017
|
+
}>;
|
|
25018
|
+
required: true;
|
|
25019
|
+
};
|
|
25020
|
+
appliedSelections: {
|
|
25021
|
+
type: import("vue").PropType<unknown>;
|
|
25022
|
+
required: true;
|
|
25023
|
+
};
|
|
25024
|
+
fetchFnCallback: {
|
|
25025
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
25026
|
+
required: true;
|
|
25027
|
+
};
|
|
25028
|
+
minCharsToStart: {
|
|
25029
|
+
type: import("vue").PropType<number>;
|
|
25030
|
+
default: number;
|
|
25031
|
+
};
|
|
25032
|
+
searchQuery: {
|
|
25033
|
+
type: import("vue").PropType<string>;
|
|
25034
|
+
default: string;
|
|
25035
|
+
};
|
|
25036
|
+
loadMoreFn: {
|
|
25037
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
25038
|
+
default: any;
|
|
25039
|
+
};
|
|
25040
|
+
fetchDataDebounceTime: {
|
|
25041
|
+
type: import("vue").PropType<number>;
|
|
25042
|
+
default: number;
|
|
25043
|
+
};
|
|
25044
|
+
autoFocusSearch: {
|
|
25045
|
+
type: import("vue").PropType<boolean>;
|
|
25046
|
+
default: boolean;
|
|
25047
|
+
};
|
|
25048
|
+
loadingOverride: {
|
|
25049
|
+
type: import("vue").PropType<boolean>;
|
|
25050
|
+
default: boolean;
|
|
25051
|
+
};
|
|
25052
|
+
}>> & {
|
|
25053
|
+
onClear?: () => any;
|
|
25054
|
+
onClosed?: () => any;
|
|
25055
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
24274
25056
|
label: string;
|
|
24275
25057
|
value: string;
|
|
24276
25058
|
multi: boolean;
|
|
24277
|
-
}
|
|
24278
|
-
|
|
24279
|
-
};
|
|
24280
|
-
|
|
24281
|
-
|
|
24282
|
-
|
|
24283
|
-
|
|
24284
|
-
fetchFnCallback: {
|
|
24285
|
-
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
24286
|
-
required: true;
|
|
24287
|
-
};
|
|
24288
|
-
minCharsToStart: {
|
|
24289
|
-
type: import("vue").PropType<number>;
|
|
24290
|
-
default: number;
|
|
24291
|
-
};
|
|
24292
|
-
searchQuery: {
|
|
24293
|
-
type: import("vue").PropType<string>;
|
|
24294
|
-
default: string;
|
|
24295
|
-
};
|
|
24296
|
-
loadMoreFn: {
|
|
24297
|
-
type: import("vue").PropType<() => Promise<any[]>>;
|
|
24298
|
-
default: any;
|
|
24299
|
-
};
|
|
24300
|
-
fetchDataDebounceTime: {
|
|
24301
|
-
type: import("vue").PropType<number>;
|
|
24302
|
-
default: number;
|
|
24303
|
-
};
|
|
24304
|
-
autoFocusSearch: {
|
|
24305
|
-
type: import("vue").PropType<boolean>;
|
|
24306
|
-
default: boolean;
|
|
24307
|
-
};
|
|
24308
|
-
loadingOverride: {
|
|
24309
|
-
type: import("vue").PropType<boolean>;
|
|
24310
|
-
default: boolean;
|
|
24311
|
-
};
|
|
24312
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24313
|
-
"update:selectedCondition": (value: {
|
|
24314
|
-
label: string;
|
|
24315
|
-
value: string;
|
|
24316
|
-
multi: boolean;
|
|
24317
|
-
}) => void;
|
|
24318
|
-
"update:appliedSelections": (value: unknown) => void;
|
|
24319
|
-
clear: () => void;
|
|
24320
|
-
closed: () => void;
|
|
24321
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25059
|
+
}) => any;
|
|
25060
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
25061
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
25062
|
+
__isFragment?: never;
|
|
25063
|
+
__isTeleport?: never;
|
|
25064
|
+
__isSuspense?: never;
|
|
25065
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
24322
25066
|
label: {
|
|
24323
25067
|
type: import("vue").PropType<string>;
|
|
24324
25068
|
required: true;
|
|
@@ -24336,6 +25080,10 @@ declare const _default: {
|
|
|
24336
25080
|
type: import("vue").PropType<boolean>;
|
|
24337
25081
|
default: boolean;
|
|
24338
25082
|
};
|
|
25083
|
+
triggerShownValuesCount: {
|
|
25084
|
+
type: import("vue").PropType<number>;
|
|
25085
|
+
default: number;
|
|
25086
|
+
};
|
|
24339
25087
|
optionNameKey: {
|
|
24340
25088
|
type: import("vue").PropType<string>;
|
|
24341
25089
|
required: true;
|
|
@@ -24423,11 +25171,21 @@ declare const _default: {
|
|
|
24423
25171
|
multi: boolean;
|
|
24424
25172
|
}) => any;
|
|
24425
25173
|
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24426
|
-
}, {
|
|
25174
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25175
|
+
"update:selectedCondition": (value: {
|
|
25176
|
+
label: string;
|
|
25177
|
+
value: string;
|
|
25178
|
+
multi: boolean;
|
|
25179
|
+
}) => void;
|
|
25180
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
25181
|
+
clear: () => void;
|
|
25182
|
+
closed: () => void;
|
|
25183
|
+
}, string, {
|
|
24427
25184
|
label: string;
|
|
24428
25185
|
testId: string;
|
|
24429
25186
|
isOpen: boolean;
|
|
24430
25187
|
infiniteLoading: boolean;
|
|
25188
|
+
triggerShownValuesCount: number;
|
|
24431
25189
|
optionNameKey: string;
|
|
24432
25190
|
optionIconKey: string;
|
|
24433
25191
|
optionImageKey: string;
|
|
@@ -24441,7 +25199,13 @@ declare const _default: {
|
|
|
24441
25199
|
fetchDataDebounceTime: number;
|
|
24442
25200
|
autoFocusSearch: boolean;
|
|
24443
25201
|
loadingOverride: boolean;
|
|
24444
|
-
}
|
|
25202
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
25203
|
+
$slots: {
|
|
25204
|
+
"option-end"?(_: {
|
|
25205
|
+
option: any;
|
|
25206
|
+
}): any;
|
|
25207
|
+
};
|
|
25208
|
+
});
|
|
24445
25209
|
Label: {
|
|
24446
25210
|
new (...args: any[]): {
|
|
24447
25211
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -25804,6 +26568,10 @@ declare const _default: {
|
|
|
25804
26568
|
required: true;
|
|
25805
26569
|
default: string;
|
|
25806
26570
|
};
|
|
26571
|
+
tooltipPlacement: {
|
|
26572
|
+
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">;
|
|
26573
|
+
default: string;
|
|
26574
|
+
};
|
|
25807
26575
|
modelValue: {
|
|
25808
26576
|
type: import("vue").PropType<unknown>;
|
|
25809
26577
|
required: true;
|
|
@@ -25816,6 +26584,10 @@ declare const _default: {
|
|
|
25816
26584
|
type: import("vue").PropType<string>;
|
|
25817
26585
|
default: string;
|
|
25818
26586
|
};
|
|
26587
|
+
tooltipTextKey: {
|
|
26588
|
+
type: import("vue").PropType<string>;
|
|
26589
|
+
default: string;
|
|
26590
|
+
};
|
|
25819
26591
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25820
26592
|
"update:modelValue": (...args: any[]) => void;
|
|
25821
26593
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -25828,6 +26600,10 @@ declare const _default: {
|
|
|
25828
26600
|
required: true;
|
|
25829
26601
|
default: string;
|
|
25830
26602
|
};
|
|
26603
|
+
tooltipPlacement: {
|
|
26604
|
+
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">;
|
|
26605
|
+
default: string;
|
|
26606
|
+
};
|
|
25831
26607
|
modelValue: {
|
|
25832
26608
|
type: import("vue").PropType<unknown>;
|
|
25833
26609
|
required: true;
|
|
@@ -25840,12 +26616,18 @@ declare const _default: {
|
|
|
25840
26616
|
type: import("vue").PropType<string>;
|
|
25841
26617
|
default: string;
|
|
25842
26618
|
};
|
|
26619
|
+
tooltipTextKey: {
|
|
26620
|
+
type: import("vue").PropType<string>;
|
|
26621
|
+
default: string;
|
|
26622
|
+
};
|
|
25843
26623
|
}>> & {
|
|
25844
26624
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
25845
26625
|
}, {
|
|
25846
26626
|
testId: string;
|
|
25847
26627
|
variant: "default" | "primary";
|
|
26628
|
+
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";
|
|
25848
26629
|
iconKey: string;
|
|
26630
|
+
tooltipTextKey: string;
|
|
25849
26631
|
}>;
|
|
25850
26632
|
SwitchTypes: () => import("vue").DefineComponent<{
|
|
25851
26633
|
testId: {
|
|
@@ -25857,6 +26639,10 @@ declare const _default: {
|
|
|
25857
26639
|
required: true;
|
|
25858
26640
|
default: string;
|
|
25859
26641
|
};
|
|
26642
|
+
tooltipPlacement: {
|
|
26643
|
+
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">;
|
|
26644
|
+
default: string;
|
|
26645
|
+
};
|
|
25860
26646
|
modelValue: {
|
|
25861
26647
|
type: import("vue").PropType<unknown>;
|
|
25862
26648
|
required: true;
|
|
@@ -25869,6 +26655,10 @@ declare const _default: {
|
|
|
25869
26655
|
type: import("vue").PropType<string>;
|
|
25870
26656
|
default: string;
|
|
25871
26657
|
};
|
|
26658
|
+
tooltipTextKey: {
|
|
26659
|
+
type: import("vue").PropType<string>;
|
|
26660
|
+
default: string;
|
|
26661
|
+
};
|
|
25872
26662
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25873
26663
|
"update:modelValue": (...args: any[]) => void;
|
|
25874
26664
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -25881,6 +26671,10 @@ declare const _default: {
|
|
|
25881
26671
|
required: true;
|
|
25882
26672
|
default: string;
|
|
25883
26673
|
};
|
|
26674
|
+
tooltipPlacement: {
|
|
26675
|
+
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">;
|
|
26676
|
+
default: string;
|
|
26677
|
+
};
|
|
25884
26678
|
modelValue: {
|
|
25885
26679
|
type: import("vue").PropType<unknown>;
|
|
25886
26680
|
required: true;
|
|
@@ -25893,12 +26687,18 @@ declare const _default: {
|
|
|
25893
26687
|
type: import("vue").PropType<string>;
|
|
25894
26688
|
default: string;
|
|
25895
26689
|
};
|
|
26690
|
+
tooltipTextKey: {
|
|
26691
|
+
type: import("vue").PropType<string>;
|
|
26692
|
+
default: string;
|
|
26693
|
+
};
|
|
25896
26694
|
}>> & {
|
|
25897
26695
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
25898
26696
|
}, {
|
|
25899
26697
|
testId: string;
|
|
25900
26698
|
variant: "default" | "primary";
|
|
26699
|
+
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";
|
|
25901
26700
|
iconKey: string;
|
|
26701
|
+
tooltipTextKey: string;
|
|
25902
26702
|
}>[];
|
|
25903
26703
|
Chip: {
|
|
25904
26704
|
new (...args: any[]): {
|