rez-table-listing-mui 2.0.7 → 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.7",
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,7 +47,7 @@ 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),
50
+ padding: compact ? theme.spacing(0.5, 0.75) : theme.spacing(0.75, 1.25),
51
51
  borderBottom: `1px solid ${theme.palette.grey[200]}`,
52
52
 
53
53
  ...(wrap && {
@@ -96,7 +96,7 @@ 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),
99
+ padding: compact ? theme.spacing(0.5, 0.75) : theme.spacing(0.75, 1.25),
100
100
  border: `0.5px solid ${theme.palette.grey[200]}`,
101
101
  cursor: "pointer",
102
102
  backgroundColor: theme.palette.common.white,