@ironsource/shared-ui 2.1.12-rc.31 → 2.1.12-rc.32
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/DataGrid.vue_vue_type_style_index_0_scoped_36ec94a7_lang.css +1 -0
- package/DataGridHeader.vue_vue_type_style_index_0_scoped_840e700c_lang.css +1 -0
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_e38c881a_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_3caa1d7b_lang.css +1 -0
- package/RadioButton.vue_vue_type_style_index_0_scoped_1da367f8_lang.css +1 -0
- package/TooltipHeader.vue_vue_type_style_index_0_scoped_5160f12d_lang.css +1 -0
- package/components/chart/TooltipHeader.vue.js +2 -2
- package/components/chart/TooltipHeader.vue2.js +21 -20
- package/components/chart/utils/utils.js +14 -13
- package/components/dateRange/common/DateRange.common.js +60 -60
- package/components/radioButton/v3/RadioButton.vue.d.ts +5 -0
- package/components/radioButton/v3/RadioButton.vue.js +3 -3
- package/components/radioButton/v3/RadioButton.vue2.js +32 -31
- package/components/radioButton/v3/index.d.ts +20 -1
- package/components/table/v4/DataGrid.vue.d.ts +4 -4
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +237 -245
- package/components/table/v4/DataGridHeader.vue.d.ts +85 -0
- package/components/table/v4/DataGridHeader.vue.js +7 -0
- package/components/table/v4/DataGridHeader.vue2.js +82 -0
- package/components/table/v4/DataGridRowsCounter.vue.js +3 -3
- package/components/table/v4/DataGridRowsCounter.vue2.js +12 -12
- package/components/table/v4/MultipleDataGrid.vue.d.ts +6 -5
- package/components/table/v4/MultipleDataGrid.vue.js +2 -2
- package/components/table/v4/MultipleDataGrid.vue2.js +91 -90
- package/components/table/v4/index.d.ts +552 -305
- package/components/table/v4/index.js +7 -4
- package/components/table/v4/storyUtils.d.ts +8 -0
- package/index.d.ts +1578 -1085
- package/index.js +1 -1
- package/package.json +1 -1
- package/utils/date.d.ts +1 -0
- package/utils/date.js +9 -0
- package/utils/formatNumbers.d.ts +1 -1
- package/utils/formatNumbers.js +38 -21
- package/DataGrid.vue_vue_type_style_index_0_scoped_8e8df067_lang.css +0 -1
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_ef699ec5_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_020a9896_lang.css +0 -1
- package/RadioButton.vue_vue_type_style_index_0_scoped_3c6b715c_lang.css +0 -1
- package/TooltipHeader.vue_vue_type_style_index_0_scoped_3b15c693_lang.css +0 -1
|
@@ -11,6 +11,7 @@ declare const RadioButtonTypes: () => (({
|
|
|
11
11
|
modelValue: string;
|
|
12
12
|
helperText: string;
|
|
13
13
|
errorText: string;
|
|
14
|
+
disabledButton: boolean;
|
|
14
15
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
15
16
|
name: {
|
|
16
17
|
type: import("vue").PropType<string>;
|
|
@@ -37,10 +38,14 @@ declare const RadioButtonTypes: () => (({
|
|
|
37
38
|
type: import("vue").PropType<string>;
|
|
38
39
|
default: string;
|
|
39
40
|
};
|
|
41
|
+
disabledButton: {
|
|
42
|
+
type: import("vue").PropType<boolean>;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
40
45
|
}>> & {
|
|
41
46
|
onChange?: (...args: any[]) => any;
|
|
42
47
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
43
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "label" | "testId" | "modelValue" | "helperText" | "errorText">;
|
|
48
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "label" | "testId" | "modelValue" | "helperText" | "errorText" | "disabledButton">;
|
|
44
49
|
$attrs: {
|
|
45
50
|
[x: string]: unknown;
|
|
46
51
|
};
|
|
@@ -80,6 +85,10 @@ declare const RadioButtonTypes: () => (({
|
|
|
80
85
|
type: import("vue").PropType<string>;
|
|
81
86
|
default: string;
|
|
82
87
|
};
|
|
88
|
+
disabledButton: {
|
|
89
|
+
type: import("vue").PropType<boolean>;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
83
92
|
}>> & {
|
|
84
93
|
onChange?: (...args: any[]) => any;
|
|
85
94
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
@@ -93,6 +102,7 @@ declare const RadioButtonTypes: () => (({
|
|
|
93
102
|
modelValue: string;
|
|
94
103
|
helperText: string;
|
|
95
104
|
errorText: string;
|
|
105
|
+
disabledButton: boolean;
|
|
96
106
|
}, {}, string> & {
|
|
97
107
|
beforeCreate?: (() => void) | (() => void)[];
|
|
98
108
|
created?: (() => void) | (() => void)[];
|
|
@@ -139,6 +149,10 @@ declare const RadioButtonTypes: () => (({
|
|
|
139
149
|
type: import("vue").PropType<string>;
|
|
140
150
|
default: string;
|
|
141
151
|
};
|
|
152
|
+
disabledButton: {
|
|
153
|
+
type: import("vue").PropType<boolean>;
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
142
156
|
}>> & {
|
|
143
157
|
onChange?: (...args: any[]) => any;
|
|
144
158
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
@@ -172,6 +186,10 @@ declare const RadioButtonTypes: () => (({
|
|
|
172
186
|
type: import("vue").PropType<string>;
|
|
173
187
|
default: string;
|
|
174
188
|
};
|
|
189
|
+
disabledButton: {
|
|
190
|
+
type: import("vue").PropType<boolean>;
|
|
191
|
+
default: boolean;
|
|
192
|
+
};
|
|
175
193
|
}>> & {
|
|
176
194
|
onChange?: (...args: any[]) => any;
|
|
177
195
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
@@ -185,6 +203,7 @@ declare const RadioButtonTypes: () => (({
|
|
|
185
203
|
modelValue: string;
|
|
186
204
|
helperText: string;
|
|
187
205
|
errorText: string;
|
|
206
|
+
disabledButton: boolean;
|
|
188
207
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
189
208
|
$slots: {
|
|
190
209
|
default?(_: {}): any;
|
|
@@ -146,9 +146,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
146
146
|
"onUpdate:sort"?: (newSort: Sort) => any;
|
|
147
147
|
onSaveRow?: (args_0: SaveRowEvent) => any;
|
|
148
148
|
onOnClearSearch?: () => any;
|
|
149
|
+
onClickRow?: (rowIndex: number) => any;
|
|
149
150
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
150
151
|
onSelectRow?: (value: boolean) => any;
|
|
151
|
-
onClickRow?: (rowIndex: number) => any;
|
|
152
152
|
}, {
|
|
153
153
|
sort: Sort;
|
|
154
154
|
title: string;
|
|
@@ -172,11 +172,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
172
172
|
defaultScrollPosition: number;
|
|
173
173
|
getRowId: (row: Row, index: number) => unknown;
|
|
174
174
|
getRowKey: (row: Row, index: number) => string | number;
|
|
175
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
176
175
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
177
|
-
helpTooltipVariant: "icon" | "underline";
|
|
178
176
|
rowCustomClassKey: string;
|
|
179
177
|
rowDataKey: string;
|
|
178
|
+
helpTooltipVariant: "icon" | "underline";
|
|
179
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
180
180
|
isSelectionSticky: boolean;
|
|
181
181
|
isSelectionBordered: boolean;
|
|
182
182
|
}>, Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
@@ -193,8 +193,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
193
193
|
rowIndex: number;
|
|
194
194
|
}) => any>> & {
|
|
195
195
|
title?(_: {}): any;
|
|
196
|
-
"table-header-pre-search"?(_: {}): any;
|
|
197
196
|
search?(_: {}): any;
|
|
197
|
+
"table-header-pre-search"?(_: {}): any;
|
|
198
198
|
"table-header-actions"?(_: {}): any;
|
|
199
199
|
"select-all-checkbox"?(_: {}): any;
|
|
200
200
|
loader?(_: {}): any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./DataGrid.vue2.js";
|
|
2
2
|
/* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../../DataGrid.
|
|
4
|
-
const
|
|
3
|
+
// import "../../../DataGrid.vue_vue_type_style_index_0_scoped_36ec94a7_lang.css"; //*');
|
|
4
|
+
const s = /* @__PURE__ */ e(o, [["__scopeId", "data-v-36ec94a7"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
s as default
|
|
7
7
|
};
|