@trackunit/react-table 0.0.605 → 0.0.607
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 +1 -0
- package/index.esm.js +1 -0
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -653,6 +653,7 @@ const useTable = ({ onTableStateChange, initialState, columns, ...reactTableProp
|
|
|
653
653
|
}, [sorting, columnVisibility, columnOrder, columnSizing, reactTableProps.state]);
|
|
654
654
|
const table = reactTable.useReactTable({
|
|
655
655
|
manualSorting: true,
|
|
656
|
+
enableSortingRemoval: false,
|
|
656
657
|
columnResizeMode: "onChange",
|
|
657
658
|
getSortedRowModel: reactTable.getSortedRowModel(),
|
|
658
659
|
getCoreRowModel: reactTable.getCoreRowModel(),
|
package/index.esm.js
CHANGED
|
@@ -634,6 +634,7 @@ const useTable = ({ onTableStateChange, initialState, columns, ...reactTableProp
|
|
|
634
634
|
}, [sorting, columnVisibility, columnOrder, columnSizing, reactTableProps.state]);
|
|
635
635
|
const table = useReactTable({
|
|
636
636
|
manualSorting: true,
|
|
637
|
+
enableSortingRemoval: false,
|
|
637
638
|
columnResizeMode: "onChange",
|
|
638
639
|
getSortedRowModel: getSortedRowModel(),
|
|
639
640
|
getCoreRowModel: getCoreRowModel(),
|