@ironsource/shared-ui 2.1.12-rc.25 → 2.1.12-rc.27
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/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_adb49e50_lang.css +1 -0
- package/ButtonV4.vue_vue_type_style_index_0_scoped_852be7ec_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_e8f25a03_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_af520313_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_db8a902c_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_6103d8bd_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_4f67d41d_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_3315b68f_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_f5204c04_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_b21a79b1_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_55dd36a7_lang.css +1 -0
- package/Link.vue_vue_type_style_index_0_scoped_ad98fe7b_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_0287cebf_lang.css +1 -0
- package/SwitchV4.vue_vue_type_style_index_0_scoped_cd6621a7_lang.css +1 -0
- package/components/button/v4/ButtonV4.vue.d.ts +1 -0
- package/components/button/v4/ButtonV4.vue.js +3 -3
- package/components/button/v4/ButtonV4.vue2.js +28 -27
- package/components/chart/Chart.vue.d.ts +6 -1
- package/components/chart/Chart.vue.js +3 -3
- package/components/chart/Chart.vue2.js +6 -4
- package/components/chart/ChartHeader.vue.d.ts +5 -0
- package/components/chart/ChartHeader.vue.js +2 -2
- package/components/chart/ChartHeader.vue2.js +43 -35
- package/components/chart/ChartHeaderTrend.vue.js +3 -3
- package/components/chart/ChartHeaderTrend.vue2.js +17 -17
- package/components/chart/ChartLegend.vue.js +3 -3
- package/components/chart/ChartLegend.vue2.js +1 -1
- package/components/chart/ChartPlane.vue.d.ts +6 -1
- package/components/chart/ChartPlane.vue.js +5 -5
- package/components/chart/ChartPlane.vue2.js +140 -138
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +5 -5
- package/components/chart/index.d.ts +43 -24
- package/components/chart/utils/utils.d.ts +1 -2
- package/components/chart/utils/utils.js +13 -19
- package/components/dateRange/common/DateRange.common.js +81 -75
- package/components/dateRange/common/DateServices.common.d.ts +1 -1
- package/components/dateRange/common/DateServices.common.js +1 -0
- package/components/dropdown/common/Dropdown.common.js +82 -78
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.d.ts +1 -0
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +16 -13
- 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 +142 -123
- package/components/dropdown/v4/DropdownV4.vue.d.ts +10 -0
- package/components/dropdown/v4/DropdownV4.vue.js +4 -4
- package/components/dropdown/v4/DropdownV4.vue2.js +174 -163
- package/components/dropdown/v4/OptionV4.vue.d.ts +10 -5
- package/components/dropdown/v4/OptionV4.vue.js +4 -4
- package/components/dropdown/v4/OptionV4.vue2.js +106 -99
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +8 -0
- package/components/dropdown/v4/index.d.ts +510 -127
- 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/link/Link.vue.d.ts +70 -0
- package/components/link/Link.vue.js +7 -0
- package/components/link/Link.vue2.js +43 -0
- package/components/link/index.d.ts +201 -0
- package/components/link/index.js +6 -0
- 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.d.ts +2 -0
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +111 -110
- package/components/table/v4/index.d.ts +2 -0
- package/composables/useDateService.d.ts +7 -0
- package/composables/useDateService.js +10 -0
- package/index.d.ts +1120 -310
- package/index.js +111 -105
- package/mocks/apps.d.ts +1 -0
- package/mocks/optionsWithIcons.d.ts +2 -0
- package/package.json +9 -1
- package/testids/index.d.ts +4 -0
- package/testids/index.js +31 -30
- package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_0123c361_lang.css +0 -1
- package/ButtonV4.vue_vue_type_style_index_0_scoped_d7948c77_lang.css +0 -1
- package/Chart.vue_vue_type_style_index_0_scoped_03771fa3_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_da34b108_lang.css +0 -1
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_ebc0c582_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_fd9e4ea2_lang.css +0 -1
- package/ChartPlane.vue_vue_type_style_index_0_scoped_903fc6ae_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_e53c6287_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_cce87267_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_5b72e35a_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_92ead583_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
|
@@ -6482,6 +6482,8 @@ declare const _default: {
|
|
|
6482
6482
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6483
6483
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
6484
6484
|
column: tableV3.Column;
|
|
6485
|
+
}) => any>> & Partial<Record<`after-header-${string}`, (_: {
|
|
6486
|
+
column: tableV3.Column;
|
|
6485
6487
|
}) => any>> & Partial<Record<`total-${string}`, (_: {
|
|
6486
6488
|
column: tableV3.Column;
|
|
6487
6489
|
}) => any>> & Partial<Record<`cell-${string}`, (_: {
|
|
@@ -7323,6 +7325,8 @@ declare const _default: {
|
|
|
7323
7325
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7324
7326
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
7325
7327
|
column: tableV3.Column;
|
|
7328
|
+
}) => any>> & Partial<Record<`after-header-${string}`, (_: {
|
|
7329
|
+
column: tableV3.Column;
|
|
7326
7330
|
}) => any>> & Partial<Record<`total-${string}`, (_: {
|
|
7327
7331
|
column: tableV3.Column;
|
|
7328
7332
|
}) => any>> & Partial<Record<`cell-${string}`, (_: {
|
|
@@ -16368,6 +16372,7 @@ declare const _default: {
|
|
|
16368
16372
|
multi: boolean;
|
|
16369
16373
|
infiniteLoading: boolean;
|
|
16370
16374
|
showSelectAll: boolean;
|
|
16375
|
+
showClearAll: boolean;
|
|
16371
16376
|
defaultOpen: boolean;
|
|
16372
16377
|
keepOpen: boolean;
|
|
16373
16378
|
autoSize: boolean;
|
|
@@ -16405,6 +16410,7 @@ declare const _default: {
|
|
|
16405
16410
|
groupedOptions: boolean;
|
|
16406
16411
|
comparingKey: string;
|
|
16407
16412
|
customNumberOfDisplayedOptions: number;
|
|
16413
|
+
optionTooltipPosition: "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";
|
|
16408
16414
|
fullWidth: boolean;
|
|
16409
16415
|
optionsListWidth: string;
|
|
16410
16416
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -16497,6 +16503,10 @@ declare const _default: {
|
|
|
16497
16503
|
type: import("vue").PropType<boolean>;
|
|
16498
16504
|
default: boolean;
|
|
16499
16505
|
};
|
|
16506
|
+
showClearAll: {
|
|
16507
|
+
type: import("vue").PropType<boolean>;
|
|
16508
|
+
default: boolean;
|
|
16509
|
+
};
|
|
16500
16510
|
defaultOpen: {
|
|
16501
16511
|
type: import("vue").PropType<boolean>;
|
|
16502
16512
|
default: boolean;
|
|
@@ -16649,6 +16659,10 @@ declare const _default: {
|
|
|
16649
16659
|
type: import("vue").PropType<number>;
|
|
16650
16660
|
default: any;
|
|
16651
16661
|
};
|
|
16662
|
+
optionTooltipPosition: {
|
|
16663
|
+
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">;
|
|
16664
|
+
default: string;
|
|
16665
|
+
};
|
|
16652
16666
|
fullWidth: {
|
|
16653
16667
|
type: import("vue").PropType<boolean>;
|
|
16654
16668
|
default: boolean;
|
|
@@ -16686,7 +16700,7 @@ declare const _default: {
|
|
|
16686
16700
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
16687
16701
|
onOpened?: () => any;
|
|
16688
16702
|
onClosed?: () => any;
|
|
16689
|
-
} & 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" | "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">;
|
|
16703
|
+
} & 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" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16690
16704
|
$attrs: {
|
|
16691
16705
|
[x: string]: unknown;
|
|
16692
16706
|
};
|
|
@@ -16786,6 +16800,10 @@ declare const _default: {
|
|
|
16786
16800
|
type: import("vue").PropType<boolean>;
|
|
16787
16801
|
default: boolean;
|
|
16788
16802
|
};
|
|
16803
|
+
showClearAll: {
|
|
16804
|
+
type: import("vue").PropType<boolean>;
|
|
16805
|
+
default: boolean;
|
|
16806
|
+
};
|
|
16789
16807
|
defaultOpen: {
|
|
16790
16808
|
type: import("vue").PropType<boolean>;
|
|
16791
16809
|
default: boolean;
|
|
@@ -16938,6 +16956,10 @@ declare const _default: {
|
|
|
16938
16956
|
type: import("vue").PropType<number>;
|
|
16939
16957
|
default: any;
|
|
16940
16958
|
};
|
|
16959
|
+
optionTooltipPosition: {
|
|
16960
|
+
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">;
|
|
16961
|
+
default: string;
|
|
16962
|
+
};
|
|
16941
16963
|
fullWidth: {
|
|
16942
16964
|
type: import("vue").PropType<boolean>;
|
|
16943
16965
|
default: boolean;
|
|
@@ -17010,6 +17032,7 @@ declare const _default: {
|
|
|
17010
17032
|
multi: boolean;
|
|
17011
17033
|
infiniteLoading: boolean;
|
|
17012
17034
|
showSelectAll: boolean;
|
|
17035
|
+
showClearAll: boolean;
|
|
17013
17036
|
defaultOpen: boolean;
|
|
17014
17037
|
keepOpen: boolean;
|
|
17015
17038
|
autoSize: boolean;
|
|
@@ -17047,6 +17070,7 @@ declare const _default: {
|
|
|
17047
17070
|
groupedOptions: boolean;
|
|
17048
17071
|
comparingKey: string;
|
|
17049
17072
|
customNumberOfDisplayedOptions: number;
|
|
17073
|
+
optionTooltipPosition: "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";
|
|
17050
17074
|
fullWidth: boolean;
|
|
17051
17075
|
optionsListWidth: string;
|
|
17052
17076
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -17159,6 +17183,10 @@ declare const _default: {
|
|
|
17159
17183
|
type: import("vue").PropType<boolean>;
|
|
17160
17184
|
default: boolean;
|
|
17161
17185
|
};
|
|
17186
|
+
showClearAll: {
|
|
17187
|
+
type: import("vue").PropType<boolean>;
|
|
17188
|
+
default: boolean;
|
|
17189
|
+
};
|
|
17162
17190
|
defaultOpen: {
|
|
17163
17191
|
type: import("vue").PropType<boolean>;
|
|
17164
17192
|
default: boolean;
|
|
@@ -17311,6 +17339,10 @@ declare const _default: {
|
|
|
17311
17339
|
type: import("vue").PropType<number>;
|
|
17312
17340
|
default: any;
|
|
17313
17341
|
};
|
|
17342
|
+
optionTooltipPosition: {
|
|
17343
|
+
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">;
|
|
17344
|
+
default: string;
|
|
17345
|
+
};
|
|
17314
17346
|
fullWidth: {
|
|
17315
17347
|
type: import("vue").PropType<boolean>;
|
|
17316
17348
|
default: boolean;
|
|
@@ -17441,6 +17473,10 @@ declare const _default: {
|
|
|
17441
17473
|
type: import("vue").PropType<boolean>;
|
|
17442
17474
|
default: boolean;
|
|
17443
17475
|
};
|
|
17476
|
+
showClearAll: {
|
|
17477
|
+
type: import("vue").PropType<boolean>;
|
|
17478
|
+
default: boolean;
|
|
17479
|
+
};
|
|
17444
17480
|
defaultOpen: {
|
|
17445
17481
|
type: import("vue").PropType<boolean>;
|
|
17446
17482
|
default: boolean;
|
|
@@ -17593,6 +17629,10 @@ declare const _default: {
|
|
|
17593
17629
|
type: import("vue").PropType<number>;
|
|
17594
17630
|
default: any;
|
|
17595
17631
|
};
|
|
17632
|
+
optionTooltipPosition: {
|
|
17633
|
+
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">;
|
|
17634
|
+
default: string;
|
|
17635
|
+
};
|
|
17596
17636
|
fullWidth: {
|
|
17597
17637
|
type: import("vue").PropType<boolean>;
|
|
17598
17638
|
default: boolean;
|
|
@@ -17665,6 +17705,7 @@ declare const _default: {
|
|
|
17665
17705
|
multi: boolean;
|
|
17666
17706
|
infiniteLoading: boolean;
|
|
17667
17707
|
showSelectAll: boolean;
|
|
17708
|
+
showClearAll: boolean;
|
|
17668
17709
|
defaultOpen: boolean;
|
|
17669
17710
|
keepOpen: boolean;
|
|
17670
17711
|
autoSize: boolean;
|
|
@@ -17702,6 +17743,7 @@ declare const _default: {
|
|
|
17702
17743
|
groupedOptions: boolean;
|
|
17703
17744
|
comparingKey: string;
|
|
17704
17745
|
customNumberOfDisplayedOptions: number;
|
|
17746
|
+
optionTooltipPosition: "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";
|
|
17705
17747
|
fullWidth: boolean;
|
|
17706
17748
|
optionsListWidth: string;
|
|
17707
17749
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -18812,6 +18854,7 @@ declare const _default: {
|
|
|
18812
18854
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
18813
18855
|
$slots: {
|
|
18814
18856
|
default?(_: {}): any;
|
|
18857
|
+
"after-label"?(_: {}): any;
|
|
18815
18858
|
};
|
|
18816
18859
|
});
|
|
18817
18860
|
ButtonFilterDropdownTrigger: import("vue").DefineComponent<{
|
|
@@ -20441,6 +20484,7 @@ declare const _default: {
|
|
|
20441
20484
|
$data: {};
|
|
20442
20485
|
$props: Partial<{
|
|
20443
20486
|
option: any;
|
|
20487
|
+
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";
|
|
20444
20488
|
disabled: boolean;
|
|
20445
20489
|
active: boolean;
|
|
20446
20490
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -20457,17 +20501,21 @@ declare const _default: {
|
|
|
20457
20501
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20458
20502
|
endIconKey: string;
|
|
20459
20503
|
endTextIconKey: string;
|
|
20460
|
-
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";
|
|
20461
20504
|
treeMainOption: boolean;
|
|
20462
20505
|
treeMainOptionExpanded: boolean;
|
|
20463
20506
|
stopOptionClickEventPropagation: boolean;
|
|
20464
20507
|
treeChildShown: boolean;
|
|
20465
20508
|
isMulti: boolean;
|
|
20509
|
+
minMaxSelectionTooltipMessage: string;
|
|
20466
20510
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
20467
20511
|
option: {
|
|
20468
20512
|
type: import("vue").PropType<unknown>;
|
|
20469
20513
|
default: any;
|
|
20470
20514
|
};
|
|
20515
|
+
tooltipPlacement: {
|
|
20516
|
+
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">;
|
|
20517
|
+
default: string;
|
|
20518
|
+
};
|
|
20471
20519
|
disabled: {
|
|
20472
20520
|
type: import("vue").PropType<boolean>;
|
|
20473
20521
|
default: boolean;
|
|
@@ -20532,10 +20580,6 @@ declare const _default: {
|
|
|
20532
20580
|
type: import("vue").PropType<string>;
|
|
20533
20581
|
default: any;
|
|
20534
20582
|
};
|
|
20535
|
-
toolTipPlacement: {
|
|
20536
|
-
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">;
|
|
20537
|
-
default: string;
|
|
20538
|
-
};
|
|
20539
20583
|
treeMainOption: {
|
|
20540
20584
|
type: import("vue").PropType<boolean>;
|
|
20541
20585
|
default: boolean;
|
|
@@ -20556,12 +20600,16 @@ declare const _default: {
|
|
|
20556
20600
|
type: import("vue").PropType<boolean>;
|
|
20557
20601
|
default: boolean;
|
|
20558
20602
|
};
|
|
20603
|
+
minMaxSelectionTooltipMessage: {
|
|
20604
|
+
type: import("vue").PropType<string>;
|
|
20605
|
+
default: any;
|
|
20606
|
+
};
|
|
20559
20607
|
selectedProp: {
|
|
20560
20608
|
type: import("vue").PropType<boolean>;
|
|
20561
20609
|
};
|
|
20562
20610
|
}>> & {
|
|
20563
20611
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
20564
|
-
} & 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" | "
|
|
20612
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "tooltipPlacement" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti" | "minMaxSelectionTooltipMessage">;
|
|
20565
20613
|
$attrs: {
|
|
20566
20614
|
[x: string]: unknown;
|
|
20567
20615
|
};
|
|
@@ -20580,6 +20628,10 @@ declare const _default: {
|
|
|
20580
20628
|
type: import("vue").PropType<unknown>;
|
|
20581
20629
|
default: any;
|
|
20582
20630
|
};
|
|
20631
|
+
tooltipPlacement: {
|
|
20632
|
+
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">;
|
|
20633
|
+
default: string;
|
|
20634
|
+
};
|
|
20583
20635
|
disabled: {
|
|
20584
20636
|
type: import("vue").PropType<boolean>;
|
|
20585
20637
|
default: boolean;
|
|
@@ -20644,10 +20696,6 @@ declare const _default: {
|
|
|
20644
20696
|
type: import("vue").PropType<string>;
|
|
20645
20697
|
default: any;
|
|
20646
20698
|
};
|
|
20647
|
-
toolTipPlacement: {
|
|
20648
|
-
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">;
|
|
20649
|
-
default: string;
|
|
20650
|
-
};
|
|
20651
20699
|
treeMainOption: {
|
|
20652
20700
|
type: import("vue").PropType<boolean>;
|
|
20653
20701
|
default: boolean;
|
|
@@ -20668,6 +20716,10 @@ declare const _default: {
|
|
|
20668
20716
|
type: import("vue").PropType<boolean>;
|
|
20669
20717
|
default: boolean;
|
|
20670
20718
|
};
|
|
20719
|
+
minMaxSelectionTooltipMessage: {
|
|
20720
|
+
type: import("vue").PropType<string>;
|
|
20721
|
+
default: any;
|
|
20722
|
+
};
|
|
20671
20723
|
selectedProp: {
|
|
20672
20724
|
type: import("vue").PropType<boolean>;
|
|
20673
20725
|
};
|
|
@@ -20677,6 +20729,7 @@ declare const _default: {
|
|
|
20677
20729
|
toggleTreeCollapse: (option: unknown) => void;
|
|
20678
20730
|
}, string, {
|
|
20679
20731
|
option: any;
|
|
20732
|
+
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";
|
|
20680
20733
|
disabled: boolean;
|
|
20681
20734
|
active: boolean;
|
|
20682
20735
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -20693,12 +20746,12 @@ declare const _default: {
|
|
|
20693
20746
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20694
20747
|
endIconKey: string;
|
|
20695
20748
|
endTextIconKey: string;
|
|
20696
|
-
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";
|
|
20697
20749
|
treeMainOption: boolean;
|
|
20698
20750
|
treeMainOptionExpanded: boolean;
|
|
20699
20751
|
stopOptionClickEventPropagation: boolean;
|
|
20700
20752
|
treeChildShown: boolean;
|
|
20701
20753
|
isMulti: boolean;
|
|
20754
|
+
minMaxSelectionTooltipMessage: string;
|
|
20702
20755
|
}, {}, string> & {
|
|
20703
20756
|
beforeCreate?: (() => void) | (() => void)[];
|
|
20704
20757
|
created?: (() => void) | (() => void)[];
|
|
@@ -20724,6 +20777,10 @@ declare const _default: {
|
|
|
20724
20777
|
type: import("vue").PropType<unknown>;
|
|
20725
20778
|
default: any;
|
|
20726
20779
|
};
|
|
20780
|
+
tooltipPlacement: {
|
|
20781
|
+
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">;
|
|
20782
|
+
default: string;
|
|
20783
|
+
};
|
|
20727
20784
|
disabled: {
|
|
20728
20785
|
type: import("vue").PropType<boolean>;
|
|
20729
20786
|
default: boolean;
|
|
@@ -20788,10 +20845,6 @@ declare const _default: {
|
|
|
20788
20845
|
type: import("vue").PropType<string>;
|
|
20789
20846
|
default: any;
|
|
20790
20847
|
};
|
|
20791
|
-
toolTipPlacement: {
|
|
20792
|
-
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">;
|
|
20793
|
-
default: string;
|
|
20794
|
-
};
|
|
20795
20848
|
treeMainOption: {
|
|
20796
20849
|
type: import("vue").PropType<boolean>;
|
|
20797
20850
|
default: boolean;
|
|
@@ -20812,6 +20865,10 @@ declare const _default: {
|
|
|
20812
20865
|
type: import("vue").PropType<boolean>;
|
|
20813
20866
|
default: boolean;
|
|
20814
20867
|
};
|
|
20868
|
+
minMaxSelectionTooltipMessage: {
|
|
20869
|
+
type: import("vue").PropType<string>;
|
|
20870
|
+
default: any;
|
|
20871
|
+
};
|
|
20815
20872
|
selectedProp: {
|
|
20816
20873
|
type: import("vue").PropType<boolean>;
|
|
20817
20874
|
};
|
|
@@ -20826,6 +20883,10 @@ declare const _default: {
|
|
|
20826
20883
|
type: import("vue").PropType<unknown>;
|
|
20827
20884
|
default: any;
|
|
20828
20885
|
};
|
|
20886
|
+
tooltipPlacement: {
|
|
20887
|
+
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">;
|
|
20888
|
+
default: string;
|
|
20889
|
+
};
|
|
20829
20890
|
disabled: {
|
|
20830
20891
|
type: import("vue").PropType<boolean>;
|
|
20831
20892
|
default: boolean;
|
|
@@ -20890,10 +20951,6 @@ declare const _default: {
|
|
|
20890
20951
|
type: import("vue").PropType<string>;
|
|
20891
20952
|
default: any;
|
|
20892
20953
|
};
|
|
20893
|
-
toolTipPlacement: {
|
|
20894
|
-
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">;
|
|
20895
|
-
default: string;
|
|
20896
|
-
};
|
|
20897
20954
|
treeMainOption: {
|
|
20898
20955
|
type: import("vue").PropType<boolean>;
|
|
20899
20956
|
default: boolean;
|
|
@@ -20914,6 +20971,10 @@ declare const _default: {
|
|
|
20914
20971
|
type: import("vue").PropType<boolean>;
|
|
20915
20972
|
default: boolean;
|
|
20916
20973
|
};
|
|
20974
|
+
minMaxSelectionTooltipMessage: {
|
|
20975
|
+
type: import("vue").PropType<string>;
|
|
20976
|
+
default: any;
|
|
20977
|
+
};
|
|
20917
20978
|
selectedProp: {
|
|
20918
20979
|
type: import("vue").PropType<boolean>;
|
|
20919
20980
|
};
|
|
@@ -20923,6 +20984,7 @@ declare const _default: {
|
|
|
20923
20984
|
toggleTreeCollapse: (option: unknown) => void;
|
|
20924
20985
|
}, string, {
|
|
20925
20986
|
option: any;
|
|
20987
|
+
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";
|
|
20926
20988
|
disabled: boolean;
|
|
20927
20989
|
active: boolean;
|
|
20928
20990
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -20939,12 +21001,12 @@ declare const _default: {
|
|
|
20939
21001
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20940
21002
|
endIconKey: string;
|
|
20941
21003
|
endTextIconKey: string;
|
|
20942
|
-
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";
|
|
20943
21004
|
treeMainOption: boolean;
|
|
20944
21005
|
treeMainOptionExpanded: boolean;
|
|
20945
21006
|
stopOptionClickEventPropagation: boolean;
|
|
20946
21007
|
treeChildShown: boolean;
|
|
20947
21008
|
isMulti: boolean;
|
|
21009
|
+
minMaxSelectionTooltipMessage: string;
|
|
20948
21010
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
20949
21011
|
$slots: {
|
|
20950
21012
|
image?(_: {}): any;
|
|
@@ -21144,6 +21206,7 @@ declare const _default: {
|
|
|
21144
21206
|
multi: boolean;
|
|
21145
21207
|
infiniteLoading: boolean;
|
|
21146
21208
|
showSelectAll: boolean;
|
|
21209
|
+
showClearAll: boolean;
|
|
21147
21210
|
defaultOpen: boolean;
|
|
21148
21211
|
keepOpen: boolean;
|
|
21149
21212
|
autoSize: boolean;
|
|
@@ -21181,6 +21244,7 @@ declare const _default: {
|
|
|
21181
21244
|
groupedOptions: boolean;
|
|
21182
21245
|
comparingKey: string;
|
|
21183
21246
|
customNumberOfDisplayedOptions: number;
|
|
21247
|
+
optionTooltipPosition: "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";
|
|
21184
21248
|
fullWidth: boolean;
|
|
21185
21249
|
optionsListWidth: string;
|
|
21186
21250
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -21273,6 +21337,10 @@ declare const _default: {
|
|
|
21273
21337
|
type: import("vue").PropType<boolean>;
|
|
21274
21338
|
default: boolean;
|
|
21275
21339
|
};
|
|
21340
|
+
showClearAll: {
|
|
21341
|
+
type: import("vue").PropType<boolean>;
|
|
21342
|
+
default: boolean;
|
|
21343
|
+
};
|
|
21276
21344
|
defaultOpen: {
|
|
21277
21345
|
type: import("vue").PropType<boolean>;
|
|
21278
21346
|
default: boolean;
|
|
@@ -21425,6 +21493,10 @@ declare const _default: {
|
|
|
21425
21493
|
type: import("vue").PropType<number>;
|
|
21426
21494
|
default: any;
|
|
21427
21495
|
};
|
|
21496
|
+
optionTooltipPosition: {
|
|
21497
|
+
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">;
|
|
21498
|
+
default: string;
|
|
21499
|
+
};
|
|
21428
21500
|
fullWidth: {
|
|
21429
21501
|
type: import("vue").PropType<boolean>;
|
|
21430
21502
|
default: boolean;
|
|
@@ -21462,7 +21534,7 @@ declare const _default: {
|
|
|
21462
21534
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
21463
21535
|
onOpened?: () => any;
|
|
21464
21536
|
onClosed?: () => any;
|
|
21465
|
-
} & 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" | "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">;
|
|
21537
|
+
} & 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" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21466
21538
|
$attrs: {
|
|
21467
21539
|
[x: string]: unknown;
|
|
21468
21540
|
};
|
|
@@ -21562,6 +21634,10 @@ declare const _default: {
|
|
|
21562
21634
|
type: import("vue").PropType<boolean>;
|
|
21563
21635
|
default: boolean;
|
|
21564
21636
|
};
|
|
21637
|
+
showClearAll: {
|
|
21638
|
+
type: import("vue").PropType<boolean>;
|
|
21639
|
+
default: boolean;
|
|
21640
|
+
};
|
|
21565
21641
|
defaultOpen: {
|
|
21566
21642
|
type: import("vue").PropType<boolean>;
|
|
21567
21643
|
default: boolean;
|
|
@@ -21714,6 +21790,10 @@ declare const _default: {
|
|
|
21714
21790
|
type: import("vue").PropType<number>;
|
|
21715
21791
|
default: any;
|
|
21716
21792
|
};
|
|
21793
|
+
optionTooltipPosition: {
|
|
21794
|
+
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">;
|
|
21795
|
+
default: string;
|
|
21796
|
+
};
|
|
21717
21797
|
fullWidth: {
|
|
21718
21798
|
type: import("vue").PropType<boolean>;
|
|
21719
21799
|
default: boolean;
|
|
@@ -21786,6 +21866,7 @@ declare const _default: {
|
|
|
21786
21866
|
multi: boolean;
|
|
21787
21867
|
infiniteLoading: boolean;
|
|
21788
21868
|
showSelectAll: boolean;
|
|
21869
|
+
showClearAll: boolean;
|
|
21789
21870
|
defaultOpen: boolean;
|
|
21790
21871
|
keepOpen: boolean;
|
|
21791
21872
|
autoSize: boolean;
|
|
@@ -21823,6 +21904,7 @@ declare const _default: {
|
|
|
21823
21904
|
groupedOptions: boolean;
|
|
21824
21905
|
comparingKey: string;
|
|
21825
21906
|
customNumberOfDisplayedOptions: number;
|
|
21907
|
+
optionTooltipPosition: "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";
|
|
21826
21908
|
fullWidth: boolean;
|
|
21827
21909
|
optionsListWidth: string;
|
|
21828
21910
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -21935,6 +22017,10 @@ declare const _default: {
|
|
|
21935
22017
|
type: import("vue").PropType<boolean>;
|
|
21936
22018
|
default: boolean;
|
|
21937
22019
|
};
|
|
22020
|
+
showClearAll: {
|
|
22021
|
+
type: import("vue").PropType<boolean>;
|
|
22022
|
+
default: boolean;
|
|
22023
|
+
};
|
|
21938
22024
|
defaultOpen: {
|
|
21939
22025
|
type: import("vue").PropType<boolean>;
|
|
21940
22026
|
default: boolean;
|
|
@@ -22087,6 +22173,10 @@ declare const _default: {
|
|
|
22087
22173
|
type: import("vue").PropType<number>;
|
|
22088
22174
|
default: any;
|
|
22089
22175
|
};
|
|
22176
|
+
optionTooltipPosition: {
|
|
22177
|
+
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">;
|
|
22178
|
+
default: string;
|
|
22179
|
+
};
|
|
22090
22180
|
fullWidth: {
|
|
22091
22181
|
type: import("vue").PropType<boolean>;
|
|
22092
22182
|
default: boolean;
|
|
@@ -22217,6 +22307,10 @@ declare const _default: {
|
|
|
22217
22307
|
type: import("vue").PropType<boolean>;
|
|
22218
22308
|
default: boolean;
|
|
22219
22309
|
};
|
|
22310
|
+
showClearAll: {
|
|
22311
|
+
type: import("vue").PropType<boolean>;
|
|
22312
|
+
default: boolean;
|
|
22313
|
+
};
|
|
22220
22314
|
defaultOpen: {
|
|
22221
22315
|
type: import("vue").PropType<boolean>;
|
|
22222
22316
|
default: boolean;
|
|
@@ -22369,6 +22463,10 @@ declare const _default: {
|
|
|
22369
22463
|
type: import("vue").PropType<number>;
|
|
22370
22464
|
default: any;
|
|
22371
22465
|
};
|
|
22466
|
+
optionTooltipPosition: {
|
|
22467
|
+
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">;
|
|
22468
|
+
default: string;
|
|
22469
|
+
};
|
|
22372
22470
|
fullWidth: {
|
|
22373
22471
|
type: import("vue").PropType<boolean>;
|
|
22374
22472
|
default: boolean;
|
|
@@ -22441,6 +22539,7 @@ declare const _default: {
|
|
|
22441
22539
|
multi: boolean;
|
|
22442
22540
|
infiniteLoading: boolean;
|
|
22443
22541
|
showSelectAll: boolean;
|
|
22542
|
+
showClearAll: boolean;
|
|
22444
22543
|
defaultOpen: boolean;
|
|
22445
22544
|
keepOpen: boolean;
|
|
22446
22545
|
autoSize: boolean;
|
|
@@ -22478,6 +22577,7 @@ declare const _default: {
|
|
|
22478
22577
|
groupedOptions: boolean;
|
|
22479
22578
|
comparingKey: string;
|
|
22480
22579
|
customNumberOfDisplayedOptions: number;
|
|
22580
|
+
optionTooltipPosition: "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";
|
|
22481
22581
|
fullWidth: boolean;
|
|
22482
22582
|
optionsListWidth: string;
|
|
22483
22583
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -23069,165 +23169,476 @@ declare const _default: {
|
|
|
23069
23169
|
$slots: {
|
|
23070
23170
|
"trigger-end-icon"?(_: {}): any;
|
|
23071
23171
|
};
|
|
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<{
|
|
23126
|
-
label: string;
|
|
23127
|
-
value: string;
|
|
23128
|
-
multi: boolean;
|
|
23129
|
-
}[]>;
|
|
23130
|
-
required: true;
|
|
23131
|
-
};
|
|
23132
|
-
selectedCondition: {
|
|
23133
|
-
type: import("vue").PropType<{
|
|
23172
|
+
})) | ({
|
|
23173
|
+
new (...args: any[]): {
|
|
23174
|
+
$: import("vue").ComponentInternalInstance;
|
|
23175
|
+
$data: {};
|
|
23176
|
+
$props: Partial<{
|
|
23134
23177
|
label: string;
|
|
23135
|
-
|
|
23136
|
-
|
|
23137
|
-
|
|
23138
|
-
|
|
23139
|
-
|
|
23140
|
-
|
|
23141
|
-
|
|
23142
|
-
|
|
23143
|
-
|
|
23144
|
-
|
|
23145
|
-
|
|
23146
|
-
|
|
23147
|
-
|
|
23148
|
-
|
|
23149
|
-
|
|
23150
|
-
|
|
23151
|
-
|
|
23152
|
-
|
|
23153
|
-
|
|
23154
|
-
|
|
23155
|
-
|
|
23156
|
-
|
|
23157
|
-
|
|
23158
|
-
|
|
23159
|
-
|
|
23160
|
-
|
|
23161
|
-
|
|
23162
|
-
|
|
23163
|
-
|
|
23164
|
-
|
|
23165
|
-
|
|
23166
|
-
|
|
23167
|
-
|
|
23168
|
-
|
|
23169
|
-
|
|
23170
|
-
|
|
23171
|
-
|
|
23172
|
-
|
|
23173
|
-
|
|
23174
|
-
|
|
23175
|
-
|
|
23176
|
-
|
|
23177
|
-
|
|
23178
|
-
|
|
23179
|
-
|
|
23180
|
-
|
|
23181
|
-
|
|
23182
|
-
|
|
23183
|
-
|
|
23184
|
-
|
|
23185
|
-
|
|
23186
|
-
|
|
23187
|
-
|
|
23188
|
-
|
|
23189
|
-
|
|
23190
|
-
|
|
23191
|
-
|
|
23192
|
-
|
|
23193
|
-
|
|
23194
|
-
|
|
23195
|
-
|
|
23196
|
-
|
|
23197
|
-
|
|
23198
|
-
|
|
23199
|
-
|
|
23200
|
-
|
|
23201
|
-
|
|
23202
|
-
|
|
23203
|
-
|
|
23204
|
-
|
|
23205
|
-
|
|
23206
|
-
|
|
23207
|
-
|
|
23208
|
-
|
|
23209
|
-
|
|
23210
|
-
|
|
23211
|
-
|
|
23212
|
-
|
|
23213
|
-
|
|
23214
|
-
|
|
23215
|
-
|
|
23216
|
-
|
|
23217
|
-
|
|
23218
|
-
|
|
23219
|
-
|
|
23220
|
-
|
|
23221
|
-
|
|
23222
|
-
|
|
23223
|
-
|
|
23224
|
-
|
|
23225
|
-
|
|
23226
|
-
|
|
23227
|
-
|
|
23228
|
-
|
|
23229
|
-
|
|
23230
|
-
|
|
23178
|
+
testId: string;
|
|
23179
|
+
isOpen: boolean;
|
|
23180
|
+
infiniteLoading: boolean;
|
|
23181
|
+
triggerShownValuesCount: number;
|
|
23182
|
+
optionNameKey: string;
|
|
23183
|
+
optionIconKey: string;
|
|
23184
|
+
optionImageKey: string;
|
|
23185
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23186
|
+
optionFlagKey: string;
|
|
23187
|
+
groupedOptions: boolean;
|
|
23188
|
+
comparingKey: string;
|
|
23189
|
+
minCharsToStart: number;
|
|
23190
|
+
searchQuery: string;
|
|
23191
|
+
loadMoreFn: () => Promise<any[]>;
|
|
23192
|
+
fetchDataDebounceTime: number;
|
|
23193
|
+
autoFocusSearch: boolean;
|
|
23194
|
+
loadingOverride: boolean;
|
|
23195
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23196
|
+
label: {
|
|
23197
|
+
type: import("vue").PropType<string>;
|
|
23198
|
+
required: true;
|
|
23199
|
+
default: string;
|
|
23200
|
+
};
|
|
23201
|
+
testId: {
|
|
23202
|
+
type: import("vue").PropType<string>;
|
|
23203
|
+
default: string;
|
|
23204
|
+
};
|
|
23205
|
+
isOpen: {
|
|
23206
|
+
type: import("vue").PropType<boolean>;
|
|
23207
|
+
default: boolean;
|
|
23208
|
+
};
|
|
23209
|
+
infiniteLoading: {
|
|
23210
|
+
type: import("vue").PropType<boolean>;
|
|
23211
|
+
default: boolean;
|
|
23212
|
+
};
|
|
23213
|
+
triggerShownValuesCount: {
|
|
23214
|
+
type: import("vue").PropType<number>;
|
|
23215
|
+
default: number;
|
|
23216
|
+
};
|
|
23217
|
+
optionNameKey: {
|
|
23218
|
+
type: import("vue").PropType<string>;
|
|
23219
|
+
required: true;
|
|
23220
|
+
default: string;
|
|
23221
|
+
};
|
|
23222
|
+
optionIconKey: {
|
|
23223
|
+
type: import("vue").PropType<string>;
|
|
23224
|
+
default: string;
|
|
23225
|
+
};
|
|
23226
|
+
optionImageKey: {
|
|
23227
|
+
type: import("vue").PropType<string>;
|
|
23228
|
+
default: string;
|
|
23229
|
+
};
|
|
23230
|
+
optionIconType: {
|
|
23231
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23232
|
+
default: any;
|
|
23233
|
+
};
|
|
23234
|
+
optionFlagKey: {
|
|
23235
|
+
type: import("vue").PropType<string>;
|
|
23236
|
+
default: string;
|
|
23237
|
+
};
|
|
23238
|
+
groupedOptions: {
|
|
23239
|
+
type: import("vue").PropType<boolean>;
|
|
23240
|
+
default: boolean;
|
|
23241
|
+
};
|
|
23242
|
+
comparingKey: {
|
|
23243
|
+
type: import("vue").PropType<string>;
|
|
23244
|
+
required: true;
|
|
23245
|
+
default: string;
|
|
23246
|
+
};
|
|
23247
|
+
conditionalOptions: {
|
|
23248
|
+
type: import("vue").PropType<{
|
|
23249
|
+
label: string;
|
|
23250
|
+
value: string;
|
|
23251
|
+
multi: boolean;
|
|
23252
|
+
}[]>;
|
|
23253
|
+
required: true;
|
|
23254
|
+
};
|
|
23255
|
+
selectedCondition: {
|
|
23256
|
+
type: import("vue").PropType<{
|
|
23257
|
+
label: string;
|
|
23258
|
+
value: string;
|
|
23259
|
+
multi: boolean;
|
|
23260
|
+
}>;
|
|
23261
|
+
required: true;
|
|
23262
|
+
};
|
|
23263
|
+
appliedSelections: {
|
|
23264
|
+
type: import("vue").PropType<unknown>;
|
|
23265
|
+
required: true;
|
|
23266
|
+
};
|
|
23267
|
+
fetchFnCallback: {
|
|
23268
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23269
|
+
required: true;
|
|
23270
|
+
};
|
|
23271
|
+
minCharsToStart: {
|
|
23272
|
+
type: import("vue").PropType<number>;
|
|
23273
|
+
default: number;
|
|
23274
|
+
};
|
|
23275
|
+
searchQuery: {
|
|
23276
|
+
type: import("vue").PropType<string>;
|
|
23277
|
+
default: string;
|
|
23278
|
+
};
|
|
23279
|
+
loadMoreFn: {
|
|
23280
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23281
|
+
default: any;
|
|
23282
|
+
};
|
|
23283
|
+
fetchDataDebounceTime: {
|
|
23284
|
+
type: import("vue").PropType<number>;
|
|
23285
|
+
default: number;
|
|
23286
|
+
};
|
|
23287
|
+
autoFocusSearch: {
|
|
23288
|
+
type: import("vue").PropType<boolean>;
|
|
23289
|
+
default: boolean;
|
|
23290
|
+
};
|
|
23291
|
+
loadingOverride: {
|
|
23292
|
+
type: import("vue").PropType<boolean>;
|
|
23293
|
+
default: boolean;
|
|
23294
|
+
};
|
|
23295
|
+
}>> & {
|
|
23296
|
+
onClear?: () => any;
|
|
23297
|
+
onClosed?: () => any;
|
|
23298
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23299
|
+
label: string;
|
|
23300
|
+
value: string;
|
|
23301
|
+
multi: boolean;
|
|
23302
|
+
}) => any;
|
|
23303
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23304
|
+
} & 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">;
|
|
23305
|
+
$attrs: {
|
|
23306
|
+
[x: string]: unknown;
|
|
23307
|
+
};
|
|
23308
|
+
$refs: {
|
|
23309
|
+
[x: string]: unknown;
|
|
23310
|
+
};
|
|
23311
|
+
$slots: Readonly<{
|
|
23312
|
+
[name: string]: import("vue").Slot;
|
|
23313
|
+
}>;
|
|
23314
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23315
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
23316
|
+
$emit: ((event: "clear") => void) & ((event: "closed") => void) & ((event: "update:selectedCondition", value: {
|
|
23317
|
+
label: string;
|
|
23318
|
+
value: string;
|
|
23319
|
+
multi: boolean;
|
|
23320
|
+
}) => void) & ((event: "update:appliedSelections", value: unknown) => void);
|
|
23321
|
+
$el: any;
|
|
23322
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23323
|
+
label: {
|
|
23324
|
+
type: import("vue").PropType<string>;
|
|
23325
|
+
required: true;
|
|
23326
|
+
default: string;
|
|
23327
|
+
};
|
|
23328
|
+
testId: {
|
|
23329
|
+
type: import("vue").PropType<string>;
|
|
23330
|
+
default: string;
|
|
23331
|
+
};
|
|
23332
|
+
isOpen: {
|
|
23333
|
+
type: import("vue").PropType<boolean>;
|
|
23334
|
+
default: boolean;
|
|
23335
|
+
};
|
|
23336
|
+
infiniteLoading: {
|
|
23337
|
+
type: import("vue").PropType<boolean>;
|
|
23338
|
+
default: boolean;
|
|
23339
|
+
};
|
|
23340
|
+
triggerShownValuesCount: {
|
|
23341
|
+
type: import("vue").PropType<number>;
|
|
23342
|
+
default: number;
|
|
23343
|
+
};
|
|
23344
|
+
optionNameKey: {
|
|
23345
|
+
type: import("vue").PropType<string>;
|
|
23346
|
+
required: true;
|
|
23347
|
+
default: string;
|
|
23348
|
+
};
|
|
23349
|
+
optionIconKey: {
|
|
23350
|
+
type: import("vue").PropType<string>;
|
|
23351
|
+
default: string;
|
|
23352
|
+
};
|
|
23353
|
+
optionImageKey: {
|
|
23354
|
+
type: import("vue").PropType<string>;
|
|
23355
|
+
default: string;
|
|
23356
|
+
};
|
|
23357
|
+
optionIconType: {
|
|
23358
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23359
|
+
default: any;
|
|
23360
|
+
};
|
|
23361
|
+
optionFlagKey: {
|
|
23362
|
+
type: import("vue").PropType<string>;
|
|
23363
|
+
default: string;
|
|
23364
|
+
};
|
|
23365
|
+
groupedOptions: {
|
|
23366
|
+
type: import("vue").PropType<boolean>;
|
|
23367
|
+
default: boolean;
|
|
23368
|
+
};
|
|
23369
|
+
comparingKey: {
|
|
23370
|
+
type: import("vue").PropType<string>;
|
|
23371
|
+
required: true;
|
|
23372
|
+
default: string;
|
|
23373
|
+
};
|
|
23374
|
+
conditionalOptions: {
|
|
23375
|
+
type: import("vue").PropType<{
|
|
23376
|
+
label: string;
|
|
23377
|
+
value: string;
|
|
23378
|
+
multi: boolean;
|
|
23379
|
+
}[]>;
|
|
23380
|
+
required: true;
|
|
23381
|
+
};
|
|
23382
|
+
selectedCondition: {
|
|
23383
|
+
type: import("vue").PropType<{
|
|
23384
|
+
label: string;
|
|
23385
|
+
value: string;
|
|
23386
|
+
multi: boolean;
|
|
23387
|
+
}>;
|
|
23388
|
+
required: true;
|
|
23389
|
+
};
|
|
23390
|
+
appliedSelections: {
|
|
23391
|
+
type: import("vue").PropType<unknown>;
|
|
23392
|
+
required: true;
|
|
23393
|
+
};
|
|
23394
|
+
fetchFnCallback: {
|
|
23395
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23396
|
+
required: true;
|
|
23397
|
+
};
|
|
23398
|
+
minCharsToStart: {
|
|
23399
|
+
type: import("vue").PropType<number>;
|
|
23400
|
+
default: number;
|
|
23401
|
+
};
|
|
23402
|
+
searchQuery: {
|
|
23403
|
+
type: import("vue").PropType<string>;
|
|
23404
|
+
default: string;
|
|
23405
|
+
};
|
|
23406
|
+
loadMoreFn: {
|
|
23407
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23408
|
+
default: any;
|
|
23409
|
+
};
|
|
23410
|
+
fetchDataDebounceTime: {
|
|
23411
|
+
type: import("vue").PropType<number>;
|
|
23412
|
+
default: number;
|
|
23413
|
+
};
|
|
23414
|
+
autoFocusSearch: {
|
|
23415
|
+
type: import("vue").PropType<boolean>;
|
|
23416
|
+
default: boolean;
|
|
23417
|
+
};
|
|
23418
|
+
loadingOverride: {
|
|
23419
|
+
type: import("vue").PropType<boolean>;
|
|
23420
|
+
default: boolean;
|
|
23421
|
+
};
|
|
23422
|
+
}>> & {
|
|
23423
|
+
onClear?: () => any;
|
|
23424
|
+
onClosed?: () => any;
|
|
23425
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23426
|
+
label: string;
|
|
23427
|
+
value: string;
|
|
23428
|
+
multi: boolean;
|
|
23429
|
+
}) => any;
|
|
23430
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23431
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23432
|
+
"update:selectedCondition": (value: {
|
|
23433
|
+
label: string;
|
|
23434
|
+
value: string;
|
|
23435
|
+
multi: boolean;
|
|
23436
|
+
}) => void;
|
|
23437
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
23438
|
+
clear: () => void;
|
|
23439
|
+
closed: () => void;
|
|
23440
|
+
}, string, {
|
|
23441
|
+
label: string;
|
|
23442
|
+
testId: string;
|
|
23443
|
+
isOpen: boolean;
|
|
23444
|
+
infiniteLoading: boolean;
|
|
23445
|
+
triggerShownValuesCount: number;
|
|
23446
|
+
optionNameKey: string;
|
|
23447
|
+
optionIconKey: string;
|
|
23448
|
+
optionImageKey: string;
|
|
23449
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23450
|
+
optionFlagKey: string;
|
|
23451
|
+
groupedOptions: boolean;
|
|
23452
|
+
comparingKey: string;
|
|
23453
|
+
minCharsToStart: number;
|
|
23454
|
+
searchQuery: string;
|
|
23455
|
+
loadMoreFn: () => Promise<any[]>;
|
|
23456
|
+
fetchDataDebounceTime: number;
|
|
23457
|
+
autoFocusSearch: boolean;
|
|
23458
|
+
loadingOverride: boolean;
|
|
23459
|
+
}, {}, string> & {
|
|
23460
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
23461
|
+
created?: (() => void) | (() => void)[];
|
|
23462
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
23463
|
+
mounted?: (() => void) | (() => void)[];
|
|
23464
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
23465
|
+
updated?: (() => void) | (() => void)[];
|
|
23466
|
+
activated?: (() => void) | (() => void)[];
|
|
23467
|
+
deactivated?: (() => void) | (() => void)[];
|
|
23468
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
23469
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
23470
|
+
destroyed?: (() => void) | (() => void)[];
|
|
23471
|
+
unmounted?: (() => void) | (() => void)[];
|
|
23472
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23473
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
23474
|
+
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)[];
|
|
23475
|
+
};
|
|
23476
|
+
$forceUpdate: () => void;
|
|
23477
|
+
$nextTick: typeof import("vue").nextTick;
|
|
23478
|
+
$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;
|
|
23479
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
23480
|
+
label: {
|
|
23481
|
+
type: import("vue").PropType<string>;
|
|
23482
|
+
required: true;
|
|
23483
|
+
default: string;
|
|
23484
|
+
};
|
|
23485
|
+
testId: {
|
|
23486
|
+
type: import("vue").PropType<string>;
|
|
23487
|
+
default: string;
|
|
23488
|
+
};
|
|
23489
|
+
isOpen: {
|
|
23490
|
+
type: import("vue").PropType<boolean>;
|
|
23491
|
+
default: boolean;
|
|
23492
|
+
};
|
|
23493
|
+
infiniteLoading: {
|
|
23494
|
+
type: import("vue").PropType<boolean>;
|
|
23495
|
+
default: boolean;
|
|
23496
|
+
};
|
|
23497
|
+
triggerShownValuesCount: {
|
|
23498
|
+
type: import("vue").PropType<number>;
|
|
23499
|
+
default: number;
|
|
23500
|
+
};
|
|
23501
|
+
optionNameKey: {
|
|
23502
|
+
type: import("vue").PropType<string>;
|
|
23503
|
+
required: true;
|
|
23504
|
+
default: string;
|
|
23505
|
+
};
|
|
23506
|
+
optionIconKey: {
|
|
23507
|
+
type: import("vue").PropType<string>;
|
|
23508
|
+
default: string;
|
|
23509
|
+
};
|
|
23510
|
+
optionImageKey: {
|
|
23511
|
+
type: import("vue").PropType<string>;
|
|
23512
|
+
default: string;
|
|
23513
|
+
};
|
|
23514
|
+
optionIconType: {
|
|
23515
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23516
|
+
default: any;
|
|
23517
|
+
};
|
|
23518
|
+
optionFlagKey: {
|
|
23519
|
+
type: import("vue").PropType<string>;
|
|
23520
|
+
default: string;
|
|
23521
|
+
};
|
|
23522
|
+
groupedOptions: {
|
|
23523
|
+
type: import("vue").PropType<boolean>;
|
|
23524
|
+
default: boolean;
|
|
23525
|
+
};
|
|
23526
|
+
comparingKey: {
|
|
23527
|
+
type: import("vue").PropType<string>;
|
|
23528
|
+
required: true;
|
|
23529
|
+
default: string;
|
|
23530
|
+
};
|
|
23531
|
+
conditionalOptions: {
|
|
23532
|
+
type: import("vue").PropType<{
|
|
23533
|
+
label: string;
|
|
23534
|
+
value: string;
|
|
23535
|
+
multi: boolean;
|
|
23536
|
+
}[]>;
|
|
23537
|
+
required: true;
|
|
23538
|
+
};
|
|
23539
|
+
selectedCondition: {
|
|
23540
|
+
type: import("vue").PropType<{
|
|
23541
|
+
label: string;
|
|
23542
|
+
value: string;
|
|
23543
|
+
multi: boolean;
|
|
23544
|
+
}>;
|
|
23545
|
+
required: true;
|
|
23546
|
+
};
|
|
23547
|
+
appliedSelections: {
|
|
23548
|
+
type: import("vue").PropType<unknown>;
|
|
23549
|
+
required: true;
|
|
23550
|
+
};
|
|
23551
|
+
fetchFnCallback: {
|
|
23552
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
23553
|
+
required: true;
|
|
23554
|
+
};
|
|
23555
|
+
minCharsToStart: {
|
|
23556
|
+
type: import("vue").PropType<number>;
|
|
23557
|
+
default: number;
|
|
23558
|
+
};
|
|
23559
|
+
searchQuery: {
|
|
23560
|
+
type: import("vue").PropType<string>;
|
|
23561
|
+
default: string;
|
|
23562
|
+
};
|
|
23563
|
+
loadMoreFn: {
|
|
23564
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
23565
|
+
default: any;
|
|
23566
|
+
};
|
|
23567
|
+
fetchDataDebounceTime: {
|
|
23568
|
+
type: import("vue").PropType<number>;
|
|
23569
|
+
default: number;
|
|
23570
|
+
};
|
|
23571
|
+
autoFocusSearch: {
|
|
23572
|
+
type: import("vue").PropType<boolean>;
|
|
23573
|
+
default: boolean;
|
|
23574
|
+
};
|
|
23575
|
+
loadingOverride: {
|
|
23576
|
+
type: import("vue").PropType<boolean>;
|
|
23577
|
+
default: boolean;
|
|
23578
|
+
};
|
|
23579
|
+
}>> & {
|
|
23580
|
+
onClear?: () => any;
|
|
23581
|
+
onClosed?: () => any;
|
|
23582
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
23583
|
+
label: string;
|
|
23584
|
+
value: string;
|
|
23585
|
+
multi: boolean;
|
|
23586
|
+
}) => any;
|
|
23587
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23588
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
23589
|
+
__isFragment?: never;
|
|
23590
|
+
__isTeleport?: never;
|
|
23591
|
+
__isSuspense?: never;
|
|
23592
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23593
|
+
label: {
|
|
23594
|
+
type: import("vue").PropType<string>;
|
|
23595
|
+
required: true;
|
|
23596
|
+
default: string;
|
|
23597
|
+
};
|
|
23598
|
+
testId: {
|
|
23599
|
+
type: import("vue").PropType<string>;
|
|
23600
|
+
default: string;
|
|
23601
|
+
};
|
|
23602
|
+
isOpen: {
|
|
23603
|
+
type: import("vue").PropType<boolean>;
|
|
23604
|
+
default: boolean;
|
|
23605
|
+
};
|
|
23606
|
+
infiniteLoading: {
|
|
23607
|
+
type: import("vue").PropType<boolean>;
|
|
23608
|
+
default: boolean;
|
|
23609
|
+
};
|
|
23610
|
+
triggerShownValuesCount: {
|
|
23611
|
+
type: import("vue").PropType<number>;
|
|
23612
|
+
default: number;
|
|
23613
|
+
};
|
|
23614
|
+
optionNameKey: {
|
|
23615
|
+
type: import("vue").PropType<string>;
|
|
23616
|
+
required: true;
|
|
23617
|
+
default: string;
|
|
23618
|
+
};
|
|
23619
|
+
optionIconKey: {
|
|
23620
|
+
type: import("vue").PropType<string>;
|
|
23621
|
+
default: string;
|
|
23622
|
+
};
|
|
23623
|
+
optionImageKey: {
|
|
23624
|
+
type: import("vue").PropType<string>;
|
|
23625
|
+
default: string;
|
|
23626
|
+
};
|
|
23627
|
+
optionIconType: {
|
|
23628
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23629
|
+
default: any;
|
|
23630
|
+
};
|
|
23631
|
+
optionFlagKey: {
|
|
23632
|
+
type: import("vue").PropType<string>;
|
|
23633
|
+
default: string;
|
|
23634
|
+
};
|
|
23635
|
+
groupedOptions: {
|
|
23636
|
+
type: import("vue").PropType<boolean>;
|
|
23637
|
+
default: boolean;
|
|
23638
|
+
};
|
|
23639
|
+
comparingKey: {
|
|
23640
|
+
type: import("vue").PropType<string>;
|
|
23641
|
+
required: true;
|
|
23231
23642
|
default: string;
|
|
23232
23643
|
};
|
|
23233
23644
|
conditionalOptions: {
|
|
@@ -23287,7 +23698,16 @@ declare const _default: {
|
|
|
23287
23698
|
multi: boolean;
|
|
23288
23699
|
}) => any;
|
|
23289
23700
|
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
23290
|
-
}, {
|
|
23701
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23702
|
+
"update:selectedCondition": (value: {
|
|
23703
|
+
label: string;
|
|
23704
|
+
value: string;
|
|
23705
|
+
multi: boolean;
|
|
23706
|
+
}) => void;
|
|
23707
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
23708
|
+
clear: () => void;
|
|
23709
|
+
closed: () => void;
|
|
23710
|
+
}, string, {
|
|
23291
23711
|
label: string;
|
|
23292
23712
|
testId: string;
|
|
23293
23713
|
isOpen: boolean;
|
|
@@ -23306,13 +23726,20 @@ declare const _default: {
|
|
|
23306
23726
|
fetchDataDebounceTime: number;
|
|
23307
23727
|
autoFocusSearch: boolean;
|
|
23308
23728
|
loadingOverride: boolean;
|
|
23309
|
-
}>)
|
|
23729
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
23730
|
+
$slots: {
|
|
23731
|
+
"option-end"?(_: {
|
|
23732
|
+
option: any;
|
|
23733
|
+
}): any;
|
|
23734
|
+
};
|
|
23735
|
+
})))[];
|
|
23310
23736
|
Option: {
|
|
23311
23737
|
new (...args: any[]): {
|
|
23312
23738
|
$: import("vue").ComponentInternalInstance;
|
|
23313
23739
|
$data: {};
|
|
23314
23740
|
$props: Partial<{
|
|
23315
23741
|
option: any;
|
|
23742
|
+
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";
|
|
23316
23743
|
disabled: boolean;
|
|
23317
23744
|
active: boolean;
|
|
23318
23745
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -23329,17 +23756,21 @@ declare const _default: {
|
|
|
23329
23756
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23330
23757
|
endIconKey: string;
|
|
23331
23758
|
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
23759
|
treeMainOption: boolean;
|
|
23334
23760
|
treeMainOptionExpanded: boolean;
|
|
23335
23761
|
stopOptionClickEventPropagation: boolean;
|
|
23336
23762
|
treeChildShown: boolean;
|
|
23337
23763
|
isMulti: boolean;
|
|
23764
|
+
minMaxSelectionTooltipMessage: string;
|
|
23338
23765
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23339
23766
|
option: {
|
|
23340
23767
|
type: import("vue").PropType<unknown>;
|
|
23341
23768
|
default: any;
|
|
23342
23769
|
};
|
|
23770
|
+
tooltipPlacement: {
|
|
23771
|
+
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">;
|
|
23772
|
+
default: string;
|
|
23773
|
+
};
|
|
23343
23774
|
disabled: {
|
|
23344
23775
|
type: import("vue").PropType<boolean>;
|
|
23345
23776
|
default: boolean;
|
|
@@ -23404,10 +23835,6 @@ declare const _default: {
|
|
|
23404
23835
|
type: import("vue").PropType<string>;
|
|
23405
23836
|
default: any;
|
|
23406
23837
|
};
|
|
23407
|
-
toolTipPlacement: {
|
|
23408
|
-
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">;
|
|
23409
|
-
default: string;
|
|
23410
|
-
};
|
|
23411
23838
|
treeMainOption: {
|
|
23412
23839
|
type: import("vue").PropType<boolean>;
|
|
23413
23840
|
default: boolean;
|
|
@@ -23428,12 +23855,16 @@ declare const _default: {
|
|
|
23428
23855
|
type: import("vue").PropType<boolean>;
|
|
23429
23856
|
default: boolean;
|
|
23430
23857
|
};
|
|
23858
|
+
minMaxSelectionTooltipMessage: {
|
|
23859
|
+
type: import("vue").PropType<string>;
|
|
23860
|
+
default: any;
|
|
23861
|
+
};
|
|
23431
23862
|
selectedProp: {
|
|
23432
23863
|
type: import("vue").PropType<boolean>;
|
|
23433
23864
|
};
|
|
23434
23865
|
}>> & {
|
|
23435
23866
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
23436
|
-
} & 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" | "
|
|
23867
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "tooltipPlacement" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti" | "minMaxSelectionTooltipMessage">;
|
|
23437
23868
|
$attrs: {
|
|
23438
23869
|
[x: string]: unknown;
|
|
23439
23870
|
};
|
|
@@ -23452,6 +23883,10 @@ declare const _default: {
|
|
|
23452
23883
|
type: import("vue").PropType<unknown>;
|
|
23453
23884
|
default: any;
|
|
23454
23885
|
};
|
|
23886
|
+
tooltipPlacement: {
|
|
23887
|
+
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">;
|
|
23888
|
+
default: string;
|
|
23889
|
+
};
|
|
23455
23890
|
disabled: {
|
|
23456
23891
|
type: import("vue").PropType<boolean>;
|
|
23457
23892
|
default: boolean;
|
|
@@ -23516,10 +23951,6 @@ declare const _default: {
|
|
|
23516
23951
|
type: import("vue").PropType<string>;
|
|
23517
23952
|
default: any;
|
|
23518
23953
|
};
|
|
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
|
-
default: string;
|
|
23522
|
-
};
|
|
23523
23954
|
treeMainOption: {
|
|
23524
23955
|
type: import("vue").PropType<boolean>;
|
|
23525
23956
|
default: boolean;
|
|
@@ -23540,6 +23971,10 @@ declare const _default: {
|
|
|
23540
23971
|
type: import("vue").PropType<boolean>;
|
|
23541
23972
|
default: boolean;
|
|
23542
23973
|
};
|
|
23974
|
+
minMaxSelectionTooltipMessage: {
|
|
23975
|
+
type: import("vue").PropType<string>;
|
|
23976
|
+
default: any;
|
|
23977
|
+
};
|
|
23543
23978
|
selectedProp: {
|
|
23544
23979
|
type: import("vue").PropType<boolean>;
|
|
23545
23980
|
};
|
|
@@ -23549,6 +23984,7 @@ declare const _default: {
|
|
|
23549
23984
|
toggleTreeCollapse: (option: unknown) => void;
|
|
23550
23985
|
}, string, {
|
|
23551
23986
|
option: any;
|
|
23987
|
+
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";
|
|
23552
23988
|
disabled: boolean;
|
|
23553
23989
|
active: boolean;
|
|
23554
23990
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -23565,12 +24001,12 @@ declare const _default: {
|
|
|
23565
24001
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23566
24002
|
endIconKey: string;
|
|
23567
24003
|
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
24004
|
treeMainOption: boolean;
|
|
23570
24005
|
treeMainOptionExpanded: boolean;
|
|
23571
24006
|
stopOptionClickEventPropagation: boolean;
|
|
23572
24007
|
treeChildShown: boolean;
|
|
23573
24008
|
isMulti: boolean;
|
|
24009
|
+
minMaxSelectionTooltipMessage: string;
|
|
23574
24010
|
}, {}, string> & {
|
|
23575
24011
|
beforeCreate?: (() => void) | (() => void)[];
|
|
23576
24012
|
created?: (() => void) | (() => void)[];
|
|
@@ -23596,6 +24032,10 @@ declare const _default: {
|
|
|
23596
24032
|
type: import("vue").PropType<unknown>;
|
|
23597
24033
|
default: any;
|
|
23598
24034
|
};
|
|
24035
|
+
tooltipPlacement: {
|
|
24036
|
+
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">;
|
|
24037
|
+
default: string;
|
|
24038
|
+
};
|
|
23599
24039
|
disabled: {
|
|
23600
24040
|
type: import("vue").PropType<boolean>;
|
|
23601
24041
|
default: boolean;
|
|
@@ -23660,10 +24100,6 @@ declare const _default: {
|
|
|
23660
24100
|
type: import("vue").PropType<string>;
|
|
23661
24101
|
default: any;
|
|
23662
24102
|
};
|
|
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
24103
|
treeMainOption: {
|
|
23668
24104
|
type: import("vue").PropType<boolean>;
|
|
23669
24105
|
default: boolean;
|
|
@@ -23684,6 +24120,10 @@ declare const _default: {
|
|
|
23684
24120
|
type: import("vue").PropType<boolean>;
|
|
23685
24121
|
default: boolean;
|
|
23686
24122
|
};
|
|
24123
|
+
minMaxSelectionTooltipMessage: {
|
|
24124
|
+
type: import("vue").PropType<string>;
|
|
24125
|
+
default: any;
|
|
24126
|
+
};
|
|
23687
24127
|
selectedProp: {
|
|
23688
24128
|
type: import("vue").PropType<boolean>;
|
|
23689
24129
|
};
|
|
@@ -23698,6 +24138,10 @@ declare const _default: {
|
|
|
23698
24138
|
type: import("vue").PropType<unknown>;
|
|
23699
24139
|
default: any;
|
|
23700
24140
|
};
|
|
24141
|
+
tooltipPlacement: {
|
|
24142
|
+
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">;
|
|
24143
|
+
default: string;
|
|
24144
|
+
};
|
|
23701
24145
|
disabled: {
|
|
23702
24146
|
type: import("vue").PropType<boolean>;
|
|
23703
24147
|
default: boolean;
|
|
@@ -23762,10 +24206,6 @@ declare const _default: {
|
|
|
23762
24206
|
type: import("vue").PropType<string>;
|
|
23763
24207
|
default: any;
|
|
23764
24208
|
};
|
|
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
|
-
default: string;
|
|
23768
|
-
};
|
|
23769
24209
|
treeMainOption: {
|
|
23770
24210
|
type: import("vue").PropType<boolean>;
|
|
23771
24211
|
default: boolean;
|
|
@@ -23786,6 +24226,10 @@ declare const _default: {
|
|
|
23786
24226
|
type: import("vue").PropType<boolean>;
|
|
23787
24227
|
default: boolean;
|
|
23788
24228
|
};
|
|
24229
|
+
minMaxSelectionTooltipMessage: {
|
|
24230
|
+
type: import("vue").PropType<string>;
|
|
24231
|
+
default: any;
|
|
24232
|
+
};
|
|
23789
24233
|
selectedProp: {
|
|
23790
24234
|
type: import("vue").PropType<boolean>;
|
|
23791
24235
|
};
|
|
@@ -23795,6 +24239,7 @@ declare const _default: {
|
|
|
23795
24239
|
toggleTreeCollapse: (option: unknown) => void;
|
|
23796
24240
|
}, string, {
|
|
23797
24241
|
option: any;
|
|
24242
|
+
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";
|
|
23798
24243
|
disabled: boolean;
|
|
23799
24244
|
active: boolean;
|
|
23800
24245
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -23811,12 +24256,12 @@ declare const _default: {
|
|
|
23811
24256
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23812
24257
|
endIconKey: string;
|
|
23813
24258
|
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
24259
|
treeMainOption: boolean;
|
|
23816
24260
|
treeMainOptionExpanded: boolean;
|
|
23817
24261
|
stopOptionClickEventPropagation: boolean;
|
|
23818
24262
|
treeChildShown: boolean;
|
|
23819
24263
|
isMulti: boolean;
|
|
24264
|
+
minMaxSelectionTooltipMessage: string;
|
|
23820
24265
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
23821
24266
|
$slots: {
|
|
23822
24267
|
image?(_: {}): any;
|
|
@@ -24278,116 +24723,427 @@ declare const _default: {
|
|
|
24278
24723
|
"trigger-end-icon"?(_: {}): any;
|
|
24279
24724
|
};
|
|
24280
24725
|
});
|
|
24281
|
-
ConditionalDropdown:
|
|
24282
|
-
|
|
24283
|
-
|
|
24284
|
-
|
|
24285
|
-
|
|
24286
|
-
|
|
24287
|
-
|
|
24288
|
-
|
|
24289
|
-
|
|
24290
|
-
|
|
24291
|
-
|
|
24292
|
-
|
|
24293
|
-
|
|
24294
|
-
|
|
24295
|
-
|
|
24296
|
-
|
|
24297
|
-
|
|
24298
|
-
|
|
24299
|
-
|
|
24300
|
-
|
|
24301
|
-
|
|
24302
|
-
|
|
24303
|
-
|
|
24304
|
-
|
|
24305
|
-
|
|
24306
|
-
|
|
24307
|
-
|
|
24308
|
-
|
|
24309
|
-
|
|
24310
|
-
|
|
24311
|
-
|
|
24312
|
-
|
|
24313
|
-
|
|
24314
|
-
|
|
24315
|
-
|
|
24316
|
-
|
|
24317
|
-
|
|
24318
|
-
|
|
24319
|
-
|
|
24320
|
-
|
|
24321
|
-
|
|
24322
|
-
|
|
24323
|
-
|
|
24324
|
-
|
|
24325
|
-
|
|
24326
|
-
|
|
24327
|
-
|
|
24328
|
-
|
|
24329
|
-
|
|
24330
|
-
|
|
24331
|
-
|
|
24332
|
-
|
|
24333
|
-
|
|
24334
|
-
|
|
24726
|
+
ConditionalDropdown: {
|
|
24727
|
+
new (...args: any[]): {
|
|
24728
|
+
$: import("vue").ComponentInternalInstance;
|
|
24729
|
+
$data: {};
|
|
24730
|
+
$props: Partial<{
|
|
24731
|
+
label: string;
|
|
24732
|
+
testId: string;
|
|
24733
|
+
isOpen: boolean;
|
|
24734
|
+
infiniteLoading: boolean;
|
|
24735
|
+
triggerShownValuesCount: number;
|
|
24736
|
+
optionNameKey: string;
|
|
24737
|
+
optionIconKey: string;
|
|
24738
|
+
optionImageKey: string;
|
|
24739
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
24740
|
+
optionFlagKey: string;
|
|
24741
|
+
groupedOptions: boolean;
|
|
24742
|
+
comparingKey: string;
|
|
24743
|
+
minCharsToStart: number;
|
|
24744
|
+
searchQuery: string;
|
|
24745
|
+
loadMoreFn: () => Promise<any[]>;
|
|
24746
|
+
fetchDataDebounceTime: number;
|
|
24747
|
+
autoFocusSearch: boolean;
|
|
24748
|
+
loadingOverride: boolean;
|
|
24749
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
24750
|
+
label: {
|
|
24751
|
+
type: import("vue").PropType<string>;
|
|
24752
|
+
required: true;
|
|
24753
|
+
default: string;
|
|
24754
|
+
};
|
|
24755
|
+
testId: {
|
|
24756
|
+
type: import("vue").PropType<string>;
|
|
24757
|
+
default: string;
|
|
24758
|
+
};
|
|
24759
|
+
isOpen: {
|
|
24760
|
+
type: import("vue").PropType<boolean>;
|
|
24761
|
+
default: boolean;
|
|
24762
|
+
};
|
|
24763
|
+
infiniteLoading: {
|
|
24764
|
+
type: import("vue").PropType<boolean>;
|
|
24765
|
+
default: boolean;
|
|
24766
|
+
};
|
|
24767
|
+
triggerShownValuesCount: {
|
|
24768
|
+
type: import("vue").PropType<number>;
|
|
24769
|
+
default: number;
|
|
24770
|
+
};
|
|
24771
|
+
optionNameKey: {
|
|
24772
|
+
type: import("vue").PropType<string>;
|
|
24773
|
+
required: true;
|
|
24774
|
+
default: string;
|
|
24775
|
+
};
|
|
24776
|
+
optionIconKey: {
|
|
24777
|
+
type: import("vue").PropType<string>;
|
|
24778
|
+
default: string;
|
|
24779
|
+
};
|
|
24780
|
+
optionImageKey: {
|
|
24781
|
+
type: import("vue").PropType<string>;
|
|
24782
|
+
default: string;
|
|
24783
|
+
};
|
|
24784
|
+
optionIconType: {
|
|
24785
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24786
|
+
default: any;
|
|
24787
|
+
};
|
|
24788
|
+
optionFlagKey: {
|
|
24789
|
+
type: import("vue").PropType<string>;
|
|
24790
|
+
default: string;
|
|
24791
|
+
};
|
|
24792
|
+
groupedOptions: {
|
|
24793
|
+
type: import("vue").PropType<boolean>;
|
|
24794
|
+
default: boolean;
|
|
24795
|
+
};
|
|
24796
|
+
comparingKey: {
|
|
24797
|
+
type: import("vue").PropType<string>;
|
|
24798
|
+
required: true;
|
|
24799
|
+
default: string;
|
|
24800
|
+
};
|
|
24801
|
+
conditionalOptions: {
|
|
24802
|
+
type: import("vue").PropType<{
|
|
24803
|
+
label: string;
|
|
24804
|
+
value: string;
|
|
24805
|
+
multi: boolean;
|
|
24806
|
+
}[]>;
|
|
24807
|
+
required: true;
|
|
24808
|
+
};
|
|
24809
|
+
selectedCondition: {
|
|
24810
|
+
type: import("vue").PropType<{
|
|
24811
|
+
label: string;
|
|
24812
|
+
value: string;
|
|
24813
|
+
multi: boolean;
|
|
24814
|
+
}>;
|
|
24815
|
+
required: true;
|
|
24816
|
+
};
|
|
24817
|
+
appliedSelections: {
|
|
24818
|
+
type: import("vue").PropType<unknown>;
|
|
24819
|
+
required: true;
|
|
24820
|
+
};
|
|
24821
|
+
fetchFnCallback: {
|
|
24822
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
24823
|
+
required: true;
|
|
24824
|
+
};
|
|
24825
|
+
minCharsToStart: {
|
|
24826
|
+
type: import("vue").PropType<number>;
|
|
24827
|
+
default: number;
|
|
24828
|
+
};
|
|
24829
|
+
searchQuery: {
|
|
24830
|
+
type: import("vue").PropType<string>;
|
|
24831
|
+
default: string;
|
|
24832
|
+
};
|
|
24833
|
+
loadMoreFn: {
|
|
24834
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
24835
|
+
default: any;
|
|
24836
|
+
};
|
|
24837
|
+
fetchDataDebounceTime: {
|
|
24838
|
+
type: import("vue").PropType<number>;
|
|
24839
|
+
default: number;
|
|
24840
|
+
};
|
|
24841
|
+
autoFocusSearch: {
|
|
24842
|
+
type: import("vue").PropType<boolean>;
|
|
24843
|
+
default: boolean;
|
|
24844
|
+
};
|
|
24845
|
+
loadingOverride: {
|
|
24846
|
+
type: import("vue").PropType<boolean>;
|
|
24847
|
+
default: boolean;
|
|
24848
|
+
};
|
|
24849
|
+
}>> & {
|
|
24850
|
+
onClear?: () => any;
|
|
24851
|
+
onClosed?: () => any;
|
|
24852
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
24853
|
+
label: string;
|
|
24854
|
+
value: string;
|
|
24855
|
+
multi: boolean;
|
|
24856
|
+
}) => any;
|
|
24857
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24858
|
+
} & 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">;
|
|
24859
|
+
$attrs: {
|
|
24860
|
+
[x: string]: unknown;
|
|
24861
|
+
};
|
|
24862
|
+
$refs: {
|
|
24863
|
+
[x: string]: unknown;
|
|
24864
|
+
};
|
|
24865
|
+
$slots: Readonly<{
|
|
24866
|
+
[name: string]: import("vue").Slot;
|
|
24867
|
+
}>;
|
|
24868
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
24869
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
24870
|
+
$emit: ((event: "clear") => void) & ((event: "closed") => void) & ((event: "update:selectedCondition", value: {
|
|
24871
|
+
label: string;
|
|
24872
|
+
value: string;
|
|
24873
|
+
multi: boolean;
|
|
24874
|
+
}) => void) & ((event: "update:appliedSelections", value: unknown) => void);
|
|
24875
|
+
$el: any;
|
|
24876
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
24877
|
+
label: {
|
|
24878
|
+
type: import("vue").PropType<string>;
|
|
24879
|
+
required: true;
|
|
24880
|
+
default: string;
|
|
24881
|
+
};
|
|
24882
|
+
testId: {
|
|
24883
|
+
type: import("vue").PropType<string>;
|
|
24884
|
+
default: string;
|
|
24885
|
+
};
|
|
24886
|
+
isOpen: {
|
|
24887
|
+
type: import("vue").PropType<boolean>;
|
|
24888
|
+
default: boolean;
|
|
24889
|
+
};
|
|
24890
|
+
infiniteLoading: {
|
|
24891
|
+
type: import("vue").PropType<boolean>;
|
|
24892
|
+
default: boolean;
|
|
24893
|
+
};
|
|
24894
|
+
triggerShownValuesCount: {
|
|
24895
|
+
type: import("vue").PropType<number>;
|
|
24896
|
+
default: number;
|
|
24897
|
+
};
|
|
24898
|
+
optionNameKey: {
|
|
24899
|
+
type: import("vue").PropType<string>;
|
|
24900
|
+
required: true;
|
|
24901
|
+
default: string;
|
|
24902
|
+
};
|
|
24903
|
+
optionIconKey: {
|
|
24904
|
+
type: import("vue").PropType<string>;
|
|
24905
|
+
default: string;
|
|
24906
|
+
};
|
|
24907
|
+
optionImageKey: {
|
|
24908
|
+
type: import("vue").PropType<string>;
|
|
24909
|
+
default: string;
|
|
24910
|
+
};
|
|
24911
|
+
optionIconType: {
|
|
24912
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
24913
|
+
default: any;
|
|
24914
|
+
};
|
|
24915
|
+
optionFlagKey: {
|
|
24916
|
+
type: import("vue").PropType<string>;
|
|
24917
|
+
default: string;
|
|
24918
|
+
};
|
|
24919
|
+
groupedOptions: {
|
|
24920
|
+
type: import("vue").PropType<boolean>;
|
|
24921
|
+
default: boolean;
|
|
24922
|
+
};
|
|
24923
|
+
comparingKey: {
|
|
24924
|
+
type: import("vue").PropType<string>;
|
|
24925
|
+
required: true;
|
|
24926
|
+
default: string;
|
|
24927
|
+
};
|
|
24928
|
+
conditionalOptions: {
|
|
24929
|
+
type: import("vue").PropType<{
|
|
24930
|
+
label: string;
|
|
24931
|
+
value: string;
|
|
24932
|
+
multi: boolean;
|
|
24933
|
+
}[]>;
|
|
24934
|
+
required: true;
|
|
24935
|
+
};
|
|
24936
|
+
selectedCondition: {
|
|
24937
|
+
type: import("vue").PropType<{
|
|
24938
|
+
label: string;
|
|
24939
|
+
value: string;
|
|
24940
|
+
multi: boolean;
|
|
24941
|
+
}>;
|
|
24942
|
+
required: true;
|
|
24943
|
+
};
|
|
24944
|
+
appliedSelections: {
|
|
24945
|
+
type: import("vue").PropType<unknown>;
|
|
24946
|
+
required: true;
|
|
24947
|
+
};
|
|
24948
|
+
fetchFnCallback: {
|
|
24949
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
24950
|
+
required: true;
|
|
24951
|
+
};
|
|
24952
|
+
minCharsToStart: {
|
|
24953
|
+
type: import("vue").PropType<number>;
|
|
24954
|
+
default: number;
|
|
24955
|
+
};
|
|
24956
|
+
searchQuery: {
|
|
24957
|
+
type: import("vue").PropType<string>;
|
|
24958
|
+
default: string;
|
|
24959
|
+
};
|
|
24960
|
+
loadMoreFn: {
|
|
24961
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
24962
|
+
default: any;
|
|
24963
|
+
};
|
|
24964
|
+
fetchDataDebounceTime: {
|
|
24965
|
+
type: import("vue").PropType<number>;
|
|
24966
|
+
default: number;
|
|
24967
|
+
};
|
|
24968
|
+
autoFocusSearch: {
|
|
24969
|
+
type: import("vue").PropType<boolean>;
|
|
24970
|
+
default: boolean;
|
|
24971
|
+
};
|
|
24972
|
+
loadingOverride: {
|
|
24973
|
+
type: import("vue").PropType<boolean>;
|
|
24974
|
+
default: boolean;
|
|
24975
|
+
};
|
|
24976
|
+
}>> & {
|
|
24977
|
+
onClear?: () => any;
|
|
24978
|
+
onClosed?: () => any;
|
|
24979
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
24980
|
+
label: string;
|
|
24981
|
+
value: string;
|
|
24982
|
+
multi: boolean;
|
|
24983
|
+
}) => any;
|
|
24984
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24985
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24986
|
+
"update:selectedCondition": (value: {
|
|
24987
|
+
label: string;
|
|
24988
|
+
value: string;
|
|
24989
|
+
multi: boolean;
|
|
24990
|
+
}) => void;
|
|
24991
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
24992
|
+
clear: () => void;
|
|
24993
|
+
closed: () => void;
|
|
24994
|
+
}, string, {
|
|
24335
24995
|
label: string;
|
|
24336
|
-
|
|
24337
|
-
|
|
24338
|
-
|
|
24339
|
-
|
|
24340
|
-
|
|
24341
|
-
|
|
24342
|
-
|
|
24996
|
+
testId: string;
|
|
24997
|
+
isOpen: boolean;
|
|
24998
|
+
infiniteLoading: boolean;
|
|
24999
|
+
triggerShownValuesCount: number;
|
|
25000
|
+
optionNameKey: string;
|
|
25001
|
+
optionIconKey: string;
|
|
25002
|
+
optionImageKey: string;
|
|
25003
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
25004
|
+
optionFlagKey: string;
|
|
25005
|
+
groupedOptions: boolean;
|
|
25006
|
+
comparingKey: string;
|
|
25007
|
+
minCharsToStart: number;
|
|
25008
|
+
searchQuery: string;
|
|
25009
|
+
loadMoreFn: () => Promise<any[]>;
|
|
25010
|
+
fetchDataDebounceTime: number;
|
|
25011
|
+
autoFocusSearch: boolean;
|
|
25012
|
+
loadingOverride: boolean;
|
|
25013
|
+
}, {}, string> & {
|
|
25014
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
25015
|
+
created?: (() => void) | (() => void)[];
|
|
25016
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
25017
|
+
mounted?: (() => void) | (() => void)[];
|
|
25018
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
25019
|
+
updated?: (() => void) | (() => void)[];
|
|
25020
|
+
activated?: (() => void) | (() => void)[];
|
|
25021
|
+
deactivated?: (() => void) | (() => void)[];
|
|
25022
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
25023
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
25024
|
+
destroyed?: (() => void) | (() => void)[];
|
|
25025
|
+
unmounted?: (() => void) | (() => void)[];
|
|
25026
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
25027
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
25028
|
+
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)[];
|
|
25029
|
+
};
|
|
25030
|
+
$forceUpdate: () => void;
|
|
25031
|
+
$nextTick: typeof import("vue").nextTick;
|
|
25032
|
+
$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;
|
|
25033
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
25034
|
+
label: {
|
|
25035
|
+
type: import("vue").PropType<string>;
|
|
25036
|
+
required: true;
|
|
25037
|
+
default: string;
|
|
25038
|
+
};
|
|
25039
|
+
testId: {
|
|
25040
|
+
type: import("vue").PropType<string>;
|
|
25041
|
+
default: string;
|
|
25042
|
+
};
|
|
25043
|
+
isOpen: {
|
|
25044
|
+
type: import("vue").PropType<boolean>;
|
|
25045
|
+
default: boolean;
|
|
25046
|
+
};
|
|
25047
|
+
infiniteLoading: {
|
|
25048
|
+
type: import("vue").PropType<boolean>;
|
|
25049
|
+
default: boolean;
|
|
25050
|
+
};
|
|
25051
|
+
triggerShownValuesCount: {
|
|
25052
|
+
type: import("vue").PropType<number>;
|
|
25053
|
+
default: number;
|
|
25054
|
+
};
|
|
25055
|
+
optionNameKey: {
|
|
25056
|
+
type: import("vue").PropType<string>;
|
|
25057
|
+
required: true;
|
|
25058
|
+
default: string;
|
|
25059
|
+
};
|
|
25060
|
+
optionIconKey: {
|
|
25061
|
+
type: import("vue").PropType<string>;
|
|
25062
|
+
default: string;
|
|
25063
|
+
};
|
|
25064
|
+
optionImageKey: {
|
|
25065
|
+
type: import("vue").PropType<string>;
|
|
25066
|
+
default: string;
|
|
25067
|
+
};
|
|
25068
|
+
optionIconType: {
|
|
25069
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
25070
|
+
default: any;
|
|
25071
|
+
};
|
|
25072
|
+
optionFlagKey: {
|
|
25073
|
+
type: import("vue").PropType<string>;
|
|
25074
|
+
default: string;
|
|
25075
|
+
};
|
|
25076
|
+
groupedOptions: {
|
|
25077
|
+
type: import("vue").PropType<boolean>;
|
|
25078
|
+
default: boolean;
|
|
25079
|
+
};
|
|
25080
|
+
comparingKey: {
|
|
25081
|
+
type: import("vue").PropType<string>;
|
|
25082
|
+
required: true;
|
|
25083
|
+
default: string;
|
|
25084
|
+
};
|
|
25085
|
+
conditionalOptions: {
|
|
25086
|
+
type: import("vue").PropType<{
|
|
25087
|
+
label: string;
|
|
25088
|
+
value: string;
|
|
25089
|
+
multi: boolean;
|
|
25090
|
+
}[]>;
|
|
25091
|
+
required: true;
|
|
25092
|
+
};
|
|
25093
|
+
selectedCondition: {
|
|
25094
|
+
type: import("vue").PropType<{
|
|
25095
|
+
label: string;
|
|
25096
|
+
value: string;
|
|
25097
|
+
multi: boolean;
|
|
25098
|
+
}>;
|
|
25099
|
+
required: true;
|
|
25100
|
+
};
|
|
25101
|
+
appliedSelections: {
|
|
25102
|
+
type: import("vue").PropType<unknown>;
|
|
25103
|
+
required: true;
|
|
25104
|
+
};
|
|
25105
|
+
fetchFnCallback: {
|
|
25106
|
+
type: import("vue").PropType<(q: string) => Promise<unknown[]>>;
|
|
25107
|
+
required: true;
|
|
25108
|
+
};
|
|
25109
|
+
minCharsToStart: {
|
|
25110
|
+
type: import("vue").PropType<number>;
|
|
25111
|
+
default: number;
|
|
25112
|
+
};
|
|
25113
|
+
searchQuery: {
|
|
25114
|
+
type: import("vue").PropType<string>;
|
|
25115
|
+
default: string;
|
|
25116
|
+
};
|
|
25117
|
+
loadMoreFn: {
|
|
25118
|
+
type: import("vue").PropType<() => Promise<any[]>>;
|
|
25119
|
+
default: any;
|
|
25120
|
+
};
|
|
25121
|
+
fetchDataDebounceTime: {
|
|
25122
|
+
type: import("vue").PropType<number>;
|
|
25123
|
+
default: number;
|
|
25124
|
+
};
|
|
25125
|
+
autoFocusSearch: {
|
|
25126
|
+
type: import("vue").PropType<boolean>;
|
|
25127
|
+
default: boolean;
|
|
25128
|
+
};
|
|
25129
|
+
loadingOverride: {
|
|
25130
|
+
type: import("vue").PropType<boolean>;
|
|
25131
|
+
default: boolean;
|
|
25132
|
+
};
|
|
25133
|
+
}>> & {
|
|
25134
|
+
onClear?: () => any;
|
|
25135
|
+
onClosed?: () => any;
|
|
25136
|
+
"onUpdate:selectedCondition"?: (value: {
|
|
24343
25137
|
label: string;
|
|
24344
25138
|
value: string;
|
|
24345
25139
|
multi: boolean;
|
|
24346
|
-
}
|
|
24347
|
-
|
|
24348
|
-
};
|
|
24349
|
-
|
|
24350
|
-
|
|
24351
|
-
|
|
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<{
|
|
25140
|
+
}) => any;
|
|
25141
|
+
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
25142
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
25143
|
+
__isFragment?: never;
|
|
25144
|
+
__isTeleport?: never;
|
|
25145
|
+
__isSuspense?: never;
|
|
25146
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
24391
25147
|
label: {
|
|
24392
25148
|
type: import("vue").PropType<string>;
|
|
24393
25149
|
required: true;
|
|
@@ -24496,7 +25252,16 @@ declare const _default: {
|
|
|
24496
25252
|
multi: boolean;
|
|
24497
25253
|
}) => any;
|
|
24498
25254
|
"onUpdate:appliedSelections"?: (value: unknown) => any;
|
|
24499
|
-
}, {
|
|
25255
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25256
|
+
"update:selectedCondition": (value: {
|
|
25257
|
+
label: string;
|
|
25258
|
+
value: string;
|
|
25259
|
+
multi: boolean;
|
|
25260
|
+
}) => void;
|
|
25261
|
+
"update:appliedSelections": (value: unknown) => void;
|
|
25262
|
+
clear: () => void;
|
|
25263
|
+
closed: () => void;
|
|
25264
|
+
}, string, {
|
|
24500
25265
|
label: string;
|
|
24501
25266
|
testId: string;
|
|
24502
25267
|
isOpen: boolean;
|
|
@@ -24515,7 +25280,13 @@ declare const _default: {
|
|
|
24515
25280
|
fetchDataDebounceTime: number;
|
|
24516
25281
|
autoFocusSearch: boolean;
|
|
24517
25282
|
loadingOverride: boolean;
|
|
24518
|
-
}
|
|
25283
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
25284
|
+
$slots: {
|
|
25285
|
+
"option-end"?(_: {
|
|
25286
|
+
option: any;
|
|
25287
|
+
}): any;
|
|
25288
|
+
};
|
|
25289
|
+
});
|
|
24519
25290
|
Label: {
|
|
24520
25291
|
new (...args: any[]): {
|
|
24521
25292
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -24877,6 +25648,7 @@ declare const _default: {
|
|
|
24877
25648
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
24878
25649
|
$slots: {
|
|
24879
25650
|
default?(_: {}): any;
|
|
25651
|
+
"after-label"?(_: {}): any;
|
|
24880
25652
|
loader?(_: {}): any;
|
|
24881
25653
|
};
|
|
24882
25654
|
});
|
|
@@ -25878,6 +26650,10 @@ declare const _default: {
|
|
|
25878
26650
|
required: true;
|
|
25879
26651
|
default: string;
|
|
25880
26652
|
};
|
|
26653
|
+
tooltipPlacement: {
|
|
26654
|
+
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">;
|
|
26655
|
+
default: string;
|
|
26656
|
+
};
|
|
25881
26657
|
modelValue: {
|
|
25882
26658
|
type: import("vue").PropType<unknown>;
|
|
25883
26659
|
required: true;
|
|
@@ -25890,6 +26666,10 @@ declare const _default: {
|
|
|
25890
26666
|
type: import("vue").PropType<string>;
|
|
25891
26667
|
default: string;
|
|
25892
26668
|
};
|
|
26669
|
+
tooltipTextKey: {
|
|
26670
|
+
type: import("vue").PropType<string>;
|
|
26671
|
+
default: string;
|
|
26672
|
+
};
|
|
25893
26673
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25894
26674
|
"update:modelValue": (...args: any[]) => void;
|
|
25895
26675
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -25902,6 +26682,10 @@ declare const _default: {
|
|
|
25902
26682
|
required: true;
|
|
25903
26683
|
default: string;
|
|
25904
26684
|
};
|
|
26685
|
+
tooltipPlacement: {
|
|
26686
|
+
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">;
|
|
26687
|
+
default: string;
|
|
26688
|
+
};
|
|
25905
26689
|
modelValue: {
|
|
25906
26690
|
type: import("vue").PropType<unknown>;
|
|
25907
26691
|
required: true;
|
|
@@ -25914,12 +26698,18 @@ declare const _default: {
|
|
|
25914
26698
|
type: import("vue").PropType<string>;
|
|
25915
26699
|
default: string;
|
|
25916
26700
|
};
|
|
26701
|
+
tooltipTextKey: {
|
|
26702
|
+
type: import("vue").PropType<string>;
|
|
26703
|
+
default: string;
|
|
26704
|
+
};
|
|
25917
26705
|
}>> & {
|
|
25918
26706
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
25919
26707
|
}, {
|
|
25920
26708
|
testId: string;
|
|
25921
26709
|
variant: "default" | "primary";
|
|
26710
|
+
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";
|
|
25922
26711
|
iconKey: string;
|
|
26712
|
+
tooltipTextKey: string;
|
|
25923
26713
|
}>;
|
|
25924
26714
|
SwitchTypes: () => import("vue").DefineComponent<{
|
|
25925
26715
|
testId: {
|
|
@@ -25931,6 +26721,10 @@ declare const _default: {
|
|
|
25931
26721
|
required: true;
|
|
25932
26722
|
default: string;
|
|
25933
26723
|
};
|
|
26724
|
+
tooltipPlacement: {
|
|
26725
|
+
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">;
|
|
26726
|
+
default: string;
|
|
26727
|
+
};
|
|
25934
26728
|
modelValue: {
|
|
25935
26729
|
type: import("vue").PropType<unknown>;
|
|
25936
26730
|
required: true;
|
|
@@ -25943,6 +26737,10 @@ declare const _default: {
|
|
|
25943
26737
|
type: import("vue").PropType<string>;
|
|
25944
26738
|
default: string;
|
|
25945
26739
|
};
|
|
26740
|
+
tooltipTextKey: {
|
|
26741
|
+
type: import("vue").PropType<string>;
|
|
26742
|
+
default: string;
|
|
26743
|
+
};
|
|
25946
26744
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25947
26745
|
"update:modelValue": (...args: any[]) => void;
|
|
25948
26746
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -25955,6 +26753,10 @@ declare const _default: {
|
|
|
25955
26753
|
required: true;
|
|
25956
26754
|
default: string;
|
|
25957
26755
|
};
|
|
26756
|
+
tooltipPlacement: {
|
|
26757
|
+
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">;
|
|
26758
|
+
default: string;
|
|
26759
|
+
};
|
|
25958
26760
|
modelValue: {
|
|
25959
26761
|
type: import("vue").PropType<unknown>;
|
|
25960
26762
|
required: true;
|
|
@@ -25967,12 +26769,18 @@ declare const _default: {
|
|
|
25967
26769
|
type: import("vue").PropType<string>;
|
|
25968
26770
|
default: string;
|
|
25969
26771
|
};
|
|
26772
|
+
tooltipTextKey: {
|
|
26773
|
+
type: import("vue").PropType<string>;
|
|
26774
|
+
default: string;
|
|
26775
|
+
};
|
|
25970
26776
|
}>> & {
|
|
25971
26777
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
25972
26778
|
}, {
|
|
25973
26779
|
testId: string;
|
|
25974
26780
|
variant: "default" | "primary";
|
|
26781
|
+
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";
|
|
25975
26782
|
iconKey: string;
|
|
26783
|
+
tooltipTextKey: string;
|
|
25976
26784
|
}>[];
|
|
25977
26785
|
Chip: {
|
|
25978
26786
|
new (...args: any[]): {
|
|
@@ -26315,7 +27123,9 @@ export default _default;
|
|
|
26315
27123
|
export * from '@/composables/useToggle';
|
|
26316
27124
|
export * from '@/composables/useSearch';
|
|
26317
27125
|
export * from '@/composables/useFormValidation';
|
|
27126
|
+
export * from '@/composables/useDateService';
|
|
26318
27127
|
export * from '@/components/banner';
|
|
26319
27128
|
export * from '@/components/alert';
|
|
27129
|
+
export * from '@/components/link';
|
|
26320
27130
|
export * from '@/components/autocomplete';
|
|
26321
27131
|
export * from '@/components/chart';
|