@ironsource/shared-ui 2.1.12-test.53 → 2.1.12-test.54
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_060d02be_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_d90c583e_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_ca558859_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_9c4df598_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_a685cf5e_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_9623dbbd_lang.css +1 -0
- package/ColumnConfigurator.vue_vue_type_style_index_0_scoped_702ad52e_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8cc86a27_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_6db25923_lang.css +1 -0
- package/DataGridContainer.vue_vue_type_style_index_0_scoped_9a30b10c_lang.css +1 -0
- package/DataGridHeader.vue_vue_type_style_index_0_scoped_0e826456_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_2d66b7b6_lang.css +1 -0
- package/EmptyStateV4.vue_vue_type_style_index_0_scoped_76757f22_lang.css +1 -0
- package/Link.vue_vue_type_style_index_0_scoped_1a766750_lang.css +1 -0
- package/LoaderBars.vue_vue_type_style_index_0_scoped_d976ec65_lang.css +1 -0
- package/SectionDropdown.vue_vue_type_style_index_0_scoped_cfad60a8_lang.css +1 -0
- package/SectionHeaderText.vue_vue_type_style_index_0_scoped_0b8d3d79_lang.css +1 -0
- package/{SettingsHeader.vue_vue_type_style_index_0_scoped_01f78cd7_lang.css → SettingsHeader.vue_vue_type_style_index_0_scoped_a869d327_lang.css} +1 -1
- package/ShowMoreLink.vue_vue_type_style_index_0_scoped_9fc3bc1b_lang.css +1 -0
- package/SortableItem.vue_vue_type_style_index_0_scoped_c72be7ed_lang.css +1 -0
- package/SortableList.vue_vue_type_style_index_0_scoped_9aec4e9b_lang.css +1 -0
- package/SortableSelectableList.vue_vue_type_style_index_0_scoped_40b0a4de_lang.css +1 -0
- package/TagsField.vue_vue_type_style_index_0_scoped_9760426b_lang.css +1 -0
- package/TagsFieldChip.vue_vue_type_style_index_0_scoped_d186b7ef_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_63dc057e_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 +122 -112
- package/components/chart/ChartHeader.vue.d.ts +5 -0
- package/components/chart/ChartHeader.vue.js +3 -3
- package/components/chart/ChartHeader.vue2.js +49 -44
- package/components/chart/ChartHeaderTrend.vue.d.ts +5 -0
- package/components/chart/ChartHeaderTrend.vue.js +2 -2
- package/components/chart/ChartHeaderTrend.vue2.js +42 -39
- package/components/chart/ChartLegend.vue.d.ts +5 -0
- package/components/chart/ChartLegend.vue.js +3 -3
- package/components/chart/ChartLegend.vue2.js +76 -71
- package/components/chart/ChartPlane.vue.d.ts +5 -0
- package/components/chart/ChartPlane.vue.js +3 -3
- package/components/chart/ChartPlane.vue2.js +125 -119
- package/components/chart/ChartTooltip.vue.d.ts +5 -0
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +38 -34
- package/components/chart/LegendSorting.vue.d.ts +5 -0
- package/components/chart/LegendSorting.vue.js +16 -14
- package/components/chart/SettingsHeader.vue.d.ts +19 -3
- package/components/chart/SettingsHeader.vue.js +3 -3
- package/components/chart/SettingsHeader.vue2.js +36 -29
- package/components/chart/index.d.ts +20 -1
- package/components/columnConfigurator/ColumnConfigurator.types.d.ts +12 -0
- package/components/columnConfigurator/ColumnConfigurator.vue.d.ts +61 -0
- package/components/columnConfigurator/ColumnConfigurator.vue.js +7 -0
- package/components/columnConfigurator/ColumnConfigurator.vue2.js +113 -0
- package/components/columnConfigurator/SectionDropdown.vue.d.ts +39 -0
- package/components/columnConfigurator/SectionDropdown.vue.js +7 -0
- package/components/columnConfigurator/SectionDropdown.vue2.js +57 -0
- package/components/columnConfigurator/SectionHeaderText.vue.d.ts +34 -0
- package/components/columnConfigurator/SectionHeaderText.vue.js +7 -0
- package/components/columnConfigurator/SectionHeaderText.vue2.js +22 -0
- package/components/columnConfigurator/ShowMoreLink.vue.d.ts +33 -0
- package/components/columnConfigurator/ShowMoreLink.vue.js +7 -0
- package/components/columnConfigurator/ShowMoreLink.vue2.js +41 -0
- package/components/columnConfigurator/consts.d.ts +1 -0
- package/components/columnConfigurator/consts.js +4 -0
- package/components/columnConfigurator/index.d.ts +73 -0
- package/components/columnConfigurator/index.js +6 -0
- package/components/columnConfigurator/mockData.d.ts +30 -0
- package/components/columnConfigurator/utils.d.ts +2 -0
- package/components/columnConfigurator/utils.js +18 -0
- package/components/columnPicker/ColumnPicker.vue.d.ts +1 -1
- package/components/columnPicker/index.d.ts +20 -20
- package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +99 -97
- package/components/dropdown/v4/DropdownV4.vue.d.ts +2 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +89 -82
- package/components/dropdown/v4/TreeDropdown.vue.d.ts +10 -0
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +155 -151
- package/components/dropdown/v4/index.d.ts +41 -1
- package/components/emptyState/v4/EmptyStateV4.vue.d.ts +5 -0
- package/components/emptyState/v4/EmptyStateV4.vue.js +2 -2
- package/components/emptyState/v4/EmptyStateV4.vue2.js +37 -34
- package/components/emptyState/v4/index.d.ts +20 -1
- package/components/link/Link.vue.d.ts +5 -0
- package/components/link/Link.vue.js +3 -3
- package/components/link/Link.vue2.js +36 -28
- package/components/link/index.d.ts +20 -1
- package/components/sortableList/LoaderBars.vue.d.ts +34 -0
- package/components/sortableList/LoaderBars.vue.js +7 -0
- package/components/sortableList/LoaderBars.vue2.js +25 -0
- package/components/sortableList/SortableItem.vue.js +4 -4
- package/components/sortableList/SortableItem.vue2.js +3 -3
- package/components/sortableList/SortableList.vue.d.ts +2 -2
- package/components/sortableList/SortableList.vue.js +5 -5
- package/components/sortableList/SortableList.vue2.js +96 -106
- package/components/sortableList/SortableSelectableList.vue.d.ts +107 -0
- package/components/sortableList/SortableSelectableList.vue.js +7 -0
- package/components/sortableList/SortableSelectableList.vue2.js +128 -0
- package/components/sortableList/composables/useDraggableHelpers.d.ts +5 -0
- package/components/sortableList/composables/useDraggableHelpers.js +20 -0
- package/components/sortableList/consts.d.ts +2 -0
- package/components/sortableList/consts.js +4 -2
- package/components/sortableList/index.d.ts +39 -39
- package/components/table/common/consts.d.ts +2 -0
- package/components/table/common/consts.js +6 -4
- package/components/table/v4/DataGrid.vue.d.ts +4 -3
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +363 -335
- package/components/table/v4/DataGridContainer.vue.d.ts +10 -0
- package/components/table/v4/DataGridContainer.vue.js +7 -0
- package/components/table/v4/DataGridContainer.vue2.js +19 -0
- package/components/table/v4/DataGridHeader.vue.d.ts +1 -1
- package/components/table/v4/DataGridHeader.vue.js +2 -2
- package/components/table/v4/DataGridHeader.vue2.js +30 -28
- package/components/table/v4/MultipleDataGrid.vue.d.ts +2 -2
- package/components/table/v4/index.d.ts +104 -103
- package/components/tagsField/TagsField.types.d.ts +4 -0
- package/components/tagsField/TagsField.vue.d.ts +65 -0
- package/components/tagsField/TagsField.vue.js +7 -0
- package/components/tagsField/TagsField.vue2.js +90 -0
- package/components/tagsField/TagsFieldChip.vue.d.ts +45 -0
- package/components/tagsField/TagsFieldChip.vue.js +7 -0
- package/components/tagsField/TagsFieldChip.vue2.js +81 -0
- package/components/tagsField/consts.d.ts +1 -0
- package/components/tagsField/consts.js +4 -0
- package/components/tagsField/index.d.ts +75 -0
- package/components/tagsField/index.js +6 -0
- package/index.d.ts +410 -288
- package/index.js +87 -79
- package/package.json +10 -1
- package/testids/index.d.ts +36 -0
- package/testids/index.js +37 -31
- package/utils/object.d.ts +2 -0
- package/utils/object.js +9 -5
- package/utils/search.js +1 -1
- package/Chart.vue_vue_type_style_index_0_scoped_3da25a36_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_af520313_lang.css +0 -1
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_2f916aeb_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_6103d8bd_lang.css +0 -1
- package/ChartPlane.vue_vue_type_style_index_0_scoped_dd60ff0e_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_3d0780bb_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_bdd6ee48_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_da7631e0_lang.css +0 -1
- package/DataGridHeader.vue_vue_type_style_index_0_scoped_840e700c_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_55dd36a7_lang.css +0 -1
- package/EmptyStateV4.vue_vue_type_style_index_0_scoped_18728498_lang.css +0 -1
- package/Link.vue_vue_type_style_index_0_scoped_b10e2439_lang.css +0 -1
- package/SortableItem.vue_vue_type_style_index_0_scoped_800cd503_lang.css +0 -1
- package/SortableList.vue_vue_type_style_index_0_scoped_84dc8525_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_4ba9e4bd_lang.css +0 -1
|
@@ -15,13 +15,13 @@ declare const SortableListTypes: () => ({
|
|
|
15
15
|
childListMaxHeight: string;
|
|
16
16
|
searchHandler: (item: import("./SortableList.types").SortableListItem, searchQuery: string) => boolean;
|
|
17
17
|
draggableArea: "handle" | "full";
|
|
18
|
+
loadingRowCount: number;
|
|
18
19
|
openId: string | number;
|
|
20
|
+
zIndexBase: number;
|
|
19
21
|
selectedId: string | number;
|
|
20
22
|
showSearch: boolean;
|
|
21
|
-
loadingRowCount: number;
|
|
22
23
|
emptyStateTitle: string;
|
|
23
24
|
isSticky: boolean;
|
|
24
|
-
zIndexBase: number;
|
|
25
25
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
26
26
|
search: {
|
|
27
27
|
type: import("vue").PropType<string>;
|
|
@@ -69,10 +69,18 @@ declare const SortableListTypes: () => ({
|
|
|
69
69
|
type: import("vue").PropType<"handle" | "full">;
|
|
70
70
|
default: string;
|
|
71
71
|
};
|
|
72
|
+
loadingRowCount: {
|
|
73
|
+
type: import("vue").PropType<number>;
|
|
74
|
+
default: number;
|
|
75
|
+
};
|
|
72
76
|
openId: {
|
|
73
77
|
type: import("vue").PropType<string | number>;
|
|
74
78
|
default: any;
|
|
75
79
|
};
|
|
80
|
+
zIndexBase: {
|
|
81
|
+
type: import("vue").PropType<number>;
|
|
82
|
+
default: number;
|
|
83
|
+
};
|
|
76
84
|
selectedId: {
|
|
77
85
|
type: import("vue").PropType<string | number>;
|
|
78
86
|
default: any;
|
|
@@ -81,10 +89,6 @@ declare const SortableListTypes: () => ({
|
|
|
81
89
|
type: import("vue").PropType<boolean>;
|
|
82
90
|
default: boolean;
|
|
83
91
|
};
|
|
84
|
-
loadingRowCount: {
|
|
85
|
-
type: import("vue").PropType<number>;
|
|
86
|
-
default: number;
|
|
87
|
-
};
|
|
88
92
|
emptyStateTitle: {
|
|
89
93
|
type: import("vue").PropType<string>;
|
|
90
94
|
default: string;
|
|
@@ -93,10 +97,6 @@ declare const SortableListTypes: () => ({
|
|
|
93
97
|
type: import("vue").PropType<boolean>;
|
|
94
98
|
default: boolean;
|
|
95
99
|
};
|
|
96
|
-
zIndexBase: {
|
|
97
|
-
type: import("vue").PropType<number>;
|
|
98
|
-
default: number;
|
|
99
|
-
};
|
|
100
100
|
}>> & {
|
|
101
101
|
onClearSearch?: () => any;
|
|
102
102
|
onSortableItemDragged?: (event: {
|
|
@@ -108,7 +108,7 @@ declare const SortableListTypes: () => ({
|
|
|
108
108
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
109
109
|
"onUpdate:selectedChildId"?: (id: string | number) => any;
|
|
110
110
|
"onUpdate:search"?: (query: string) => any;
|
|
111
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "variant" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "childListMaxHeight" | "searchHandler" | "draggableArea" | "
|
|
111
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "variant" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "childListMaxHeight" | "searchHandler" | "draggableArea" | "loadingRowCount" | "openId" | "zIndexBase" | "selectedId" | "showSearch" | "emptyStateTitle" | "isSticky">;
|
|
112
112
|
$attrs: {
|
|
113
113
|
[x: string]: unknown;
|
|
114
114
|
};
|
|
@@ -172,10 +172,18 @@ declare const SortableListTypes: () => ({
|
|
|
172
172
|
type: import("vue").PropType<"handle" | "full">;
|
|
173
173
|
default: string;
|
|
174
174
|
};
|
|
175
|
+
loadingRowCount: {
|
|
176
|
+
type: import("vue").PropType<number>;
|
|
177
|
+
default: number;
|
|
178
|
+
};
|
|
175
179
|
openId: {
|
|
176
180
|
type: import("vue").PropType<string | number>;
|
|
177
181
|
default: any;
|
|
178
182
|
};
|
|
183
|
+
zIndexBase: {
|
|
184
|
+
type: import("vue").PropType<number>;
|
|
185
|
+
default: number;
|
|
186
|
+
};
|
|
179
187
|
selectedId: {
|
|
180
188
|
type: import("vue").PropType<string | number>;
|
|
181
189
|
default: any;
|
|
@@ -184,10 +192,6 @@ declare const SortableListTypes: () => ({
|
|
|
184
192
|
type: import("vue").PropType<boolean>;
|
|
185
193
|
default: boolean;
|
|
186
194
|
};
|
|
187
|
-
loadingRowCount: {
|
|
188
|
-
type: import("vue").PropType<number>;
|
|
189
|
-
default: number;
|
|
190
|
-
};
|
|
191
195
|
emptyStateTitle: {
|
|
192
196
|
type: import("vue").PropType<string>;
|
|
193
197
|
default: string;
|
|
@@ -196,10 +200,6 @@ declare const SortableListTypes: () => ({
|
|
|
196
200
|
type: import("vue").PropType<boolean>;
|
|
197
201
|
default: boolean;
|
|
198
202
|
};
|
|
199
|
-
zIndexBase: {
|
|
200
|
-
type: import("vue").PropType<number>;
|
|
201
|
-
default: number;
|
|
202
|
-
};
|
|
203
203
|
}>> & {
|
|
204
204
|
onClearSearch?: () => any;
|
|
205
205
|
onSortableItemDragged?: (event: {
|
|
@@ -234,13 +234,13 @@ declare const SortableListTypes: () => ({
|
|
|
234
234
|
childListMaxHeight: string;
|
|
235
235
|
searchHandler: (item: import("./SortableList.types").SortableListItem, searchQuery: string) => boolean;
|
|
236
236
|
draggableArea: "handle" | "full";
|
|
237
|
+
loadingRowCount: number;
|
|
237
238
|
openId: string | number;
|
|
239
|
+
zIndexBase: number;
|
|
238
240
|
selectedId: string | number;
|
|
239
241
|
showSearch: boolean;
|
|
240
|
-
loadingRowCount: number;
|
|
241
242
|
emptyStateTitle: string;
|
|
242
243
|
isSticky: boolean;
|
|
243
|
-
zIndexBase: number;
|
|
244
244
|
}, {}, string> & {
|
|
245
245
|
beforeCreate?: (() => void) | (() => void)[];
|
|
246
246
|
created?: (() => void) | (() => void)[];
|
|
@@ -308,10 +308,18 @@ declare const SortableListTypes: () => ({
|
|
|
308
308
|
type: import("vue").PropType<"handle" | "full">;
|
|
309
309
|
default: string;
|
|
310
310
|
};
|
|
311
|
+
loadingRowCount: {
|
|
312
|
+
type: import("vue").PropType<number>;
|
|
313
|
+
default: number;
|
|
314
|
+
};
|
|
311
315
|
openId: {
|
|
312
316
|
type: import("vue").PropType<string | number>;
|
|
313
317
|
default: any;
|
|
314
318
|
};
|
|
319
|
+
zIndexBase: {
|
|
320
|
+
type: import("vue").PropType<number>;
|
|
321
|
+
default: number;
|
|
322
|
+
};
|
|
315
323
|
selectedId: {
|
|
316
324
|
type: import("vue").PropType<string | number>;
|
|
317
325
|
default: any;
|
|
@@ -320,10 +328,6 @@ declare const SortableListTypes: () => ({
|
|
|
320
328
|
type: import("vue").PropType<boolean>;
|
|
321
329
|
default: boolean;
|
|
322
330
|
};
|
|
323
|
-
loadingRowCount: {
|
|
324
|
-
type: import("vue").PropType<number>;
|
|
325
|
-
default: number;
|
|
326
|
-
};
|
|
327
331
|
emptyStateTitle: {
|
|
328
332
|
type: import("vue").PropType<string>;
|
|
329
333
|
default: string;
|
|
@@ -332,10 +336,6 @@ declare const SortableListTypes: () => ({
|
|
|
332
336
|
type: import("vue").PropType<boolean>;
|
|
333
337
|
default: boolean;
|
|
334
338
|
};
|
|
335
|
-
zIndexBase: {
|
|
336
|
-
type: import("vue").PropType<number>;
|
|
337
|
-
default: number;
|
|
338
|
-
};
|
|
339
339
|
}>> & {
|
|
340
340
|
onClearSearch?: () => any;
|
|
341
341
|
onSortableItemDragged?: (event: {
|
|
@@ -398,10 +398,18 @@ declare const SortableListTypes: () => ({
|
|
|
398
398
|
type: import("vue").PropType<"handle" | "full">;
|
|
399
399
|
default: string;
|
|
400
400
|
};
|
|
401
|
+
loadingRowCount: {
|
|
402
|
+
type: import("vue").PropType<number>;
|
|
403
|
+
default: number;
|
|
404
|
+
};
|
|
401
405
|
openId: {
|
|
402
406
|
type: import("vue").PropType<string | number>;
|
|
403
407
|
default: any;
|
|
404
408
|
};
|
|
409
|
+
zIndexBase: {
|
|
410
|
+
type: import("vue").PropType<number>;
|
|
411
|
+
default: number;
|
|
412
|
+
};
|
|
405
413
|
selectedId: {
|
|
406
414
|
type: import("vue").PropType<string | number>;
|
|
407
415
|
default: any;
|
|
@@ -410,10 +418,6 @@ declare const SortableListTypes: () => ({
|
|
|
410
418
|
type: import("vue").PropType<boolean>;
|
|
411
419
|
default: boolean;
|
|
412
420
|
};
|
|
413
|
-
loadingRowCount: {
|
|
414
|
-
type: import("vue").PropType<number>;
|
|
415
|
-
default: number;
|
|
416
|
-
};
|
|
417
421
|
emptyStateTitle: {
|
|
418
422
|
type: import("vue").PropType<string>;
|
|
419
423
|
default: string;
|
|
@@ -422,10 +426,6 @@ declare const SortableListTypes: () => ({
|
|
|
422
426
|
type: import("vue").PropType<boolean>;
|
|
423
427
|
default: boolean;
|
|
424
428
|
};
|
|
425
|
-
zIndexBase: {
|
|
426
|
-
type: import("vue").PropType<number>;
|
|
427
|
-
default: number;
|
|
428
|
-
};
|
|
429
429
|
}>> & {
|
|
430
430
|
onClearSearch?: () => any;
|
|
431
431
|
onSortableItemDragged?: (event: {
|
|
@@ -460,13 +460,13 @@ declare const SortableListTypes: () => ({
|
|
|
460
460
|
childListMaxHeight: string;
|
|
461
461
|
searchHandler: (item: import("./SortableList.types").SortableListItem, searchQuery: string) => boolean;
|
|
462
462
|
draggableArea: "handle" | "full";
|
|
463
|
+
loadingRowCount: number;
|
|
463
464
|
openId: string | number;
|
|
465
|
+
zIndexBase: number;
|
|
464
466
|
selectedId: string | number;
|
|
465
467
|
showSearch: boolean;
|
|
466
|
-
loadingRowCount: number;
|
|
467
468
|
emptyStateTitle: string;
|
|
468
469
|
isSticky: boolean;
|
|
469
|
-
zIndexBase: number;
|
|
470
470
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
471
471
|
$slots: {
|
|
472
472
|
header?(_: {}): any;
|
|
@@ -3,3 +3,5 @@ export declare const EXPAND_COL_WIDTH = 46;
|
|
|
3
3
|
export declare const CHECKBOX_COL_WIDTH = 46;
|
|
4
4
|
export declare const CHECKBOX_STICKY_COL_WIDTH = 57;
|
|
5
5
|
export declare const DEFAULT_ROW_HEIGHT = 48;
|
|
6
|
+
export declare const HEADER_ROW_HEIGHT = 40;
|
|
7
|
+
export declare const DATA_GRID_HEADER_HEIGHT = 63;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
const _ = "__CHECKBOX_COLUMN_ID__",
|
|
1
|
+
const _ = "__CHECKBOX_COLUMN_ID__", H = 46, C = 46, E = 57, D = 48, O = 40, I = 63;
|
|
2
2
|
export {
|
|
3
3
|
_ as CHECKBOX_COLUMN_ID,
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
C as CHECKBOX_COL_WIDTH,
|
|
5
|
+
E as CHECKBOX_STICKY_COL_WIDTH,
|
|
6
|
+
I as DATA_GRID_HEADER_HEIGHT,
|
|
6
7
|
D as DEFAULT_ROW_HEIGHT,
|
|
7
|
-
|
|
8
|
+
H as EXPAND_COL_WIDTH,
|
|
9
|
+
O as HEADER_ROW_HEIGHT
|
|
8
10
|
};
|
|
@@ -141,13 +141,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
141
141
|
}>>> & {
|
|
142
142
|
onSelectAll?: (value: boolean) => any;
|
|
143
143
|
onLoadMore?: () => any;
|
|
144
|
+
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
144
145
|
"onUpdate:search"?: (query: string) => any;
|
|
145
146
|
onOnScroll?: (event: Event) => any;
|
|
146
147
|
"onUpdate:sort"?: (newSort: Sort) => any;
|
|
147
148
|
onSaveRow?: (args_0: SaveRowEvent) => any;
|
|
148
149
|
onOnClearSearch?: () => any;
|
|
149
150
|
onClickRow?: (rowIndex: number) => any;
|
|
150
|
-
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
151
151
|
onSelectRow?: (value: boolean) => any;
|
|
152
152
|
}, {
|
|
153
153
|
sort: Sort;
|
|
@@ -158,11 +158,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
158
158
|
searchAutoFocus: boolean;
|
|
159
159
|
searchPlaceholder: string;
|
|
160
160
|
selection: unknown[];
|
|
161
|
-
showSearch: boolean;
|
|
162
161
|
loadingRowCount: number;
|
|
162
|
+
zIndexBase: number;
|
|
163
|
+
showSearch: boolean;
|
|
163
164
|
emptyStateTitle: string;
|
|
164
165
|
isSticky: boolean;
|
|
165
|
-
zIndexBase: number;
|
|
166
166
|
sections: Section[];
|
|
167
167
|
isStickyHeader: boolean;
|
|
168
168
|
emptyStateSubtitle: string;
|
|
@@ -208,6 +208,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
208
208
|
}): any;
|
|
209
209
|
"empty-state"?(_: {}): any;
|
|
210
210
|
footer?(_: {}): any;
|
|
211
|
+
"side-panel"?(_: {}): any;
|
|
211
212
|
}>;
|
|
212
213
|
export default _default;
|
|
213
214
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./DataGrid.vue2.js";
|
|
2
|
-
/* empty css */import
|
|
3
|
-
// import "../../../DataGrid.
|
|
4
|
-
const
|
|
2
|
+
/* empty css */import _ from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../DataGrid.vue_vue_type_style_index_0_scoped_6db25923_lang.css"; //*');
|
|
4
|
+
const a = /* @__PURE__ */ _(o, [["__scopeId", "data-v-6db25923"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
a as default
|
|
7
7
|
};
|