@ironsource/shared-ui 2.1.8-test.1 → 2.1.9-test.0
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/Chart.vue_vue_type_style_index_0_scoped_ea1e5c3e_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_4c37736e_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_c0f71a49_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_119e4bc3_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/GroupOption.vue_vue_type_style_index_0_scoped_5f372a81_lang.css +1 -0
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_9b6cd9d9_lang.css +1 -0
- package/Typography.vue_vue_type_style_index_0_scoped_992962bc_lang.css +1 -0
- package/components/chart/Chart.vue.d.ts +5 -0
- package/components/chart/Chart.vue.js +4 -4
- package/components/chart/Chart.vue2.js +51 -49
- package/components/chart/ChartHeader.vue.d.ts +5 -0
- package/components/chart/ChartHeader.vue.js +2 -2
- package/components/chart/ChartHeader.vue2.js +35 -22
- package/components/chart/ChartLegend.vue.js +3 -3
- package/components/chart/ChartLegend.vue2.js +35 -28
- package/components/chart/SettingsHeader.vue.js +3 -3
- package/components/chart/SettingsHeader.vue2.js +33 -26
- package/components/chart/index.d.ts +20 -1
- package/components/dropdown/common/Dropdown.common.d.ts +1 -0
- package/components/dropdown/common/Dropdown.common.js +207 -178
- package/components/dropdown/common/consts.d.ts +1 -0
- package/components/dropdown/common/consts.js +4 -0
- package/components/dropdown/common/useGroupedOptions.d.ts +10 -0
- package/components/dropdown/common/useGroupedOptions.js +57 -0
- package/components/dropdown/v4/DropdownV4.vue.d.ts +12 -0
- package/components/dropdown/v4/DropdownV4.vue.js +4 -4
- package/components/dropdown/v4/DropdownV4.vue2.js +184 -162
- package/components/dropdown/v4/GroupOption.vue.d.ts +9 -0
- package/components/dropdown/v4/GroupOption.vue.js +7 -0
- package/components/dropdown/v4/GroupOption.vue2.js +29 -0
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +8 -0
- package/components/dropdown/v4/index.d.ts +45 -1
- package/components/typography/v4/Typography.vue.js +2 -2
- package/components/typography/v4/Typography.vue2.js +1 -1
- package/index.d.ts +90 -3
- package/index.js +111 -116
- package/mocks/apps.d.ts +7 -0
- package/package.json +1 -1
- package/utils/formatNumbers.js +7 -15
- package/Chart.vue_vue_type_style_index_0_scoped_df85e0af_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_2e3de9c5_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_00ccab6b_lang.css +0 -1
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_1791e4fe_lang.css +0 -1
- package/Typography.vue_vue_type_style_index_0_scoped_b00956b7_lang.css +0 -1
|
@@ -47,12 +47,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
47
47
|
disabledOptionKey?: string;
|
|
48
48
|
optionTwoLinesVariant?: "horizontal" | "vertical";
|
|
49
49
|
optionTwoLinesKey?: string;
|
|
50
|
+
groupedOptions?: boolean;
|
|
50
51
|
theme?: string;
|
|
51
52
|
fullWidth?: boolean;
|
|
52
53
|
optionsListWidth?: string;
|
|
53
54
|
statusType?: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
54
55
|
disableVirtualScroll?: boolean;
|
|
55
56
|
overrideOptionCountCalculation?: (option: unknown) => number;
|
|
57
|
+
withConditions: boolean;
|
|
56
58
|
}>, {
|
|
57
59
|
multi: boolean;
|
|
58
60
|
inlineSearchPlaceholder: string;
|
|
@@ -99,11 +101,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
99
101
|
disabledOptionKey: string;
|
|
100
102
|
optionTwoLinesVariant: any;
|
|
101
103
|
optionTwoLinesKey: any;
|
|
104
|
+
groupedOptions: boolean;
|
|
102
105
|
fullWidth: boolean;
|
|
103
106
|
optionsListWidth: any;
|
|
104
107
|
statusType: any;
|
|
105
108
|
disableVirtualScroll: boolean;
|
|
106
109
|
overrideOptionCountCalculation: any;
|
|
110
|
+
withConditions: boolean;
|
|
107
111
|
}>, {
|
|
108
112
|
selectItem: (option: any, index?: number) => void;
|
|
109
113
|
scrollTo: (index: number) => void;
|
|
@@ -165,12 +169,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
165
169
|
disabledOptionKey?: string;
|
|
166
170
|
optionTwoLinesVariant?: "horizontal" | "vertical";
|
|
167
171
|
optionTwoLinesKey?: string;
|
|
172
|
+
groupedOptions?: boolean;
|
|
168
173
|
theme?: string;
|
|
169
174
|
fullWidth?: boolean;
|
|
170
175
|
optionsListWidth?: string;
|
|
171
176
|
statusType?: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
172
177
|
disableVirtualScroll?: boolean;
|
|
173
178
|
overrideOptionCountCalculation?: (option: unknown) => number;
|
|
179
|
+
withConditions: boolean;
|
|
174
180
|
}>, {
|
|
175
181
|
multi: boolean;
|
|
176
182
|
inlineSearchPlaceholder: string;
|
|
@@ -217,11 +223,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
217
223
|
disabledOptionKey: string;
|
|
218
224
|
optionTwoLinesVariant: any;
|
|
219
225
|
optionTwoLinesKey: any;
|
|
226
|
+
groupedOptions: boolean;
|
|
220
227
|
fullWidth: boolean;
|
|
221
228
|
optionsListWidth: any;
|
|
222
229
|
statusType: any;
|
|
223
230
|
disableVirtualScroll: boolean;
|
|
224
231
|
overrideOptionCountCalculation: any;
|
|
232
|
+
withConditions: boolean;
|
|
225
233
|
}>>> & {
|
|
226
234
|
onCopyToClipboard?: () => any;
|
|
227
235
|
onClear?: () => any;
|
|
@@ -277,11 +285,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
277
285
|
disabledOptionKey: string;
|
|
278
286
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
279
287
|
optionTwoLinesKey: string;
|
|
288
|
+
groupedOptions: boolean;
|
|
280
289
|
fullWidth: boolean;
|
|
281
290
|
optionsListWidth: string;
|
|
282
291
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
283
292
|
disableVirtualScroll: boolean;
|
|
284
293
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
294
|
+
withConditions: boolean;
|
|
285
295
|
}>, {
|
|
286
296
|
label?(_: {}): any;
|
|
287
297
|
"dropdown-trigger"?(_: {
|
|
@@ -318,10 +328,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
318
328
|
onClick: () => void;
|
|
319
329
|
};
|
|
320
330
|
}): any;
|
|
331
|
+
"dropdown-conditions"?(_: {}): any;
|
|
321
332
|
"inline-search"?(_: {}): any;
|
|
322
333
|
"input-list"?(_: {
|
|
323
334
|
open: true;
|
|
324
335
|
}): any;
|
|
336
|
+
"group-option"?(_: {}): any;
|
|
325
337
|
default?(_: {
|
|
326
338
|
option: unknown;
|
|
327
339
|
index: number;
|
|
@@ -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_119e4bc3_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-119e4bc3"]]);
|
|
6
6
|
export {
|
|
7
|
-
|
|
7
|
+
r as default
|
|
8
8
|
};
|