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/lib/index.js
CHANGED
|
@@ -49457,6 +49457,7 @@ const Cell = ({
|
|
|
49457
49457
|
}
|
|
49458
49458
|
return jsxRuntime.jsxs("td", {
|
|
49459
49459
|
ref: rootRef,
|
|
49460
|
+
style: data?.style,
|
|
49460
49461
|
className: classNames('Spreadsheet__cell', data?.className, {
|
|
49461
49462
|
'Spreadsheet__active-cell': active || dragging
|
|
49462
49463
|
}),
|
|
@@ -50010,8 +50011,8 @@ const ExcelFile = ({
|
|
|
50010
50011
|
value: '',
|
|
50011
50012
|
style: {
|
|
50012
50013
|
color: "var(--brand-color)",
|
|
50013
|
-
backgroundColor: "var(--
|
|
50014
|
-
borderColor: "var(--
|
|
50014
|
+
backgroundColor: "var(--drawer-footer-bg)",
|
|
50015
|
+
borderColor: "var(--toggle-strip-color)"
|
|
50015
50016
|
}
|
|
50016
50017
|
};
|
|
50017
50018
|
const [selectedSheet, setSelectedSheet] = React.useState({
|