rez-table-listing-mui 2.0.6 → 2.0.8

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,6 +1,6 @@
1
1
  {
2
2
  "name": "rez-table-listing-mui",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "type": "module",
5
5
  "description": "A rez table listing component built on TanStack Table",
6
6
  "main": "dist/index.js",
@@ -47,9 +47,8 @@ export const TableBodyCell = styled("td", {
47
47
  wrap?: boolean;
48
48
  }>(({ theme, compact, isDragging, wrap }) => ({
49
49
  fontSize: theme.typography.pxToRem(14),
50
- padding: compact ? theme.spacing(0.25, 0.5) : theme.spacing(0.5, 1),
51
- // borderTop: `0.5px solid ${theme.palette.grey[100]}`,
52
- borderBottom: `0.5px solid ${theme.palette.grey[100]}`,
50
+ padding: compact ? theme.spacing(0.5, 0.75) : theme.spacing(0.75, 1.25),
51
+ borderBottom: `1px solid ${theme.palette.grey[200]}`,
53
52
 
54
53
  ...(wrap && {
55
54
  wordBreak: "break-all",
@@ -96,8 +96,8 @@ export const TableHeadCell = styled("th", {
96
96
  sticky?: boolean;
97
97
  }>(({ theme, compact, isDragging, isPinned, sticky }) => ({
98
98
  position: "relative",
99
- padding: compact ? theme.spacing(0.375, 0.675) : theme.spacing(0.75, 1),
100
- border: `0.5px solid ${theme.palette.grey[100]}`,
99
+ padding: compact ? theme.spacing(0.5, 0.75) : theme.spacing(0.75, 1.25),
100
+ border: `0.5px solid ${theme.palette.grey[200]}`,
101
101
  cursor: "pointer",
102
102
  backgroundColor: theme.palette.common.white,
103
103
  userSelect: "none",