pixel-react-excel-sheet 1.0.21 → 1.0.23
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 -6
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +3 -6
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +0 -3
- package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +1 -1
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +1 -0
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +1 -1
package/package.json
CHANGED
|
@@ -113,14 +113,11 @@ const ColumnIndicator: Types.ColumnIndicatorComponent = ({
|
|
|
113
113
|
tabIndex={0}
|
|
114
114
|
>
|
|
115
115
|
<div
|
|
116
|
-
style={{ position: 'fixed' }}
|
|
117
116
|
onClick={handleClick}
|
|
118
117
|
onContextMenu={contextClick}
|
|
119
118
|
tabIndex={0}>
|
|
120
|
-
|
|
121
119
|
</div>
|
|
122
120
|
{label !== undefined ? label : columnIndexToLabel(column)}
|
|
123
|
-
|
|
124
121
|
<div
|
|
125
122
|
onMouseDown={onMouseDown}
|
|
126
123
|
onClick={() => activate({ row: -1, column })}
|
|
@@ -105,7 +105,7 @@ const RowIndicator: Types.RowIndicatorComponent = ({
|
|
|
105
105
|
style={{
|
|
106
106
|
height: `${rowHeight}px`,
|
|
107
107
|
minWidth: '60px',
|
|
108
|
-
|
|
108
|
+
position: 'relative',
|
|
109
109
|
}} //Dynamic value, Inline Styling required
|
|
110
110
|
className={classNames('ff-spreadsheet-header', {
|
|
111
111
|
'ff-spreadsheet-header--selected': selected,
|
|
@@ -99,7 +99,7 @@ export type Props<CellType extends Types.CellBase> = {
|
|
|
99
99
|
onEvaluatedDataChange?: (data: Matrix.Matrix<CellType>) => void;
|
|
100
100
|
setContextMenu: React.Dispatch<React.SetStateAction<Types.ContextMenuState>>;
|
|
101
101
|
/** Set your dynamic sheet Height*/
|
|
102
|
-
|
|
102
|
+
sheetHeight: string;
|
|
103
103
|
};
|
|
104
104
|
|
|
105
105
|
/**
|