@progress/kendo-react-grid 10.0.0-develop.1 → 10.0.0-develop.3
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/Grid.js +1 -1
- package/Grid.mjs +11 -10
- package/GridClientWrapper.js +1 -1
- package/GridClientWrapper.mjs +54 -54
- package/GridComponent.js +1 -1
- package/GridComponent.mjs +182 -181
- package/dist/cdn/js/kendo-react-grid.js +1 -1
- package/index.d.mts +10 -0
- package/index.d.ts +10 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +13 -13
package/GridComponent.mjs
CHANGED
|
@@ -6,55 +6,55 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import * as l from "react";
|
|
9
|
-
import { uGrid as
|
|
10
|
-
import { process as
|
|
11
|
-
import { combineFilters as
|
|
12
|
-
import { GridSelectionCell as
|
|
13
|
-
import { GridHierarchyCell as
|
|
14
|
-
import { GridEditCell as
|
|
15
|
-
import { Header as
|
|
16
|
-
import { HeaderRow as
|
|
17
|
-
import { FilterRow as
|
|
18
|
-
import { GroupPanel as
|
|
19
|
-
import { Footer as
|
|
20
|
-
import { isRowReorderEnabled as
|
|
21
|
-
import { GridCell as
|
|
22
|
-
import { GridGroupCell as
|
|
23
|
-
import { GridRow as
|
|
24
|
-
import { GridHeaderSelectionCell as
|
|
25
|
-
import { GridNoRecords as
|
|
26
|
-
import { operators as
|
|
27
|
-
import { FooterRow as
|
|
28
|
-
import { normalize as
|
|
29
|
-
import { packageMetadata as
|
|
30
|
-
import { GridDetailCell as
|
|
31
|
-
import { GridDetailHierarchyCell as
|
|
32
|
-
import { GridNoRecordsContainer as
|
|
33
|
-
import { GridClientWrapper as
|
|
34
|
-
import { GridColGroup as
|
|
35
|
-
import { GridTable as
|
|
36
|
-
import { GridDropClue as
|
|
37
|
-
import { GridDragClue as
|
|
38
|
-
import { GridTableBody as
|
|
39
|
-
import { PagerContainer as
|
|
40
|
-
import { GridTableScrollable as
|
|
41
|
-
import { GridElementContainer as
|
|
42
|
-
import { GridContainerElementContainer as
|
|
43
|
-
import { VirtualScrollHeightContainer as
|
|
44
|
-
import {
|
|
45
|
-
import { gridAriaLabel as Qe, messages as ml } from "./messages/index.mjs";
|
|
9
|
+
import { uGrid as St, validatePackage as vt, getter as H, classNames as f, WatermarkOverlay as Rt, canUseDOM as xt } from "@progress/kendo-react-common";
|
|
10
|
+
import { process as Gt } from "@progress/kendo-data-query";
|
|
11
|
+
import { combineFilters as kt, getDetailExpandableOptions as Nt, getGroupExpandableOptions as Ft, getSelectionOptions as Dt, tableKeyboardNavigationTools as le, Pager as Tt, tableKeyboardNavigationBodyAttributes as Pt, tableKeyboardNavigationScopeAttributes as Ae, tableColumnsVirtualization as Ht } from "@progress/kendo-react-data-tools";
|
|
12
|
+
import { GridSelectionCell as Kt } from "./cells/GridSelectionCell.mjs";
|
|
13
|
+
import { GridHierarchyCell as At } from "./cells/GridHierarchyCell.mjs";
|
|
14
|
+
import { GridEditCell as Bt } from "./cells/GridEditCell.mjs";
|
|
15
|
+
import { Header as Vt } from "./header/Header.mjs";
|
|
16
|
+
import { HeaderRow as Lt } from "./header/HeaderRow.mjs";
|
|
17
|
+
import { FilterRow as Ot } from "./header/FilterRow.mjs";
|
|
18
|
+
import { GroupPanel as _t } from "./header/GroupPanel.mjs";
|
|
19
|
+
import { Footer as zt } from "./footer/Footer.mjs";
|
|
20
|
+
import { isRowReorderEnabled as Mt, getRowSpanOptions as Be, getColumnWidth as ae, isSorted as Ve, flatData as Wt, autoGenerateColumns as jt, mapColumns as $t, clientColumn as Ut, getNestedValue as Le, getColSpan as Oe, resolveCells as Jt, isClientReference as Qt, sanitizeColumns as Xt, readColumns as Yt } from "./utils/index.mjs";
|
|
21
|
+
import { GridCell as Zt } from "./cells/GridCell.mjs";
|
|
22
|
+
import { GridGroupCell as _e } from "./cells/GridGroupCell.mjs";
|
|
23
|
+
import { GridRow as qt } from "./rows/GridRow.mjs";
|
|
24
|
+
import { GridHeaderSelectionCell as pt } from "./header/GridHeaderSelectionCell.mjs";
|
|
25
|
+
import { GridNoRecords as ze } from "./components/noRecords/GridNoRecords.mjs";
|
|
26
|
+
import { operators as Me } from "./filterCommon.mjs";
|
|
27
|
+
import { FooterRow as el } from "./footer/FooterRow.mjs";
|
|
28
|
+
import { normalize as tl } from "./paging/GridPagerSettings.mjs";
|
|
29
|
+
import { packageMetadata as ll } from "./package-metadata.mjs";
|
|
30
|
+
import { GridDetailCell as al } from "./cells/GridDetailCell.mjs";
|
|
31
|
+
import { GridDetailHierarchyCell as rl } from "./cells/GridDetailHierarchyCell.mjs";
|
|
32
|
+
import { GridNoRecordsContainer as We } from "./components/noRecords/GridNoRecordsContainer.mjs";
|
|
33
|
+
import { GridClientWrapper as je } from "./GridClientWrapper.mjs";
|
|
34
|
+
import { GridColGroup as nl } from "./components/colGroup/GridColGroup.mjs";
|
|
35
|
+
import { GridTable as il } from "./components/table/GridTable.mjs";
|
|
36
|
+
import { GridDropClue as $e } from "./components/GridDropClue.mjs";
|
|
37
|
+
import { GridDragClue as Ue } from "./components/GridDragClue.mjs";
|
|
38
|
+
import { GridTableBody as Je } from "./components/table/GridTableBody.mjs";
|
|
39
|
+
import { PagerContainer as ol } from "./components/PagerContainer.mjs";
|
|
40
|
+
import { GridTableScrollable as dl } from "./components/table/GridTableScrollable.mjs";
|
|
41
|
+
import { GridElementContainer as Qe } from "./components/GridElementContainer.mjs";
|
|
42
|
+
import { GridContainerElementContainer as cl } from "./components/GridContainerElementContainer.mjs";
|
|
43
|
+
import { VirtualScrollHeightContainer as sl } from "./components/VirtualScrollHeightContainer.mjs";
|
|
44
|
+
import { gridAriaLabel as Xe, messages as ul } from "./messages/index.mjs";
|
|
46
45
|
import { VirtualScrollFixed as j } from "./VirtualScrollFixed.mjs";
|
|
47
|
-
import { VirtualScroll as
|
|
48
|
-
import { GridCustomCellClientContainer as
|
|
49
|
-
import { GridReorderableRowsContainer as
|
|
50
|
-
import { GridRowReorderCell as
|
|
51
|
-
import { GridHeaderRowReorderCell as
|
|
52
|
-
import { GridLoader as
|
|
53
|
-
import { gridPremiumFeatures as
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
46
|
+
import { VirtualScroll as ml } from "./VirtualScroll.mjs";
|
|
47
|
+
import { GridCustomCellClientContainer as fl } from "./components/GridCustomCellClientContainer.mjs";
|
|
48
|
+
import { GridReorderableRowsContainer as gl } from "./components/GridDraggableRowsContainer.mjs";
|
|
49
|
+
import { GridRowReorderCell as bl } from "./cells/GridRowReorderCell.mjs";
|
|
50
|
+
import { GridHeaderRowReorderCell as hl } from "./header/client/GridHeaderRowReorderCell.mjs";
|
|
51
|
+
import { GridLoader as Ye } from "./components/GridLoader.mjs";
|
|
52
|
+
import { gridPremiumFeatures as yl } from "./utils/premium.mjs";
|
|
53
|
+
import { LocalizationService as Cl, IntlService as wl } from "@progress/kendo-react-intl";
|
|
54
|
+
const El = l.forwardRef((e, re) => {
|
|
55
|
+
var ve, Re, xe, Ge, ke, Ne, Fe, De;
|
|
56
|
+
const R = e.id + "-role-element-id", x = e.navigatable ? R : "", Ze = (t, r, d, o, i, a, c) => {
|
|
57
|
+
const u = [], h = Wt(
|
|
58
58
|
u,
|
|
59
59
|
C,
|
|
60
60
|
t,
|
|
@@ -63,16 +63,16 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
63
63
|
o,
|
|
64
64
|
i,
|
|
65
65
|
a,
|
|
66
|
-
|
|
66
|
+
ct.defaultExpand,
|
|
67
67
|
c
|
|
68
68
|
);
|
|
69
69
|
return { flattedData: u, resolvedGroupsCount: h };
|
|
70
|
-
},
|
|
70
|
+
}, qe = (t) => {
|
|
71
71
|
const r = t.filter(
|
|
72
72
|
(i) => i && i.type && i.type.displayName === "KendoReactGridColumn"
|
|
73
|
-
), d = s.current.filter((i) => i.declarationIndex >= 0 && i.parentIndex === -1), o =
|
|
74
|
-
return
|
|
75
|
-
},
|
|
73
|
+
), d = s.current.filter((i) => i.declarationIndex >= 0 && i.parentIndex === -1), o = Xt(d);
|
|
74
|
+
return Yt(r, o, { prevId: 0, idPrefix: x });
|
|
75
|
+
}, pe = (t) => t.filter((r) => xt && r && r.media ? window.matchMedia(r.media).matches : r), et = () => {
|
|
76
76
|
const t = [], r = (d, o) => d == null ? void 0 : d.forEach((i) => {
|
|
77
77
|
const a = i.hidden || o;
|
|
78
78
|
t.push({
|
|
@@ -81,16 +81,16 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
81
81
|
}), r(i.children, a);
|
|
82
82
|
});
|
|
83
83
|
return r(e.columnsState, !1), t;
|
|
84
|
-
},
|
|
85
|
-
const r =
|
|
84
|
+
}, tt = (t) => {
|
|
85
|
+
const r = et();
|
|
86
86
|
return t.filter((d) => {
|
|
87
87
|
var o;
|
|
88
88
|
return !((o = r.find((i) => i.id === d.id)) != null && o.hidden);
|
|
89
89
|
});
|
|
90
|
-
},
|
|
90
|
+
}, lt = (t, r) => {
|
|
91
91
|
var i;
|
|
92
|
-
const d =
|
|
93
|
-
s.current = o, s.current.length === 0 && (s.current =
|
|
92
|
+
const d = qe(t), o = pe(d);
|
|
93
|
+
s.current = o, s.current.length === 0 && (s.current = jt(
|
|
94
94
|
C,
|
|
95
95
|
e.group,
|
|
96
96
|
{
|
|
@@ -100,13 +100,13 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
100
100
|
prevId: 0,
|
|
101
101
|
idPrefix: x
|
|
102
102
|
}
|
|
103
|
-
)), s.current =
|
|
104
|
-
},
|
|
103
|
+
)), s.current = tt(s.current), at(s.current, r), G = $t(s.current, !0), ne.current = s.current.map(Ut);
|
|
104
|
+
}, at = (t, r) => {
|
|
105
105
|
var i;
|
|
106
106
|
t.filter((a) => e.selectedField && a.field === e.selectedField || a.columnType === "checkbox").forEach((a) => {
|
|
107
|
-
a.width = a.width || "50px", a.cell = a.cell ||
|
|
107
|
+
a.width = a.width || "50px", a.cell = a.cell || Kt, a._type = "edit", a.headerCell = a.headerCell || pt;
|
|
108
108
|
}), N !== void 0 && t.filter((a) => a.columnType === "reorder").forEach((a) => {
|
|
109
|
-
a.width = a.width || "50px", a.cell = a.cell ||
|
|
109
|
+
a.width = a.width || "50px", a.cell = a.cell || bl, a.headerCell = a.headerCell || hl, a.sortable = !1, a.filterable = !1, a.editable = !1;
|
|
110
110
|
});
|
|
111
111
|
const d = {
|
|
112
112
|
id: "",
|
|
@@ -132,7 +132,7 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
132
132
|
(e.expandField || A.enabled) && e.detail && (t.unshift({
|
|
133
133
|
...d,
|
|
134
134
|
_type: "expand",
|
|
135
|
-
cell:
|
|
135
|
+
cell: At,
|
|
136
136
|
field: (i = A.column) != null ? i : e.expandField,
|
|
137
137
|
headerClassName: f(m.hierarchyCell({}))
|
|
138
138
|
}), o++);
|
|
@@ -140,27 +140,27 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
140
140
|
t.unshift({
|
|
141
141
|
...d,
|
|
142
142
|
isAccessible: !1,
|
|
143
|
-
cell:
|
|
143
|
+
cell: _e,
|
|
144
144
|
field: "value",
|
|
145
145
|
locked: e.lockGroups
|
|
146
146
|
}), o++;
|
|
147
147
|
t.slice(o).forEach((a) => {
|
|
148
|
-
a.parentIndex >= 0 && (a.parentIndex += o), a.rowSpannable = a.rowSpannable !== void 0 ?
|
|
148
|
+
a.parentIndex >= 0 && (a.parentIndex += o), a.rowSpannable = a.rowSpannable !== void 0 ? Be(a.rowSpannable) : oe;
|
|
149
149
|
});
|
|
150
|
-
},
|
|
151
|
-
const { rowHeight: t, detailRowHeight: r, detail: d, expandField: o } = e, i =
|
|
152
|
-
return !a || K && !i || !!(d && o) && (!c || !i) ?
|
|
153
|
-
},
|
|
154
|
-
let c =
|
|
150
|
+
}, $ = () => C.length === e.total, rt = () => {
|
|
151
|
+
const { rowHeight: t, detailRowHeight: r, detail: d, expandField: o } = e, i = $(), a = t !== void 0 && t > 0, c = r !== void 0 && r > 0;
|
|
152
|
+
return !a || K && !i || !!(d && o) && (!c || !i) ? ml : j;
|
|
153
|
+
}, U = () => e.isClient ? s : ne, nt = (t, r, d, o, i, a) => {
|
|
154
|
+
let c = Oe(t, r);
|
|
155
155
|
if (e.columnVirtualization && t.colSpan === 1)
|
|
156
156
|
return { colSpan: a, colsToSkip: i };
|
|
157
157
|
let u = d.length - 1 === o, h = d.length - o;
|
|
158
158
|
return e.columnVirtualization && (u = b.length - 1 === o, h = b.length - o), c > 1 && !u ? i = c - 1 : c = 1, h <= c && !u && (c = h), { colSpan: c, colsToSkip: i };
|
|
159
159
|
};
|
|
160
|
-
let
|
|
160
|
+
let J, g = [], O;
|
|
161
161
|
const s = e.columnsRef || { current: [] }, ne = { current: [] };
|
|
162
162
|
let G = [[]];
|
|
163
|
-
const
|
|
163
|
+
const it = e.scrollLeftRef || { current: 0 }, _ = e.localization || new Cl(e.language), ot = e.intl || new wl((ve = e.locale) != null ? ve : "en"), k = e.unstyled, m = k && k.uGrid ? k.uGrid : St, N = Mt(e.rowReorderable), F = e.autoProcessData === !0 ? {
|
|
164
164
|
group: !0,
|
|
165
165
|
sort: !0,
|
|
166
166
|
filter: !0,
|
|
@@ -168,11 +168,11 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
168
168
|
page: !0
|
|
169
169
|
} : e.autoProcessData;
|
|
170
170
|
let C, v;
|
|
171
|
-
if (Array.isArray(e.data) ? (C = e.data, v = (
|
|
172
|
-
const { data: t, total: r } =
|
|
171
|
+
if (Array.isArray(e.data) ? (C = e.data, v = (Re = e.total) != null ? Re : C.length) : (C = ((xe = e.data) == null ? void 0 : xe.data) || [], v = (Ne = (ke = e.total) != null ? ke : (Ge = e.data) == null ? void 0 : Ge.total) != null ? Ne : C.length), F) {
|
|
172
|
+
const { data: t, total: r } = Gt(C, {
|
|
173
173
|
group: F.group ? e.group : void 0,
|
|
174
174
|
sort: F.sort ? e.sort : void 0,
|
|
175
|
-
filter:
|
|
175
|
+
filter: kt(
|
|
176
176
|
F.filter ? e.filter : void 0,
|
|
177
177
|
F.search ? e.search : void 0
|
|
178
178
|
),
|
|
@@ -181,12 +181,12 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
181
181
|
skip: e.skip
|
|
182
182
|
} : {}
|
|
183
183
|
});
|
|
184
|
-
C = t, v = (
|
|
184
|
+
C = t, v = (Fe = e.total) != null ? Fe : r;
|
|
185
185
|
}
|
|
186
|
-
const { size: E = "medium" } = e,
|
|
186
|
+
const { size: E = "medium" } = e, dt = typeof e.groupable == "object" && e.groupable.footer || "none", D = e.scrollable === "virtual", K = e.groupable === !0 || typeof e.groupable == "object" && e.groupable.enabled !== !1, A = Nt(!!e.detail), ct = Ft(
|
|
187
187
|
typeof e.groupable == "object" && e.groupable.enabled !== !1 ? e.groupable.expandable : e.groupable
|
|
188
|
-
), { resolvedGroupsCount:
|
|
189
|
-
|
|
188
|
+
), { resolvedGroupsCount: st, flattedData: ut } = Ze(
|
|
189
|
+
dt,
|
|
190
190
|
e.skip || 0,
|
|
191
191
|
e.group,
|
|
192
192
|
e.expandField,
|
|
@@ -194,30 +194,30 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
194
194
|
e.groupExpand,
|
|
195
195
|
e.dataItemKey
|
|
196
196
|
);
|
|
197
|
-
g =
|
|
198
|
-
const
|
|
199
|
-
|
|
197
|
+
g = ut;
|
|
198
|
+
const Q = rt();
|
|
199
|
+
Q === j && $() && (O = g.slice(
|
|
200
200
|
e.skip || 0,
|
|
201
201
|
(e.skip || 0) + ((e.take !== void 0 ? e.take : e.pageSize) || 0)
|
|
202
202
|
));
|
|
203
|
-
const ie =
|
|
204
|
-
|
|
205
|
-
const
|
|
206
|
-
const t =
|
|
203
|
+
const ie = Dt(e.selectable || !!e.selectedField), oe = Be(e.rowSpannable), mt = ie && ie.drag ? "none" : void 0, z = l.useMemo(() => l.Children.toArray(e.children), [e.children]);
|
|
204
|
+
lt(z, st);
|
|
205
|
+
const X = l.useMemo(() => {
|
|
206
|
+
const t = yl(e, s.current);
|
|
207
207
|
return {
|
|
208
208
|
premium: t.length > 0,
|
|
209
209
|
features: t
|
|
210
210
|
};
|
|
211
|
-
}, [e, s]),
|
|
211
|
+
}, [e, s]), ft = l.useMemo(() => X.premium ? !vt(ll, { component: "Grid", features: X.features }) : !1, [X.premium]), de = z.map((t) => t && t.type && t.type.displayName === "KendoReactGridToolbar" ? l.cloneElement(t, { ...t.props, ariaControls: R }) : null), M = z.filter((t) => t && t.type && t.type.displayName === "KendoReactGridNoRecords"), ce = z.filter(
|
|
212
212
|
(t) => t && t.type && t.type.displayName === "KendoReactGridStatusBar"
|
|
213
|
-
), b = s.current.filter((t) => t.children.length === 0), se = K && /* @__PURE__ */ l.createElement(
|
|
214
|
-
|
|
213
|
+
), b = s.current.filter((t) => t.children.length === 0), se = K && /* @__PURE__ */ l.createElement(_t, { columns: U().current, group: e.group || [], ariaControls: R }), ue = /* @__PURE__ */ l.createElement(
|
|
214
|
+
Vt,
|
|
215
215
|
{
|
|
216
216
|
size: E,
|
|
217
217
|
staticHeaders: e.scrollable !== "none",
|
|
218
218
|
draggable: e.reorderable || K,
|
|
219
219
|
headerRow: /* @__PURE__ */ l.createElement(
|
|
220
|
-
|
|
220
|
+
Lt,
|
|
221
221
|
{
|
|
222
222
|
cells: e.cells,
|
|
223
223
|
sort: e.sort,
|
|
@@ -226,7 +226,7 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
226
226
|
groupable: K,
|
|
227
227
|
filter: e.filter,
|
|
228
228
|
filterable: e.filterable,
|
|
229
|
-
filterOperators: e.filterOperators ||
|
|
229
|
+
filterOperators: e.filterOperators || Me,
|
|
230
230
|
columnMenu: e.columnMenu,
|
|
231
231
|
columnMenuIcon: e.columnMenuIcon,
|
|
232
232
|
columns: s.current,
|
|
@@ -241,13 +241,13 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
241
241
|
}
|
|
242
242
|
),
|
|
243
243
|
filterRow: e.filterable && /* @__PURE__ */ l.createElement(
|
|
244
|
-
|
|
244
|
+
Ot,
|
|
245
245
|
{
|
|
246
246
|
cells: e.cells,
|
|
247
247
|
size: E,
|
|
248
248
|
columns: s.current,
|
|
249
249
|
filter: e.filter,
|
|
250
|
-
filterOperators: e.filterOperators ||
|
|
250
|
+
filterOperators: e.filterOperators || Me,
|
|
251
251
|
sort: e.sort,
|
|
252
252
|
cellRender: e.filterCellRender,
|
|
253
253
|
navigatable: !!e.navigatable,
|
|
@@ -255,33 +255,33 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
255
255
|
localization: _
|
|
256
256
|
}
|
|
257
257
|
) || void 0,
|
|
258
|
-
cols: b.map((t, r) => /* @__PURE__ */ l.createElement("col", { key: r.toString(), width:
|
|
258
|
+
cols: b.map((t, r) => /* @__PURE__ */ l.createElement("col", { key: r.toString(), width: ae(t) }))
|
|
259
259
|
}
|
|
260
|
-
),
|
|
260
|
+
), gt = it.current || 0, bt = parseFloat(((e.style || {}).width || "").toString()), ht = (t, r, d, o, i) => {
|
|
261
261
|
let a = !1;
|
|
262
|
-
const c = e.selectedField ?
|
|
262
|
+
const c = e.selectedField ? Le(e.selectedField, t.dataItem) : e.select && e.dataItemKey && H(e.dataItemKey)(t.dataItem) !== void 0 ? e.select[H(e.dataItemKey)(t.dataItem)] : void 0;
|
|
263
263
|
let u = 0;
|
|
264
|
-
const { colSpans: h, hiddenColumns: T } =
|
|
264
|
+
const { colSpans: h, hiddenColumns: T } = Ht({
|
|
265
265
|
enabled: e.columnVirtualization,
|
|
266
266
|
columns: b,
|
|
267
|
-
tableViewPortWidth:
|
|
268
|
-
scrollLeft:
|
|
269
|
-
getColSpan:
|
|
267
|
+
tableViewPortWidth: bt,
|
|
268
|
+
scrollLeft: gt,
|
|
269
|
+
getColSpan: Oe,
|
|
270
270
|
dataItem: t.dataItem
|
|
271
271
|
}), I = b.filter((n, y) => !T[y]);
|
|
272
272
|
return {
|
|
273
273
|
row: b.map((n, y) => {
|
|
274
|
-
var
|
|
274
|
+
var Te, Pe, He, Ke;
|
|
275
275
|
if (T[y])
|
|
276
276
|
return null;
|
|
277
277
|
if (u > 0)
|
|
278
278
|
return u--, null;
|
|
279
279
|
let w;
|
|
280
|
-
if ((
|
|
281
|
-
const S = n.field ? (
|
|
282
|
-
w = { value: S, count: 1 }, i[n.field] && ((
|
|
280
|
+
if ((Te = n.rowSpannable) != null && Te.enabled && t.rowType === "data" && n.field && i) {
|
|
281
|
+
const S = n.field ? (He = (Pe = n.rowSpannable).valueGetter) == null ? void 0 : He.call(Pe, t.dataItem, n.field) : null;
|
|
282
|
+
w = { value: S, count: 1 }, i[n.field] && ((Ke = i[n.field]) == null ? void 0 : Ke.value) === S && i[n.field] !== null ? (i[n.field].count++, w.count = null) : i[n.field] = w;
|
|
283
283
|
}
|
|
284
|
-
const { colSpan: V, colsToSkip:
|
|
284
|
+
const { colSpan: V, colsToSkip: q } = nt(
|
|
285
285
|
n,
|
|
286
286
|
t.dataItem,
|
|
287
287
|
I,
|
|
@@ -289,19 +289,19 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
289
289
|
u,
|
|
290
290
|
h[y]
|
|
291
291
|
);
|
|
292
|
-
u =
|
|
293
|
-
const L = n.id ? n.id : y,
|
|
294
|
-
let
|
|
292
|
+
u = q;
|
|
293
|
+
const L = n.id ? n.id : y, wt = f(m.contentSticky({ locked: n.locked }), n.className), Et = n.left !== void 0 ? { left: n.left, right: n.right } : {};
|
|
294
|
+
let p = !1;
|
|
295
295
|
if (n.editable && (e.editable || e.editField)) {
|
|
296
|
-
const S = e.editField ?
|
|
297
|
-
|
|
296
|
+
const S = e.editField ? Le(e.editField, t.dataItem) : e.edit && e.dataItemKey ? e.edit[H(e.dataItemKey)(t.dataItem)] : void 0, te = typeof S == "boolean" ? S : Array.isArray(S) ? S.indexOf(n.field) > -1 : n.field !== void 0 && S === n.field;
|
|
297
|
+
te && n.columnType === "data" && (te === !0 || te === n.field) && (a = !0, p = !0);
|
|
298
298
|
}
|
|
299
|
-
const
|
|
299
|
+
const ee = n.cell || p && Bt || Zt, It = e.expandField && e.detail && n.field === e.expandField || n._type === "expand", P = {
|
|
300
300
|
locked: e.lockGroups,
|
|
301
|
-
id:
|
|
301
|
+
id: le.generateNavigatableId(
|
|
302
302
|
`${r}-${String(y)}`,
|
|
303
303
|
x,
|
|
304
|
-
|
|
304
|
+
It || t.rowType === "groupHeader" || t.rowType === "groupFooter" || n.field === "value" ? "nodata" : "cell"
|
|
305
305
|
),
|
|
306
306
|
colSpan: V,
|
|
307
307
|
dataItem: t.dataItem,
|
|
@@ -310,9 +310,9 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
310
310
|
format: n.format,
|
|
311
311
|
columnType: n.columnType,
|
|
312
312
|
rowReorderable: N,
|
|
313
|
-
className:
|
|
313
|
+
className: wt,
|
|
314
314
|
render: e.cellRender,
|
|
315
|
-
cells:
|
|
315
|
+
cells: Jt(e.cells, n.cells),
|
|
316
316
|
columnIndex: y,
|
|
317
317
|
columnsCount: b.length,
|
|
318
318
|
rowType: t.rowType,
|
|
@@ -320,39 +320,39 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
320
320
|
expanded: t.expanded,
|
|
321
321
|
dataIndex: t.dataIndex,
|
|
322
322
|
rowDataIndex: d,
|
|
323
|
-
columnPosition:
|
|
323
|
+
columnPosition: Et,
|
|
324
324
|
style: {},
|
|
325
325
|
ariaColumnIndex: n.ariaColumnIndex,
|
|
326
326
|
isSelected: (n == null ? void 0 : n._type) === "edit" ? c : Array.isArray(c) && c.indexOf(y) > -1,
|
|
327
|
-
isSorted: !!
|
|
328
|
-
isInEdit:
|
|
327
|
+
isSorted: !!Ve(n.field, e.sort),
|
|
328
|
+
isInEdit: p,
|
|
329
329
|
isAlt: o,
|
|
330
330
|
unstyled: k,
|
|
331
331
|
group: t.group,
|
|
332
332
|
localization: _,
|
|
333
|
-
intl:
|
|
333
|
+
intl: ot,
|
|
334
334
|
_rowSpan: w
|
|
335
335
|
};
|
|
336
336
|
return n.cell ? /* @__PURE__ */ l.createElement(
|
|
337
|
-
|
|
337
|
+
fl,
|
|
338
338
|
{
|
|
339
339
|
key: L,
|
|
340
|
-
isClient:
|
|
340
|
+
isClient: Qt(ee),
|
|
341
341
|
dataItem: P.dataItem,
|
|
342
342
|
rowDataIndex: P.rowDataIndex,
|
|
343
343
|
columnIndex: P.columnIndex,
|
|
344
344
|
columnPosition: P.columnPosition
|
|
345
345
|
},
|
|
346
|
-
/* @__PURE__ */ l.createElement(
|
|
347
|
-
) : /* @__PURE__ */ l.createElement(
|
|
346
|
+
/* @__PURE__ */ l.createElement(ee, { ...P })
|
|
347
|
+
) : /* @__PURE__ */ l.createElement(ee, { key: L, ...P });
|
|
348
348
|
}),
|
|
349
349
|
isInEdit: a,
|
|
350
350
|
isSelected: typeof c == "boolean" && c
|
|
351
351
|
};
|
|
352
352
|
};
|
|
353
353
|
let me = 0;
|
|
354
|
-
if (D &&
|
|
355
|
-
for (let t = 0; t <
|
|
354
|
+
if (D && J)
|
|
355
|
+
for (let t = 0; t < J.topCacheCount + J.attendedSkip - (e.skip || 0); t++) {
|
|
356
356
|
const r = g.shift();
|
|
357
357
|
if (r)
|
|
358
358
|
g.push(r), me++, r.rowType === "groupHeader" && t--;
|
|
@@ -361,17 +361,17 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
361
361
|
}
|
|
362
362
|
const fe = (t) => t >= g.length - me;
|
|
363
363
|
let ge = e.skip || 0;
|
|
364
|
-
const
|
|
364
|
+
const Y = [], be = !g.length, he = G.length + (e.filterable ? 1 : 0) + 1;
|
|
365
365
|
let B = 0;
|
|
366
366
|
if (g.length) {
|
|
367
367
|
let t = -1, r = 0;
|
|
368
368
|
const d = oe.enabled ? {} : void 0;
|
|
369
369
|
(O || g).forEach((o, i) => {
|
|
370
370
|
o.rowType === "data" && (ge++, t++);
|
|
371
|
-
const a = ge % 2 === 0, c = e.dataItemKey && H(e.dataItemKey)(o.dataItem), u = i + (e.skip || 0), h = c || "ai" + u, T = h + "_1", I =
|
|
372
|
-
if (B = u + he + r,
|
|
371
|
+
const a = ge % 2 === 0, c = e.dataItemKey && H(e.dataItemKey)(o.dataItem), u = i + (e.skip || 0), h = c || "ai" + u, T = h + "_1", I = ht(o, h, t, a, d);
|
|
372
|
+
if (B = u + he + r, Y.push(
|
|
373
373
|
/* @__PURE__ */ l.createElement(
|
|
374
|
-
|
|
374
|
+
qt,
|
|
375
375
|
{
|
|
376
376
|
key: h,
|
|
377
377
|
dataItem: o.dataItem,
|
|
@@ -395,7 +395,7 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
395
395
|
)
|
|
396
396
|
), e.detail && o.rowType === "data" && o.expanded) {
|
|
397
397
|
const n = b.length - (e.expandField || A.enabled ? 1 : 0) - (e.group ? e.group.length : 0) || 1;
|
|
398
|
-
r++, B = u + he + r,
|
|
398
|
+
r++, B = u + he + r, Y.push(
|
|
399
399
|
/* @__PURE__ */ l.createElement(
|
|
400
400
|
"tr",
|
|
401
401
|
{
|
|
@@ -410,16 +410,16 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
410
410
|
},
|
|
411
411
|
e.group && e.group.map((y, w) => {
|
|
412
412
|
var L;
|
|
413
|
-
const V = (L = I == null ? void 0 : I.row[w]) == null ? void 0 : L.props.style,
|
|
413
|
+
const V = (L = I == null ? void 0 : I.row[w]) == null ? void 0 : L.props.style, q = V ? { left: V.left, right: V.right } : {};
|
|
414
414
|
return /* @__PURE__ */ l.createElement(
|
|
415
|
-
|
|
415
|
+
_e,
|
|
416
416
|
{
|
|
417
417
|
id: "",
|
|
418
418
|
dataIndex: o.dataIndex,
|
|
419
419
|
field: y.field,
|
|
420
420
|
dataItem: o.dataItem,
|
|
421
421
|
key: w,
|
|
422
|
-
columnPosition:
|
|
422
|
+
columnPosition: q,
|
|
423
423
|
style: {},
|
|
424
424
|
ariaColumnIndex: 1 + w,
|
|
425
425
|
isSelected: !1,
|
|
@@ -430,21 +430,21 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
430
430
|
);
|
|
431
431
|
}),
|
|
432
432
|
(e.expandField || A.enabled) && /* @__PURE__ */ l.createElement(
|
|
433
|
-
|
|
433
|
+
rl,
|
|
434
434
|
{
|
|
435
435
|
unstyled: k,
|
|
436
|
-
id:
|
|
436
|
+
id: le.generateNavigatableId(`${T}-dhcell`, x)
|
|
437
437
|
}
|
|
438
438
|
),
|
|
439
439
|
/* @__PURE__ */ l.createElement(
|
|
440
|
-
|
|
440
|
+
al,
|
|
441
441
|
{
|
|
442
442
|
dataItem: o.dataItem,
|
|
443
443
|
dataIndex: o.dataIndex,
|
|
444
444
|
colSpan: n,
|
|
445
445
|
ariaColIndex: 2 + (e.group ? e.group.length : 0),
|
|
446
446
|
detail: e.detail,
|
|
447
|
-
id:
|
|
447
|
+
id: le.generateNavigatableId(`${T}-dcell`, x)
|
|
448
448
|
}
|
|
449
449
|
)
|
|
450
450
|
)
|
|
@@ -457,17 +457,17 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
457
457
|
total: v,
|
|
458
458
|
skip: e.skip || 0,
|
|
459
459
|
take: (e.take !== void 0 ? e.take : e.pageSize) || 10,
|
|
460
|
-
...
|
|
461
|
-
}, Ce = /* @__PURE__ */ l.createElement(
|
|
460
|
+
...tl(e.pageable || {})
|
|
461
|
+
}, Ce = /* @__PURE__ */ l.createElement(ol, null, e.pager ? /* @__PURE__ */ l.createElement(e.pager, { ...ye }) : /* @__PURE__ */ l.createElement(Tt, { className: f(m.pager({})), ...ye })), yt = (t, r) => /* @__PURE__ */ l.createElement("col", { key: r.toString(), width: ae(t) }), Ct = (De = e.cells) != null && De.footerCell || s.current.some((t) => {
|
|
462
462
|
var r;
|
|
463
463
|
return !!(t.footerCell || (r = t.cells) != null && r.footerCell);
|
|
464
464
|
}) ? /* @__PURE__ */ l.createElement(
|
|
465
|
-
|
|
465
|
+
zt,
|
|
466
466
|
{
|
|
467
467
|
size: E,
|
|
468
468
|
staticHeaders: e.scrollable !== "none",
|
|
469
469
|
row: /* @__PURE__ */ l.createElement(
|
|
470
|
-
|
|
470
|
+
el,
|
|
471
471
|
{
|
|
472
472
|
cells: e.cells,
|
|
473
473
|
idPrefix: x,
|
|
@@ -475,27 +475,27 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
475
475
|
ariaRowIndex: B + 1
|
|
476
476
|
}
|
|
477
477
|
),
|
|
478
|
-
cols: b.map(
|
|
478
|
+
cols: b.map(yt)
|
|
479
479
|
}
|
|
480
|
-
) : null, we = /* @__PURE__ */ l.createElement(
|
|
480
|
+
) : null, we = /* @__PURE__ */ l.createElement(nl, null, b.map((t, r) => /* @__PURE__ */ l.createElement(
|
|
481
481
|
"col",
|
|
482
482
|
{
|
|
483
483
|
key: r.toString(),
|
|
484
|
-
className:
|
|
485
|
-
width:
|
|
484
|
+
className: Ve(t.field, e.sort) ? f(m.sorted({})) : void 0,
|
|
485
|
+
width: ae(t)
|
|
486
486
|
}
|
|
487
|
-
))), Ee = e.reorderable || K, { detail:
|
|
487
|
+
))), Ee = e.reorderable || K, { detail: Il, cells: Sl, rows: vl, ...Ie } = e, Se = /* @__PURE__ */ l.createElement(
|
|
488
488
|
"tbody",
|
|
489
489
|
{
|
|
490
490
|
role: "rowgroup",
|
|
491
491
|
className: f(m.tbody({})),
|
|
492
|
-
...
|
|
492
|
+
...Pt
|
|
493
493
|
},
|
|
494
|
-
|
|
494
|
+
Y
|
|
495
495
|
);
|
|
496
|
-
let
|
|
497
|
-
if (N && (
|
|
498
|
-
|
|
496
|
+
let Z = Se;
|
|
497
|
+
if (N && (Z = /* @__PURE__ */ l.createElement(
|
|
498
|
+
gl,
|
|
499
499
|
{
|
|
500
500
|
unstyled: m,
|
|
501
501
|
columns: s.current,
|
|
@@ -504,63 +504,64 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
504
504
|
Se
|
|
505
505
|
)), e.scrollable === "none")
|
|
506
506
|
return /* @__PURE__ */ l.createElement(
|
|
507
|
-
|
|
507
|
+
je,
|
|
508
508
|
{
|
|
509
|
-
gridRef:
|
|
509
|
+
gridRef: re,
|
|
510
510
|
gridProps: Ie,
|
|
511
|
-
columnsRef:
|
|
511
|
+
columnsRef: U(),
|
|
512
512
|
columnsMapRef: G,
|
|
513
513
|
dataRef: g,
|
|
514
514
|
slicedData: O,
|
|
515
|
-
isFixedVirtualScroll:
|
|
515
|
+
isFixedVirtualScroll: Q === j,
|
|
516
516
|
id: R,
|
|
517
517
|
total: v,
|
|
518
|
+
isAllData: $(),
|
|
518
519
|
detailExpandable: !!e.detail
|
|
519
520
|
},
|
|
520
|
-
/* @__PURE__ */ l.createElement(
|
|
521
|
+
/* @__PURE__ */ l.createElement(Qe, null, /* @__PURE__ */ l.createElement(
|
|
521
522
|
"div",
|
|
522
523
|
{
|
|
523
524
|
id: e.id,
|
|
524
525
|
style: e.style,
|
|
525
526
|
className: f(m.wrapper({ size: E }), e.className),
|
|
526
527
|
"aria-label": e.ariaLabel,
|
|
527
|
-
...
|
|
528
|
+
...Ae
|
|
528
529
|
},
|
|
529
530
|
de,
|
|
530
531
|
se,
|
|
531
532
|
/* @__PURE__ */ l.createElement(
|
|
532
|
-
|
|
533
|
+
il,
|
|
533
534
|
{
|
|
534
535
|
selectable: e.selectable,
|
|
535
536
|
className: f(m.table({ size: E }))
|
|
536
537
|
},
|
|
537
538
|
we,
|
|
538
539
|
ue,
|
|
539
|
-
/* @__PURE__ */ l.createElement(
|
|
540
|
+
/* @__PURE__ */ l.createElement(Je, { rowReorderable: N }, Z)
|
|
540
541
|
),
|
|
541
|
-
be && /* @__PURE__ */ l.createElement(
|
|
542
|
-
Ee && /* @__PURE__ */ l.createElement(l.Fragment, null, /* @__PURE__ */ l.createElement(
|
|
542
|
+
be && /* @__PURE__ */ l.createElement(We, null, M.length ? M : /* @__PURE__ */ l.createElement(ze, null)),
|
|
543
|
+
Ee && /* @__PURE__ */ l.createElement(l.Fragment, null, /* @__PURE__ */ l.createElement($e, null), /* @__PURE__ */ l.createElement(Ue, null))
|
|
543
544
|
)),
|
|
544
545
|
ce,
|
|
545
546
|
e.pageable && Ce,
|
|
546
|
-
/* @__PURE__ */ l.createElement(
|
|
547
|
+
/* @__PURE__ */ l.createElement(Ye, { loader: e.loader, showLoader: e.showLoader })
|
|
547
548
|
);
|
|
548
549
|
let W = e.style || {};
|
|
549
550
|
return D && (W.height || (W = Object.assign({}, W, { height: "450px" }))), /* @__PURE__ */ l.createElement(
|
|
550
|
-
|
|
551
|
+
je,
|
|
551
552
|
{
|
|
552
|
-
gridRef:
|
|
553
|
+
gridRef: re,
|
|
553
554
|
gridProps: Ie,
|
|
554
|
-
columnsRef:
|
|
555
|
+
columnsRef: U(),
|
|
555
556
|
columnsMapRef: G,
|
|
556
557
|
dataRef: g,
|
|
557
558
|
slicedData: O,
|
|
558
|
-
isFixedVirtualScroll:
|
|
559
|
+
isFixedVirtualScroll: Q === j,
|
|
559
560
|
id: R,
|
|
560
561
|
total: v,
|
|
561
562
|
detailExpandable: !!e.detail
|
|
562
563
|
},
|
|
563
|
-
/* @__PURE__ */ l.createElement(
|
|
564
|
+
/* @__PURE__ */ l.createElement(Qe, null, /* @__PURE__ */ l.createElement(
|
|
564
565
|
"div",
|
|
565
566
|
{
|
|
566
567
|
id: e.id,
|
|
@@ -573,7 +574,7 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
573
574
|
e.className
|
|
574
575
|
),
|
|
575
576
|
"aria-label": e.ariaLabel,
|
|
576
|
-
...
|
|
577
|
+
...Ae
|
|
577
578
|
},
|
|
578
579
|
de,
|
|
579
580
|
se,
|
|
@@ -585,11 +586,11 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
585
586
|
"aria-colcount": b.length,
|
|
586
587
|
"aria-rowcount": v,
|
|
587
588
|
id: R,
|
|
588
|
-
"aria-label": _.toLanguageString(
|
|
589
|
+
"aria-label": _.toLanguageString(Xe, ul[Xe])
|
|
589
590
|
},
|
|
590
591
|
ue,
|
|
591
|
-
/* @__PURE__ */ l.createElement("div", { className: f(m.container({})), role: "presentation" }, /* @__PURE__ */ l.createElement(
|
|
592
|
-
|
|
592
|
+
/* @__PURE__ */ l.createElement("div", { className: f(m.container({})), role: "presentation" }, /* @__PURE__ */ l.createElement(cl, null, /* @__PURE__ */ l.createElement("div", { className: f(m.content({})), role: "presentation" }, /* @__PURE__ */ l.createElement("div", { className: f(m.tableWrap({})), role: "presentation" }, /* @__PURE__ */ l.createElement(
|
|
593
|
+
dl,
|
|
593
594
|
{
|
|
594
595
|
selectable: e.selectable,
|
|
595
596
|
tableClassName: f(
|
|
@@ -597,29 +598,29 @@ const wl = l.forwardRef((e, ae) => {
|
|
|
597
598
|
size: E
|
|
598
599
|
})
|
|
599
600
|
),
|
|
600
|
-
tableStyle: { userSelect:
|
|
601
|
+
tableStyle: { userSelect: mt }
|
|
601
602
|
},
|
|
602
603
|
we,
|
|
603
|
-
/* @__PURE__ */ l.createElement(
|
|
604
|
-
), be && /* @__PURE__ */ l.createElement(
|
|
604
|
+
/* @__PURE__ */ l.createElement(Je, { rowReorderable: N }, Z)
|
|
605
|
+
), be && /* @__PURE__ */ l.createElement(We, null, M.length ? M : /* @__PURE__ */ l.createElement(ze, null))), D && /* @__PURE__ */ l.createElement(
|
|
605
606
|
"div",
|
|
606
607
|
{
|
|
607
608
|
className: f(m.heightContainer({})),
|
|
608
609
|
role: "presentation"
|
|
609
610
|
},
|
|
610
|
-
/* @__PURE__ */ l.createElement(
|
|
611
|
+
/* @__PURE__ */ l.createElement(sl, { isVirtualScroll: D })
|
|
611
612
|
)))),
|
|
612
|
-
|
|
613
|
-
Ee && /* @__PURE__ */ l.createElement(l.Fragment, null, /* @__PURE__ */ l.createElement(
|
|
614
|
-
|
|
613
|
+
Ct,
|
|
614
|
+
Ee && /* @__PURE__ */ l.createElement(l.Fragment, null, /* @__PURE__ */ l.createElement($e, null), /* @__PURE__ */ l.createElement(Ue, null)),
|
|
615
|
+
ft && /* @__PURE__ */ l.createElement(Rt, null)
|
|
615
616
|
),
|
|
616
617
|
ce,
|
|
617
618
|
e.pageable && Ce,
|
|
618
|
-
/* @__PURE__ */ l.createElement(
|
|
619
|
+
/* @__PURE__ */ l.createElement(Ye, { loader: e.loader, showLoader: e.showLoader })
|
|
619
620
|
))
|
|
620
621
|
);
|
|
621
622
|
});
|
|
622
|
-
|
|
623
|
+
El.displayName = "KendoReactGridComponent";
|
|
623
624
|
export {
|
|
624
|
-
|
|
625
|
+
El as GridComponent
|
|
625
626
|
};
|