pixel-react-excel-sheet 1.0.10 → 1.0.11

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.10",
4
+ "version": "1.0.11",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
7
7
  "types": "lib/index.d.ts",
@@ -1,6 +1,7 @@
1
1
 
2
2
  .ff-excel-book {
3
3
  // position: relative;
4
+ z-index: 1000;
4
5
 
5
6
  .ff-excel-sheet {
6
7
  position: static;
@@ -102,7 +102,7 @@ const RowIndicator: Types.RowIndicatorComponent = ({
102
102
 
103
103
  return (
104
104
  <th
105
- style={{ height: `${rowHeight}px` ,minWidth:'60px' }} //Dynamic value, Inline Styling required
105
+ style={{ height: `${rowHeight}px` ,minWidth:'60px' ,position:'relative' }} //Dynamic value, Inline Styling required
106
106
  className={classNames('ff-spreadsheet-header', {
107
107
  'ff-spreadsheet-header--selected': selected,
108
108
  })}
@@ -21,6 +21,7 @@
21
21
 
22
22
  position: relative;
23
23
  overflow: scroll;
24
+ max-height: calc(100vh - 70px);
24
25
  background: var(--background-color);
25
26
  color: var(--text-color);
26
27
  scrollbar-width: none;
@@ -86,6 +87,7 @@
86
87
  }
87
88
 
88
89
  .ff-spreadsheet-header {
90
+ border: 0.1px solid var(--border-color);
89
91
  background-color: var(--header-background-color);
90
92
  color: var(--readonly-text-color);
91
93
  text-align: center;