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
package/package.json
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
86
|
+
? `1px dashed ${theme.palette.text.secondary}`
|
|
87
87
|
: currentHoveredColumn?.id === column.id
|
|
88
88
|
? `2px dashed ${theme.palette.primary.main}`
|
|
89
89
|
: undefined;
|