es-grid-template 1.8.94 → 1.8.95
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.
|
@@ -208,9 +208,9 @@ export declare const fixColumnsLeft: <RecordType>(columns: ColumnTable<RecordTyp
|
|
|
208
208
|
ellipsis?: boolean;
|
|
209
209
|
allowResizing?: boolean;
|
|
210
210
|
allowSelection?: boolean | ((rowData: RecordType) => boolean);
|
|
211
|
-
onCellStyles?: Omit<CSSProperties, "left" | "right" | "display" | "width" | "minWidth"
|
|
212
|
-
onCellHeaderStyles?: Omit<CSSProperties, "left" | "right" | "display" | "width" | "minWidth"
|
|
213
|
-
onCellFooterStyles?: Omit<CSSProperties, "left" | "right" | "display" | "width" | "minWidth"
|
|
211
|
+
onCellStyles?: Omit<CSSProperties, "position" | "left" | "right" | "display" | "width" | "minWidth"> | ((cellValue: any, cell: import("@tanstack/react-table").Cell<RecordType, unknown>) => Omit<CSSProperties, "position" | "left" | "right" | "display" | "width" | "minWidth">);
|
|
212
|
+
onCellHeaderStyles?: Omit<CSSProperties, "position" | "left" | "right" | "display" | "width" | "minWidth"> | ((cell: import("@tanstack/react-table").Header<RecordType, unknown>) => Omit<CSSProperties, "position" | "left" | "right" | "display" | "width" | "minWidth">);
|
|
213
|
+
onCellFooterStyles?: Omit<CSSProperties, "position" | "left" | "right" | "display" | "width" | "minWidth"> | ((cellValue: any, cell: import("@tanstack/react-table").Header<RecordType, unknown>) => Omit<CSSProperties, "position" | "left" | "right" | "display" | "width" | "minWidth">);
|
|
214
214
|
sumGroup?: boolean;
|
|
215
215
|
getValue?: (row: any, rowIndex: number) => any;
|
|
216
216
|
getCellProps?: (value: any, row: any, rowIndex: number) => import("./../../grid-component/type").CellProps;
|
|
@@ -218,7 +218,7 @@ const Grid = props => {
|
|
|
218
218
|
selected: rs
|
|
219
219
|
});
|
|
220
220
|
}
|
|
221
|
-
}, [isSelectionChange,
|
|
221
|
+
}, [isSelectionChange, rowSelection, table.getState().rowSelection]);
|
|
222
222
|
React.useEffect(() => {
|
|
223
223
|
if (sorterChange) {
|
|
224
224
|
const aa = table.getState().sorting;
|
|
@@ -223,7 +223,7 @@ const Grid = props => {
|
|
|
223
223
|
selected: rs
|
|
224
224
|
});
|
|
225
225
|
}
|
|
226
|
-
}, [isSelectionChange,
|
|
226
|
+
}, [isSelectionChange, rowSelection, table.getState().rowSelection]);
|
|
227
227
|
_react.default.useEffect(() => {
|
|
228
228
|
if (sorterChange) {
|
|
229
229
|
const aa = table.getState().sorting;
|