material-react-table 0.33.5 → 0.33.6
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/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/material-react-table.esm.js +3 -3
- package/dist/esm/material-react-table.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/body/MRT_TableBodyCell.tsx +1 -1
- package/src/body/MRT_TableBodyRow.tsx +1 -1
- package/src/head/MRT_TableHeadCell.tsx +1 -1
|
@@ -1617,7 +1617,7 @@ const MRT_TableHeadCell = ({ header, table }) => {
|
|
|
1617
1617
|
}
|
|
1618
1618
|
};
|
|
1619
1619
|
const draggingBorder = (currentDraggingColumn === null || currentDraggingColumn === void 0 ? void 0 : currentDraggingColumn.id) === column.id
|
|
1620
|
-
? `1px dashed ${theme.palette.
|
|
1620
|
+
? `1px dashed ${theme.palette.text.secondary}`
|
|
1621
1621
|
: (currentHoveredColumn === null || currentHoveredColumn === void 0 ? void 0 : currentHoveredColumn.id) === column.id
|
|
1622
1622
|
? `2px dashed ${theme.palette.primary.main}`
|
|
1623
1623
|
: undefined;
|
|
@@ -1881,7 +1881,7 @@ const MRT_TableBodyCell = ({ cell, enableHover, rowIndex, rowRef, table, }) => {
|
|
|
1881
1881
|
}
|
|
1882
1882
|
};
|
|
1883
1883
|
const draggingBorder = (currentDraggingColumn === null || currentDraggingColumn === void 0 ? void 0 : currentDraggingColumn.id) === column.id
|
|
1884
|
-
? `1px dashed ${theme.palette.
|
|
1884
|
+
? `1px dashed ${theme.palette.text.secondary}`
|
|
1885
1885
|
: (currentHoveredColumn === null || currentHoveredColumn === void 0 ? void 0 : currentHoveredColumn.id) === column.id
|
|
1886
1886
|
? `2px dashed ${theme.palette.primary.main}`
|
|
1887
1887
|
: undefined;
|
|
@@ -1986,7 +1986,7 @@ const MRT_TableBodyRow = ({ row, rowIndex, table }) => {
|
|
|
1986
1986
|
};
|
|
1987
1987
|
const rowRef = useRef(null);
|
|
1988
1988
|
const draggingBorder = (currentDraggingRow === null || currentDraggingRow === void 0 ? void 0 : currentDraggingRow.id) === row.id
|
|
1989
|
-
? `1px dashed ${theme.palette.
|
|
1989
|
+
? `1px dashed ${theme.palette.text.secondary}`
|
|
1990
1990
|
: (currentHoveredRow === null || currentHoveredRow === void 0 ? void 0 : currentHoveredRow.id) === row.id
|
|
1991
1991
|
? `2px dashed ${theme.palette.primary.main}`
|
|
1992
1992
|
: undefined;
|