pixel-react-excel-sheet 1.0.22 → 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 CHANGED
@@ -31359,9 +31359,6 @@ const Row = props => jsx("tr", {
31359
31359
  });
31360
31360
 
31361
31361
  const HeaderRow = props => jsx("tr", {
31362
- style: {
31363
- position: 'relative'
31364
- },
31365
31362
  ...props
31366
31363
  });
31367
31364
 
@@ -31588,8 +31585,8 @@ const RowIndicator = ({
31588
31585
  return jsxs("th", {
31589
31586
  style: {
31590
31587
  height: `${rowHeight}px`,
31591
- minWidth: '60px'
31592
- // position: 'relative',
31588
+ minWidth: '60px',
31589
+ position: 'relative'
31593
31590
  },
31594
31591
  className: classNames('ff-spreadsheet-header', {
31595
31592
  'ff-spreadsheet-header--selected': selected
@@ -32744,21 +32741,6 @@ const Spreadsheet = props => {
32744
32741
  addColumnLeft: addColumnLeft$1,
32745
32742
  data: props.data
32746
32743
  }, columnNumber))]
32747
- }), jsxs(HeaderRow$1, {
32748
- children: [jsx(CornerIndicator$1, {}), range(size.columns).map(columnNumber => columnLabels ? jsx(ColumnIndicator, {
32749
- column: columnNumber,
32750
- setContextMenu: props.setContextMenu,
32751
- label: columnNumber in columnLabels ? columnLabels[columnNumber] : null,
32752
- deleteColumn: deleteColumn$1,
32753
- addColumnLeft: addColumnLeft$1,
32754
- data: props.data
32755
- }, columnNumber) : jsx(ColumnIndicator, {
32756
- column: columnNumber,
32757
- setContextMenu: props.setContextMenu,
32758
- deleteColumn: deleteColumn$1,
32759
- addColumnLeft: addColumnLeft$1,
32760
- data: props.data
32761
- }, columnNumber))]
32762
32744
  }), range(size.rows).map(rowNumber => jsxs(Row$1, {
32763
32745
  row: rowNumber,
32764
32746
  children: [rowLabels ? jsx(RowIndicator$1, {