pixel-react-excel-sheet 1.0.8 → 1.0.10
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 +8 -4
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +8 -4
- 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/ExcelFile.scss +1 -1
- package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +1 -0
- package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +1 -1
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +4 -2
package/package.json
CHANGED
|
@@ -242,6 +242,7 @@ $base-theme: (
|
|
|
242
242
|
ff-machine-active-status-color: #4caf50,
|
|
243
243
|
//ExcelSheet
|
|
244
244
|
excel-sheet-button-color: #e9b5ff,
|
|
245
|
+
excel-sheet-header-background-color: #f3f0f5,
|
|
245
246
|
icon-hover-color: #f7ecf8,
|
|
246
247
|
ff-search-icon-hover-color: #f7ecf8,
|
|
247
248
|
ff-search-filed-bg-color: #ffffff,
|
|
@@ -102,7 +102,7 @@ const RowIndicator: Types.RowIndicatorComponent = ({
|
|
|
102
102
|
|
|
103
103
|
return (
|
|
104
104
|
<th
|
|
105
|
-
style={{ height: `${rowHeight}px` }} //Dynamic value, Inline Styling required
|
|
105
|
+
style={{ height: `${rowHeight}px` ,minWidth:'60px' }} //Dynamic value, Inline Styling required
|
|
106
106
|
className={classNames('ff-spreadsheet-header', {
|
|
107
107
|
'ff-spreadsheet-header--selected': selected,
|
|
108
108
|
})}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
--outline-color: var(--toggle-strip-active);
|
|
17
17
|
--outline-background-color: var(--overlay-bg);
|
|
18
18
|
--border-color: var(--toggle-strip-color);
|
|
19
|
-
--header-background-color: var(--
|
|
19
|
+
--header-background-color: var(--excel-sheet-header-background-color);
|
|
20
20
|
--elevation: var(--brand-color);
|
|
21
21
|
|
|
22
22
|
position: relative;
|
|
@@ -90,10 +90,12 @@
|
|
|
90
90
|
color: var(--readonly-text-color);
|
|
91
91
|
text-align: center;
|
|
92
92
|
z-index: 100;
|
|
93
|
+
font-weight: 500;
|
|
94
|
+
font-size: 12px;
|
|
93
95
|
}
|
|
94
96
|
|
|
95
97
|
.corner_indicator {
|
|
96
|
-
padding-left:
|
|
98
|
+
padding-left: 20px;
|
|
97
99
|
}
|
|
98
100
|
|
|
99
101
|
.ff-spreadsheet-header--selected {
|