pixel-react-excel-sheet 1.0.17 → 1.0.19
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 +5 -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;
|
|
@@ -46,6 +46,9 @@
|
|
|
46
46
|
|
|
47
47
|
.ff-spreadsheet-table {
|
|
48
48
|
overflow: scroll;
|
|
49
|
+
top: 0;
|
|
50
|
+
left: 0;
|
|
51
|
+
position: relative;
|
|
49
52
|
&::-webkit-scrollbar {
|
|
50
53
|
height: 0px;
|
|
51
54
|
}
|
|
@@ -97,13 +100,10 @@
|
|
|
97
100
|
}
|
|
98
101
|
|
|
99
102
|
.ff-spreadsheet-corner-header{
|
|
103
|
+
|
|
100
104
|
z-index: 1100;
|
|
101
105
|
}
|
|
102
106
|
|
|
103
|
-
.corner_indicator {
|
|
104
|
-
padding-left: 20px;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
107
|
.ff-spreadsheet-header--selected {
|
|
108
108
|
background: var(--brand-color);
|
|
109
109
|
color: var(--tooltip-text-color);
|