@teselagen/ui 0.5.23-beta.14 → 0.5.23-beta.15
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/index.cjs.js +28 -27
- package/index.es.js +28 -27
- package/package.json +1 -1
- package/src/DataTable/ColumnFilterMenu.js +6 -4
- package/src/DataTable/index.js +11 -8
package/index.cjs.js
CHANGED
|
@@ -47060,9 +47060,7 @@ const ColumnFilterMenu = /* @__PURE__ */ __name(({
|
|
|
47060
47060
|
removeSingleFilter,
|
|
47061
47061
|
schemaForField,
|
|
47062
47062
|
setNewParams,
|
|
47063
|
-
togglePopover: () =>
|
|
47064
|
-
setColumnFilterMenuOpen(false);
|
|
47065
|
-
}
|
|
47063
|
+
togglePopover: () => setColumnFilterMenuOpen(false)
|
|
47066
47064
|
}
|
|
47067
47065
|
)
|
|
47068
47066
|
},
|
|
@@ -47072,7 +47070,11 @@ const ColumnFilterMenu = /* @__PURE__ */ __name(({
|
|
|
47072
47070
|
style: { marginLeft: 5 },
|
|
47073
47071
|
icon: "filter",
|
|
47074
47072
|
size: extraCompact ? 14 : void 0,
|
|
47075
|
-
onClick: () =>
|
|
47073
|
+
onClick: (e2) => {
|
|
47074
|
+
e2.preventDefault();
|
|
47075
|
+
e2.stopPropagation();
|
|
47076
|
+
setColumnFilterMenuOpen((prev) => !prev);
|
|
47077
|
+
},
|
|
47076
47078
|
className: classNames("tg-filter-menu-button", {
|
|
47077
47079
|
"tg-active-filter": !!filterActiveForColumn
|
|
47078
47080
|
})
|
|
@@ -48254,6 +48256,21 @@ const throwFormError = /* @__PURE__ */ __name((error) => {
|
|
|
48254
48256
|
}
|
|
48255
48257
|
throw new reduxForm.SubmissionError(errorToUse);
|
|
48256
48258
|
}, "throwFormError");
|
|
48259
|
+
const useTraceUpdate = /* @__PURE__ */ __name((props) => {
|
|
48260
|
+
const prev = React$1.useRef(props);
|
|
48261
|
+
React$1.useEffect(() => {
|
|
48262
|
+
const changedProps = Object.entries(props).reduce((ps, [k2, v2]) => {
|
|
48263
|
+
if (prev.current[k2] !== v2) {
|
|
48264
|
+
ps[k2] = [prev.current[k2], v2];
|
|
48265
|
+
}
|
|
48266
|
+
return ps;
|
|
48267
|
+
}, {});
|
|
48268
|
+
if (Object.keys(changedProps).length > 0) {
|
|
48269
|
+
console.log("Changed props:", changedProps);
|
|
48270
|
+
}
|
|
48271
|
+
prev.current = props;
|
|
48272
|
+
});
|
|
48273
|
+
}, "useTraceUpdate");
|
|
48257
48274
|
T();
|
|
48258
48275
|
const IS_LINUX = window.navigator.platform.toLowerCase().search("linux") > -1;
|
|
48259
48276
|
const itemSizeEstimators = {
|
|
@@ -48488,6 +48505,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
48488
48505
|
isTableParamsConnected,
|
|
48489
48506
|
urlConnected
|
|
48490
48507
|
]);
|
|
48508
|
+
useTraceUpdate(__spreadValues({}, queryParams));
|
|
48491
48509
|
props = __spreadValues(__spreadValues({}, props), queryParams);
|
|
48492
48510
|
const {
|
|
48493
48511
|
addFilters = noop$3,
|
|
@@ -48712,7 +48730,6 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
48712
48730
|
}
|
|
48713
48731
|
return schema2;
|
|
48714
48732
|
}, [
|
|
48715
|
-
cellRenderer,
|
|
48716
48733
|
convertedSchema,
|
|
48717
48734
|
currentParams,
|
|
48718
48735
|
entities,
|
|
@@ -48722,7 +48739,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
48722
48739
|
isSimple,
|
|
48723
48740
|
isViewable,
|
|
48724
48741
|
onDoubleClick,
|
|
48725
|
-
setNewParams,
|
|
48742
|
+
// setNewParams,
|
|
48726
48743
|
showForcedHiddenColumns,
|
|
48727
48744
|
tableConfig.columnOrderings,
|
|
48728
48745
|
tableConfig.fieldOptions,
|
|
@@ -49615,7 +49632,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
49615
49632
|
]);
|
|
49616
49633
|
React$1.useEffect(() => {
|
|
49617
49634
|
addFilters(additionalFilters);
|
|
49618
|
-
}, [
|
|
49635
|
+
}, [additionalFilters]);
|
|
49619
49636
|
React$1.useEffect(() => {
|
|
49620
49637
|
setColumns(
|
|
49621
49638
|
schema.fields ? schema.fields.reduce((col, field, i) => {
|
|
@@ -49756,13 +49773,13 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
49756
49773
|
}
|
|
49757
49774
|
});
|
|
49758
49775
|
}, "addEntitiesToSelection");
|
|
49759
|
-
const refocusTable =
|
|
49776
|
+
const refocusTable = React$1.useCallback(() => {
|
|
49760
49777
|
var _a2, _b2;
|
|
49761
49778
|
const table2 = (_b2 = (_a2 = tableRef.current) == null ? void 0 : _a2.tableRef) == null ? void 0 : _b2.closest(
|
|
49762
49779
|
".data-table-container>div"
|
|
49763
49780
|
);
|
|
49764
49781
|
table2 == null ? void 0 : table2.focus();
|
|
49765
|
-
},
|
|
49782
|
+
}, []);
|
|
49766
49783
|
const isSelectionARectangle = React$1.useCallback(() => {
|
|
49767
49784
|
if (selectedCells && Object.keys(selectedCells).length > 1) {
|
|
49768
49785
|
const pathToIndex = getFieldPathToIndex(schema);
|
|
@@ -49949,6 +49966,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
49949
49966
|
formatAndValidateEntities,
|
|
49950
49967
|
primarySelectedCellId,
|
|
49951
49968
|
reduxFormCellValidation,
|
|
49969
|
+
refocusTable,
|
|
49952
49970
|
updateEntitiesHelper,
|
|
49953
49971
|
updateValidation
|
|
49954
49972
|
]
|
|
@@ -50131,6 +50149,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
50131
50149
|
isCellEditable,
|
|
50132
50150
|
isCopyable,
|
|
50133
50151
|
reduxFormCellValidation,
|
|
50152
|
+
refocusTable,
|
|
50134
50153
|
updateEntitiesHelper,
|
|
50135
50154
|
updateValidation
|
|
50136
50155
|
]
|
|
@@ -50604,8 +50623,6 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
50604
50623
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
50605
50624
|
[
|
|
50606
50625
|
SubComponent,
|
|
50607
|
-
addFilters,
|
|
50608
|
-
cellRenderer,
|
|
50609
50626
|
columns,
|
|
50610
50627
|
compact3,
|
|
50611
50628
|
currentParams,
|
|
@@ -50638,7 +50655,6 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
50638
50655
|
removeSingleFilter,
|
|
50639
50656
|
schema,
|
|
50640
50657
|
selectedCells,
|
|
50641
|
-
setNewParams,
|
|
50642
50658
|
setOrder,
|
|
50643
50659
|
shouldShowSubComponent,
|
|
50644
50660
|
startCellEdit,
|
|
@@ -69549,21 +69565,6 @@ const CmdButton = withCommand({
|
|
|
69549
69565
|
icon: "icon",
|
|
69550
69566
|
disabled: "isDisabled"
|
|
69551
69567
|
})(core.Button);
|
|
69552
|
-
const useTraceUpdate = /* @__PURE__ */ __name((props) => {
|
|
69553
|
-
const prev = React$1.useRef(props);
|
|
69554
|
-
React$1.useEffect(() => {
|
|
69555
|
-
const changedProps = Object.entries(props).reduce((ps, [k2, v2]) => {
|
|
69556
|
-
if (prev.current[k2] !== v2) {
|
|
69557
|
-
ps[k2] = [prev.current[k2], v2];
|
|
69558
|
-
}
|
|
69559
|
-
return ps;
|
|
69560
|
-
}, {});
|
|
69561
|
-
if (Object.keys(changedProps).length > 0) {
|
|
69562
|
-
console.log("Changed props:", changedProps);
|
|
69563
|
-
}
|
|
69564
|
-
prev.current = props;
|
|
69565
|
-
});
|
|
69566
|
-
}, "useTraceUpdate");
|
|
69567
69568
|
const showProgressToast = /* @__PURE__ */ __name((message, value, key, opts) => {
|
|
69568
69569
|
return window.toastr.default(
|
|
69569
69570
|
/* @__PURE__ */ React$1.createElement("div", null, /* @__PURE__ */ React$1.createElement("div", { style: { marginBottom: 10 } }, message), /* @__PURE__ */ React$1.createElement(
|
package/index.es.js
CHANGED
|
@@ -47042,9 +47042,7 @@ const ColumnFilterMenu = /* @__PURE__ */ __name(({
|
|
|
47042
47042
|
removeSingleFilter,
|
|
47043
47043
|
schemaForField,
|
|
47044
47044
|
setNewParams,
|
|
47045
|
-
togglePopover: () =>
|
|
47046
|
-
setColumnFilterMenuOpen(false);
|
|
47047
|
-
}
|
|
47045
|
+
togglePopover: () => setColumnFilterMenuOpen(false)
|
|
47048
47046
|
}
|
|
47049
47047
|
)
|
|
47050
47048
|
},
|
|
@@ -47054,7 +47052,11 @@ const ColumnFilterMenu = /* @__PURE__ */ __name(({
|
|
|
47054
47052
|
style: { marginLeft: 5 },
|
|
47055
47053
|
icon: "filter",
|
|
47056
47054
|
size: extraCompact ? 14 : void 0,
|
|
47057
|
-
onClick: () =>
|
|
47055
|
+
onClick: (e2) => {
|
|
47056
|
+
e2.preventDefault();
|
|
47057
|
+
e2.stopPropagation();
|
|
47058
|
+
setColumnFilterMenuOpen((prev) => !prev);
|
|
47059
|
+
},
|
|
47058
47060
|
className: classNames("tg-filter-menu-button", {
|
|
47059
47061
|
"tg-active-filter": !!filterActiveForColumn
|
|
47060
47062
|
})
|
|
@@ -48236,6 +48238,21 @@ const throwFormError = /* @__PURE__ */ __name((error) => {
|
|
|
48236
48238
|
}
|
|
48237
48239
|
throw new SubmissionError(errorToUse);
|
|
48238
48240
|
}, "throwFormError");
|
|
48241
|
+
const useTraceUpdate = /* @__PURE__ */ __name((props) => {
|
|
48242
|
+
const prev = useRef(props);
|
|
48243
|
+
useEffect(() => {
|
|
48244
|
+
const changedProps = Object.entries(props).reduce((ps, [k2, v2]) => {
|
|
48245
|
+
if (prev.current[k2] !== v2) {
|
|
48246
|
+
ps[k2] = [prev.current[k2], v2];
|
|
48247
|
+
}
|
|
48248
|
+
return ps;
|
|
48249
|
+
}, {});
|
|
48250
|
+
if (Object.keys(changedProps).length > 0) {
|
|
48251
|
+
console.log("Changed props:", changedProps);
|
|
48252
|
+
}
|
|
48253
|
+
prev.current = props;
|
|
48254
|
+
});
|
|
48255
|
+
}, "useTraceUpdate");
|
|
48239
48256
|
T();
|
|
48240
48257
|
const IS_LINUX = window.navigator.platform.toLowerCase().search("linux") > -1;
|
|
48241
48258
|
const itemSizeEstimators = {
|
|
@@ -48470,6 +48487,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
48470
48487
|
isTableParamsConnected,
|
|
48471
48488
|
urlConnected
|
|
48472
48489
|
]);
|
|
48490
|
+
useTraceUpdate(__spreadValues({}, queryParams));
|
|
48473
48491
|
props = __spreadValues(__spreadValues({}, props), queryParams);
|
|
48474
48492
|
const {
|
|
48475
48493
|
addFilters = noop$3,
|
|
@@ -48694,7 +48712,6 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
48694
48712
|
}
|
|
48695
48713
|
return schema2;
|
|
48696
48714
|
}, [
|
|
48697
|
-
cellRenderer,
|
|
48698
48715
|
convertedSchema,
|
|
48699
48716
|
currentParams,
|
|
48700
48717
|
entities,
|
|
@@ -48704,7 +48721,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
48704
48721
|
isSimple,
|
|
48705
48722
|
isViewable,
|
|
48706
48723
|
onDoubleClick,
|
|
48707
|
-
setNewParams,
|
|
48724
|
+
// setNewParams,
|
|
48708
48725
|
showForcedHiddenColumns,
|
|
48709
48726
|
tableConfig.columnOrderings,
|
|
48710
48727
|
tableConfig.fieldOptions,
|
|
@@ -49597,7 +49614,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
49597
49614
|
]);
|
|
49598
49615
|
useEffect(() => {
|
|
49599
49616
|
addFilters(additionalFilters);
|
|
49600
|
-
}, [
|
|
49617
|
+
}, [additionalFilters]);
|
|
49601
49618
|
useEffect(() => {
|
|
49602
49619
|
setColumns(
|
|
49603
49620
|
schema.fields ? schema.fields.reduce((col, field, i) => {
|
|
@@ -49738,13 +49755,13 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
49738
49755
|
}
|
|
49739
49756
|
});
|
|
49740
49757
|
}, "addEntitiesToSelection");
|
|
49741
|
-
const refocusTable =
|
|
49758
|
+
const refocusTable = useCallback(() => {
|
|
49742
49759
|
var _a2, _b2;
|
|
49743
49760
|
const table2 = (_b2 = (_a2 = tableRef.current) == null ? void 0 : _a2.tableRef) == null ? void 0 : _b2.closest(
|
|
49744
49761
|
".data-table-container>div"
|
|
49745
49762
|
);
|
|
49746
49763
|
table2 == null ? void 0 : table2.focus();
|
|
49747
|
-
},
|
|
49764
|
+
}, []);
|
|
49748
49765
|
const isSelectionARectangle = useCallback(() => {
|
|
49749
49766
|
if (selectedCells && Object.keys(selectedCells).length > 1) {
|
|
49750
49767
|
const pathToIndex = getFieldPathToIndex(schema);
|
|
@@ -49931,6 +49948,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
49931
49948
|
formatAndValidateEntities,
|
|
49932
49949
|
primarySelectedCellId,
|
|
49933
49950
|
reduxFormCellValidation,
|
|
49951
|
+
refocusTable,
|
|
49934
49952
|
updateEntitiesHelper,
|
|
49935
49953
|
updateValidation
|
|
49936
49954
|
]
|
|
@@ -50113,6 +50131,7 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
50113
50131
|
isCellEditable,
|
|
50114
50132
|
isCopyable,
|
|
50115
50133
|
reduxFormCellValidation,
|
|
50134
|
+
refocusTable,
|
|
50116
50135
|
updateEntitiesHelper,
|
|
50117
50136
|
updateValidation
|
|
50118
50137
|
]
|
|
@@ -50586,8 +50605,6 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
50586
50605
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
50587
50606
|
[
|
|
50588
50607
|
SubComponent,
|
|
50589
|
-
addFilters,
|
|
50590
|
-
cellRenderer,
|
|
50591
50608
|
columns,
|
|
50592
50609
|
compact3,
|
|
50593
50610
|
currentParams,
|
|
@@ -50620,7 +50637,6 @@ const DataTable = /* @__PURE__ */ __name((_G) => {
|
|
|
50620
50637
|
removeSingleFilter,
|
|
50621
50638
|
schema,
|
|
50622
50639
|
selectedCells,
|
|
50623
|
-
setNewParams,
|
|
50624
50640
|
setOrder,
|
|
50625
50641
|
shouldShowSubComponent,
|
|
50626
50642
|
startCellEdit,
|
|
@@ -69531,21 +69547,6 @@ const CmdButton = withCommand({
|
|
|
69531
69547
|
icon: "icon",
|
|
69532
69548
|
disabled: "isDisabled"
|
|
69533
69549
|
})(Button);
|
|
69534
|
-
const useTraceUpdate = /* @__PURE__ */ __name((props) => {
|
|
69535
|
-
const prev = useRef(props);
|
|
69536
|
-
useEffect(() => {
|
|
69537
|
-
const changedProps = Object.entries(props).reduce((ps, [k2, v2]) => {
|
|
69538
|
-
if (prev.current[k2] !== v2) {
|
|
69539
|
-
ps[k2] = [prev.current[k2], v2];
|
|
69540
|
-
}
|
|
69541
|
-
return ps;
|
|
69542
|
-
}, {});
|
|
69543
|
-
if (Object.keys(changedProps).length > 0) {
|
|
69544
|
-
console.log("Changed props:", changedProps);
|
|
69545
|
-
}
|
|
69546
|
-
prev.current = props;
|
|
69547
|
-
});
|
|
69548
|
-
}, "useTraceUpdate");
|
|
69549
69550
|
const showProgressToast = /* @__PURE__ */ __name((message, value, key, opts) => {
|
|
69550
69551
|
return window.toastr.default(
|
|
69551
69552
|
/* @__PURE__ */ React__default.createElement("div", null, /* @__PURE__ */ React__default.createElement("div", { style: { marginBottom: 10 } }, message), /* @__PURE__ */ React__default.createElement(
|
package/package.json
CHANGED
|
@@ -38,9 +38,7 @@ export const ColumnFilterMenu = ({
|
|
|
38
38
|
removeSingleFilter={removeSingleFilter}
|
|
39
39
|
schemaForField={schemaForField}
|
|
40
40
|
setNewParams={setNewParams}
|
|
41
|
-
togglePopover={() =>
|
|
42
|
-
setColumnFilterMenuOpen(false);
|
|
43
|
-
}}
|
|
41
|
+
togglePopover={() => setColumnFilterMenuOpen(false)}
|
|
44
42
|
/>
|
|
45
43
|
}
|
|
46
44
|
>
|
|
@@ -48,7 +46,11 @@ export const ColumnFilterMenu = ({
|
|
|
48
46
|
style={{ marginLeft: 5 }}
|
|
49
47
|
icon="filter"
|
|
50
48
|
size={extraCompact ? 14 : undefined}
|
|
51
|
-
onClick={
|
|
49
|
+
onClick={e => {
|
|
50
|
+
e.preventDefault();
|
|
51
|
+
e.stopPropagation();
|
|
52
|
+
setColumnFilterMenuOpen(prev => !prev);
|
|
53
|
+
}}
|
|
52
54
|
className={classNames("tg-filter-menu-button", {
|
|
53
55
|
"tg-active-filter": !!filterActiveForColumn
|
|
54
56
|
})}
|
package/src/DataTable/index.js
CHANGED
|
@@ -102,6 +102,7 @@ import {
|
|
|
102
102
|
import { RenderColumns } from "./Columns";
|
|
103
103
|
import { formValueSelector } from "redux-form";
|
|
104
104
|
import { throwFormError } from "../throwFormError";
|
|
105
|
+
import { useTraceUpdate } from "../utils/useTraceUpdate";
|
|
105
106
|
|
|
106
107
|
enablePatches();
|
|
107
108
|
const IS_LINUX = window.navigator.platform.toLowerCase().search("linux") > -1;
|
|
@@ -378,6 +379,8 @@ const DataTable = ({
|
|
|
378
379
|
urlConnected
|
|
379
380
|
]);
|
|
380
381
|
|
|
382
|
+
useTraceUpdate({ ...queryParams });
|
|
383
|
+
|
|
381
384
|
props = {
|
|
382
385
|
...props,
|
|
383
386
|
...queryParams
|
|
@@ -644,8 +647,8 @@ const DataTable = ({
|
|
|
644
647
|
}
|
|
645
648
|
}
|
|
646
649
|
return schema;
|
|
650
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
647
651
|
}, [
|
|
648
|
-
cellRenderer,
|
|
649
652
|
convertedSchema,
|
|
650
653
|
currentParams,
|
|
651
654
|
entities,
|
|
@@ -655,7 +658,7 @@ const DataTable = ({
|
|
|
655
658
|
isSimple,
|
|
656
659
|
isViewable,
|
|
657
660
|
onDoubleClick,
|
|
658
|
-
setNewParams,
|
|
661
|
+
// setNewParams,
|
|
659
662
|
showForcedHiddenColumns,
|
|
660
663
|
tableConfig.columnOrderings,
|
|
661
664
|
tableConfig.fieldOptions,
|
|
@@ -1662,7 +1665,8 @@ const DataTable = ({
|
|
|
1662
1665
|
|
|
1663
1666
|
useEffect(() => {
|
|
1664
1667
|
addFilters(additionalFilters);
|
|
1665
|
-
|
|
1668
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
1669
|
+
}, [additionalFilters]);
|
|
1666
1670
|
|
|
1667
1671
|
useEffect(() => {
|
|
1668
1672
|
setColumns(
|
|
@@ -1816,12 +1820,12 @@ const DataTable = ({
|
|
|
1816
1820
|
});
|
|
1817
1821
|
};
|
|
1818
1822
|
|
|
1819
|
-
const refocusTable = () => {
|
|
1823
|
+
const refocusTable = useCallback(() => {
|
|
1820
1824
|
const table = tableRef.current?.tableRef?.closest(
|
|
1821
1825
|
".data-table-container>div"
|
|
1822
1826
|
);
|
|
1823
1827
|
table?.focus();
|
|
1824
|
-
};
|
|
1828
|
+
}, []);
|
|
1825
1829
|
|
|
1826
1830
|
const isSelectionARectangle = useCallback(() => {
|
|
1827
1831
|
if (selectedCells && Object.keys(selectedCells).length > 1) {
|
|
@@ -2023,6 +2027,7 @@ const DataTable = ({
|
|
|
2023
2027
|
formatAndValidateEntities,
|
|
2024
2028
|
primarySelectedCellId,
|
|
2025
2029
|
reduxFormCellValidation,
|
|
2030
|
+
refocusTable,
|
|
2026
2031
|
updateEntitiesHelper,
|
|
2027
2032
|
updateValidation
|
|
2028
2033
|
]
|
|
@@ -2210,6 +2215,7 @@ const DataTable = ({
|
|
|
2210
2215
|
isCellEditable,
|
|
2211
2216
|
isCopyable,
|
|
2212
2217
|
reduxFormCellValidation,
|
|
2218
|
+
refocusTable,
|
|
2213
2219
|
updateEntitiesHelper,
|
|
2214
2220
|
updateValidation
|
|
2215
2221
|
]
|
|
@@ -2741,8 +2747,6 @@ const DataTable = ({
|
|
|
2741
2747
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
2742
2748
|
[
|
|
2743
2749
|
SubComponent,
|
|
2744
|
-
addFilters,
|
|
2745
|
-
cellRenderer,
|
|
2746
2750
|
columns,
|
|
2747
2751
|
compact,
|
|
2748
2752
|
currentParams,
|
|
@@ -2775,7 +2779,6 @@ const DataTable = ({
|
|
|
2775
2779
|
removeSingleFilter,
|
|
2776
2780
|
schema,
|
|
2777
2781
|
selectedCells,
|
|
2778
|
-
setNewParams,
|
|
2779
2782
|
setOrder,
|
|
2780
2783
|
shouldShowSubComponent,
|
|
2781
2784
|
startCellEdit,
|