pixel-react-excel-sheet 1.0.17 → 1.0.18
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.esm.js +3 -5
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +3 -5
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/Themes/BaseTheme.scss +1 -0
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +1 -1
- package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +0 -1
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +2 -5
package/package.json
CHANGED
|
@@ -129,7 +129,7 @@ const ColumnIndicator: Types.ColumnIndicatorComponent = ({
|
|
|
129
129
|
// </th>
|
|
130
130
|
|
|
131
131
|
<th
|
|
132
|
-
style={{ minWidth: `${columnWidth}px
|
|
132
|
+
style={{ minWidth: `${columnWidth}px`}} //Dynamic value, Inline Styling required
|
|
133
133
|
className={classNames('ff-spreadsheet-header', {
|
|
134
134
|
'ff-spreadsheet-header--selected': selected,
|
|
135
135
|
})}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
--outline-color: var(--toggle-strip-active);
|
|
20
20
|
--outline-background-color: var(--overlay-bg);
|
|
21
21
|
--border-color: var(--excel-sheet-border);
|
|
22
|
-
--header-background-color: var(--
|
|
22
|
+
--header-background-color: var(--excel-header-bg);
|
|
23
23
|
--elevation: var(--brand-color);
|
|
24
24
|
|
|
25
25
|
position: relative;
|
|
@@ -97,13 +97,10 @@
|
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
.ff-spreadsheet-corner-header{
|
|
100
|
+
|
|
100
101
|
z-index: 1100;
|
|
101
102
|
}
|
|
102
103
|
|
|
103
|
-
.corner_indicator {
|
|
104
|
-
padding-left: 20px;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
104
|
.ff-spreadsheet-header--selected {
|
|
108
105
|
background: var(--brand-color);
|
|
109
106
|
color: var(--tooltip-text-color);
|