material-react-table 0.8.1 → 0.8.2
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/README.md +1 -1
- package/dist/material-react-table.cjs.development.js +0 -1
- package/dist/material-react-table.cjs.development.js.map +1 -1
- package/dist/material-react-table.cjs.production.min.js +1 -1
- package/dist/material-react-table.cjs.production.min.js.map +1 -1
- package/dist/material-react-table.esm.js +0 -1
- package/dist/material-react-table.esm.js.map +1 -1
- package/dist/table/MRT_TableContainer.d.ts +1 -1
- package/package.json +2 -3
- package/src/head/MRT_TableHeadCell.tsx +1 -1
- package/src/table/MRT_TableContainer.tsx +1 -1
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Join the [discord](https://discord.gg/5wqyRx6fnm) server to join in on the devel
|
|
|
23
23
|
- [x] Column Actions
|
|
24
24
|
- [x] Column Hiding
|
|
25
25
|
- [x] Column Grouping (Group By and Aggregates)
|
|
26
|
-
- [
|
|
26
|
+
- [x] Column Ordering (react-dnd)
|
|
27
27
|
- [x] Column Pinning
|
|
28
28
|
- [x] Column Resizing (work in progress)
|
|
29
29
|
- [x] Custom Icons
|
|
@@ -2299,7 +2299,6 @@ var MRT_TableHeadCell = function MRT_TableHeadCell(_ref) {
|
|
|
2299
2299
|
return (tableInstance.getRightLeafHeaders().length - 1 - column.getPinnedIndex()) * 150;
|
|
2300
2300
|
};
|
|
2301
2301
|
|
|
2302
|
-
console.log(column.getCanGroup());
|
|
2303
2302
|
return React__default.createElement(material.TableCell, Object.assign({
|
|
2304
2303
|
align: column.columnDefType === 'group' ? 'center' : 'left',
|
|
2305
2304
|
colSpan: header.colSpan
|