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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.33.5",
2
+ "version": "0.33.6",
3
3
  "license": "MIT",
4
4
  "name": "material-react-table",
5
5
  "description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",
@@ -156,7 +156,7 @@ export const MRT_TableBodyCell: FC<Props> = ({
156
156
 
157
157
  const draggingBorder =
158
158
  currentDraggingColumn?.id === column.id
159
- ? `1px dashed ${theme.palette.divider}`
159
+ ? `1px dashed ${theme.palette.text.secondary}`
160
160
  : currentHoveredColumn?.id === column.id
161
161
  ? `2px dashed ${theme.palette.primary.main}`
162
162
  : undefined;
@@ -35,7 +35,7 @@ export const MRT_TableBodyRow: FC<Props> = ({ row, rowIndex, table }) => {
35
35
 
36
36
  const draggingBorder =
37
37
  currentDraggingRow?.id === row.id
38
- ? `1px dashed ${theme.palette.divider}`
38
+ ? `1px dashed ${theme.palette.text.secondary}`
39
39
  : currentHoveredRow?.id === row.id
40
40
  ? `2px dashed ${theme.palette.primary.main}`
41
41
  : undefined;
@@ -83,7 +83,7 @@ export const MRT_TableHeadCell: FC<Props> = ({ header, table }) => {
83
83
 
84
84
  const draggingBorder =
85
85
  currentDraggingColumn?.id === column.id
86
- ? `1px dashed ${theme.palette.divider}`
86
+ ? `1px dashed ${theme.palette.text.secondary}`
87
87
  : currentHoveredColumn?.id === column.id
88
88
  ? `2px dashed ${theme.palette.primary.main}`
89
89
  : undefined;