@ironsource/shared-ui 2.1.12-test.52 → 2.1.12-test.53
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_3da25a36_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_2f916aeb_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_dd60ff0e_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_3d0780bb_lang.css +1 -0
- package/ColumnPicker.vue_vue_type_style_index_0_scoped_ea8c7024_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_bdd6ee48_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_da7631e0_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/DialogFooter.vue_vue_type_style_index_0_scoped_8b7f64fe_lang.css +1 -0
- package/DialogHeader.vue_vue_type_style_index_0_scoped_9a814ec3_lang.css +1 -0
- package/DialogV4.vue_vue_type_style_index_0_scoped_cc99f1e3_lang.css +1 -0
- package/Link.vue_vue_type_style_index_0_scoped_b10e2439_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_3caa1d7b_lang.css +1 -0
- package/OptionChip.vue_vue_type_style_index_0_scoped_538e4a21_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_752a357d_lang.css +1 -0
- package/RadioButton.vue_vue_type_style_index_0_scoped_dac25b9f_lang.css +1 -0
- package/RemoveButton.vue_vue_type_style_index_0_scoped_ca7fc11d_lang.css +1 -0
- package/SortableItem.vue_vue_type_style_index_0_scoped_800cd503_lang.css +1 -0
- package/SortableItemLabel.vue_vue_type_style_index_0_scoped_a534c7af_lang.css +1 -0
- package/SortableList.vue_vue_type_style_index_0_scoped_84dc8525_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_3b7a3661_lang.css +1 -0
- package/TooltipHeader.vue_vue_type_style_index_0_scoped_da3532aa_lang.css +1 -0
- package/TooltipV4.vue_vue_type_style_index_0_scoped_8a451e54_lang.css +1 -0
- package/TooltipV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/components/chart/Chart.vue.d.ts +16 -1
- package/components/chart/Chart.vue.js +4 -4
- package/components/chart/Chart.vue2.js +38 -32
- package/components/chart/ChartHeaderTrend.vue.js +2 -2
- package/components/chart/ChartHeaderTrend.vue2.js +34 -33
- package/components/chart/ChartPlane.vue.d.ts +10 -0
- package/components/chart/ChartPlane.vue.js +4 -4
- package/components/chart/ChartPlane.vue2.js +158 -147
- package/components/chart/ChartStoryArgs.d.ts +17 -0
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +6 -6
- package/components/chart/TooltipHeader.vue.js +3 -3
- package/components/chart/TooltipHeader.vue2.js +25 -26
- package/components/chart/colorPalette.d.ts +2 -1
- package/components/chart/colorPalette.js +47 -33
- package/components/chart/composables/useColorsMap.d.ts +3 -1
- package/components/chart/composables/useColorsMap.js +32 -30
- package/components/chart/consts.d.ts +5 -1
- package/components/chart/consts.js +30 -26
- package/components/chart/index.d.ts +58 -1
- package/components/chart/mockData.d.ts +15 -0
- package/components/chart/types.d.ts +3 -1
- package/components/chart/types.js +5 -5
- package/components/chart/utils/utils.d.ts +1 -1
- package/components/chart/utils/utils.js +18 -13
- package/components/columnPicker/ColumnPicker.vue.d.ts +119 -0
- package/components/columnPicker/ColumnPicker.vue.js +7 -0
- package/components/columnPicker/ColumnPicker.vue2.js +322 -0
- package/components/columnPicker/OptionChip.vue.d.ts +53 -0
- package/components/columnPicker/OptionChip.vue.js +7 -0
- package/components/columnPicker/OptionChip.vue2.js +46 -0
- package/components/columnPicker/RemoveButton.vue.d.ts +38 -0
- package/components/columnPicker/RemoveButton.vue.js +7 -0
- package/components/columnPicker/RemoveButton.vue2.js +35 -0
- package/components/columnPicker/index.d.ts +388 -0
- package/components/columnPicker/index.js +6 -0
- package/components/columnPicker/mockData.d.ts +8 -0
- package/components/dialog/v3/Dialog.vue.d.ts +3 -3
- package/components/dialog/v3/index.d.ts +46 -46
- package/components/dialog/v4/DialogFooter.vue.d.ts +78 -0
- package/components/dialog/v4/DialogFooter.vue.js +7 -0
- package/components/dialog/v4/DialogFooter.vue2.js +60 -0
- package/components/dialog/v4/DialogHeader.vue.d.ts +60 -0
- package/components/dialog/v4/DialogHeader.vue.js +7 -0
- package/components/dialog/v4/DialogHeader.vue2.js +58 -0
- package/components/dialog/v4/DialogV4.vue.d.ts +9 -9
- package/components/dialog/v4/DialogV4.vue.js +3 -3
- package/components/dialog/v4/DialogV4.vue2.js +65 -107
- package/components/dialog/v4/index.d.ts +157 -157
- package/components/dropdown/v3/Dropdown.vue.d.ts +1 -1
- package/components/dropdown/v3/index.d.ts +20 -20
- package/components/dropdown/v4/ConditionalDropdown.vue.js +4 -4
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +176 -171
- package/components/dropdown/v4/OptionV4.vue.d.ts +5 -0
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +83 -70
- package/components/dropdown/v4/index.d.ts +20 -1
- package/components/includeExclude/IncludeExcludeChipFilter.vue.d.ts +1 -1
- package/components/includeExclude/IncludeExcludeOption.vue.d.ts +1 -1
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue.d.ts +1 -1
- package/components/includeExclude/index.d.ts +70 -70
- package/components/input/v4/TextField.vue.d.ts +12 -0
- package/components/input/v4/TextField.vue.js +3 -3
- package/components/input/v4/TextField.vue2.js +129 -105
- package/components/input/v4/index.d.ts +46 -2
- package/components/link/Link.vue.d.ts +20 -0
- package/components/link/Link.vue.js +2 -2
- package/components/link/Link.vue2.js +35 -21
- package/components/link/index.d.ts +77 -1
- 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 +42 -39
- package/components/radioButton/v3/index.d.ts +20 -1
- package/components/sortableList/SortableItem.vue.d.ts +17 -2
- package/components/sortableList/SortableItem.vue.js +3 -3
- package/components/sortableList/SortableItem.vue2.js +86 -70
- package/components/sortableList/SortableItemLabel.vue.js +3 -3
- package/components/sortableList/SortableItemLabel.vue2.js +26 -23
- package/components/sortableList/SortableList.types.d.ts +1 -0
- package/components/sortableList/SortableList.vue.d.ts +10 -0
- package/components/sortableList/SortableList.vue.js +3 -3
- package/components/sortableList/SortableList.vue2.js +104 -96
- package/components/sortableList/composables/useHoverEffect.js +1 -1
- package/components/sortableList/index.d.ts +39 -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 +25 -0
- package/components/tooltip/v4/TooltipV4.vue.d.ts +5 -0
- package/components/tooltip/v4/TooltipV4.vue.js +2 -2
- package/components/tooltip/v4/TooltipV4.vue2.js +18 -17
- package/components/tooltip/v4/index.d.ts +20 -1
- package/index.d.ts +2153 -1419
- package/index.js +99 -95
- package/package.json +5 -1
- package/testids/index.d.ts +7 -1
- package/testids/index.js +26 -25
- package/utils/date.js +3 -3
- package/utils/formatNumbers.d.ts +1 -1
- package/utils/formatNumbers.js +38 -21
- package/Chart.vue_vue_type_style_index_0_scoped_e8f25a03_lang.css +0 -1
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_db8a902c_lang.css +0 -1
- package/ChartPlane.vue_vue_type_style_index_0_scoped_4f67d41d_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_3315b68f_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_f5204c04_lang.css +0 -1
- 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/DialogV4.vue_vue_type_style_index_0_scoped_eb226e31_lang.css +0 -1
- package/Link.vue_vue_type_style_index_0_scoped_ad98fe7b_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_020a9896_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_0287cebf_lang.css +0 -1
- package/RadioButton.vue_vue_type_style_index_0_scoped_3c6b715c_lang.css +0 -1
- package/SortableItem.vue_vue_type_style_index_0_scoped_48542664_lang.css +0 -1
- package/SortableItemLabel.vue_vue_type_style_index_0_scoped_f2ced2f4_lang.css +0 -1
- package/SortableList.vue_vue_type_style_index_0_scoped_8f267f88_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_fce3948c_lang.css +0 -1
- package/TooltipHeader.vue_vue_type_style_index_0_scoped_5160f12d_lang.css +0 -1
- package/TooltipV4.vue_vue_type_style_index_0_scoped_bcb40ed4_lang.css +0 -1
|
@@ -1,8 +1,347 @@
|
|
|
1
1
|
import DataGrid from './DataGrid.vue';
|
|
2
2
|
import DataGridMenu from './DataGridMenu.vue';
|
|
3
3
|
import DataGridRowsCounter from './DataGridRowsCounter.vue';
|
|
4
|
+
import DataGridHeader from './DataGridHeader.vue';
|
|
4
5
|
import MultipleDataGrid from './MultipleDataGrid.vue';
|
|
5
|
-
declare const DataGridTypes: () => (({
|
|
6
|
+
declare const DataGridTypes: () => (import("vue").DefineComponent<{
|
|
7
|
+
placement: {
|
|
8
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
rowIndex: {
|
|
12
|
+
type: import("vue").PropType<number>;
|
|
13
|
+
default: any;
|
|
14
|
+
};
|
|
15
|
+
menuItems: {
|
|
16
|
+
type: import("vue").PropType<import("../common/Table.types").MenuItem[]>;
|
|
17
|
+
required: true;
|
|
18
|
+
default: () => any[];
|
|
19
|
+
};
|
|
20
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
selected: (option: unknown) => void;
|
|
22
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
placement: {
|
|
24
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
rowIndex: {
|
|
28
|
+
type: import("vue").PropType<number>;
|
|
29
|
+
default: any;
|
|
30
|
+
};
|
|
31
|
+
menuItems: {
|
|
32
|
+
type: import("vue").PropType<import("../common/Table.types").MenuItem[]>;
|
|
33
|
+
required: true;
|
|
34
|
+
default: () => any[];
|
|
35
|
+
};
|
|
36
|
+
}>> & {
|
|
37
|
+
onSelected?: (option: unknown) => any;
|
|
38
|
+
}, {
|
|
39
|
+
placement: import("floating-vue").Placement;
|
|
40
|
+
rowIndex: number;
|
|
41
|
+
menuItems: import("../common/Table.types").MenuItem[];
|
|
42
|
+
}> | import("vue").DefineComponent<{
|
|
43
|
+
testId: {
|
|
44
|
+
type: import("vue").PropType<string>;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
count: {
|
|
48
|
+
type: import("vue").PropType<number>;
|
|
49
|
+
default: number;
|
|
50
|
+
};
|
|
51
|
+
totalCount: {
|
|
52
|
+
type: import("vue").PropType<number>;
|
|
53
|
+
default: number;
|
|
54
|
+
};
|
|
55
|
+
displayingText: {
|
|
56
|
+
type: import("vue").PropType<string>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
outOfText: {
|
|
60
|
+
type: import("vue").PropType<string>;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
totalText: {
|
|
64
|
+
type: import("vue").PropType<string>;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
68
|
+
testId: {
|
|
69
|
+
type: import("vue").PropType<string>;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
count: {
|
|
73
|
+
type: import("vue").PropType<number>;
|
|
74
|
+
default: number;
|
|
75
|
+
};
|
|
76
|
+
totalCount: {
|
|
77
|
+
type: import("vue").PropType<number>;
|
|
78
|
+
default: number;
|
|
79
|
+
};
|
|
80
|
+
displayingText: {
|
|
81
|
+
type: import("vue").PropType<string>;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
outOfText: {
|
|
85
|
+
type: import("vue").PropType<string>;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
88
|
+
totalText: {
|
|
89
|
+
type: import("vue").PropType<string>;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
}>>, {
|
|
93
|
+
testId: string;
|
|
94
|
+
count: number;
|
|
95
|
+
totalCount: number;
|
|
96
|
+
displayingText: string;
|
|
97
|
+
outOfText: string;
|
|
98
|
+
totalText: string;
|
|
99
|
+
}> | ({
|
|
100
|
+
new (...args: any[]): {
|
|
101
|
+
$: import("vue").ComponentInternalInstance;
|
|
102
|
+
$data: {};
|
|
103
|
+
$props: Partial<{
|
|
104
|
+
title: string;
|
|
105
|
+
search: string;
|
|
106
|
+
testId: string;
|
|
107
|
+
searchAutoFocus: boolean;
|
|
108
|
+
searchPlaceholder: string;
|
|
109
|
+
showSearch: boolean;
|
|
110
|
+
isSticky: boolean;
|
|
111
|
+
zIndexBase: number;
|
|
112
|
+
standalone: boolean;
|
|
113
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
114
|
+
title: {
|
|
115
|
+
type: import("vue").PropType<string>;
|
|
116
|
+
default: string;
|
|
117
|
+
};
|
|
118
|
+
search: {
|
|
119
|
+
type: import("vue").PropType<string>;
|
|
120
|
+
default: any;
|
|
121
|
+
};
|
|
122
|
+
testId: {
|
|
123
|
+
type: import("vue").PropType<string>;
|
|
124
|
+
default: string;
|
|
125
|
+
};
|
|
126
|
+
searchAutoFocus: {
|
|
127
|
+
type: import("vue").PropType<boolean>;
|
|
128
|
+
default: boolean;
|
|
129
|
+
};
|
|
130
|
+
searchPlaceholder: {
|
|
131
|
+
type: import("vue").PropType<string>;
|
|
132
|
+
default: string;
|
|
133
|
+
};
|
|
134
|
+
showSearch: {
|
|
135
|
+
type: import("vue").PropType<boolean>;
|
|
136
|
+
default: boolean;
|
|
137
|
+
};
|
|
138
|
+
isSticky: {
|
|
139
|
+
type: import("vue").PropType<boolean>;
|
|
140
|
+
default: boolean;
|
|
141
|
+
};
|
|
142
|
+
zIndexBase: {
|
|
143
|
+
type: import("vue").PropType<number>;
|
|
144
|
+
default: number;
|
|
145
|
+
};
|
|
146
|
+
standalone: {
|
|
147
|
+
type: import("vue").PropType<boolean>;
|
|
148
|
+
default: boolean;
|
|
149
|
+
};
|
|
150
|
+
}>> & {
|
|
151
|
+
"onUpdate:search"?: (query: string) => any;
|
|
152
|
+
onOnClearSearch?: () => any;
|
|
153
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "search" | "testId" | "searchAutoFocus" | "searchPlaceholder" | "showSearch" | "isSticky" | "zIndexBase" | "standalone">;
|
|
154
|
+
$attrs: {
|
|
155
|
+
[x: string]: unknown;
|
|
156
|
+
};
|
|
157
|
+
$refs: {
|
|
158
|
+
[x: string]: unknown;
|
|
159
|
+
};
|
|
160
|
+
$slots: Readonly<{
|
|
161
|
+
[name: string]: import("vue").Slot;
|
|
162
|
+
}>;
|
|
163
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
164
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
165
|
+
$emit: ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void);
|
|
166
|
+
$el: any;
|
|
167
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
168
|
+
title: {
|
|
169
|
+
type: import("vue").PropType<string>;
|
|
170
|
+
default: string;
|
|
171
|
+
};
|
|
172
|
+
search: {
|
|
173
|
+
type: import("vue").PropType<string>;
|
|
174
|
+
default: any;
|
|
175
|
+
};
|
|
176
|
+
testId: {
|
|
177
|
+
type: import("vue").PropType<string>;
|
|
178
|
+
default: string;
|
|
179
|
+
};
|
|
180
|
+
searchAutoFocus: {
|
|
181
|
+
type: import("vue").PropType<boolean>;
|
|
182
|
+
default: boolean;
|
|
183
|
+
};
|
|
184
|
+
searchPlaceholder: {
|
|
185
|
+
type: import("vue").PropType<string>;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
showSearch: {
|
|
189
|
+
type: import("vue").PropType<boolean>;
|
|
190
|
+
default: boolean;
|
|
191
|
+
};
|
|
192
|
+
isSticky: {
|
|
193
|
+
type: import("vue").PropType<boolean>;
|
|
194
|
+
default: boolean;
|
|
195
|
+
};
|
|
196
|
+
zIndexBase: {
|
|
197
|
+
type: import("vue").PropType<number>;
|
|
198
|
+
default: number;
|
|
199
|
+
};
|
|
200
|
+
standalone: {
|
|
201
|
+
type: import("vue").PropType<boolean>;
|
|
202
|
+
default: boolean;
|
|
203
|
+
};
|
|
204
|
+
}>> & {
|
|
205
|
+
"onUpdate:search"?: (query: string) => any;
|
|
206
|
+
onOnClearSearch?: () => any;
|
|
207
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
208
|
+
"update:search": (query: string) => void;
|
|
209
|
+
onClearSearch: () => void;
|
|
210
|
+
}, string, {
|
|
211
|
+
title: string;
|
|
212
|
+
search: string;
|
|
213
|
+
testId: string;
|
|
214
|
+
searchAutoFocus: boolean;
|
|
215
|
+
searchPlaceholder: string;
|
|
216
|
+
showSearch: boolean;
|
|
217
|
+
isSticky: boolean;
|
|
218
|
+
zIndexBase: number;
|
|
219
|
+
standalone: boolean;
|
|
220
|
+
}, {}, string> & {
|
|
221
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
222
|
+
created?: (() => void) | (() => void)[];
|
|
223
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
224
|
+
mounted?: (() => void) | (() => void)[];
|
|
225
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
226
|
+
updated?: (() => void) | (() => void)[];
|
|
227
|
+
activated?: (() => void) | (() => void)[];
|
|
228
|
+
deactivated?: (() => void) | (() => void)[];
|
|
229
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
230
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
231
|
+
destroyed?: (() => void) | (() => void)[];
|
|
232
|
+
unmounted?: (() => void) | (() => void)[];
|
|
233
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
234
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
235
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
236
|
+
};
|
|
237
|
+
$forceUpdate: () => void;
|
|
238
|
+
$nextTick: typeof import("vue").nextTick;
|
|
239
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
240
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
241
|
+
title: {
|
|
242
|
+
type: import("vue").PropType<string>;
|
|
243
|
+
default: string;
|
|
244
|
+
};
|
|
245
|
+
search: {
|
|
246
|
+
type: import("vue").PropType<string>;
|
|
247
|
+
default: any;
|
|
248
|
+
};
|
|
249
|
+
testId: {
|
|
250
|
+
type: import("vue").PropType<string>;
|
|
251
|
+
default: string;
|
|
252
|
+
};
|
|
253
|
+
searchAutoFocus: {
|
|
254
|
+
type: import("vue").PropType<boolean>;
|
|
255
|
+
default: boolean;
|
|
256
|
+
};
|
|
257
|
+
searchPlaceholder: {
|
|
258
|
+
type: import("vue").PropType<string>;
|
|
259
|
+
default: string;
|
|
260
|
+
};
|
|
261
|
+
showSearch: {
|
|
262
|
+
type: import("vue").PropType<boolean>;
|
|
263
|
+
default: boolean;
|
|
264
|
+
};
|
|
265
|
+
isSticky: {
|
|
266
|
+
type: import("vue").PropType<boolean>;
|
|
267
|
+
default: boolean;
|
|
268
|
+
};
|
|
269
|
+
zIndexBase: {
|
|
270
|
+
type: import("vue").PropType<number>;
|
|
271
|
+
default: number;
|
|
272
|
+
};
|
|
273
|
+
standalone: {
|
|
274
|
+
type: import("vue").PropType<boolean>;
|
|
275
|
+
default: boolean;
|
|
276
|
+
};
|
|
277
|
+
}>> & {
|
|
278
|
+
"onUpdate:search"?: (query: string) => any;
|
|
279
|
+
onOnClearSearch?: () => any;
|
|
280
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
281
|
+
__isFragment?: never;
|
|
282
|
+
__isTeleport?: never;
|
|
283
|
+
__isSuspense?: never;
|
|
284
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
285
|
+
title: {
|
|
286
|
+
type: import("vue").PropType<string>;
|
|
287
|
+
default: string;
|
|
288
|
+
};
|
|
289
|
+
search: {
|
|
290
|
+
type: import("vue").PropType<string>;
|
|
291
|
+
default: any;
|
|
292
|
+
};
|
|
293
|
+
testId: {
|
|
294
|
+
type: import("vue").PropType<string>;
|
|
295
|
+
default: string;
|
|
296
|
+
};
|
|
297
|
+
searchAutoFocus: {
|
|
298
|
+
type: import("vue").PropType<boolean>;
|
|
299
|
+
default: boolean;
|
|
300
|
+
};
|
|
301
|
+
searchPlaceholder: {
|
|
302
|
+
type: import("vue").PropType<string>;
|
|
303
|
+
default: string;
|
|
304
|
+
};
|
|
305
|
+
showSearch: {
|
|
306
|
+
type: import("vue").PropType<boolean>;
|
|
307
|
+
default: boolean;
|
|
308
|
+
};
|
|
309
|
+
isSticky: {
|
|
310
|
+
type: import("vue").PropType<boolean>;
|
|
311
|
+
default: boolean;
|
|
312
|
+
};
|
|
313
|
+
zIndexBase: {
|
|
314
|
+
type: import("vue").PropType<number>;
|
|
315
|
+
default: number;
|
|
316
|
+
};
|
|
317
|
+
standalone: {
|
|
318
|
+
type: import("vue").PropType<boolean>;
|
|
319
|
+
default: boolean;
|
|
320
|
+
};
|
|
321
|
+
}>> & {
|
|
322
|
+
"onUpdate:search"?: (query: string) => any;
|
|
323
|
+
onOnClearSearch?: () => any;
|
|
324
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
325
|
+
"update:search": (query: string) => void;
|
|
326
|
+
onClearSearch: () => void;
|
|
327
|
+
}, string, {
|
|
328
|
+
title: string;
|
|
329
|
+
search: string;
|
|
330
|
+
testId: string;
|
|
331
|
+
searchAutoFocus: boolean;
|
|
332
|
+
searchPlaceholder: string;
|
|
333
|
+
showSearch: boolean;
|
|
334
|
+
isSticky: boolean;
|
|
335
|
+
zIndexBase: number;
|
|
336
|
+
standalone: boolean;
|
|
337
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
338
|
+
$slots: {
|
|
339
|
+
title?(_: {}): any;
|
|
340
|
+
"table-header-pre-search"?(_: {}): any;
|
|
341
|
+
search?(_: {}): any;
|
|
342
|
+
"table-header-actions"?(_: {}): any;
|
|
343
|
+
};
|
|
344
|
+
})) | ({
|
|
6
345
|
new (...args: any[]): {
|
|
7
346
|
$: import("vue").ComponentInternalInstance;
|
|
8
347
|
$data: {};
|
|
@@ -29,11 +368,11 @@ declare const DataGridTypes: () => (({
|
|
|
29
368
|
defaultScrollPosition: number;
|
|
30
369
|
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
31
370
|
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
32
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
33
371
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
34
|
-
helpTooltipVariant: "icon" | "underline";
|
|
35
372
|
rowCustomClassKey: string;
|
|
36
373
|
rowDataKey: string;
|
|
374
|
+
helpTooltipVariant: "icon" | "underline";
|
|
375
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
37
376
|
isSelectionSticky: boolean;
|
|
38
377
|
isSelectionBordered: boolean;
|
|
39
378
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -133,21 +472,10 @@ declare const DataGridTypes: () => (({
|
|
|
133
472
|
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
134
473
|
default: (row: any, index: any) => any;
|
|
135
474
|
};
|
|
136
|
-
selectedMatcher: {
|
|
137
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
138
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
139
|
-
};
|
|
140
475
|
emptyStateVariant: {
|
|
141
476
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
142
477
|
default: any;
|
|
143
478
|
};
|
|
144
|
-
showTotalsRow: {
|
|
145
|
-
type: import("vue").PropType<boolean>;
|
|
146
|
-
};
|
|
147
|
-
helpTooltipVariant: {
|
|
148
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
149
|
-
default: string;
|
|
150
|
-
};
|
|
151
479
|
rowCustomClassKey: {
|
|
152
480
|
type: import("vue").PropType<string>;
|
|
153
481
|
default: string;
|
|
@@ -156,6 +484,14 @@ declare const DataGridTypes: () => (({
|
|
|
156
484
|
type: import("vue").PropType<string>;
|
|
157
485
|
default: string;
|
|
158
486
|
};
|
|
487
|
+
helpTooltipVariant: {
|
|
488
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
489
|
+
default: string;
|
|
490
|
+
};
|
|
491
|
+
selectedMatcher: {
|
|
492
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
493
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
494
|
+
};
|
|
159
495
|
isSelectionSticky: {
|
|
160
496
|
type: import("vue").PropType<boolean>;
|
|
161
497
|
default: boolean;
|
|
@@ -164,6 +500,9 @@ declare const DataGridTypes: () => (({
|
|
|
164
500
|
type: import("vue").PropType<boolean>;
|
|
165
501
|
default: boolean;
|
|
166
502
|
};
|
|
503
|
+
showTotalsRow: {
|
|
504
|
+
type: import("vue").PropType<boolean>;
|
|
505
|
+
};
|
|
167
506
|
}>> & {
|
|
168
507
|
onSelectAll?: (value: boolean) => any;
|
|
169
508
|
onLoadMore?: () => any;
|
|
@@ -172,10 +511,10 @@ declare const DataGridTypes: () => (({
|
|
|
172
511
|
"onUpdate:sort"?: (newSort: import("../common/Table.types").Sort) => any;
|
|
173
512
|
onSaveRow?: (args_0: import("../common/Table.types").SaveRowEvent) => any;
|
|
174
513
|
onOnClearSearch?: () => any;
|
|
514
|
+
onClickRow?: (rowIndex: number) => any;
|
|
175
515
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
176
516
|
onSelectRow?: (value: boolean) => any;
|
|
177
|
-
|
|
178
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "helpTooltipVariant" | "rowCustomClassKey" | "rowDataKey" | "isSelectionSticky" | "isSelectionBordered">;
|
|
517
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "helpTooltipVariant" | "selectedMatcher" | "isSelectionSticky" | "isSelectionBordered">;
|
|
179
518
|
$attrs: {
|
|
180
519
|
[x: string]: unknown;
|
|
181
520
|
};
|
|
@@ -187,7 +526,7 @@ declare const DataGridTypes: () => (({
|
|
|
187
526
|
}>;
|
|
188
527
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
189
528
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
190
|
-
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: import("../common/Table.types").Sort) => void) & ((event: "saveRow", args_0: import("../common/Table.types").SaveRowEvent) => void) & ((event: "
|
|
529
|
+
$emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: import("../common/Table.types").Sort) => void) & ((event: "saveRow", args_0: import("../common/Table.types").SaveRowEvent) => void) & ((event: "clickRow", rowIndex: number) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void);
|
|
191
530
|
$el: any;
|
|
192
531
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
193
532
|
sort: {
|
|
@@ -286,21 +625,10 @@ declare const DataGridTypes: () => (({
|
|
|
286
625
|
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
287
626
|
default: (row: any, index: any) => any;
|
|
288
627
|
};
|
|
289
|
-
selectedMatcher: {
|
|
290
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
291
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
292
|
-
};
|
|
293
628
|
emptyStateVariant: {
|
|
294
629
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
295
630
|
default: any;
|
|
296
631
|
};
|
|
297
|
-
showTotalsRow: {
|
|
298
|
-
type: import("vue").PropType<boolean>;
|
|
299
|
-
};
|
|
300
|
-
helpTooltipVariant: {
|
|
301
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
302
|
-
default: string;
|
|
303
|
-
};
|
|
304
632
|
rowCustomClassKey: {
|
|
305
633
|
type: import("vue").PropType<string>;
|
|
306
634
|
default: string;
|
|
@@ -309,6 +637,14 @@ declare const DataGridTypes: () => (({
|
|
|
309
637
|
type: import("vue").PropType<string>;
|
|
310
638
|
default: string;
|
|
311
639
|
};
|
|
640
|
+
helpTooltipVariant: {
|
|
641
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
642
|
+
default: string;
|
|
643
|
+
};
|
|
644
|
+
selectedMatcher: {
|
|
645
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
646
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
647
|
+
};
|
|
312
648
|
isSelectionSticky: {
|
|
313
649
|
type: import("vue").PropType<boolean>;
|
|
314
650
|
default: boolean;
|
|
@@ -317,6 +653,9 @@ declare const DataGridTypes: () => (({
|
|
|
317
653
|
type: import("vue").PropType<boolean>;
|
|
318
654
|
default: boolean;
|
|
319
655
|
};
|
|
656
|
+
showTotalsRow: {
|
|
657
|
+
type: import("vue").PropType<boolean>;
|
|
658
|
+
};
|
|
320
659
|
}>> & {
|
|
321
660
|
onSelectAll?: (value: boolean) => any;
|
|
322
661
|
onLoadMore?: () => any;
|
|
@@ -325,9 +664,9 @@ declare const DataGridTypes: () => (({
|
|
|
325
664
|
"onUpdate:sort"?: (newSort: import("../common/Table.types").Sort) => any;
|
|
326
665
|
onSaveRow?: (args_0: import("../common/Table.types").SaveRowEvent) => any;
|
|
327
666
|
onOnClearSearch?: () => any;
|
|
667
|
+
onClickRow?: (rowIndex: number) => any;
|
|
328
668
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
329
669
|
onSelectRow?: (value: boolean) => any;
|
|
330
|
-
onClickRow?: (rowIndex: number) => any;
|
|
331
670
|
}, {
|
|
332
671
|
scrollTo: (index: number) => void;
|
|
333
672
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -364,11 +703,11 @@ declare const DataGridTypes: () => (({
|
|
|
364
703
|
defaultScrollPosition: number;
|
|
365
704
|
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
366
705
|
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
367
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
368
706
|
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
369
|
-
helpTooltipVariant: "icon" | "underline";
|
|
370
707
|
rowCustomClassKey: string;
|
|
371
708
|
rowDataKey: string;
|
|
709
|
+
helpTooltipVariant: "icon" | "underline";
|
|
710
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
372
711
|
isSelectionSticky: boolean;
|
|
373
712
|
isSelectionBordered: boolean;
|
|
374
713
|
}, {}, string> & {
|
|
@@ -488,21 +827,10 @@ declare const DataGridTypes: () => (({
|
|
|
488
827
|
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
489
828
|
default: (row: any, index: any) => any;
|
|
490
829
|
};
|
|
491
|
-
selectedMatcher: {
|
|
492
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
493
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
494
|
-
};
|
|
495
830
|
emptyStateVariant: {
|
|
496
831
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
497
832
|
default: any;
|
|
498
833
|
};
|
|
499
|
-
showTotalsRow: {
|
|
500
|
-
type: import("vue").PropType<boolean>;
|
|
501
|
-
};
|
|
502
|
-
helpTooltipVariant: {
|
|
503
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
504
|
-
default: string;
|
|
505
|
-
};
|
|
506
834
|
rowCustomClassKey: {
|
|
507
835
|
type: import("vue").PropType<string>;
|
|
508
836
|
default: string;
|
|
@@ -511,6 +839,14 @@ declare const DataGridTypes: () => (({
|
|
|
511
839
|
type: import("vue").PropType<string>;
|
|
512
840
|
default: string;
|
|
513
841
|
};
|
|
842
|
+
helpTooltipVariant: {
|
|
843
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
844
|
+
default: string;
|
|
845
|
+
};
|
|
846
|
+
selectedMatcher: {
|
|
847
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
848
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
849
|
+
};
|
|
514
850
|
isSelectionSticky: {
|
|
515
851
|
type: import("vue").PropType<boolean>;
|
|
516
852
|
default: boolean;
|
|
@@ -519,6 +855,9 @@ declare const DataGridTypes: () => (({
|
|
|
519
855
|
type: import("vue").PropType<boolean>;
|
|
520
856
|
default: boolean;
|
|
521
857
|
};
|
|
858
|
+
showTotalsRow: {
|
|
859
|
+
type: import("vue").PropType<boolean>;
|
|
860
|
+
};
|
|
522
861
|
}>> & {
|
|
523
862
|
onSelectAll?: (value: boolean) => any;
|
|
524
863
|
onLoadMore?: () => any;
|
|
@@ -527,9 +866,9 @@ declare const DataGridTypes: () => (({
|
|
|
527
866
|
"onUpdate:sort"?: (newSort: import("../common/Table.types").Sort) => any;
|
|
528
867
|
onSaveRow?: (args_0: import("../common/Table.types").SaveRowEvent) => any;
|
|
529
868
|
onOnClearSearch?: () => any;
|
|
869
|
+
onClickRow?: (rowIndex: number) => any;
|
|
530
870
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
531
871
|
onSelectRow?: (value: boolean) => any;
|
|
532
|
-
onClickRow?: (rowIndex: number) => any;
|
|
533
872
|
} & import("vue").ShallowUnwrapRef<{
|
|
534
873
|
scrollTo: (index: number) => void;
|
|
535
874
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -633,21 +972,10 @@ declare const DataGridTypes: () => (({
|
|
|
633
972
|
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
634
973
|
default: (row: any, index: any) => any;
|
|
635
974
|
};
|
|
636
|
-
selectedMatcher: {
|
|
637
|
-
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
638
|
-
default: (rowId: any, selectedItem: any) => boolean;
|
|
639
|
-
};
|
|
640
975
|
emptyStateVariant: {
|
|
641
976
|
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
642
977
|
default: any;
|
|
643
978
|
};
|
|
644
|
-
showTotalsRow: {
|
|
645
|
-
type: import("vue").PropType<boolean>;
|
|
646
|
-
};
|
|
647
|
-
helpTooltipVariant: {
|
|
648
|
-
type: import("vue").PropType<"icon" | "underline">;
|
|
649
|
-
default: string;
|
|
650
|
-
};
|
|
651
979
|
rowCustomClassKey: {
|
|
652
980
|
type: import("vue").PropType<string>;
|
|
653
981
|
default: string;
|
|
@@ -656,6 +984,14 @@ declare const DataGridTypes: () => (({
|
|
|
656
984
|
type: import("vue").PropType<string>;
|
|
657
985
|
default: string;
|
|
658
986
|
};
|
|
987
|
+
helpTooltipVariant: {
|
|
988
|
+
type: import("vue").PropType<"icon" | "underline">;
|
|
989
|
+
default: string;
|
|
990
|
+
};
|
|
991
|
+
selectedMatcher: {
|
|
992
|
+
type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
|
|
993
|
+
default: (rowId: any, selectedItem: any) => boolean;
|
|
994
|
+
};
|
|
659
995
|
isSelectionSticky: {
|
|
660
996
|
type: import("vue").PropType<boolean>;
|
|
661
997
|
default: boolean;
|
|
@@ -664,6 +1000,9 @@ declare const DataGridTypes: () => (({
|
|
|
664
1000
|
type: import("vue").PropType<boolean>;
|
|
665
1001
|
default: boolean;
|
|
666
1002
|
};
|
|
1003
|
+
showTotalsRow: {
|
|
1004
|
+
type: import("vue").PropType<boolean>;
|
|
1005
|
+
};
|
|
667
1006
|
}>> & {
|
|
668
1007
|
onSelectAll?: (value: boolean) => any;
|
|
669
1008
|
onLoadMore?: () => any;
|
|
@@ -672,9 +1011,9 @@ declare const DataGridTypes: () => (({
|
|
|
672
1011
|
"onUpdate:sort"?: (newSort: import("../common/Table.types").Sort) => any;
|
|
673
1012
|
onSaveRow?: (args_0: import("../common/Table.types").SaveRowEvent) => any;
|
|
674
1013
|
onOnClearSearch?: () => any;
|
|
1014
|
+
onClickRow?: (rowIndex: number) => any;
|
|
675
1015
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
676
1016
|
onSelectRow?: (value: boolean) => any;
|
|
677
|
-
onClickRow?: (rowIndex: number) => any;
|
|
678
1017
|
}, {
|
|
679
1018
|
scrollTo: (index: number) => void;
|
|
680
1019
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -689,160 +1028,67 @@ declare const DataGridTypes: () => (({
|
|
|
689
1028
|
selectRow: (value: boolean) => void;
|
|
690
1029
|
clickRow: (rowIndex: number) => void;
|
|
691
1030
|
}, string, {
|
|
692
|
-
sort: import("../common/Table.types").Sort;
|
|
693
|
-
title: string;
|
|
694
|
-
search: string;
|
|
695
|
-
testId: string;
|
|
696
|
-
isLoading: boolean;
|
|
697
|
-
searchAutoFocus: boolean;
|
|
698
|
-
searchPlaceholder: string;
|
|
699
|
-
selection: unknown[];
|
|
700
|
-
showSearch: boolean;
|
|
701
|
-
loadingRowCount: number;
|
|
702
|
-
emptyStateTitle: string;
|
|
703
|
-
isSticky: boolean;
|
|
704
|
-
zIndexBase: number;
|
|
705
|
-
sections: import("../common/Table.types").Section[];
|
|
706
|
-
isStickyHeader: boolean;
|
|
707
|
-
emptyStateSubtitle: string;
|
|
708
|
-
isInfiniteScroll: boolean;
|
|
709
|
-
infiniteScrollThreshold: number;
|
|
710
|
-
rowHeight: number | ((index: number) => number);
|
|
711
|
-
defaultScrollPosition: number;
|
|
712
|
-
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
713
|
-
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
714
|
-
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
715
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
716
|
-
helpTooltipVariant: "icon" | "underline";
|
|
717
|
-
rowCustomClassKey: string;
|
|
718
|
-
rowDataKey: string;
|
|
719
|
-
isSelectionSticky: boolean;
|
|
720
|
-
isSelectionBordered: boolean;
|
|
721
|
-
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
722
|
-
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
723
|
-
column: import("../common/Table.types").Column;
|
|
724
|
-
}) => any>> & Partial<Record<`after-header-${string}`, (_: {
|
|
725
|
-
column: import("../common/Table.types").Column;
|
|
726
|
-
}) => any>> & Partial<Record<`total-${string}`, (_: {
|
|
727
|
-
column: import("../common/Table.types").Column;
|
|
728
|
-
}) => any>> & Partial<Record<`cell-${string}`, (_: {
|
|
729
|
-
cell: unknown;
|
|
730
|
-
isLoading: boolean;
|
|
731
|
-
cellIndex: number;
|
|
732
|
-
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
733
|
-
rowIndex: number;
|
|
734
|
-
}) => any>> & {
|
|
735
|
-
title?(_: {}): any;
|
|
736
|
-
"table-header-pre-search"?(_: {}): any;
|
|
737
|
-
search?(_: {}): any;
|
|
738
|
-
"table-header-actions"?(_: {}): any;
|
|
739
|
-
"select-all-checkbox"?(_: {}): any;
|
|
740
|
-
loader?(_: {}): any;
|
|
741
|
-
expanded?(_: {
|
|
742
|
-
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
743
|
-
gridColumnTemplate: any;
|
|
744
|
-
}): any;
|
|
745
|
-
"floating-row"?(_: {
|
|
746
|
-
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
747
|
-
rowIndex: number;
|
|
748
|
-
}): any;
|
|
749
|
-
"empty-state"?(_: {}): any;
|
|
750
|
-
footer?(_: {}): any;
|
|
751
|
-
};
|
|
752
|
-
})) | import("vue").DefineComponent<{
|
|
753
|
-
placement: {
|
|
754
|
-
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
755
|
-
default: string;
|
|
756
|
-
};
|
|
757
|
-
rowIndex: {
|
|
758
|
-
type: import("vue").PropType<number>;
|
|
759
|
-
default: any;
|
|
760
|
-
};
|
|
761
|
-
menuItems: {
|
|
762
|
-
type: import("vue").PropType<import("../common/Table.types").MenuItem[]>;
|
|
763
|
-
required: true;
|
|
764
|
-
default: () => any[];
|
|
765
|
-
};
|
|
766
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
767
|
-
selected: (option: unknown) => void;
|
|
768
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
769
|
-
placement: {
|
|
770
|
-
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
771
|
-
default: string;
|
|
772
|
-
};
|
|
773
|
-
rowIndex: {
|
|
774
|
-
type: import("vue").PropType<number>;
|
|
775
|
-
default: any;
|
|
776
|
-
};
|
|
777
|
-
menuItems: {
|
|
778
|
-
type: import("vue").PropType<import("../common/Table.types").MenuItem[]>;
|
|
779
|
-
required: true;
|
|
780
|
-
default: () => any[];
|
|
781
|
-
};
|
|
782
|
-
}>> & {
|
|
783
|
-
onSelected?: (option: unknown) => any;
|
|
784
|
-
}, {
|
|
785
|
-
placement: import("floating-vue").Placement;
|
|
786
|
-
rowIndex: number;
|
|
787
|
-
menuItems: import("../common/Table.types").MenuItem[];
|
|
788
|
-
}> | import("vue").DefineComponent<{
|
|
789
|
-
testId: {
|
|
790
|
-
type: import("vue").PropType<string>;
|
|
791
|
-
default: string;
|
|
792
|
-
};
|
|
793
|
-
count: {
|
|
794
|
-
type: import("vue").PropType<number>;
|
|
795
|
-
default: number;
|
|
796
|
-
};
|
|
797
|
-
totalCount: {
|
|
798
|
-
type: import("vue").PropType<number>;
|
|
799
|
-
default: number;
|
|
800
|
-
};
|
|
801
|
-
displayingText: {
|
|
802
|
-
type: import("vue").PropType<string>;
|
|
803
|
-
default: string;
|
|
804
|
-
};
|
|
805
|
-
outOfText: {
|
|
806
|
-
type: import("vue").PropType<string>;
|
|
807
|
-
default: string;
|
|
808
|
-
};
|
|
809
|
-
totalText: {
|
|
810
|
-
type: import("vue").PropType<string>;
|
|
811
|
-
default: string;
|
|
812
|
-
};
|
|
813
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
814
|
-
testId: {
|
|
815
|
-
type: import("vue").PropType<string>;
|
|
816
|
-
default: string;
|
|
817
|
-
};
|
|
818
|
-
count: {
|
|
819
|
-
type: import("vue").PropType<number>;
|
|
820
|
-
default: number;
|
|
821
|
-
};
|
|
822
|
-
totalCount: {
|
|
823
|
-
type: import("vue").PropType<number>;
|
|
824
|
-
default: number;
|
|
825
|
-
};
|
|
826
|
-
displayingText: {
|
|
827
|
-
type: import("vue").PropType<string>;
|
|
828
|
-
default: string;
|
|
829
|
-
};
|
|
830
|
-
outOfText: {
|
|
831
|
-
type: import("vue").PropType<string>;
|
|
832
|
-
default: string;
|
|
833
|
-
};
|
|
834
|
-
totalText: {
|
|
835
|
-
type: import("vue").PropType<string>;
|
|
836
|
-
default: string;
|
|
837
|
-
};
|
|
838
|
-
}>>, {
|
|
1031
|
+
sort: import("../common/Table.types").Sort;
|
|
1032
|
+
title: string;
|
|
1033
|
+
search: string;
|
|
839
1034
|
testId: string;
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
1035
|
+
isLoading: boolean;
|
|
1036
|
+
searchAutoFocus: boolean;
|
|
1037
|
+
searchPlaceholder: string;
|
|
1038
|
+
selection: unknown[];
|
|
1039
|
+
showSearch: boolean;
|
|
1040
|
+
loadingRowCount: number;
|
|
1041
|
+
emptyStateTitle: string;
|
|
1042
|
+
isSticky: boolean;
|
|
1043
|
+
zIndexBase: number;
|
|
1044
|
+
sections: import("../common/Table.types").Section[];
|
|
1045
|
+
isStickyHeader: boolean;
|
|
1046
|
+
emptyStateSubtitle: string;
|
|
1047
|
+
isInfiniteScroll: boolean;
|
|
1048
|
+
infiniteScrollThreshold: number;
|
|
1049
|
+
rowHeight: number | ((index: number) => number);
|
|
1050
|
+
defaultScrollPosition: number;
|
|
1051
|
+
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
1052
|
+
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
1053
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
1054
|
+
rowCustomClassKey: string;
|
|
1055
|
+
rowDataKey: string;
|
|
1056
|
+
helpTooltipVariant: "icon" | "underline";
|
|
1057
|
+
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
1058
|
+
isSelectionSticky: boolean;
|
|
1059
|
+
isSelectionBordered: boolean;
|
|
1060
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1061
|
+
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
1062
|
+
column: import("../common/Table.types").Column;
|
|
1063
|
+
}) => any>> & Partial<Record<`after-header-${string}`, (_: {
|
|
1064
|
+
column: import("../common/Table.types").Column;
|
|
1065
|
+
}) => any>> & Partial<Record<`total-${string}`, (_: {
|
|
1066
|
+
column: import("../common/Table.types").Column;
|
|
1067
|
+
}) => any>> & Partial<Record<`cell-${string}`, (_: {
|
|
1068
|
+
cell: unknown;
|
|
1069
|
+
isLoading: boolean;
|
|
1070
|
+
cellIndex: number;
|
|
1071
|
+
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
1072
|
+
rowIndex: number;
|
|
1073
|
+
}) => any>> & {
|
|
1074
|
+
title?(_: {}): any;
|
|
1075
|
+
search?(_: {}): any;
|
|
1076
|
+
"table-header-pre-search"?(_: {}): any;
|
|
1077
|
+
"table-header-actions"?(_: {}): any;
|
|
1078
|
+
"select-all-checkbox"?(_: {}): any;
|
|
1079
|
+
loader?(_: {}): any;
|
|
1080
|
+
expanded?(_: {
|
|
1081
|
+
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
1082
|
+
gridColumnTemplate: any;
|
|
1083
|
+
}): any;
|
|
1084
|
+
"floating-row"?(_: {
|
|
1085
|
+
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
1086
|
+
rowIndex: number;
|
|
1087
|
+
}): any;
|
|
1088
|
+
"empty-state"?(_: {}): any;
|
|
1089
|
+
footer?(_: {}): any;
|
|
1090
|
+
};
|
|
1091
|
+
})) | ({
|
|
846
1092
|
new (...args: any[]): {
|
|
847
1093
|
$: import("vue").ComponentInternalInstance;
|
|
848
1094
|
$data: {};
|
|
@@ -858,17 +1104,17 @@ declare const DataGridTypes: () => (({
|
|
|
858
1104
|
isSticky: boolean;
|
|
859
1105
|
zIndexBase: number;
|
|
860
1106
|
emptyStateSubtitle: string;
|
|
861
|
-
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
862
|
-
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
863
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
864
|
-
rowCustomClassKey: string;
|
|
865
|
-
rowDataKey: string;
|
|
866
1107
|
totalCount: number;
|
|
867
1108
|
displayingText: string;
|
|
868
1109
|
outOfText: string;
|
|
869
1110
|
totalText: string;
|
|
870
1111
|
tablesSettings: import("../common/Table.types").TableSettings[];
|
|
871
1112
|
loadingAndEmptyStatesColumns: import("../common/Table.types").Column[];
|
|
1113
|
+
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
1114
|
+
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
1115
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
1116
|
+
rowCustomClassKey: string;
|
|
1117
|
+
rowDataKey: string;
|
|
872
1118
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
873
1119
|
search: {
|
|
874
1120
|
type: import("vue").PropType<string>;
|
|
@@ -914,26 +1160,6 @@ declare const DataGridTypes: () => (({
|
|
|
914
1160
|
type: import("vue").PropType<string>;
|
|
915
1161
|
default: string;
|
|
916
1162
|
};
|
|
917
|
-
getRowId: {
|
|
918
|
-
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => unknown>;
|
|
919
|
-
default: (row: any, index: any) => any;
|
|
920
|
-
};
|
|
921
|
-
getRowKey: {
|
|
922
|
-
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
923
|
-
default: (row: any, index: any) => any;
|
|
924
|
-
};
|
|
925
|
-
emptyStateVariant: {
|
|
926
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
927
|
-
default: any;
|
|
928
|
-
};
|
|
929
|
-
rowCustomClassKey: {
|
|
930
|
-
type: import("vue").PropType<string>;
|
|
931
|
-
default: string;
|
|
932
|
-
};
|
|
933
|
-
rowDataKey: {
|
|
934
|
-
type: import("vue").PropType<string>;
|
|
935
|
-
default: string;
|
|
936
|
-
};
|
|
937
1163
|
totalCount: {
|
|
938
1164
|
type: import("vue").PropType<number>;
|
|
939
1165
|
default: number;
|
|
@@ -960,6 +1186,26 @@ declare const DataGridTypes: () => (({
|
|
|
960
1186
|
required: true;
|
|
961
1187
|
default: () => any[];
|
|
962
1188
|
};
|
|
1189
|
+
getRowId: {
|
|
1190
|
+
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => unknown>;
|
|
1191
|
+
default: (row: any, index: any) => any;
|
|
1192
|
+
};
|
|
1193
|
+
getRowKey: {
|
|
1194
|
+
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
1195
|
+
default: (row: any, index: any) => any;
|
|
1196
|
+
};
|
|
1197
|
+
emptyStateVariant: {
|
|
1198
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
1199
|
+
default: any;
|
|
1200
|
+
};
|
|
1201
|
+
rowCustomClassKey: {
|
|
1202
|
+
type: import("vue").PropType<string>;
|
|
1203
|
+
default: string;
|
|
1204
|
+
};
|
|
1205
|
+
rowDataKey: {
|
|
1206
|
+
type: import("vue").PropType<string>;
|
|
1207
|
+
default: string;
|
|
1208
|
+
};
|
|
963
1209
|
}>> & {
|
|
964
1210
|
"onUpdate:search"?: (query: string) => any;
|
|
965
1211
|
onOnScroll?: (scrollTop: number) => any;
|
|
@@ -968,7 +1214,7 @@ declare const DataGridTypes: () => (({
|
|
|
968
1214
|
}) => any;
|
|
969
1215
|
onOnClearSearch?: () => any;
|
|
970
1216
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
971
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "emptyStateSubtitle" | "
|
|
1217
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase" | "emptyStateSubtitle" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey">;
|
|
972
1218
|
$attrs: {
|
|
973
1219
|
[x: string]: unknown;
|
|
974
1220
|
};
|
|
@@ -1029,26 +1275,6 @@ declare const DataGridTypes: () => (({
|
|
|
1029
1275
|
type: import("vue").PropType<string>;
|
|
1030
1276
|
default: string;
|
|
1031
1277
|
};
|
|
1032
|
-
getRowId: {
|
|
1033
|
-
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => unknown>;
|
|
1034
|
-
default: (row: any, index: any) => any;
|
|
1035
|
-
};
|
|
1036
|
-
getRowKey: {
|
|
1037
|
-
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
1038
|
-
default: (row: any, index: any) => any;
|
|
1039
|
-
};
|
|
1040
|
-
emptyStateVariant: {
|
|
1041
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
1042
|
-
default: any;
|
|
1043
|
-
};
|
|
1044
|
-
rowCustomClassKey: {
|
|
1045
|
-
type: import("vue").PropType<string>;
|
|
1046
|
-
default: string;
|
|
1047
|
-
};
|
|
1048
|
-
rowDataKey: {
|
|
1049
|
-
type: import("vue").PropType<string>;
|
|
1050
|
-
default: string;
|
|
1051
|
-
};
|
|
1052
1278
|
totalCount: {
|
|
1053
1279
|
type: import("vue").PropType<number>;
|
|
1054
1280
|
default: number;
|
|
@@ -1075,6 +1301,26 @@ declare const DataGridTypes: () => (({
|
|
|
1075
1301
|
required: true;
|
|
1076
1302
|
default: () => any[];
|
|
1077
1303
|
};
|
|
1304
|
+
getRowId: {
|
|
1305
|
+
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => unknown>;
|
|
1306
|
+
default: (row: any, index: any) => any;
|
|
1307
|
+
};
|
|
1308
|
+
getRowKey: {
|
|
1309
|
+
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
1310
|
+
default: (row: any, index: any) => any;
|
|
1311
|
+
};
|
|
1312
|
+
emptyStateVariant: {
|
|
1313
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
1314
|
+
default: any;
|
|
1315
|
+
};
|
|
1316
|
+
rowCustomClassKey: {
|
|
1317
|
+
type: import("vue").PropType<string>;
|
|
1318
|
+
default: string;
|
|
1319
|
+
};
|
|
1320
|
+
rowDataKey: {
|
|
1321
|
+
type: import("vue").PropType<string>;
|
|
1322
|
+
default: string;
|
|
1323
|
+
};
|
|
1078
1324
|
}>> & {
|
|
1079
1325
|
"onUpdate:search"?: (query: string) => any;
|
|
1080
1326
|
onOnScroll?: (scrollTop: number) => any;
|
|
@@ -1103,17 +1349,17 @@ declare const DataGridTypes: () => (({
|
|
|
1103
1349
|
isSticky: boolean;
|
|
1104
1350
|
zIndexBase: number;
|
|
1105
1351
|
emptyStateSubtitle: string;
|
|
1106
|
-
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
1107
|
-
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
1108
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
1109
|
-
rowCustomClassKey: string;
|
|
1110
|
-
rowDataKey: string;
|
|
1111
1352
|
totalCount: number;
|
|
1112
1353
|
displayingText: string;
|
|
1113
1354
|
outOfText: string;
|
|
1114
1355
|
totalText: string;
|
|
1115
1356
|
tablesSettings: import("../common/Table.types").TableSettings[];
|
|
1116
1357
|
loadingAndEmptyStatesColumns: import("../common/Table.types").Column[];
|
|
1358
|
+
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
1359
|
+
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
1360
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
1361
|
+
rowCustomClassKey: string;
|
|
1362
|
+
rowDataKey: string;
|
|
1117
1363
|
}, {}, string> & {
|
|
1118
1364
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1119
1365
|
created?: (() => void) | (() => void)[];
|
|
@@ -1179,26 +1425,6 @@ declare const DataGridTypes: () => (({
|
|
|
1179
1425
|
type: import("vue").PropType<string>;
|
|
1180
1426
|
default: string;
|
|
1181
1427
|
};
|
|
1182
|
-
getRowId: {
|
|
1183
|
-
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => unknown>;
|
|
1184
|
-
default: (row: any, index: any) => any;
|
|
1185
|
-
};
|
|
1186
|
-
getRowKey: {
|
|
1187
|
-
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
1188
|
-
default: (row: any, index: any) => any;
|
|
1189
|
-
};
|
|
1190
|
-
emptyStateVariant: {
|
|
1191
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
1192
|
-
default: any;
|
|
1193
|
-
};
|
|
1194
|
-
rowCustomClassKey: {
|
|
1195
|
-
type: import("vue").PropType<string>;
|
|
1196
|
-
default: string;
|
|
1197
|
-
};
|
|
1198
|
-
rowDataKey: {
|
|
1199
|
-
type: import("vue").PropType<string>;
|
|
1200
|
-
default: string;
|
|
1201
|
-
};
|
|
1202
1428
|
totalCount: {
|
|
1203
1429
|
type: import("vue").PropType<number>;
|
|
1204
1430
|
default: number;
|
|
@@ -1225,6 +1451,26 @@ declare const DataGridTypes: () => (({
|
|
|
1225
1451
|
required: true;
|
|
1226
1452
|
default: () => any[];
|
|
1227
1453
|
};
|
|
1454
|
+
getRowId: {
|
|
1455
|
+
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => unknown>;
|
|
1456
|
+
default: (row: any, index: any) => any;
|
|
1457
|
+
};
|
|
1458
|
+
getRowKey: {
|
|
1459
|
+
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
1460
|
+
default: (row: any, index: any) => any;
|
|
1461
|
+
};
|
|
1462
|
+
emptyStateVariant: {
|
|
1463
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
1464
|
+
default: any;
|
|
1465
|
+
};
|
|
1466
|
+
rowCustomClassKey: {
|
|
1467
|
+
type: import("vue").PropType<string>;
|
|
1468
|
+
default: string;
|
|
1469
|
+
};
|
|
1470
|
+
rowDataKey: {
|
|
1471
|
+
type: import("vue").PropType<string>;
|
|
1472
|
+
default: string;
|
|
1473
|
+
};
|
|
1228
1474
|
}>> & {
|
|
1229
1475
|
"onUpdate:search"?: (query: string) => any;
|
|
1230
1476
|
onOnScroll?: (scrollTop: number) => any;
|
|
@@ -1282,26 +1528,6 @@ declare const DataGridTypes: () => (({
|
|
|
1282
1528
|
type: import("vue").PropType<string>;
|
|
1283
1529
|
default: string;
|
|
1284
1530
|
};
|
|
1285
|
-
getRowId: {
|
|
1286
|
-
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => unknown>;
|
|
1287
|
-
default: (row: any, index: any) => any;
|
|
1288
|
-
};
|
|
1289
|
-
getRowKey: {
|
|
1290
|
-
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
1291
|
-
default: (row: any, index: any) => any;
|
|
1292
|
-
};
|
|
1293
|
-
emptyStateVariant: {
|
|
1294
|
-
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
1295
|
-
default: any;
|
|
1296
|
-
};
|
|
1297
|
-
rowCustomClassKey: {
|
|
1298
|
-
type: import("vue").PropType<string>;
|
|
1299
|
-
default: string;
|
|
1300
|
-
};
|
|
1301
|
-
rowDataKey: {
|
|
1302
|
-
type: import("vue").PropType<string>;
|
|
1303
|
-
default: string;
|
|
1304
|
-
};
|
|
1305
1531
|
totalCount: {
|
|
1306
1532
|
type: import("vue").PropType<number>;
|
|
1307
1533
|
default: number;
|
|
@@ -1328,6 +1554,26 @@ declare const DataGridTypes: () => (({
|
|
|
1328
1554
|
required: true;
|
|
1329
1555
|
default: () => any[];
|
|
1330
1556
|
};
|
|
1557
|
+
getRowId: {
|
|
1558
|
+
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => unknown>;
|
|
1559
|
+
default: (row: any, index: any) => any;
|
|
1560
|
+
};
|
|
1561
|
+
getRowKey: {
|
|
1562
|
+
type: import("vue").PropType<(row: import("../common/Table.types").Row, index: number) => string | number>;
|
|
1563
|
+
default: (row: any, index: any) => any;
|
|
1564
|
+
};
|
|
1565
|
+
emptyStateVariant: {
|
|
1566
|
+
type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
|
|
1567
|
+
default: any;
|
|
1568
|
+
};
|
|
1569
|
+
rowCustomClassKey: {
|
|
1570
|
+
type: import("vue").PropType<string>;
|
|
1571
|
+
default: string;
|
|
1572
|
+
};
|
|
1573
|
+
rowDataKey: {
|
|
1574
|
+
type: import("vue").PropType<string>;
|
|
1575
|
+
default: string;
|
|
1576
|
+
};
|
|
1331
1577
|
}>> & {
|
|
1332
1578
|
"onUpdate:search"?: (query: string) => any;
|
|
1333
1579
|
onOnScroll?: (scrollTop: number) => any;
|
|
@@ -1356,17 +1602,17 @@ declare const DataGridTypes: () => (({
|
|
|
1356
1602
|
isSticky: boolean;
|
|
1357
1603
|
zIndexBase: number;
|
|
1358
1604
|
emptyStateSubtitle: string;
|
|
1359
|
-
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
1360
|
-
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
1361
|
-
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
1362
|
-
rowCustomClassKey: string;
|
|
1363
|
-
rowDataKey: string;
|
|
1364
1605
|
totalCount: number;
|
|
1365
1606
|
displayingText: string;
|
|
1366
1607
|
outOfText: string;
|
|
1367
1608
|
totalText: string;
|
|
1368
1609
|
tablesSettings: import("../common/Table.types").TableSettings[];
|
|
1369
1610
|
loadingAndEmptyStatesColumns: import("../common/Table.types").Column[];
|
|
1611
|
+
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
1612
|
+
getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
|
|
1613
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
1614
|
+
rowCustomClassKey: string;
|
|
1615
|
+
rowDataKey: string;
|
|
1370
1616
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1371
1617
|
$slots: Partial<Record<string, (_: {
|
|
1372
1618
|
column: import("../common/Table.types").Column;
|
|
@@ -1381,6 +1627,7 @@ declare const DataGridTypes: () => (({
|
|
|
1381
1627
|
}) => any>> & {
|
|
1382
1628
|
title?(_: {}): any;
|
|
1383
1629
|
search?(_: {}): any;
|
|
1630
|
+
"table-header-pre-search"?(_: {}): any;
|
|
1384
1631
|
"table-header-actions"?(_: {}): any;
|
|
1385
1632
|
"floating-row"?(_: {
|
|
1386
1633
|
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
@@ -1391,4 +1638,4 @@ declare const DataGridTypes: () => (({
|
|
|
1391
1638
|
};
|
|
1392
1639
|
})))[];
|
|
1393
1640
|
export type { Column, Sort, MenuItem, TableSettings, } from '../common/Table.types';
|
|
1394
|
-
export { DataGrid, DataGridMenu, DataGridRowsCounter, DataGridTypes, MultipleDataGrid, };
|
|
1641
|
+
export { DataGrid, DataGridMenu, DataGridRowsCounter, DataGridTypes, MultipleDataGrid, DataGridHeader, };
|