@ironsource/shared-ui 2.1.6-rc.14 → 2.1.6-rc.16
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/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_71c3ab74_lang.css +1 -0
- package/Dropdown.vue_vue_type_style_index_0_scoped_aaa8c4bb_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_77f8bdb6_lang.css +1 -0
- package/InlineCopy.vue_vue_type_style_index_0_scoped_6a7b3795_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_7f8f35a1_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +1 -0
- package/TooltipV4.vue_vue_type_style_index_0_scoped_fcdb9d02_lang.css +1 -0
- package/components/dropdown/common/Dropdown.common.js +20 -20
- package/components/dropdown/v3/Dropdown.vue.d.ts +4 -0
- package/components/dropdown/v3/Dropdown.vue.js +4 -4
- package/components/dropdown/v3/Dropdown.vue2.js +32 -32
- package/components/dropdown/v3/index.d.ts +13 -1
- package/components/dropdown/v4/AppDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/AppDropdownTrigger.vue2.js +1 -1
- package/components/dropdown/v4/DropdownV4.vue.d.ts +14 -0
- package/components/dropdown/v4/DropdownV4.vue.js +2 -2
- package/components/dropdown/v4/DropdownV4.vue2.js +61 -57
- package/components/dropdown/v4/OptionV4.vue.d.ts +11 -0
- package/components/dropdown/v4/OptionV4.vue.js +2 -2
- package/components/dropdown/v4/OptionV4.vue2.js +62 -45
- package/components/dropdown/v4/index.d.ts +92 -3
- package/components/inlineCopy/InlineCopy.vue.d.ts +6 -2
- package/components/inlineCopy/InlineCopy.vue.js +3 -3
- package/components/inlineCopy/InlineCopy.vue2.js +23 -22
- package/components/inlineCopy/index.d.ts +6 -2
- package/components/input/v4/TextField.vue.d.ts +5 -0
- package/components/input/v4/TextField.vue.js +3 -3
- package/components/input/v4/TextField.vue2.js +21 -19
- package/components/input/v4/index.d.ts +20 -1
- package/components/tooltip/v4/TooltipV4.vue.d.ts +6 -2
- package/components/tooltip/v4/TooltipV4.vue.js +2 -2
- package/components/tooltip/v4/TooltipV4.vue2.js +21 -19
- package/components/tooltip/v4/index.d.ts +17 -5
- package/index.d.ts +270 -22
- package/package.json +1 -1
- package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_0267d003_lang.css +0 -1
- package/Dropdown.vue_vue_type_style_index_0_scoped_d4f8e790_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_0968078f_lang.css +0 -1
- package/InlineCopy.vue_vue_type_style_index_0_scoped_ff9f4a0f_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_b8375219_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_22c12586_lang.css +0 -1
- package/TooltipV4.vue_vue_type_style_index_0_scoped_25809092_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -88,7 +88,9 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
89
89
|
default: string;
|
|
90
90
|
};
|
|
91
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
91
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
92
|
+
copy: () => void;
|
|
93
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
92
94
|
text: {
|
|
93
95
|
type: import("vue").PropType<string>;
|
|
94
96
|
required: true;
|
|
@@ -125,7 +127,9 @@ declare const _default: {
|
|
|
125
127
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
126
128
|
default: string;
|
|
127
129
|
};
|
|
128
|
-
}
|
|
130
|
+
}>> & {
|
|
131
|
+
onCopy?: () => any;
|
|
132
|
+
}, {
|
|
129
133
|
text: string;
|
|
130
134
|
size: "small" | "medium";
|
|
131
135
|
testId: string;
|
|
@@ -172,7 +176,9 @@ declare const _default: {
|
|
|
172
176
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
173
177
|
default: string;
|
|
174
178
|
};
|
|
175
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
179
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
180
|
+
copy: () => void;
|
|
181
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
176
182
|
text: {
|
|
177
183
|
type: import("vue").PropType<string>;
|
|
178
184
|
required: true;
|
|
@@ -209,7 +215,9 @@ declare const _default: {
|
|
|
209
215
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
210
216
|
default: string;
|
|
211
217
|
};
|
|
212
|
-
}
|
|
218
|
+
}>> & {
|
|
219
|
+
onCopy?: () => any;
|
|
220
|
+
}, {
|
|
213
221
|
text: string;
|
|
214
222
|
size: "small" | "medium";
|
|
215
223
|
testId: string;
|
|
@@ -5660,7 +5668,9 @@ declare const _default: {
|
|
|
5660
5668
|
type: import("vue").PropType<string | number>;
|
|
5661
5669
|
default: string;
|
|
5662
5670
|
};
|
|
5663
|
-
}>> &
|
|
5671
|
+
}>> & {
|
|
5672
|
+
onShow?: () => any;
|
|
5673
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
|
|
5664
5674
|
$attrs: {
|
|
5665
5675
|
[x: string]: unknown;
|
|
5666
5676
|
};
|
|
@@ -5672,7 +5682,7 @@ declare const _default: {
|
|
|
5672
5682
|
}>;
|
|
5673
5683
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
5674
5684
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
5675
|
-
$emit: (event:
|
|
5685
|
+
$emit: (event: "show") => void;
|
|
5676
5686
|
$el: any;
|
|
5677
5687
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
5678
5688
|
header: {
|
|
@@ -5719,7 +5729,11 @@ declare const _default: {
|
|
|
5719
5729
|
type: import("vue").PropType<string | number>;
|
|
5720
5730
|
default: string;
|
|
5721
5731
|
};
|
|
5722
|
-
}
|
|
5732
|
+
}>> & {
|
|
5733
|
+
onShow?: () => any;
|
|
5734
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5735
|
+
show: () => void;
|
|
5736
|
+
}, string, {
|
|
5723
5737
|
header: string;
|
|
5724
5738
|
text: string;
|
|
5725
5739
|
theme: string;
|
|
@@ -5796,7 +5810,9 @@ declare const _default: {
|
|
|
5796
5810
|
type: import("vue").PropType<string | number>;
|
|
5797
5811
|
default: string;
|
|
5798
5812
|
};
|
|
5799
|
-
}>> &
|
|
5813
|
+
}>> & {
|
|
5814
|
+
onShow?: () => any;
|
|
5815
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
5800
5816
|
__isFragment?: never;
|
|
5801
5817
|
__isTeleport?: never;
|
|
5802
5818
|
__isSuspense?: never;
|
|
@@ -5845,7 +5861,11 @@ declare const _default: {
|
|
|
5845
5861
|
type: import("vue").PropType<string | number>;
|
|
5846
5862
|
default: string;
|
|
5847
5863
|
};
|
|
5848
|
-
}
|
|
5864
|
+
}>> & {
|
|
5865
|
+
onShow?: () => any;
|
|
5866
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5867
|
+
show: () => void;
|
|
5868
|
+
}, string, {
|
|
5849
5869
|
header: string;
|
|
5850
5870
|
text: string;
|
|
5851
5871
|
theme: string;
|
|
@@ -5926,7 +5946,9 @@ declare const _default: {
|
|
|
5926
5946
|
type: import("vue").PropType<string | number>;
|
|
5927
5947
|
default: string;
|
|
5928
5948
|
};
|
|
5929
|
-
}>> &
|
|
5949
|
+
}>> & {
|
|
5950
|
+
onShow?: () => any;
|
|
5951
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
|
|
5930
5952
|
$attrs: {
|
|
5931
5953
|
[x: string]: unknown;
|
|
5932
5954
|
};
|
|
@@ -5938,7 +5960,7 @@ declare const _default: {
|
|
|
5938
5960
|
}>;
|
|
5939
5961
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
5940
5962
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
5941
|
-
$emit: (event:
|
|
5963
|
+
$emit: (event: "show") => void;
|
|
5942
5964
|
$el: any;
|
|
5943
5965
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
5944
5966
|
header: {
|
|
@@ -5985,7 +6007,11 @@ declare const _default: {
|
|
|
5985
6007
|
type: import("vue").PropType<string | number>;
|
|
5986
6008
|
default: string;
|
|
5987
6009
|
};
|
|
5988
|
-
}
|
|
6010
|
+
}>> & {
|
|
6011
|
+
onShow?: () => any;
|
|
6012
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6013
|
+
show: () => void;
|
|
6014
|
+
}, string, {
|
|
5989
6015
|
header: string;
|
|
5990
6016
|
text: string;
|
|
5991
6017
|
theme: string;
|
|
@@ -6062,7 +6088,9 @@ declare const _default: {
|
|
|
6062
6088
|
type: import("vue").PropType<string | number>;
|
|
6063
6089
|
default: string;
|
|
6064
6090
|
};
|
|
6065
|
-
}>> &
|
|
6091
|
+
}>> & {
|
|
6092
|
+
onShow?: () => any;
|
|
6093
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
6066
6094
|
__isFragment?: never;
|
|
6067
6095
|
__isTeleport?: never;
|
|
6068
6096
|
__isSuspense?: never;
|
|
@@ -6111,7 +6139,11 @@ declare const _default: {
|
|
|
6111
6139
|
type: import("vue").PropType<string | number>;
|
|
6112
6140
|
default: string;
|
|
6113
6141
|
};
|
|
6114
|
-
}
|
|
6142
|
+
}>> & {
|
|
6143
|
+
onShow?: () => any;
|
|
6144
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6145
|
+
show: () => void;
|
|
6146
|
+
}, string, {
|
|
6115
6147
|
header: string;
|
|
6116
6148
|
text: string;
|
|
6117
6149
|
theme: string;
|
|
@@ -8344,6 +8376,7 @@ declare const _default: {
|
|
|
8344
8376
|
showApply: boolean;
|
|
8345
8377
|
inlineError: boolean;
|
|
8346
8378
|
inlineErrorText: string;
|
|
8379
|
+
inlineErrorTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
8347
8380
|
feedbackText: string;
|
|
8348
8381
|
feedbackVariant: "success" | "warning" | "error";
|
|
8349
8382
|
showFeedbackTextIcon: boolean;
|
|
@@ -8437,6 +8470,10 @@ declare const _default: {
|
|
|
8437
8470
|
type: import("vue").PropType<string>;
|
|
8438
8471
|
default: string;
|
|
8439
8472
|
};
|
|
8473
|
+
inlineErrorTextPlacement: {
|
|
8474
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
8475
|
+
default: string;
|
|
8476
|
+
};
|
|
8440
8477
|
feedbackText: {
|
|
8441
8478
|
type: import("vue").PropType<string>;
|
|
8442
8479
|
default: string;
|
|
@@ -8456,7 +8493,7 @@ declare const _default: {
|
|
|
8456
8493
|
}>> & {
|
|
8457
8494
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
8458
8495
|
onApply?: () => any;
|
|
8459
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
|
|
8496
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
|
|
8460
8497
|
$attrs: {
|
|
8461
8498
|
[x: string]: unknown;
|
|
8462
8499
|
};
|
|
@@ -8559,6 +8596,10 @@ declare const _default: {
|
|
|
8559
8596
|
type: import("vue").PropType<string>;
|
|
8560
8597
|
default: string;
|
|
8561
8598
|
};
|
|
8599
|
+
inlineErrorTextPlacement: {
|
|
8600
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
8601
|
+
default: string;
|
|
8602
|
+
};
|
|
8562
8603
|
feedbackText: {
|
|
8563
8604
|
type: import("vue").PropType<string>;
|
|
8564
8605
|
default: string;
|
|
@@ -8606,6 +8647,7 @@ declare const _default: {
|
|
|
8606
8647
|
showApply: boolean;
|
|
8607
8648
|
inlineError: boolean;
|
|
8608
8649
|
inlineErrorText: string;
|
|
8650
|
+
inlineErrorTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
8609
8651
|
feedbackText: string;
|
|
8610
8652
|
feedbackVariant: "success" | "warning" | "error";
|
|
8611
8653
|
showFeedbackTextIcon: boolean;
|
|
@@ -8719,6 +8761,10 @@ declare const _default: {
|
|
|
8719
8761
|
type: import("vue").PropType<string>;
|
|
8720
8762
|
default: string;
|
|
8721
8763
|
};
|
|
8764
|
+
inlineErrorTextPlacement: {
|
|
8765
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
8766
|
+
default: string;
|
|
8767
|
+
};
|
|
8722
8768
|
feedbackText: {
|
|
8723
8769
|
type: import("vue").PropType<string>;
|
|
8724
8770
|
default: string;
|
|
@@ -8833,6 +8879,10 @@ declare const _default: {
|
|
|
8833
8879
|
type: import("vue").PropType<string>;
|
|
8834
8880
|
default: string;
|
|
8835
8881
|
};
|
|
8882
|
+
inlineErrorTextPlacement: {
|
|
8883
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
8884
|
+
default: string;
|
|
8885
|
+
};
|
|
8836
8886
|
feedbackText: {
|
|
8837
8887
|
type: import("vue").PropType<string>;
|
|
8838
8888
|
default: string;
|
|
@@ -8880,6 +8930,7 @@ declare const _default: {
|
|
|
8880
8930
|
showApply: boolean;
|
|
8881
8931
|
inlineError: boolean;
|
|
8882
8932
|
inlineErrorText: string;
|
|
8933
|
+
inlineErrorTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
8883
8934
|
feedbackText: string;
|
|
8884
8935
|
feedbackVariant: "success" | "warning" | "error";
|
|
8885
8936
|
showFeedbackTextIcon: boolean;
|
|
@@ -8917,6 +8968,7 @@ declare const _default: {
|
|
|
8917
8968
|
showApply: boolean;
|
|
8918
8969
|
inlineError: boolean;
|
|
8919
8970
|
inlineErrorText: string;
|
|
8971
|
+
inlineErrorTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
8920
8972
|
feedbackText: string;
|
|
8921
8973
|
feedbackVariant: "success" | "warning" | "error";
|
|
8922
8974
|
showFeedbackTextIcon: boolean;
|
|
@@ -9010,6 +9062,10 @@ declare const _default: {
|
|
|
9010
9062
|
type: import("vue").PropType<string>;
|
|
9011
9063
|
default: string;
|
|
9012
9064
|
};
|
|
9065
|
+
inlineErrorTextPlacement: {
|
|
9066
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
9067
|
+
default: string;
|
|
9068
|
+
};
|
|
9013
9069
|
feedbackText: {
|
|
9014
9070
|
type: import("vue").PropType<string>;
|
|
9015
9071
|
default: string;
|
|
@@ -9029,7 +9085,7 @@ declare const _default: {
|
|
|
9029
9085
|
}>> & {
|
|
9030
9086
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
9031
9087
|
onApply?: () => any;
|
|
9032
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
|
|
9088
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon" | "feedbackPositionAbsolute">;
|
|
9033
9089
|
$attrs: {
|
|
9034
9090
|
[x: string]: unknown;
|
|
9035
9091
|
};
|
|
@@ -9132,6 +9188,10 @@ declare const _default: {
|
|
|
9132
9188
|
type: import("vue").PropType<string>;
|
|
9133
9189
|
default: string;
|
|
9134
9190
|
};
|
|
9191
|
+
inlineErrorTextPlacement: {
|
|
9192
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
9193
|
+
default: string;
|
|
9194
|
+
};
|
|
9135
9195
|
feedbackText: {
|
|
9136
9196
|
type: import("vue").PropType<string>;
|
|
9137
9197
|
default: string;
|
|
@@ -9179,6 +9239,7 @@ declare const _default: {
|
|
|
9179
9239
|
showApply: boolean;
|
|
9180
9240
|
inlineError: boolean;
|
|
9181
9241
|
inlineErrorText: string;
|
|
9242
|
+
inlineErrorTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
9182
9243
|
feedbackText: string;
|
|
9183
9244
|
feedbackVariant: "success" | "warning" | "error";
|
|
9184
9245
|
showFeedbackTextIcon: boolean;
|
|
@@ -9292,6 +9353,10 @@ declare const _default: {
|
|
|
9292
9353
|
type: import("vue").PropType<string>;
|
|
9293
9354
|
default: string;
|
|
9294
9355
|
};
|
|
9356
|
+
inlineErrorTextPlacement: {
|
|
9357
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
9358
|
+
default: string;
|
|
9359
|
+
};
|
|
9295
9360
|
feedbackText: {
|
|
9296
9361
|
type: import("vue").PropType<string>;
|
|
9297
9362
|
default: string;
|
|
@@ -9406,6 +9471,10 @@ declare const _default: {
|
|
|
9406
9471
|
type: import("vue").PropType<string>;
|
|
9407
9472
|
default: string;
|
|
9408
9473
|
};
|
|
9474
|
+
inlineErrorTextPlacement: {
|
|
9475
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
9476
|
+
default: string;
|
|
9477
|
+
};
|
|
9409
9478
|
feedbackText: {
|
|
9410
9479
|
type: import("vue").PropType<string>;
|
|
9411
9480
|
default: string;
|
|
@@ -9453,6 +9522,7 @@ declare const _default: {
|
|
|
9453
9522
|
showApply: boolean;
|
|
9454
9523
|
inlineError: boolean;
|
|
9455
9524
|
inlineErrorText: string;
|
|
9525
|
+
inlineErrorTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
9456
9526
|
feedbackText: string;
|
|
9457
9527
|
feedbackVariant: "success" | "warning" | "error";
|
|
9458
9528
|
showFeedbackTextIcon: boolean;
|
|
@@ -11612,6 +11682,8 @@ declare const _default: {
|
|
|
11612
11682
|
optionIconKey: string;
|
|
11613
11683
|
optionImageKey: string;
|
|
11614
11684
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
11685
|
+
optionEndIconKey: string;
|
|
11686
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
11615
11687
|
valueToCopy: string;
|
|
11616
11688
|
disabledOptionKey: string;
|
|
11617
11689
|
fullWidth: boolean;
|
|
@@ -11780,6 +11852,14 @@ declare const _default: {
|
|
|
11780
11852
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
11781
11853
|
default: any;
|
|
11782
11854
|
};
|
|
11855
|
+
optionEndIconKey: {
|
|
11856
|
+
type: import("vue").PropType<string>;
|
|
11857
|
+
default: string;
|
|
11858
|
+
};
|
|
11859
|
+
optionEndIconType: {
|
|
11860
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
11861
|
+
default: any;
|
|
11862
|
+
};
|
|
11783
11863
|
valueToCopy: {
|
|
11784
11864
|
type: import("vue").PropType<string>;
|
|
11785
11865
|
default: any;
|
|
@@ -11801,12 +11881,14 @@ declare const _default: {
|
|
|
11801
11881
|
default: any;
|
|
11802
11882
|
};
|
|
11803
11883
|
}>> & {
|
|
11884
|
+
onClear?: () => any;
|
|
11804
11885
|
onApply?: (value: unknown) => any;
|
|
11886
|
+
onSelectAll?: () => any;
|
|
11805
11887
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
11806
11888
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
11807
11889
|
onOpened?: () => any;
|
|
11808
11890
|
onClosed?: () => any;
|
|
11809
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
|
|
11891
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
|
|
11810
11892
|
$attrs: {
|
|
11811
11893
|
[x: string]: unknown;
|
|
11812
11894
|
};
|
|
@@ -11818,7 +11900,7 @@ declare const _default: {
|
|
|
11818
11900
|
}>;
|
|
11819
11901
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
11820
11902
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
11821
|
-
$emit: ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
11903
|
+
$emit: ((event: "clear") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
11822
11904
|
$el: any;
|
|
11823
11905
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
11824
11906
|
theme: {
|
|
@@ -11983,6 +12065,14 @@ declare const _default: {
|
|
|
11983
12065
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
11984
12066
|
default: any;
|
|
11985
12067
|
};
|
|
12068
|
+
optionEndIconKey: {
|
|
12069
|
+
type: import("vue").PropType<string>;
|
|
12070
|
+
default: string;
|
|
12071
|
+
};
|
|
12072
|
+
optionEndIconType: {
|
|
12073
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
12074
|
+
default: any;
|
|
12075
|
+
};
|
|
11986
12076
|
valueToCopy: {
|
|
11987
12077
|
type: import("vue").PropType<string>;
|
|
11988
12078
|
default: any;
|
|
@@ -12004,7 +12094,9 @@ declare const _default: {
|
|
|
12004
12094
|
default: any;
|
|
12005
12095
|
};
|
|
12006
12096
|
}>> & {
|
|
12097
|
+
onClear?: () => any;
|
|
12007
12098
|
onApply?: (value: unknown) => any;
|
|
12099
|
+
onSelectAll?: () => any;
|
|
12008
12100
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
12009
12101
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
12010
12102
|
onOpened?: () => any;
|
|
@@ -12018,6 +12110,8 @@ declare const _default: {
|
|
|
12018
12110
|
closed: () => void;
|
|
12019
12111
|
opened: () => void;
|
|
12020
12112
|
apply: (value: unknown) => void;
|
|
12113
|
+
selectAll: () => void;
|
|
12114
|
+
clear: () => void;
|
|
12021
12115
|
}, string, {
|
|
12022
12116
|
theme: string;
|
|
12023
12117
|
disabled: boolean;
|
|
@@ -12056,6 +12150,8 @@ declare const _default: {
|
|
|
12056
12150
|
optionIconKey: string;
|
|
12057
12151
|
optionImageKey: string;
|
|
12058
12152
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
12153
|
+
optionEndIconKey: string;
|
|
12154
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
12059
12155
|
valueToCopy: string;
|
|
12060
12156
|
disabledOptionKey: string;
|
|
12061
12157
|
fullWidth: boolean;
|
|
@@ -12244,6 +12340,14 @@ declare const _default: {
|
|
|
12244
12340
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
12245
12341
|
default: any;
|
|
12246
12342
|
};
|
|
12343
|
+
optionEndIconKey: {
|
|
12344
|
+
type: import("vue").PropType<string>;
|
|
12345
|
+
default: string;
|
|
12346
|
+
};
|
|
12347
|
+
optionEndIconType: {
|
|
12348
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
12349
|
+
default: any;
|
|
12350
|
+
};
|
|
12247
12351
|
valueToCopy: {
|
|
12248
12352
|
type: import("vue").PropType<string>;
|
|
12249
12353
|
default: any;
|
|
@@ -12265,7 +12369,9 @@ declare const _default: {
|
|
|
12265
12369
|
default: any;
|
|
12266
12370
|
};
|
|
12267
12371
|
}>> & {
|
|
12372
|
+
onClear?: () => any;
|
|
12268
12373
|
onApply?: (value: unknown) => any;
|
|
12374
|
+
onSelectAll?: () => any;
|
|
12269
12375
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
12270
12376
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
12271
12377
|
onOpened?: () => any;
|
|
@@ -12440,6 +12546,14 @@ declare const _default: {
|
|
|
12440
12546
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
12441
12547
|
default: any;
|
|
12442
12548
|
};
|
|
12549
|
+
optionEndIconKey: {
|
|
12550
|
+
type: import("vue").PropType<string>;
|
|
12551
|
+
default: string;
|
|
12552
|
+
};
|
|
12553
|
+
optionEndIconType: {
|
|
12554
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
12555
|
+
default: any;
|
|
12556
|
+
};
|
|
12443
12557
|
valueToCopy: {
|
|
12444
12558
|
type: import("vue").PropType<string>;
|
|
12445
12559
|
default: any;
|
|
@@ -12461,7 +12575,9 @@ declare const _default: {
|
|
|
12461
12575
|
default: any;
|
|
12462
12576
|
};
|
|
12463
12577
|
}>> & {
|
|
12578
|
+
onClear?: () => any;
|
|
12464
12579
|
onApply?: (value: unknown) => any;
|
|
12580
|
+
onSelectAll?: () => any;
|
|
12465
12581
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
12466
12582
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
12467
12583
|
onOpened?: () => any;
|
|
@@ -12475,6 +12591,8 @@ declare const _default: {
|
|
|
12475
12591
|
closed: () => void;
|
|
12476
12592
|
opened: () => void;
|
|
12477
12593
|
apply: (value: unknown) => void;
|
|
12594
|
+
selectAll: () => void;
|
|
12595
|
+
clear: () => void;
|
|
12478
12596
|
}, string, {
|
|
12479
12597
|
theme: string;
|
|
12480
12598
|
disabled: boolean;
|
|
@@ -12513,6 +12631,8 @@ declare const _default: {
|
|
|
12513
12631
|
optionIconKey: string;
|
|
12514
12632
|
optionImageKey: string;
|
|
12515
12633
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
12634
|
+
optionEndIconKey: string;
|
|
12635
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
12516
12636
|
valueToCopy: string;
|
|
12517
12637
|
disabledOptionKey: string;
|
|
12518
12638
|
fullWidth: boolean;
|
|
@@ -14748,6 +14868,7 @@ declare const _default: {
|
|
|
14748
14868
|
option: any;
|
|
14749
14869
|
disabled: boolean;
|
|
14750
14870
|
active: boolean;
|
|
14871
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
14751
14872
|
isIndeterminate: boolean;
|
|
14752
14873
|
subtitle: string;
|
|
14753
14874
|
selectAllOption: boolean;
|
|
@@ -14755,6 +14876,7 @@ declare const _default: {
|
|
|
14755
14876
|
imageKey: string;
|
|
14756
14877
|
iconKey: string;
|
|
14757
14878
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
14879
|
+
endIconKey: string;
|
|
14758
14880
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
14759
14881
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
14760
14882
|
option: {
|
|
@@ -14769,6 +14891,10 @@ declare const _default: {
|
|
|
14769
14891
|
type: import("vue").PropType<boolean>;
|
|
14770
14892
|
default: any;
|
|
14771
14893
|
};
|
|
14894
|
+
endIconType: {
|
|
14895
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
14896
|
+
default: string;
|
|
14897
|
+
};
|
|
14772
14898
|
isIndeterminate: {
|
|
14773
14899
|
type: import("vue").PropType<boolean>;
|
|
14774
14900
|
default: boolean;
|
|
@@ -14797,6 +14923,10 @@ declare const _default: {
|
|
|
14797
14923
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
14798
14924
|
default: string;
|
|
14799
14925
|
};
|
|
14926
|
+
endIconKey: {
|
|
14927
|
+
type: import("vue").PropType<string>;
|
|
14928
|
+
default: any;
|
|
14929
|
+
};
|
|
14800
14930
|
toolTipPlacement: {
|
|
14801
14931
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
14802
14932
|
default: string;
|
|
@@ -14804,7 +14934,7 @@ declare const _default: {
|
|
|
14804
14934
|
selectedProp: {
|
|
14805
14935
|
type: import("vue").PropType<boolean>;
|
|
14806
14936
|
};
|
|
14807
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "toolTipPlacement">;
|
|
14937
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
14808
14938
|
$attrs: {
|
|
14809
14939
|
[x: string]: unknown;
|
|
14810
14940
|
};
|
|
@@ -14831,6 +14961,10 @@ declare const _default: {
|
|
|
14831
14961
|
type: import("vue").PropType<boolean>;
|
|
14832
14962
|
default: any;
|
|
14833
14963
|
};
|
|
14964
|
+
endIconType: {
|
|
14965
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
14966
|
+
default: string;
|
|
14967
|
+
};
|
|
14834
14968
|
isIndeterminate: {
|
|
14835
14969
|
type: import("vue").PropType<boolean>;
|
|
14836
14970
|
default: boolean;
|
|
@@ -14859,6 +14993,10 @@ declare const _default: {
|
|
|
14859
14993
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
14860
14994
|
default: string;
|
|
14861
14995
|
};
|
|
14996
|
+
endIconKey: {
|
|
14997
|
+
type: import("vue").PropType<string>;
|
|
14998
|
+
default: any;
|
|
14999
|
+
};
|
|
14862
15000
|
toolTipPlacement: {
|
|
14863
15001
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
14864
15002
|
default: string;
|
|
@@ -14870,6 +15008,7 @@ declare const _default: {
|
|
|
14870
15008
|
option: any;
|
|
14871
15009
|
disabled: boolean;
|
|
14872
15010
|
active: boolean;
|
|
15011
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
14873
15012
|
isIndeterminate: boolean;
|
|
14874
15013
|
subtitle: string;
|
|
14875
15014
|
selectAllOption: boolean;
|
|
@@ -14877,6 +15016,7 @@ declare const _default: {
|
|
|
14877
15016
|
imageKey: string;
|
|
14878
15017
|
iconKey: string;
|
|
14879
15018
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
15019
|
+
endIconKey: string;
|
|
14880
15020
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
14881
15021
|
}, {}, string> & {
|
|
14882
15022
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -14911,6 +15051,10 @@ declare const _default: {
|
|
|
14911
15051
|
type: import("vue").PropType<boolean>;
|
|
14912
15052
|
default: any;
|
|
14913
15053
|
};
|
|
15054
|
+
endIconType: {
|
|
15055
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
15056
|
+
default: string;
|
|
15057
|
+
};
|
|
14914
15058
|
isIndeterminate: {
|
|
14915
15059
|
type: import("vue").PropType<boolean>;
|
|
14916
15060
|
default: boolean;
|
|
@@ -14939,6 +15083,10 @@ declare const _default: {
|
|
|
14939
15083
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
14940
15084
|
default: string;
|
|
14941
15085
|
};
|
|
15086
|
+
endIconKey: {
|
|
15087
|
+
type: import("vue").PropType<string>;
|
|
15088
|
+
default: any;
|
|
15089
|
+
};
|
|
14942
15090
|
toolTipPlacement: {
|
|
14943
15091
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
14944
15092
|
default: string;
|
|
@@ -14963,6 +15111,10 @@ declare const _default: {
|
|
|
14963
15111
|
type: import("vue").PropType<boolean>;
|
|
14964
15112
|
default: any;
|
|
14965
15113
|
};
|
|
15114
|
+
endIconType: {
|
|
15115
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
15116
|
+
default: string;
|
|
15117
|
+
};
|
|
14966
15118
|
isIndeterminate: {
|
|
14967
15119
|
type: import("vue").PropType<boolean>;
|
|
14968
15120
|
default: boolean;
|
|
@@ -14991,6 +15143,10 @@ declare const _default: {
|
|
|
14991
15143
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
14992
15144
|
default: string;
|
|
14993
15145
|
};
|
|
15146
|
+
endIconKey: {
|
|
15147
|
+
type: import("vue").PropType<string>;
|
|
15148
|
+
default: any;
|
|
15149
|
+
};
|
|
14994
15150
|
toolTipPlacement: {
|
|
14995
15151
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
14996
15152
|
default: string;
|
|
@@ -15002,6 +15158,7 @@ declare const _default: {
|
|
|
15002
15158
|
option: any;
|
|
15003
15159
|
disabled: boolean;
|
|
15004
15160
|
active: boolean;
|
|
15161
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
15005
15162
|
isIndeterminate: boolean;
|
|
15006
15163
|
subtitle: string;
|
|
15007
15164
|
selectAllOption: boolean;
|
|
@@ -15009,12 +15166,14 @@ declare const _default: {
|
|
|
15009
15166
|
imageKey: string;
|
|
15010
15167
|
iconKey: string;
|
|
15011
15168
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
15169
|
+
endIconKey: string;
|
|
15012
15170
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
15013
15171
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
15014
15172
|
$slots: {
|
|
15015
15173
|
image?(_: {}): any;
|
|
15016
15174
|
"icon-start"?(_: {}): any;
|
|
15017
15175
|
default?(_: {}): any;
|
|
15176
|
+
"icon-end"?(_: {}): any;
|
|
15018
15177
|
};
|
|
15019
15178
|
})) | import("vue").DefineComponent<{
|
|
15020
15179
|
testId: {
|
|
@@ -15169,6 +15328,8 @@ declare const _default: {
|
|
|
15169
15328
|
optionIconKey: string;
|
|
15170
15329
|
optionImageKey: string;
|
|
15171
15330
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
15331
|
+
optionEndIconKey: string;
|
|
15332
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
15172
15333
|
valueToCopy: string;
|
|
15173
15334
|
disabledOptionKey: string;
|
|
15174
15335
|
fullWidth: boolean;
|
|
@@ -15337,6 +15498,14 @@ declare const _default: {
|
|
|
15337
15498
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
15338
15499
|
default: any;
|
|
15339
15500
|
};
|
|
15501
|
+
optionEndIconKey: {
|
|
15502
|
+
type: import("vue").PropType<string>;
|
|
15503
|
+
default: string;
|
|
15504
|
+
};
|
|
15505
|
+
optionEndIconType: {
|
|
15506
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
15507
|
+
default: any;
|
|
15508
|
+
};
|
|
15340
15509
|
valueToCopy: {
|
|
15341
15510
|
type: import("vue").PropType<string>;
|
|
15342
15511
|
default: any;
|
|
@@ -15358,12 +15527,14 @@ declare const _default: {
|
|
|
15358
15527
|
default: any;
|
|
15359
15528
|
};
|
|
15360
15529
|
}>> & {
|
|
15530
|
+
onClear?: () => any;
|
|
15361
15531
|
onApply?: (value: unknown) => any;
|
|
15532
|
+
onSelectAll?: () => any;
|
|
15362
15533
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
15363
15534
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
15364
15535
|
onOpened?: () => any;
|
|
15365
15536
|
onClosed?: () => any;
|
|
15366
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
|
|
15537
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
|
|
15367
15538
|
$attrs: {
|
|
15368
15539
|
[x: string]: unknown;
|
|
15369
15540
|
};
|
|
@@ -15375,7 +15546,7 @@ declare const _default: {
|
|
|
15375
15546
|
}>;
|
|
15376
15547
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
15377
15548
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
15378
|
-
$emit: ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
15549
|
+
$emit: ((event: "clear") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
15379
15550
|
$el: any;
|
|
15380
15551
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
15381
15552
|
theme: {
|
|
@@ -15540,6 +15711,14 @@ declare const _default: {
|
|
|
15540
15711
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
15541
15712
|
default: any;
|
|
15542
15713
|
};
|
|
15714
|
+
optionEndIconKey: {
|
|
15715
|
+
type: import("vue").PropType<string>;
|
|
15716
|
+
default: string;
|
|
15717
|
+
};
|
|
15718
|
+
optionEndIconType: {
|
|
15719
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
15720
|
+
default: any;
|
|
15721
|
+
};
|
|
15543
15722
|
valueToCopy: {
|
|
15544
15723
|
type: import("vue").PropType<string>;
|
|
15545
15724
|
default: any;
|
|
@@ -15561,7 +15740,9 @@ declare const _default: {
|
|
|
15561
15740
|
default: any;
|
|
15562
15741
|
};
|
|
15563
15742
|
}>> & {
|
|
15743
|
+
onClear?: () => any;
|
|
15564
15744
|
onApply?: (value: unknown) => any;
|
|
15745
|
+
onSelectAll?: () => any;
|
|
15565
15746
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
15566
15747
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
15567
15748
|
onOpened?: () => any;
|
|
@@ -15575,6 +15756,8 @@ declare const _default: {
|
|
|
15575
15756
|
closed: () => void;
|
|
15576
15757
|
opened: () => void;
|
|
15577
15758
|
apply: (value: unknown) => void;
|
|
15759
|
+
selectAll: () => void;
|
|
15760
|
+
clear: () => void;
|
|
15578
15761
|
}, string, {
|
|
15579
15762
|
theme: string;
|
|
15580
15763
|
disabled: boolean;
|
|
@@ -15613,6 +15796,8 @@ declare const _default: {
|
|
|
15613
15796
|
optionIconKey: string;
|
|
15614
15797
|
optionImageKey: string;
|
|
15615
15798
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
15799
|
+
optionEndIconKey: string;
|
|
15800
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
15616
15801
|
valueToCopy: string;
|
|
15617
15802
|
disabledOptionKey: string;
|
|
15618
15803
|
fullWidth: boolean;
|
|
@@ -15801,6 +15986,14 @@ declare const _default: {
|
|
|
15801
15986
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
15802
15987
|
default: any;
|
|
15803
15988
|
};
|
|
15989
|
+
optionEndIconKey: {
|
|
15990
|
+
type: import("vue").PropType<string>;
|
|
15991
|
+
default: string;
|
|
15992
|
+
};
|
|
15993
|
+
optionEndIconType: {
|
|
15994
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
15995
|
+
default: any;
|
|
15996
|
+
};
|
|
15804
15997
|
valueToCopy: {
|
|
15805
15998
|
type: import("vue").PropType<string>;
|
|
15806
15999
|
default: any;
|
|
@@ -15822,7 +16015,9 @@ declare const _default: {
|
|
|
15822
16015
|
default: any;
|
|
15823
16016
|
};
|
|
15824
16017
|
}>> & {
|
|
16018
|
+
onClear?: () => any;
|
|
15825
16019
|
onApply?: (value: unknown) => any;
|
|
16020
|
+
onSelectAll?: () => any;
|
|
15826
16021
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
15827
16022
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
15828
16023
|
onOpened?: () => any;
|
|
@@ -15997,6 +16192,14 @@ declare const _default: {
|
|
|
15997
16192
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
15998
16193
|
default: any;
|
|
15999
16194
|
};
|
|
16195
|
+
optionEndIconKey: {
|
|
16196
|
+
type: import("vue").PropType<string>;
|
|
16197
|
+
default: string;
|
|
16198
|
+
};
|
|
16199
|
+
optionEndIconType: {
|
|
16200
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
16201
|
+
default: any;
|
|
16202
|
+
};
|
|
16000
16203
|
valueToCopy: {
|
|
16001
16204
|
type: import("vue").PropType<string>;
|
|
16002
16205
|
default: any;
|
|
@@ -16018,7 +16221,9 @@ declare const _default: {
|
|
|
16018
16221
|
default: any;
|
|
16019
16222
|
};
|
|
16020
16223
|
}>> & {
|
|
16224
|
+
onClear?: () => any;
|
|
16021
16225
|
onApply?: (value: unknown) => any;
|
|
16226
|
+
onSelectAll?: () => any;
|
|
16022
16227
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
16023
16228
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
16024
16229
|
onOpened?: () => any;
|
|
@@ -16032,6 +16237,8 @@ declare const _default: {
|
|
|
16032
16237
|
closed: () => void;
|
|
16033
16238
|
opened: () => void;
|
|
16034
16239
|
apply: (value: unknown) => void;
|
|
16240
|
+
selectAll: () => void;
|
|
16241
|
+
clear: () => void;
|
|
16035
16242
|
}, string, {
|
|
16036
16243
|
theme: string;
|
|
16037
16244
|
disabled: boolean;
|
|
@@ -16070,6 +16277,8 @@ declare const _default: {
|
|
|
16070
16277
|
optionIconKey: string;
|
|
16071
16278
|
optionImageKey: string;
|
|
16072
16279
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
16280
|
+
optionEndIconKey: string;
|
|
16281
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
16073
16282
|
valueToCopy: string;
|
|
16074
16283
|
disabledOptionKey: string;
|
|
16075
16284
|
fullWidth: boolean;
|
|
@@ -16183,6 +16392,7 @@ declare const _default: {
|
|
|
16183
16392
|
option: any;
|
|
16184
16393
|
disabled: boolean;
|
|
16185
16394
|
active: boolean;
|
|
16395
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
16186
16396
|
isIndeterminate: boolean;
|
|
16187
16397
|
subtitle: string;
|
|
16188
16398
|
selectAllOption: boolean;
|
|
@@ -16190,6 +16400,7 @@ declare const _default: {
|
|
|
16190
16400
|
imageKey: string;
|
|
16191
16401
|
iconKey: string;
|
|
16192
16402
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
16403
|
+
endIconKey: string;
|
|
16193
16404
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
16194
16405
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
16195
16406
|
option: {
|
|
@@ -16204,6 +16415,10 @@ declare const _default: {
|
|
|
16204
16415
|
type: import("vue").PropType<boolean>;
|
|
16205
16416
|
default: any;
|
|
16206
16417
|
};
|
|
16418
|
+
endIconType: {
|
|
16419
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
16420
|
+
default: string;
|
|
16421
|
+
};
|
|
16207
16422
|
isIndeterminate: {
|
|
16208
16423
|
type: import("vue").PropType<boolean>;
|
|
16209
16424
|
default: boolean;
|
|
@@ -16232,6 +16447,10 @@ declare const _default: {
|
|
|
16232
16447
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
16233
16448
|
default: string;
|
|
16234
16449
|
};
|
|
16450
|
+
endIconKey: {
|
|
16451
|
+
type: import("vue").PropType<string>;
|
|
16452
|
+
default: any;
|
|
16453
|
+
};
|
|
16235
16454
|
toolTipPlacement: {
|
|
16236
16455
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
16237
16456
|
default: string;
|
|
@@ -16239,7 +16458,7 @@ declare const _default: {
|
|
|
16239
16458
|
selectedProp: {
|
|
16240
16459
|
type: import("vue").PropType<boolean>;
|
|
16241
16460
|
};
|
|
16242
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "toolTipPlacement">;
|
|
16461
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
16243
16462
|
$attrs: {
|
|
16244
16463
|
[x: string]: unknown;
|
|
16245
16464
|
};
|
|
@@ -16266,6 +16485,10 @@ declare const _default: {
|
|
|
16266
16485
|
type: import("vue").PropType<boolean>;
|
|
16267
16486
|
default: any;
|
|
16268
16487
|
};
|
|
16488
|
+
endIconType: {
|
|
16489
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
16490
|
+
default: string;
|
|
16491
|
+
};
|
|
16269
16492
|
isIndeterminate: {
|
|
16270
16493
|
type: import("vue").PropType<boolean>;
|
|
16271
16494
|
default: boolean;
|
|
@@ -16294,6 +16517,10 @@ declare const _default: {
|
|
|
16294
16517
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
16295
16518
|
default: string;
|
|
16296
16519
|
};
|
|
16520
|
+
endIconKey: {
|
|
16521
|
+
type: import("vue").PropType<string>;
|
|
16522
|
+
default: any;
|
|
16523
|
+
};
|
|
16297
16524
|
toolTipPlacement: {
|
|
16298
16525
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
16299
16526
|
default: string;
|
|
@@ -16305,6 +16532,7 @@ declare const _default: {
|
|
|
16305
16532
|
option: any;
|
|
16306
16533
|
disabled: boolean;
|
|
16307
16534
|
active: boolean;
|
|
16535
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
16308
16536
|
isIndeterminate: boolean;
|
|
16309
16537
|
subtitle: string;
|
|
16310
16538
|
selectAllOption: boolean;
|
|
@@ -16312,6 +16540,7 @@ declare const _default: {
|
|
|
16312
16540
|
imageKey: string;
|
|
16313
16541
|
iconKey: string;
|
|
16314
16542
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
16543
|
+
endIconKey: string;
|
|
16315
16544
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
16316
16545
|
}, {}, string> & {
|
|
16317
16546
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -16346,6 +16575,10 @@ declare const _default: {
|
|
|
16346
16575
|
type: import("vue").PropType<boolean>;
|
|
16347
16576
|
default: any;
|
|
16348
16577
|
};
|
|
16578
|
+
endIconType: {
|
|
16579
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
16580
|
+
default: string;
|
|
16581
|
+
};
|
|
16349
16582
|
isIndeterminate: {
|
|
16350
16583
|
type: import("vue").PropType<boolean>;
|
|
16351
16584
|
default: boolean;
|
|
@@ -16374,6 +16607,10 @@ declare const _default: {
|
|
|
16374
16607
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
16375
16608
|
default: string;
|
|
16376
16609
|
};
|
|
16610
|
+
endIconKey: {
|
|
16611
|
+
type: import("vue").PropType<string>;
|
|
16612
|
+
default: any;
|
|
16613
|
+
};
|
|
16377
16614
|
toolTipPlacement: {
|
|
16378
16615
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
16379
16616
|
default: string;
|
|
@@ -16398,6 +16635,10 @@ declare const _default: {
|
|
|
16398
16635
|
type: import("vue").PropType<boolean>;
|
|
16399
16636
|
default: any;
|
|
16400
16637
|
};
|
|
16638
|
+
endIconType: {
|
|
16639
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
16640
|
+
default: string;
|
|
16641
|
+
};
|
|
16401
16642
|
isIndeterminate: {
|
|
16402
16643
|
type: import("vue").PropType<boolean>;
|
|
16403
16644
|
default: boolean;
|
|
@@ -16426,6 +16667,10 @@ declare const _default: {
|
|
|
16426
16667
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
16427
16668
|
default: string;
|
|
16428
16669
|
};
|
|
16670
|
+
endIconKey: {
|
|
16671
|
+
type: import("vue").PropType<string>;
|
|
16672
|
+
default: any;
|
|
16673
|
+
};
|
|
16429
16674
|
toolTipPlacement: {
|
|
16430
16675
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
16431
16676
|
default: string;
|
|
@@ -16437,6 +16682,7 @@ declare const _default: {
|
|
|
16437
16682
|
option: any;
|
|
16438
16683
|
disabled: boolean;
|
|
16439
16684
|
active: boolean;
|
|
16685
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
16440
16686
|
isIndeterminate: boolean;
|
|
16441
16687
|
subtitle: string;
|
|
16442
16688
|
selectAllOption: boolean;
|
|
@@ -16444,12 +16690,14 @@ declare const _default: {
|
|
|
16444
16690
|
imageKey: string;
|
|
16445
16691
|
iconKey: string;
|
|
16446
16692
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
16693
|
+
endIconKey: string;
|
|
16447
16694
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
16448
16695
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
16449
16696
|
$slots: {
|
|
16450
16697
|
image?(_: {}): any;
|
|
16451
16698
|
"icon-start"?(_: {}): any;
|
|
16452
16699
|
default?(_: {}): any;
|
|
16700
|
+
"icon-end"?(_: {}): any;
|
|
16453
16701
|
};
|
|
16454
16702
|
});
|
|
16455
16703
|
Label: {
|