@ironsource/shared-ui 2.1.7-test.1 → 2.1.7-test.10
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/Autocomplete.vue_vue_type_style_index_0_scoped_e361f9fd_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_f06a4764_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_88d4532f_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +1 -0
- package/ChartLoader.vue_vue_type_style_index_0_scoped_142c444a_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_ec636f18_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_706b324e_lang.css +1 -0
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_0ce71f73_lang.css +1 -0
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_98819e5a_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_00ccab6b_lang.css +1 -0
- package/EditableV4.vue_vue_type_style_index_0_scoped_e0c047b4_lang.css +1 -0
- package/FieldMaxLength.vue_vue_type_style_index_0_scoped_47877984_lang.css +1 -0
- package/IconV4.vue_vue_type_style_index_0_scoped_dc433d48_lang.css +1 -0
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_cc2adbf5_lang.css +1 -0
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_bd6145ce_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_82ba0e12_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_77509f61_lang.css +1 -0
- package/Popover.vue_vue_type_style_index_0_scoped_c607b770_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_0_scoped_c54cd089_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_1_lang.css +1 -0
- package/README.md +1 -1
- package/SortableItem.vue_vue_type_style_index_0_scoped_9dd4d372_lang.css +1 -0
- package/SortableItemLabel.vue_vue_type_style_index_0_scoped_1386ae20_lang.css +1 -0
- package/SortableList.vue_vue_type_style_index_0_scoped_e9cd63b8_lang.css +1 -0
- package/TabsV4.vue_vue_type_style_index_0_scoped_f9433b11_lang.css +1 -0
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_4114ef89_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_4d9bf5b2_lang.css +1 -0
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_66bd448a_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_dbd80d49_lang.css +1 -0
- package/components/ThemeWrapper/ThemeWrapper.vue.js +2 -2
- package/components/ThemeWrapper/ThemeWrapper.vue2.js +5 -5
- package/components/appHeader/AppHeader.vue.d.ts +1 -1
- package/components/appHeader/index.d.ts +9 -9
- package/components/autocomplete/Autocomplete.vue.d.ts +5 -0
- package/components/autocomplete/Autocomplete.vue.js +2 -2
- package/components/autocomplete/Autocomplete.vue2.js +57 -45
- package/components/autocomplete/index.d.ts +20 -1
- package/components/chart/Chart.vue.js +7 -0
- package/components/chart/Chart.vue2.js +281 -0
- package/components/chart/ChartHeader.vue.js +7 -0
- package/components/chart/ChartHeader.vue2.js +51 -0
- package/components/chart/ChartLegend.vue.js +7 -0
- package/components/chart/ChartLegend.vue2.js +65 -0
- package/components/chart/ChartLoader.vue.js +25 -0
- package/components/chart/ChartLoader.vue2.js +0 -0
- package/components/chart/ChartTooltip.vue.js +7 -0
- package/components/chart/ChartTooltip.vue2.js +81 -0
- package/components/chart/composables/useChartValues.js +32 -0
- package/components/chart/composables/useTooltipPosition.js +22 -0
- package/components/chart/consts.js +21 -0
- package/components/chart/index.js +6 -0
- package/components/chart/plugins/HoverVerticalLine.js +12 -0
- package/components/chart/types.js +4 -0
- package/components/chart/utils/formatNumber.js +11 -0
- package/components/chart/utils/utils.js +12 -0
- package/components/dropdown/common/Dropdown.common.js +89 -89
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +1 -0
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +32 -29
- package/components/dropdown/v4/DropdownV4.vue.d.ts +39 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +256 -224
- package/components/dropdown/v4/OptionV4.vue.d.ts +36 -2
- package/components/dropdown/v4/OptionV4.vue.js +2 -2
- package/components/dropdown/v4/OptionV4.vue2.js +99 -59
- package/components/dropdown/v4/TreeDropdown.vue.d.ts +21 -16
- package/components/dropdown/v4/TreeDropdown.vue.js +3 -3
- package/components/dropdown/v4/TreeDropdown.vue2.js +170 -74
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +14 -0
- package/components/dropdown/v4/index.d.ts +528 -83
- package/components/icon/v4/IconV4.vue.d.ts +5 -0
- package/components/icon/v4/IconV4.vue.js +4 -4
- package/components/icon/v4/IconV4.vue2.js +29 -26
- package/components/icon/v4/index.d.ts +20 -1
- package/components/includeExclude/IncludeExclude.vue.js +4 -4
- package/components/includeExclude/IncludeExclude.vue2.js +2 -2
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +4 -4
- package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +2 -2
- package/components/input/v4/TextField.vue.d.ts +6 -1
- package/components/input/v4/TextField.vue.js +3 -3
- package/components/input/v4/TextField.vue2.js +95 -90
- package/components/input/v4/index.d.ts +20 -1
- package/components/popover/common/Popover.common.d.ts +6 -0
- package/components/popover/common/Popover.common.js +17 -0
- package/components/popover/v3/Popover.vue.js +8 -0
- package/components/popover/{Popover.vue2.js → v3/Popover.vue2.js} +1 -1
- package/components/popover/v4/PopoverV4.vue.d.ts +73 -0
- package/components/popover/v4/PopoverV4.vue.js +7 -0
- package/components/popover/v4/PopoverV4.vue2.js +54 -0
- package/components/popover/v4/index.d.ts +209 -0
- package/components/popover/v4/index.js +6 -0
- package/components/shared/FieldMaxLength.vue.js +3 -3
- package/components/shared/FieldMaxLength.vue2.js +2 -2
- package/components/shared/commonTypes.d.ts +2 -0
- package/components/sortableList/SortableItem.vue.js +7 -0
- package/components/sortableList/SortableItem.vue2.js +140 -0
- package/components/sortableList/SortableItemLabel.vue.js +7 -0
- package/components/sortableList/SortableItemLabel.vue2.js +60 -0
- package/components/sortableList/SortableList.vue.d.ts +25 -0
- package/components/sortableList/SortableList.vue.js +7 -0
- package/components/sortableList/SortableList.vue2.js +160 -0
- package/components/sortableList/composables/useHoverEffect.js +19 -0
- package/components/sortableList/consts.js +4 -0
- package/components/sortableList/index.d.ts +88 -2
- package/components/sortableList/index.js +6 -0
- package/components/table/v3/Table.vue.d.ts +2 -2
- package/components/table/v3/index.d.ts +39 -39
- package/components/table/v4/DataGrid.vue.d.ts +6 -2
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +131 -122
- package/components/table/v4/DataGridRowsCounter.vue.d.ts +5 -0
- package/components/table/v4/DataGridRowsCounter.vue.js +3 -3
- package/components/table/v4/DataGridRowsCounter.vue2.js +29 -22
- package/components/table/v4/MultipleDataGrid.vue.d.ts +16 -3
- package/components/table/v4/MultipleDataGrid.vue.js +4 -4
- package/components/table/v4/MultipleDataGrid.vue2.js +114 -66
- package/components/table/v4/index.d.ts +101 -75
- package/components/table-cells/common/Editable.common.js +37 -26
- package/components/table-cells/common/EditableContext.d.ts +1 -0
- package/components/table-cells/v4/EditableV4.vue.d.ts +5 -0
- package/components/table-cells/v4/EditableV4.vue.js +5 -5
- package/components/table-cells/v4/EditableV4.vue2.js +18 -17
- package/components/table-cells/v4/index.d.ts +20 -1
- package/components/tabs/v4/TabsV4.vue.js +4 -4
- package/components/tabs/v4/TabsV4.vue2.js +37 -40
- package/components/textArea/v4/TextAreaV4.vue.d.ts +6 -1
- package/components/textArea/v4/TextAreaV4.vue.js +3 -3
- package/components/textArea/v4/TextAreaV4.vue2.js +18 -12
- package/components/textArea/v4/index.d.ts +9 -0
- package/design-foundation.stories/icons/iconsData.d.ts +6 -2
- package/index.d.ts +9608 -7356
- package/index.js +136 -131
- package/mocks/options.d.ts +12 -0
- package/package.json +15 -3
- package/testids/index.d.ts +5 -0
- package/testids/index.js +27 -25
- package/utils/search.js +4 -0
- package/Autocomplete.vue_vue_type_style_index_0_scoped_a7bfd237_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_63aaf3be_lang.css +0 -1
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_06751538_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_0345d6b1_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +0 -1
- package/EditableV4.vue_vue_type_style_index_0_scoped_31bfb722_lang.css +0 -1
- package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +0 -1
- package/IconV4.vue_vue_type_style_index_0_scoped_1eea7671_lang.css +0 -1
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_fb054d88_lang.css +0 -1
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_5764fd61_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_260b9cdc_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +0 -1
- package/Popover.vue_vue_type_style_index_0_scoped_25eb53db_lang.css +0 -1
- package/TabsV4.vue_vue_type_style_index_0_scoped_bab40cfe_lang.css +0 -1
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +0 -1
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_b62ee695_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_142eab98_lang.css +0 -1
- package/components/popover/Popover.vue.js +0 -8
- /package/components/popover/{Popover.vue.d.ts → v3/Popover.vue.d.ts} +0 -0
- /package/components/popover/{index.d.ts → v3/index.d.ts} +0 -0
- /package/components/popover/{index.js → v3/index.js} +0 -0
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import "../../../MultipleDataGrid.
|
|
2
|
-
import
|
|
1
|
+
import "../../../MultipleDataGrid.vue_vue_type_style_index_0_scoped_82ba0e12_lang.css"; import { defineComponent as A, useCssVars as D, useSlots as H, computed as O, openBlock as s, createElementBlock as r, createElementVNode as w, normalizeClass as G, unref as o, renderSlot as n, createBlock as C, createCommentVNode as f, createVNode as M, isRef as $, Fragment as P, renderList as y, createSlots as b, withCtx as u } from "vue";
|
|
2
|
+
import v from "./DataGrid.vue.js";
|
|
3
3
|
import "./DataGridMenu.vue.js";
|
|
4
|
-
import
|
|
4
|
+
import U from "./DataGridRowsCounter.vue.js";
|
|
5
5
|
import "./MultipleDataGrid.vue.js";
|
|
6
|
-
import
|
|
7
|
-
import { useVModel as
|
|
8
|
-
|
|
6
|
+
import F from "../../search/v4/SearchV4.vue.js";
|
|
7
|
+
import { useVModel as Q } from "@vueuse/core";
|
|
8
|
+
import { TableTestIdModifiers as h } from "../../../testids/index.js";
|
|
9
|
+
const j = ["data-testid"], p = ["data-testid"], q = ["data-testid"], J = ["data-testid"], K = {
|
|
9
10
|
key: 0,
|
|
10
11
|
class: "tables-container"
|
|
11
|
-
},
|
|
12
|
+
}, ot = /* @__PURE__ */ A({
|
|
12
13
|
__name: "MultipleDataGrid",
|
|
13
14
|
props: {
|
|
14
15
|
tablesSettings: { default: () => [] },
|
|
@@ -31,59 +32,92 @@ const $ = { class: "rows-counter-container" }, A = {
|
|
|
31
32
|
testId: { default: "" }
|
|
32
33
|
},
|
|
33
34
|
emits: ["update:search", "onScroll", "onClearSearch", "clickRow"],
|
|
34
|
-
setup(t, { emit:
|
|
35
|
-
const
|
|
36
|
-
|
|
37
|
-
"
|
|
35
|
+
setup(t, { emit: c }) {
|
|
36
|
+
const g = t;
|
|
37
|
+
D((e) => ({
|
|
38
|
+
"5d3fa26e": t.zIndexBase
|
|
38
39
|
}));
|
|
39
|
-
const
|
|
40
|
-
() =>
|
|
41
|
-
),
|
|
42
|
-
|
|
43
|
-
},
|
|
44
|
-
return (e,
|
|
40
|
+
const I = H(), T = O(
|
|
41
|
+
() => g.isLoading || !g.tablesSettings.flatMap((e) => e.rows).length
|
|
42
|
+
), d = Q(g, "search", c), m = (e) => `header-${e.id}`, k = (e) => `cell-${e.id}`, x = (e) => {
|
|
43
|
+
c("onScroll", e.target.scrollTop);
|
|
44
|
+
}, R = () => c("onClearSearch"), E = (e, i) => c("clickRow", e, i);
|
|
45
|
+
return (e, i) => (s(), r("div", {
|
|
45
46
|
class: "multi-table-container",
|
|
46
|
-
onScrollPassive:
|
|
47
|
+
onScrollPassive: x
|
|
47
48
|
}, [
|
|
48
|
-
|
|
49
|
-
class:
|
|
49
|
+
w("div", {
|
|
50
|
+
class: G(["table-header-container", { sticky: t.isSticky }]),
|
|
51
|
+
"data-testid": `${t.testId}-${o(h).HEADER}`
|
|
50
52
|
}, [
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
53
|
+
w("div", {
|
|
54
|
+
class: "rows-counter-container",
|
|
55
|
+
"data-testid": `${t.testId}-${o(h).TITLE}`
|
|
56
|
+
}, [
|
|
57
|
+
n(e.$slots, "title", {}, () => [
|
|
58
|
+
t.isLoading ? f("", !0) : (s(), C(o(U), {
|
|
59
|
+
key: 0,
|
|
60
|
+
count: t.count,
|
|
61
|
+
"total-count": t.totalCount,
|
|
62
|
+
"total-text": t.totalText,
|
|
63
|
+
"displaying-text": t.displayingText,
|
|
64
|
+
"out-of-text": t.outOfText,
|
|
65
|
+
"test-id": t.testId
|
|
66
|
+
}, null, 8, ["count", "total-count", "total-text", "displaying-text", "out-of-text", "test-id"]))
|
|
67
|
+
], !0)
|
|
68
|
+
], 8, p),
|
|
69
|
+
w("div", {
|
|
70
|
+
class: "table-header-right",
|
|
71
|
+
"data-testid": `${t.testId}-${o(h).HEADER_RIGHT}`
|
|
72
|
+
}, [
|
|
73
|
+
t.showSearch ? n(e.$slots, "search", { key: 0 }, () => [
|
|
74
|
+
M(o(F), {
|
|
75
|
+
modelValue: o(d),
|
|
76
|
+
"onUpdate:modelValue": i[0] || (i[0] = (a) => $(d) ? d.value = a : null),
|
|
77
|
+
placeholder: t.searchPlaceholder,
|
|
78
|
+
"test-id": t.testId,
|
|
79
|
+
onOnClear: R
|
|
80
|
+
}, null, 8, ["modelValue", "placeholder", "test-id"])
|
|
81
|
+
], !0) : f("", !0),
|
|
82
|
+
o(I)["table-header-actions"] ? (s(), r("div", {
|
|
83
|
+
key: 1,
|
|
84
|
+
class: "table-header-actions",
|
|
85
|
+
"data-testid": `${t.testId}-${o(h).ACTIONS}`
|
|
86
|
+
}, [
|
|
87
|
+
n(e.$slots, "table-header-actions", {}, void 0, !0)
|
|
88
|
+
], 8, J)) : f("", !0)
|
|
89
|
+
], 8, q)
|
|
90
|
+
], 10, j),
|
|
91
|
+
o(T) ? (s(), C(o(v), {
|
|
72
92
|
key: 1,
|
|
73
|
-
|
|
74
|
-
|
|
93
|
+
search: o(d),
|
|
94
|
+
"onUpdate:search": i[1] || (i[1] = (a) => $(d) ? d.value = a : null),
|
|
75
95
|
rows: [],
|
|
76
|
-
|
|
96
|
+
columns: t.loadingAndEmptyStatesColumns,
|
|
97
|
+
"is-loading": t.isLoading,
|
|
98
|
+
"loading-row-count": t.loadingRowCount,
|
|
77
99
|
"empty-state-variant": t.emptyStateVariant,
|
|
78
100
|
"empty-state-title": t.emptyStateTitle,
|
|
79
101
|
"empty-state-subtitle": t.emptyStateSubtitle,
|
|
80
|
-
"
|
|
81
|
-
},
|
|
82
|
-
|
|
102
|
+
"test-id": t.testId
|
|
103
|
+
}, b({
|
|
104
|
+
"empty-state": u(() => [
|
|
105
|
+
n(e.$slots, "empty-state", {}, void 0, !0)
|
|
106
|
+
]),
|
|
107
|
+
_: 2
|
|
108
|
+
}, [
|
|
109
|
+
y(t.loadingAndEmptyStatesColumns, (a) => ({
|
|
110
|
+
name: m(a),
|
|
111
|
+
fn: u(() => [
|
|
112
|
+
n(e.$slots, `${m(a)}`, { column: a }, void 0, !0)
|
|
113
|
+
])
|
|
114
|
+
}))
|
|
115
|
+
]), 1032, ["search", "columns", "is-loading", "loading-row-count", "empty-state-variant", "empty-state-title", "empty-state-subtitle", "test-id"])) : (s(), r("div", K, [
|
|
116
|
+
(s(!0), r(P, null, y(t.tablesSettings, (a, V) => (s(), r("div", {
|
|
83
117
|
key: a.testId,
|
|
84
118
|
class: "table-wrapper"
|
|
85
119
|
}, [
|
|
86
|
-
a.rows.length ? (
|
|
120
|
+
a.rows.length ? (s(), C(o(v), {
|
|
87
121
|
key: 0,
|
|
88
122
|
sections: a.sections,
|
|
89
123
|
columns: a.columns,
|
|
@@ -92,32 +126,46 @@ const $ = { class: "rows-counter-container" }, A = {
|
|
|
92
126
|
"is-sticky": t.isSticky,
|
|
93
127
|
"z-index-base": t.zIndexBase,
|
|
94
128
|
"test-id": a.testId,
|
|
95
|
-
onClickRow: (
|
|
96
|
-
},
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
129
|
+
onClickRow: (l) => E(l, V)
|
|
130
|
+
}, b({
|
|
131
|
+
"floating-row": u(({ row: l, rowIndex: S }) => [
|
|
132
|
+
n(e.$slots, "floating-row", {
|
|
133
|
+
row: l,
|
|
134
|
+
rowIndex: S
|
|
135
|
+
}, void 0, !0)
|
|
136
|
+
]),
|
|
137
|
+
_: 2
|
|
138
|
+
}, [
|
|
139
|
+
y(a.columns, (l) => ({
|
|
140
|
+
name: m(l),
|
|
141
|
+
fn: u(() => [
|
|
142
|
+
n(e.$slots, `${m(l)}`, { column: l }, void 0, !0)
|
|
143
|
+
])
|
|
144
|
+
})),
|
|
145
|
+
y(a.columns, (l) => ({
|
|
146
|
+
name: k(l),
|
|
147
|
+
fn: u(({
|
|
148
|
+
cell: S,
|
|
149
|
+
rowIndex: B,
|
|
150
|
+
isLoading: L,
|
|
151
|
+
cellIndex: N,
|
|
152
|
+
row: z
|
|
105
153
|
}) => [
|
|
106
|
-
|
|
107
|
-
cell:
|
|
108
|
-
isLoading:
|
|
109
|
-
cellIndex:
|
|
110
|
-
row:
|
|
111
|
-
rowIndex:
|
|
154
|
+
n(e.$slots, `${k(l)}`, {
|
|
155
|
+
cell: S,
|
|
156
|
+
isLoading: L,
|
|
157
|
+
cellIndex: N,
|
|
158
|
+
row: z,
|
|
159
|
+
rowIndex: B
|
|
112
160
|
}, void 0, !0)
|
|
113
161
|
])
|
|
114
162
|
}))
|
|
115
|
-
]), 1032, ["sections", "columns", "rows", "row-height", "is-sticky", "z-index-base", "test-id", "onClickRow"])) :
|
|
163
|
+
]), 1032, ["sections", "columns", "rows", "row-height", "is-sticky", "z-index-base", "test-id", "onClickRow"])) : f("", !0)
|
|
116
164
|
]))), 128))
|
|
117
165
|
]))
|
|
118
166
|
], 32));
|
|
119
167
|
}
|
|
120
168
|
});
|
|
121
169
|
export {
|
|
122
|
-
|
|
170
|
+
ot as default
|
|
123
171
|
};
|
|
@@ -16,15 +16,15 @@ declare const DataGridTypes: () => (({
|
|
|
16
16
|
searchPlaceholder: string;
|
|
17
17
|
selection: unknown[];
|
|
18
18
|
showSearch: boolean;
|
|
19
|
+
loadingRowCount: number;
|
|
20
|
+
emptyStateTitle: string;
|
|
19
21
|
isSticky: boolean;
|
|
20
22
|
sections: import("../common/Table.types").Section[];
|
|
21
23
|
isStickyHeader: boolean;
|
|
22
|
-
emptyStateTitle: string;
|
|
23
24
|
emptyStateSubtitle: string;
|
|
24
25
|
isInfiniteScroll: boolean;
|
|
25
26
|
infiniteScrollThreshold: number;
|
|
26
27
|
rowHeight: number | ((index: number) => number);
|
|
27
|
-
loadingRowCount: number;
|
|
28
28
|
defaultScrollPosition: number;
|
|
29
29
|
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
30
30
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
@@ -71,6 +71,14 @@ declare const DataGridTypes: () => (({
|
|
|
71
71
|
type: import("vue").PropType<boolean>;
|
|
72
72
|
default: boolean;
|
|
73
73
|
};
|
|
74
|
+
loadingRowCount: {
|
|
75
|
+
type: import("vue").PropType<number>;
|
|
76
|
+
default: number;
|
|
77
|
+
};
|
|
78
|
+
emptyStateTitle: {
|
|
79
|
+
type: import("vue").PropType<string>;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
74
82
|
isSticky: {
|
|
75
83
|
type: import("vue").PropType<boolean>;
|
|
76
84
|
default: boolean;
|
|
@@ -87,10 +95,6 @@ declare const DataGridTypes: () => (({
|
|
|
87
95
|
type: import("vue").PropType<boolean>;
|
|
88
96
|
default: boolean;
|
|
89
97
|
};
|
|
90
|
-
emptyStateTitle: {
|
|
91
|
-
type: import("vue").PropType<string>;
|
|
92
|
-
default: string;
|
|
93
|
-
};
|
|
94
98
|
emptyStateSubtitle: {
|
|
95
99
|
type: import("vue").PropType<string>;
|
|
96
100
|
default: string;
|
|
@@ -107,10 +111,6 @@ declare const DataGridTypes: () => (({
|
|
|
107
111
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
108
112
|
default: number;
|
|
109
113
|
};
|
|
110
|
-
loadingRowCount: {
|
|
111
|
-
type: import("vue").PropType<number>;
|
|
112
|
-
default: number;
|
|
113
|
-
};
|
|
114
114
|
defaultScrollPosition: {
|
|
115
115
|
type: import("vue").PropType<number>;
|
|
116
116
|
default: any;
|
|
@@ -147,7 +147,7 @@ declare const DataGridTypes: () => (({
|
|
|
147
147
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
148
148
|
onSelectRow?: (value: boolean) => any;
|
|
149
149
|
onClickRow?: (rowIndex: number) => any;
|
|
150
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "
|
|
150
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase">;
|
|
151
151
|
$attrs: {
|
|
152
152
|
[x: string]: unknown;
|
|
153
153
|
};
|
|
@@ -207,6 +207,14 @@ declare const DataGridTypes: () => (({
|
|
|
207
207
|
type: import("vue").PropType<boolean>;
|
|
208
208
|
default: boolean;
|
|
209
209
|
};
|
|
210
|
+
loadingRowCount: {
|
|
211
|
+
type: import("vue").PropType<number>;
|
|
212
|
+
default: number;
|
|
213
|
+
};
|
|
214
|
+
emptyStateTitle: {
|
|
215
|
+
type: import("vue").PropType<string>;
|
|
216
|
+
default: string;
|
|
217
|
+
};
|
|
210
218
|
isSticky: {
|
|
211
219
|
type: import("vue").PropType<boolean>;
|
|
212
220
|
default: boolean;
|
|
@@ -223,10 +231,6 @@ declare const DataGridTypes: () => (({
|
|
|
223
231
|
type: import("vue").PropType<boolean>;
|
|
224
232
|
default: boolean;
|
|
225
233
|
};
|
|
226
|
-
emptyStateTitle: {
|
|
227
|
-
type: import("vue").PropType<string>;
|
|
228
|
-
default: string;
|
|
229
|
-
};
|
|
230
234
|
emptyStateSubtitle: {
|
|
231
235
|
type: import("vue").PropType<string>;
|
|
232
236
|
default: string;
|
|
@@ -243,10 +247,6 @@ declare const DataGridTypes: () => (({
|
|
|
243
247
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
244
248
|
default: number;
|
|
245
249
|
};
|
|
246
|
-
loadingRowCount: {
|
|
247
|
-
type: import("vue").PropType<number>;
|
|
248
|
-
default: number;
|
|
249
|
-
};
|
|
250
250
|
defaultScrollPosition: {
|
|
251
251
|
type: import("vue").PropType<number>;
|
|
252
252
|
default: any;
|
|
@@ -311,15 +311,15 @@ declare const DataGridTypes: () => (({
|
|
|
311
311
|
searchPlaceholder: string;
|
|
312
312
|
selection: unknown[];
|
|
313
313
|
showSearch: boolean;
|
|
314
|
+
loadingRowCount: number;
|
|
315
|
+
emptyStateTitle: string;
|
|
314
316
|
isSticky: boolean;
|
|
315
317
|
sections: import("../common/Table.types").Section[];
|
|
316
318
|
isStickyHeader: boolean;
|
|
317
|
-
emptyStateTitle: string;
|
|
318
319
|
emptyStateSubtitle: string;
|
|
319
320
|
isInfiniteScroll: boolean;
|
|
320
321
|
infiniteScrollThreshold: number;
|
|
321
322
|
rowHeight: number | ((index: number) => number);
|
|
322
|
-
loadingRowCount: number;
|
|
323
323
|
defaultScrollPosition: number;
|
|
324
324
|
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
325
325
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
@@ -386,6 +386,14 @@ declare const DataGridTypes: () => (({
|
|
|
386
386
|
type: import("vue").PropType<boolean>;
|
|
387
387
|
default: boolean;
|
|
388
388
|
};
|
|
389
|
+
loadingRowCount: {
|
|
390
|
+
type: import("vue").PropType<number>;
|
|
391
|
+
default: number;
|
|
392
|
+
};
|
|
393
|
+
emptyStateTitle: {
|
|
394
|
+
type: import("vue").PropType<string>;
|
|
395
|
+
default: string;
|
|
396
|
+
};
|
|
389
397
|
isSticky: {
|
|
390
398
|
type: import("vue").PropType<boolean>;
|
|
391
399
|
default: boolean;
|
|
@@ -402,10 +410,6 @@ declare const DataGridTypes: () => (({
|
|
|
402
410
|
type: import("vue").PropType<boolean>;
|
|
403
411
|
default: boolean;
|
|
404
412
|
};
|
|
405
|
-
emptyStateTitle: {
|
|
406
|
-
type: import("vue").PropType<string>;
|
|
407
|
-
default: string;
|
|
408
|
-
};
|
|
409
413
|
emptyStateSubtitle: {
|
|
410
414
|
type: import("vue").PropType<string>;
|
|
411
415
|
default: string;
|
|
@@ -422,10 +426,6 @@ declare const DataGridTypes: () => (({
|
|
|
422
426
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
423
427
|
default: number;
|
|
424
428
|
};
|
|
425
|
-
loadingRowCount: {
|
|
426
|
-
type: import("vue").PropType<number>;
|
|
427
|
-
default: number;
|
|
428
|
-
};
|
|
429
429
|
defaultScrollPosition: {
|
|
430
430
|
type: import("vue").PropType<number>;
|
|
431
431
|
default: any;
|
|
@@ -509,6 +509,14 @@ declare const DataGridTypes: () => (({
|
|
|
509
509
|
type: import("vue").PropType<boolean>;
|
|
510
510
|
default: boolean;
|
|
511
511
|
};
|
|
512
|
+
loadingRowCount: {
|
|
513
|
+
type: import("vue").PropType<number>;
|
|
514
|
+
default: number;
|
|
515
|
+
};
|
|
516
|
+
emptyStateTitle: {
|
|
517
|
+
type: import("vue").PropType<string>;
|
|
518
|
+
default: string;
|
|
519
|
+
};
|
|
512
520
|
isSticky: {
|
|
513
521
|
type: import("vue").PropType<boolean>;
|
|
514
522
|
default: boolean;
|
|
@@ -525,10 +533,6 @@ declare const DataGridTypes: () => (({
|
|
|
525
533
|
type: import("vue").PropType<boolean>;
|
|
526
534
|
default: boolean;
|
|
527
535
|
};
|
|
528
|
-
emptyStateTitle: {
|
|
529
|
-
type: import("vue").PropType<string>;
|
|
530
|
-
default: string;
|
|
531
|
-
};
|
|
532
536
|
emptyStateSubtitle: {
|
|
533
537
|
type: import("vue").PropType<string>;
|
|
534
538
|
default: string;
|
|
@@ -545,10 +549,6 @@ declare const DataGridTypes: () => (({
|
|
|
545
549
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
546
550
|
default: number;
|
|
547
551
|
};
|
|
548
|
-
loadingRowCount: {
|
|
549
|
-
type: import("vue").PropType<number>;
|
|
550
|
-
default: number;
|
|
551
|
-
};
|
|
552
552
|
defaultScrollPosition: {
|
|
553
553
|
type: import("vue").PropType<number>;
|
|
554
554
|
default: any;
|
|
@@ -613,15 +613,15 @@ declare const DataGridTypes: () => (({
|
|
|
613
613
|
searchPlaceholder: string;
|
|
614
614
|
selection: unknown[];
|
|
615
615
|
showSearch: boolean;
|
|
616
|
+
loadingRowCount: number;
|
|
617
|
+
emptyStateTitle: string;
|
|
616
618
|
isSticky: boolean;
|
|
617
619
|
sections: import("../common/Table.types").Section[];
|
|
618
620
|
isStickyHeader: boolean;
|
|
619
|
-
emptyStateTitle: string;
|
|
620
621
|
emptyStateSubtitle: string;
|
|
621
622
|
isInfiniteScroll: boolean;
|
|
622
623
|
infiniteScrollThreshold: number;
|
|
623
624
|
rowHeight: number | ((index: number) => number);
|
|
624
|
-
loadingRowCount: number;
|
|
625
625
|
defaultScrollPosition: number;
|
|
626
626
|
getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
|
|
627
627
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
@@ -646,6 +646,10 @@ declare const DataGridTypes: () => (({
|
|
|
646
646
|
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
647
647
|
gridColumnTemplate: any;
|
|
648
648
|
}): any;
|
|
649
|
+
"floating-row"?(_: {
|
|
650
|
+
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
651
|
+
rowIndex: number;
|
|
652
|
+
}): any;
|
|
649
653
|
"empty-state"?(_: {}): any;
|
|
650
654
|
footer?(_: {}): any;
|
|
651
655
|
};
|
|
@@ -686,6 +690,10 @@ declare const DataGridTypes: () => (({
|
|
|
686
690
|
rowIndex: number;
|
|
687
691
|
menuItems: import("../common/Table.types").MenuItem[];
|
|
688
692
|
}> | import("vue").DefineComponent<{
|
|
693
|
+
testId: {
|
|
694
|
+
type: import("vue").PropType<string>;
|
|
695
|
+
default: string;
|
|
696
|
+
};
|
|
689
697
|
count: {
|
|
690
698
|
type: import("vue").PropType<number>;
|
|
691
699
|
default: number;
|
|
@@ -707,6 +715,10 @@ declare const DataGridTypes: () => (({
|
|
|
707
715
|
default: string;
|
|
708
716
|
};
|
|
709
717
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
718
|
+
testId: {
|
|
719
|
+
type: import("vue").PropType<string>;
|
|
720
|
+
default: string;
|
|
721
|
+
};
|
|
710
722
|
count: {
|
|
711
723
|
type: import("vue").PropType<number>;
|
|
712
724
|
default: number;
|
|
@@ -728,6 +740,7 @@ declare const DataGridTypes: () => (({
|
|
|
728
740
|
default: string;
|
|
729
741
|
};
|
|
730
742
|
}>>, {
|
|
743
|
+
testId: string;
|
|
731
744
|
count: number;
|
|
732
745
|
totalCount: number;
|
|
733
746
|
displayingText: string;
|
|
@@ -744,10 +757,10 @@ declare const DataGridTypes: () => (({
|
|
|
744
757
|
searchPlaceholder: string;
|
|
745
758
|
count: number;
|
|
746
759
|
showSearch: boolean;
|
|
747
|
-
|
|
760
|
+
loadingRowCount: number;
|
|
748
761
|
emptyStateTitle: string;
|
|
762
|
+
isSticky: boolean;
|
|
749
763
|
emptyStateSubtitle: string;
|
|
750
|
-
loadingRowCount: number;
|
|
751
764
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
752
765
|
zIndexBase: number;
|
|
753
766
|
totalCount: number;
|
|
@@ -781,22 +794,22 @@ declare const DataGridTypes: () => (({
|
|
|
781
794
|
type: import("vue").PropType<boolean>;
|
|
782
795
|
default: boolean;
|
|
783
796
|
};
|
|
784
|
-
|
|
785
|
-
type: import("vue").PropType<
|
|
786
|
-
default:
|
|
797
|
+
loadingRowCount: {
|
|
798
|
+
type: import("vue").PropType<number>;
|
|
799
|
+
default: number;
|
|
787
800
|
};
|
|
788
801
|
emptyStateTitle: {
|
|
789
802
|
type: import("vue").PropType<string>;
|
|
790
803
|
default: string;
|
|
791
804
|
};
|
|
805
|
+
isSticky: {
|
|
806
|
+
type: import("vue").PropType<boolean>;
|
|
807
|
+
default: boolean;
|
|
808
|
+
};
|
|
792
809
|
emptyStateSubtitle: {
|
|
793
810
|
type: import("vue").PropType<string>;
|
|
794
811
|
default: string;
|
|
795
812
|
};
|
|
796
|
-
loadingRowCount: {
|
|
797
|
-
type: import("vue").PropType<number>;
|
|
798
|
-
default: number;
|
|
799
|
-
};
|
|
800
813
|
emptyStateVariant: {
|
|
801
814
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
802
815
|
default: any;
|
|
@@ -836,7 +849,7 @@ declare const DataGridTypes: () => (({
|
|
|
836
849
|
onOnScroll?: (scrollTop: number) => any;
|
|
837
850
|
onOnClearSearch?: () => any;
|
|
838
851
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
839
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "
|
|
852
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
840
853
|
$attrs: {
|
|
841
854
|
[x: string]: unknown;
|
|
842
855
|
};
|
|
@@ -875,22 +888,22 @@ declare const DataGridTypes: () => (({
|
|
|
875
888
|
type: import("vue").PropType<boolean>;
|
|
876
889
|
default: boolean;
|
|
877
890
|
};
|
|
878
|
-
|
|
879
|
-
type: import("vue").PropType<
|
|
880
|
-
default:
|
|
891
|
+
loadingRowCount: {
|
|
892
|
+
type: import("vue").PropType<number>;
|
|
893
|
+
default: number;
|
|
881
894
|
};
|
|
882
895
|
emptyStateTitle: {
|
|
883
896
|
type: import("vue").PropType<string>;
|
|
884
897
|
default: string;
|
|
885
898
|
};
|
|
899
|
+
isSticky: {
|
|
900
|
+
type: import("vue").PropType<boolean>;
|
|
901
|
+
default: boolean;
|
|
902
|
+
};
|
|
886
903
|
emptyStateSubtitle: {
|
|
887
904
|
type: import("vue").PropType<string>;
|
|
888
905
|
default: string;
|
|
889
906
|
};
|
|
890
|
-
loadingRowCount: {
|
|
891
|
-
type: import("vue").PropType<number>;
|
|
892
|
-
default: number;
|
|
893
|
-
};
|
|
894
907
|
emptyStateVariant: {
|
|
895
908
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
896
909
|
default: any;
|
|
@@ -942,10 +955,10 @@ declare const DataGridTypes: () => (({
|
|
|
942
955
|
searchPlaceholder: string;
|
|
943
956
|
count: number;
|
|
944
957
|
showSearch: boolean;
|
|
945
|
-
|
|
958
|
+
loadingRowCount: number;
|
|
946
959
|
emptyStateTitle: string;
|
|
960
|
+
isSticky: boolean;
|
|
947
961
|
emptyStateSubtitle: string;
|
|
948
|
-
loadingRowCount: number;
|
|
949
962
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
950
963
|
zIndexBase: number;
|
|
951
964
|
totalCount: number;
|
|
@@ -999,22 +1012,22 @@ declare const DataGridTypes: () => (({
|
|
|
999
1012
|
type: import("vue").PropType<boolean>;
|
|
1000
1013
|
default: boolean;
|
|
1001
1014
|
};
|
|
1002
|
-
|
|
1003
|
-
type: import("vue").PropType<
|
|
1004
|
-
default:
|
|
1015
|
+
loadingRowCount: {
|
|
1016
|
+
type: import("vue").PropType<number>;
|
|
1017
|
+
default: number;
|
|
1005
1018
|
};
|
|
1006
1019
|
emptyStateTitle: {
|
|
1007
1020
|
type: import("vue").PropType<string>;
|
|
1008
1021
|
default: string;
|
|
1009
1022
|
};
|
|
1023
|
+
isSticky: {
|
|
1024
|
+
type: import("vue").PropType<boolean>;
|
|
1025
|
+
default: boolean;
|
|
1026
|
+
};
|
|
1010
1027
|
emptyStateSubtitle: {
|
|
1011
1028
|
type: import("vue").PropType<string>;
|
|
1012
1029
|
default: string;
|
|
1013
1030
|
};
|
|
1014
|
-
loadingRowCount: {
|
|
1015
|
-
type: import("vue").PropType<number>;
|
|
1016
|
-
default: number;
|
|
1017
|
-
};
|
|
1018
1031
|
emptyStateVariant: {
|
|
1019
1032
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1020
1033
|
default: any;
|
|
@@ -1083,22 +1096,22 @@ declare const DataGridTypes: () => (({
|
|
|
1083
1096
|
type: import("vue").PropType<boolean>;
|
|
1084
1097
|
default: boolean;
|
|
1085
1098
|
};
|
|
1086
|
-
|
|
1087
|
-
type: import("vue").PropType<
|
|
1088
|
-
default:
|
|
1099
|
+
loadingRowCount: {
|
|
1100
|
+
type: import("vue").PropType<number>;
|
|
1101
|
+
default: number;
|
|
1089
1102
|
};
|
|
1090
1103
|
emptyStateTitle: {
|
|
1091
1104
|
type: import("vue").PropType<string>;
|
|
1092
1105
|
default: string;
|
|
1093
1106
|
};
|
|
1107
|
+
isSticky: {
|
|
1108
|
+
type: import("vue").PropType<boolean>;
|
|
1109
|
+
default: boolean;
|
|
1110
|
+
};
|
|
1094
1111
|
emptyStateSubtitle: {
|
|
1095
1112
|
type: import("vue").PropType<string>;
|
|
1096
1113
|
default: string;
|
|
1097
1114
|
};
|
|
1098
|
-
loadingRowCount: {
|
|
1099
|
-
type: import("vue").PropType<number>;
|
|
1100
|
-
default: number;
|
|
1101
|
-
};
|
|
1102
1115
|
emptyStateVariant: {
|
|
1103
1116
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1104
1117
|
default: any;
|
|
@@ -1150,10 +1163,10 @@ declare const DataGridTypes: () => (({
|
|
|
1150
1163
|
searchPlaceholder: string;
|
|
1151
1164
|
count: number;
|
|
1152
1165
|
showSearch: boolean;
|
|
1153
|
-
|
|
1166
|
+
loadingRowCount: number;
|
|
1154
1167
|
emptyStateTitle: string;
|
|
1168
|
+
isSticky: boolean;
|
|
1155
1169
|
emptyStateSubtitle: string;
|
|
1156
|
-
loadingRowCount: number;
|
|
1157
1170
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
1158
1171
|
zIndexBase: number;
|
|
1159
1172
|
totalCount: number;
|
|
@@ -1164,12 +1177,25 @@ declare const DataGridTypes: () => (({
|
|
|
1164
1177
|
loadingAndEmptyStatesColumns: import("../common/Table.types").Column[];
|
|
1165
1178
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1166
1179
|
$slots: Partial<Record<string, (_: {
|
|
1180
|
+
column: import("../common/Table.types").Column;
|
|
1181
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
1167
1182
|
cell: any;
|
|
1168
1183
|
isLoading: any;
|
|
1169
1184
|
cellIndex: any;
|
|
1170
1185
|
row: any;
|
|
1171
1186
|
rowIndex: any;
|
|
1172
|
-
}) => any
|
|
1187
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
1188
|
+
column: import("../common/Table.types").Column;
|
|
1189
|
+
}) => any>> & {
|
|
1190
|
+
title?(_: {}): any;
|
|
1191
|
+
search?(_: {}): any;
|
|
1192
|
+
"table-header-actions"?(_: {}): any;
|
|
1193
|
+
"floating-row"?(_: {
|
|
1194
|
+
row: import("@vueuse/core").UseVirtualListItem<import("../common/Table.types").Row>;
|
|
1195
|
+
rowIndex: number;
|
|
1196
|
+
}): any;
|
|
1197
|
+
"empty-state"?(_: {}): any;
|
|
1198
|
+
};
|
|
1173
1199
|
})))[];
|
|
1174
1200
|
export type { Column, Sort, MenuItem, TableSettings, } from '../common/Table.types';
|
|
1175
1201
|
export { DataGrid, DataGridMenu, DataGridRowsCounter, DataGridTypes, MultipleDataGrid, };
|