@ironsource/shared-ui 2.2.0-rc.0 → 2.2.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ChartPlane.vue_vue_type_style_index_0_scoped_3c887f7e_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_dc7e6298_lang.css +1 -0
- 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/TooltipHeader.vue_vue_type_style_index_0_scoped_2177211f_lang.css +1 -0
- package/components/chart/ChartPlane.vue.js +3 -3
- package/components/chart/ChartPlane.vue2.js +4 -4
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +19 -16
- package/components/chart/TooltipHeader.vue.js +3 -3
- package/components/chart/TooltipHeader.vue2.js +33 -22
- package/components/chart/utils/utils.d.ts +5 -1
- package/components/chart/utils/utils.js +32 -22
- 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 +18 -0
- package/components/dropdown/v4/DropdownV4.vue.js +4 -4
- package/components/dropdown/v4/DropdownV4.vue2.js +143 -134
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +11 -0
- package/components/dropdown/v4/index.d.ts +119 -2
- package/index.d.ts +238 -4
- package/package.json +1 -1
- package/testids/index.d.ts +2 -1
- package/testids/index.js +5 -5
- package/ChartPlane.vue_vue_type_style_index_0_scoped_a685cf5e_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_9623dbbd_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_64ae80dd_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_d3802d59_lang.css +0 -1
- package/TooltipHeader.vue_vue_type_style_index_0_scoped_da3532aa_lang.css +0 -1
|
@@ -22,6 +22,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
22
22
|
minSelections?: number;
|
|
23
23
|
maxSelections?: number;
|
|
24
24
|
alwaysShowScroll?: boolean;
|
|
25
|
+
inlineError?: boolean;
|
|
26
|
+
inlineErrorText?: string;
|
|
27
|
+
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";
|
|
25
28
|
isOnTop?: boolean;
|
|
26
29
|
distance?: number;
|
|
27
30
|
container?: string;
|
|
@@ -103,6 +106,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
103
106
|
minSelections: number;
|
|
104
107
|
maxSelections: any;
|
|
105
108
|
alwaysShowScroll: boolean;
|
|
109
|
+
inlineError: boolean;
|
|
110
|
+
inlineErrorText: string;
|
|
111
|
+
inlineErrorTextPlacement: string;
|
|
106
112
|
triggerLabel: string;
|
|
107
113
|
triggerHelperText: string;
|
|
108
114
|
triggerFeedbackText: string;
|
|
@@ -176,6 +182,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
176
182
|
minSelections?: number;
|
|
177
183
|
maxSelections?: number;
|
|
178
184
|
alwaysShowScroll?: boolean;
|
|
185
|
+
inlineError?: boolean;
|
|
186
|
+
inlineErrorText?: string;
|
|
187
|
+
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";
|
|
179
188
|
isOnTop?: boolean;
|
|
180
189
|
distance?: number;
|
|
181
190
|
container?: string;
|
|
@@ -257,6 +266,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
257
266
|
minSelections: number;
|
|
258
267
|
maxSelections: any;
|
|
259
268
|
alwaysShowScroll: boolean;
|
|
269
|
+
inlineError: boolean;
|
|
270
|
+
inlineErrorText: string;
|
|
271
|
+
inlineErrorTextPlacement: string;
|
|
260
272
|
triggerLabel: string;
|
|
261
273
|
triggerHelperText: string;
|
|
262
274
|
triggerFeedbackText: string;
|
|
@@ -320,6 +332,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
320
332
|
valueToCopy: string;
|
|
321
333
|
selected: any;
|
|
322
334
|
placeholder: string;
|
|
335
|
+
inlineError: boolean;
|
|
336
|
+
inlineErrorText: string;
|
|
337
|
+
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";
|
|
323
338
|
multi: boolean;
|
|
324
339
|
infiniteLoading: boolean;
|
|
325
340
|
showSelectAll: boolean;
|
|
@@ -406,6 +421,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
406
421
|
size: "small" | "medium" | "large";
|
|
407
422
|
showAllSelectedText: boolean;
|
|
408
423
|
allSelected: boolean;
|
|
424
|
+
inlineError: boolean;
|
|
425
|
+
inlineErrorText: string;
|
|
426
|
+
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";
|
|
409
427
|
onKeydown: (event: any) => void;
|
|
410
428
|
onClick: () => void;
|
|
411
429
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import o from "./DropdownV4.vue2.js";
|
|
2
|
-
/* empty css *//* empty css */import
|
|
3
|
-
// import "../../../DropdownV4.
|
|
2
|
+
/* empty css *//* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../DropdownV4.vue_vue_type_style_index_0_scoped_445ebb01_lang.css"; //*');
|
|
4
4
|
// import "../../../DropdownV4.vue_vue_type_style_index_1_lang.css"; //');
|
|
5
|
-
const
|
|
5
|
+
const r = /* @__PURE__ */ e(o, [["__scopeId", "data-v-445ebb01"]]);
|
|
6
6
|
export {
|
|
7
|
-
|
|
7
|
+
r as default
|
|
8
8
|
};
|