pixel-react-excel-sheet 1.0.8 → 1.0.9

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.8",
4
+ "version": "1.0.9",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
7
7
  "types": "lib/index.d.ts",
@@ -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,
@@ -11,7 +11,7 @@
11
11
  .ff-excel-sheet-bar {
12
12
  position: static;
13
13
  max-width: 100%;
14
- margin-left: 48px;
14
+ margin-left: 60px;
15
15
  display: flex;
16
16
  height: 36px;
17
17
  align-items: center;
@@ -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
  })}
@@ -14,9 +14,9 @@
14
14
  --text-color: var(--text-color);
15
15
  --readonly-text-color: var(--toggle-strip-active);
16
16
  --outline-color: var(--toggle-strip-active);
17
- --outline-background-color: var(--overlay-bg);
17
+ --outline-background-color: var(--brand-color);
18
18
  --border-color: var(--toggle-strip-color);
19
- --header-background-color: var(--pop-up-background-blur);
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: 0px 0px 0px 15px;
98
+ padding-left: 20px;
97
99
  }
98
100
 
99
101
  .ff-spreadsheet-header--selected {