pixel-react-excel-sheet 1.0.0 → 1.0.1

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,7 +1,7 @@
1
1
  {
2
2
  "name": "pixel-react-excel-sheet",
3
3
  "description": "Great for pixel-perfect, design-focused components in React",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
7
7
  "types": "lib/index.d.ts",
@@ -102,6 +102,7 @@ export const Cell: React.FC<Types.CellComponentProps> = ({
102
102
  return (
103
103
  <td
104
104
  ref={rootRef}
105
+ style={data?.style}
105
106
  className={classnames('Spreadsheet__cell', data?.className, {
106
107
  'Spreadsheet__active-cell': active || dragging,
107
108
  })}
@@ -40,8 +40,8 @@ const ExcelFile: React.FC<ExcelFileProps> = ({
40
40
  value: '',
41
41
  style: {
42
42
  color: "var(--brand-color)",
43
- backgroundColor: "var(--brand-color)",
44
- borderColor: "var(--brand-color)",
43
+ backgroundColor: "var(--drawer-footer-bg)",
44
+ borderColor: "var(--toggle-strip-color)",
45
45
  },
46
46
  };
47
47
  const [selectedSheet, setSelectedSheet] = useState<{