@ironsource/shared-ui 2.1.12 → 2.2.0-rc.1
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/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_3bc0f416_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_445ebb01_lang.css +1 -0
- package/components/dropdown/common/Dropdown.common.js +32 -32
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +15 -0
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +81 -60
- package/components/dropdown/v4/DropdownV4.vue.d.ts +23 -0
- package/components/dropdown/v4/DropdownV4.vue.js +2 -2
- package/components/dropdown/v4/DropdownV4.vue2.js +144 -134
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +11 -0
- package/components/dropdown/v4/index.d.ts +138 -2
- package/index.d.ts +276 -4
- package/index.js +1 -1
- package/package.json +1 -1
- package/testids/index.d.ts +2 -1
- package/testids/index.js +5 -5
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_64ae80dd_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_a594c97e_lang.css +0 -1
|
@@ -25,6 +25,9 @@ declare const DropdownTypes: () => (({
|
|
|
25
25
|
hoverHelpText: string;
|
|
26
26
|
hoverHelpTextPlacement: "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";
|
|
27
27
|
placeholder: string;
|
|
28
|
+
inlineError: boolean;
|
|
29
|
+
inlineErrorText: string;
|
|
30
|
+
inlineErrorTextPlacement: "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";
|
|
28
31
|
feedbackText: string;
|
|
29
32
|
feedbackVariant: "success" | "warning" | "error";
|
|
30
33
|
multi: boolean;
|
|
@@ -90,6 +93,18 @@ declare const DropdownTypes: () => (({
|
|
|
90
93
|
type: import("vue").PropType<string>;
|
|
91
94
|
default: string;
|
|
92
95
|
};
|
|
96
|
+
inlineError: {
|
|
97
|
+
type: import("vue").PropType<boolean>;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
100
|
+
inlineErrorText: {
|
|
101
|
+
type: import("vue").PropType<string>;
|
|
102
|
+
default: string;
|
|
103
|
+
};
|
|
104
|
+
inlineErrorTextPlacement: {
|
|
105
|
+
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">;
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
93
108
|
feedbackText: {
|
|
94
109
|
type: import("vue").PropType<string>;
|
|
95
110
|
default: string;
|
|
@@ -152,7 +167,7 @@ declare const DropdownTypes: () => (({
|
|
|
152
167
|
};
|
|
153
168
|
}>> & {
|
|
154
169
|
onClick?: () => any;
|
|
155
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "allSelected" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
|
|
170
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "allSelected" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
|
|
156
171
|
$attrs: {
|
|
157
172
|
[x: string]: unknown;
|
|
158
173
|
};
|
|
@@ -217,6 +232,18 @@ declare const DropdownTypes: () => (({
|
|
|
217
232
|
type: import("vue").PropType<string>;
|
|
218
233
|
default: string;
|
|
219
234
|
};
|
|
235
|
+
inlineError: {
|
|
236
|
+
type: import("vue").PropType<boolean>;
|
|
237
|
+
default: boolean;
|
|
238
|
+
};
|
|
239
|
+
inlineErrorText: {
|
|
240
|
+
type: import("vue").PropType<string>;
|
|
241
|
+
default: string;
|
|
242
|
+
};
|
|
243
|
+
inlineErrorTextPlacement: {
|
|
244
|
+
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">;
|
|
245
|
+
default: string;
|
|
246
|
+
};
|
|
220
247
|
feedbackText: {
|
|
221
248
|
type: import("vue").PropType<string>;
|
|
222
249
|
default: string;
|
|
@@ -294,6 +321,9 @@ declare const DropdownTypes: () => (({
|
|
|
294
321
|
hoverHelpText: string;
|
|
295
322
|
hoverHelpTextPlacement: "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";
|
|
296
323
|
placeholder: string;
|
|
324
|
+
inlineError: boolean;
|
|
325
|
+
inlineErrorText: string;
|
|
326
|
+
inlineErrorTextPlacement: "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";
|
|
297
327
|
feedbackText: string;
|
|
298
328
|
feedbackVariant: "success" | "warning" | "error";
|
|
299
329
|
multi: boolean;
|
|
@@ -379,6 +409,18 @@ declare const DropdownTypes: () => (({
|
|
|
379
409
|
type: import("vue").PropType<string>;
|
|
380
410
|
default: string;
|
|
381
411
|
};
|
|
412
|
+
inlineError: {
|
|
413
|
+
type: import("vue").PropType<boolean>;
|
|
414
|
+
default: boolean;
|
|
415
|
+
};
|
|
416
|
+
inlineErrorText: {
|
|
417
|
+
type: import("vue").PropType<string>;
|
|
418
|
+
default: string;
|
|
419
|
+
};
|
|
420
|
+
inlineErrorTextPlacement: {
|
|
421
|
+
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">;
|
|
422
|
+
default: string;
|
|
423
|
+
};
|
|
382
424
|
feedbackText: {
|
|
383
425
|
type: import("vue").PropType<string>;
|
|
384
426
|
default: string;
|
|
@@ -496,6 +538,18 @@ declare const DropdownTypes: () => (({
|
|
|
496
538
|
type: import("vue").PropType<string>;
|
|
497
539
|
default: string;
|
|
498
540
|
};
|
|
541
|
+
inlineError: {
|
|
542
|
+
type: import("vue").PropType<boolean>;
|
|
543
|
+
default: boolean;
|
|
544
|
+
};
|
|
545
|
+
inlineErrorText: {
|
|
546
|
+
type: import("vue").PropType<string>;
|
|
547
|
+
default: string;
|
|
548
|
+
};
|
|
549
|
+
inlineErrorTextPlacement: {
|
|
550
|
+
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">;
|
|
551
|
+
default: string;
|
|
552
|
+
};
|
|
499
553
|
feedbackText: {
|
|
500
554
|
type: import("vue").PropType<string>;
|
|
501
555
|
default: string;
|
|
@@ -573,6 +627,9 @@ declare const DropdownTypes: () => (({
|
|
|
573
627
|
hoverHelpText: string;
|
|
574
628
|
hoverHelpTextPlacement: "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";
|
|
575
629
|
placeholder: string;
|
|
630
|
+
inlineError: boolean;
|
|
631
|
+
inlineErrorText: string;
|
|
632
|
+
inlineErrorTextPlacement: "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";
|
|
576
633
|
feedbackText: string;
|
|
577
634
|
feedbackVariant: "success" | "warning" | "error";
|
|
578
635
|
multi: boolean;
|
|
@@ -1816,6 +1873,9 @@ declare const DropdownTypes: () => (({
|
|
|
1816
1873
|
valueToCopy: string;
|
|
1817
1874
|
selected: any;
|
|
1818
1875
|
placeholder: string;
|
|
1876
|
+
inlineError: boolean;
|
|
1877
|
+
inlineErrorText: string;
|
|
1878
|
+
inlineErrorTextPlacement: "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";
|
|
1819
1879
|
multi: boolean;
|
|
1820
1880
|
infiniteLoading: boolean;
|
|
1821
1881
|
showSelectAll: boolean;
|
|
@@ -1856,6 +1916,7 @@ declare const DropdownTypes: () => (({
|
|
|
1856
1916
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1857
1917
|
optionTwoLinesKey: string;
|
|
1858
1918
|
groupedOptions: boolean;
|
|
1919
|
+
resortGroupedOptions: boolean;
|
|
1859
1920
|
comparingKey: string;
|
|
1860
1921
|
customNumberOfDisplayedOptions: number;
|
|
1861
1922
|
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";
|
|
@@ -1936,6 +1997,18 @@ declare const DropdownTypes: () => (({
|
|
|
1936
1997
|
type: import("vue").PropType<string>;
|
|
1937
1998
|
default: string;
|
|
1938
1999
|
};
|
|
2000
|
+
inlineError: {
|
|
2001
|
+
type: import("vue").PropType<boolean>;
|
|
2002
|
+
default: boolean;
|
|
2003
|
+
};
|
|
2004
|
+
inlineErrorText: {
|
|
2005
|
+
type: import("vue").PropType<string>;
|
|
2006
|
+
default: string;
|
|
2007
|
+
};
|
|
2008
|
+
inlineErrorTextPlacement: {
|
|
2009
|
+
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">;
|
|
2010
|
+
default: string;
|
|
2011
|
+
};
|
|
1939
2012
|
multi: {
|
|
1940
2013
|
type: import("vue").PropType<boolean>;
|
|
1941
2014
|
default: boolean;
|
|
@@ -2103,6 +2176,10 @@ declare const DropdownTypes: () => (({
|
|
|
2103
2176
|
type: import("vue").PropType<boolean>;
|
|
2104
2177
|
default: boolean;
|
|
2105
2178
|
};
|
|
2179
|
+
resortGroupedOptions: {
|
|
2180
|
+
type: import("vue").PropType<boolean>;
|
|
2181
|
+
default: boolean;
|
|
2182
|
+
};
|
|
2106
2183
|
comparingKey: {
|
|
2107
2184
|
type: import("vue").PropType<string>;
|
|
2108
2185
|
default: any;
|
|
@@ -2152,7 +2229,7 @@ declare const DropdownTypes: () => (({
|
|
|
2152
2229
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
2153
2230
|
onOpened?: () => any;
|
|
2154
2231
|
onClosed?: () => any;
|
|
2155
|
-
} & 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" | "alwaysShowScroll" | "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">;
|
|
2232
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "valueToCopy" | "selected" | "placeholder" | "inlineError" | "inlineErrorText" | "inlineErrorTextPlacement" | "multi" | "infiniteLoading" | "showSelectAll" | "showClearAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "minSelections" | "maxSelections" | "alwaysShowScroll" | "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" | "resortGroupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "optionTooltipPosition" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
2156
2233
|
$attrs: {
|
|
2157
2234
|
[x: string]: unknown;
|
|
2158
2235
|
};
|
|
@@ -2237,6 +2314,18 @@ declare const DropdownTypes: () => (({
|
|
|
2237
2314
|
type: import("vue").PropType<string>;
|
|
2238
2315
|
default: string;
|
|
2239
2316
|
};
|
|
2317
|
+
inlineError: {
|
|
2318
|
+
type: import("vue").PropType<boolean>;
|
|
2319
|
+
default: boolean;
|
|
2320
|
+
};
|
|
2321
|
+
inlineErrorText: {
|
|
2322
|
+
type: import("vue").PropType<string>;
|
|
2323
|
+
default: string;
|
|
2324
|
+
};
|
|
2325
|
+
inlineErrorTextPlacement: {
|
|
2326
|
+
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">;
|
|
2327
|
+
default: string;
|
|
2328
|
+
};
|
|
2240
2329
|
multi: {
|
|
2241
2330
|
type: import("vue").PropType<boolean>;
|
|
2242
2331
|
default: boolean;
|
|
@@ -2404,6 +2493,10 @@ declare const DropdownTypes: () => (({
|
|
|
2404
2493
|
type: import("vue").PropType<boolean>;
|
|
2405
2494
|
default: boolean;
|
|
2406
2495
|
};
|
|
2496
|
+
resortGroupedOptions: {
|
|
2497
|
+
type: import("vue").PropType<boolean>;
|
|
2498
|
+
default: boolean;
|
|
2499
|
+
};
|
|
2407
2500
|
comparingKey: {
|
|
2408
2501
|
type: import("vue").PropType<string>;
|
|
2409
2502
|
default: any;
|
|
@@ -2485,6 +2578,9 @@ declare const DropdownTypes: () => (({
|
|
|
2485
2578
|
valueToCopy: string;
|
|
2486
2579
|
selected: any;
|
|
2487
2580
|
placeholder: string;
|
|
2581
|
+
inlineError: boolean;
|
|
2582
|
+
inlineErrorText: string;
|
|
2583
|
+
inlineErrorTextPlacement: "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";
|
|
2488
2584
|
multi: boolean;
|
|
2489
2585
|
infiniteLoading: boolean;
|
|
2490
2586
|
showSelectAll: boolean;
|
|
@@ -2525,6 +2621,7 @@ declare const DropdownTypes: () => (({
|
|
|
2525
2621
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
2526
2622
|
optionTwoLinesKey: string;
|
|
2527
2623
|
groupedOptions: boolean;
|
|
2624
|
+
resortGroupedOptions: boolean;
|
|
2528
2625
|
comparingKey: string;
|
|
2529
2626
|
customNumberOfDisplayedOptions: number;
|
|
2530
2627
|
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";
|
|
@@ -2625,6 +2722,18 @@ declare const DropdownTypes: () => (({
|
|
|
2625
2722
|
type: import("vue").PropType<string>;
|
|
2626
2723
|
default: string;
|
|
2627
2724
|
};
|
|
2725
|
+
inlineError: {
|
|
2726
|
+
type: import("vue").PropType<boolean>;
|
|
2727
|
+
default: boolean;
|
|
2728
|
+
};
|
|
2729
|
+
inlineErrorText: {
|
|
2730
|
+
type: import("vue").PropType<string>;
|
|
2731
|
+
default: string;
|
|
2732
|
+
};
|
|
2733
|
+
inlineErrorTextPlacement: {
|
|
2734
|
+
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">;
|
|
2735
|
+
default: string;
|
|
2736
|
+
};
|
|
2628
2737
|
multi: {
|
|
2629
2738
|
type: import("vue").PropType<boolean>;
|
|
2630
2739
|
default: boolean;
|
|
@@ -2792,6 +2901,10 @@ declare const DropdownTypes: () => (({
|
|
|
2792
2901
|
type: import("vue").PropType<boolean>;
|
|
2793
2902
|
default: boolean;
|
|
2794
2903
|
};
|
|
2904
|
+
resortGroupedOptions: {
|
|
2905
|
+
type: import("vue").PropType<boolean>;
|
|
2906
|
+
default: boolean;
|
|
2907
|
+
};
|
|
2795
2908
|
comparingKey: {
|
|
2796
2909
|
type: import("vue").PropType<string>;
|
|
2797
2910
|
default: any;
|
|
@@ -2919,6 +3032,18 @@ declare const DropdownTypes: () => (({
|
|
|
2919
3032
|
type: import("vue").PropType<string>;
|
|
2920
3033
|
default: string;
|
|
2921
3034
|
};
|
|
3035
|
+
inlineError: {
|
|
3036
|
+
type: import("vue").PropType<boolean>;
|
|
3037
|
+
default: boolean;
|
|
3038
|
+
};
|
|
3039
|
+
inlineErrorText: {
|
|
3040
|
+
type: import("vue").PropType<string>;
|
|
3041
|
+
default: string;
|
|
3042
|
+
};
|
|
3043
|
+
inlineErrorTextPlacement: {
|
|
3044
|
+
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">;
|
|
3045
|
+
default: string;
|
|
3046
|
+
};
|
|
2922
3047
|
multi: {
|
|
2923
3048
|
type: import("vue").PropType<boolean>;
|
|
2924
3049
|
default: boolean;
|
|
@@ -3086,6 +3211,10 @@ declare const DropdownTypes: () => (({
|
|
|
3086
3211
|
type: import("vue").PropType<boolean>;
|
|
3087
3212
|
default: boolean;
|
|
3088
3213
|
};
|
|
3214
|
+
resortGroupedOptions: {
|
|
3215
|
+
type: import("vue").PropType<boolean>;
|
|
3216
|
+
default: boolean;
|
|
3217
|
+
};
|
|
3089
3218
|
comparingKey: {
|
|
3090
3219
|
type: import("vue").PropType<string>;
|
|
3091
3220
|
default: any;
|
|
@@ -3167,6 +3296,9 @@ declare const DropdownTypes: () => (({
|
|
|
3167
3296
|
valueToCopy: string;
|
|
3168
3297
|
selected: any;
|
|
3169
3298
|
placeholder: string;
|
|
3299
|
+
inlineError: boolean;
|
|
3300
|
+
inlineErrorText: string;
|
|
3301
|
+
inlineErrorTextPlacement: "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";
|
|
3170
3302
|
multi: boolean;
|
|
3171
3303
|
infiniteLoading: boolean;
|
|
3172
3304
|
showSelectAll: boolean;
|
|
@@ -3207,6 +3339,7 @@ declare const DropdownTypes: () => (({
|
|
|
3207
3339
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
3208
3340
|
optionTwoLinesKey: string;
|
|
3209
3341
|
groupedOptions: boolean;
|
|
3342
|
+
resortGroupedOptions: boolean;
|
|
3210
3343
|
comparingKey: string;
|
|
3211
3344
|
customNumberOfDisplayedOptions: number;
|
|
3212
3345
|
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";
|
|
@@ -3253,6 +3386,9 @@ declare const DropdownTypes: () => (({
|
|
|
3253
3386
|
size: "small" | "medium" | "large";
|
|
3254
3387
|
showAllSelectedText: boolean;
|
|
3255
3388
|
allSelected: boolean;
|
|
3389
|
+
inlineError: boolean;
|
|
3390
|
+
inlineErrorText: string;
|
|
3391
|
+
inlineErrorTextPlacement: "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";
|
|
3256
3392
|
onKeydown: (event: any) => void;
|
|
3257
3393
|
onClick: () => void;
|
|
3258
3394
|
};
|