react-spread-sheet-excel
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -536,3 +536,3 @@ import { jsx, jsxs, Fragment } from 'react/jsx-runtime'; | ||
const setSelected = (row = i, column = j) => { | ||
if (row >= 0 && column >= 0 && row && row < rowLength && column < columnLength) | ||
if (row >= 0 && column >= 0 && row < rowLength && column < columnLength) | ||
dispatch(selectOneCell, { payload: { i: row, j: column } }); | ||
@@ -539,0 +539,0 @@ }; |
{ | ||
"name": "react-spread-sheet-excel", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "A quick example of rendering large number of input boxes in table using React JS, React Spread-sheet (Excel sheet)", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -61,4 +61,3 @@ # React-spread-sheet-excel | ||
import React, { useRef, useState } from "react"; | ||
import Sheet, { SheetRef } from "./lib"; | ||
import packageConf from "../package.json"; | ||
import Sheet, { SheetRef } from "react-spread-sheet-excel"; | ||
@@ -65,0 +64,0 @@ //Create dummy data. |
Sorry, the diff of this file is not supported yet
150329
151