Releases: iddan/react-spreadsheet
Releases · iddan/react-spreadsheet
v0.8.0
Features
New Formula Evaluation Engine
This release includes an overhaul of the formula evaluation process. Now, React Spreadsheet supports formula cells depending on other formula cells and ranges.
Breaking Changes
- Removed
getBindingsForCell
- to simplify the work on the new formula engine getBindingsForCell
is removed for now. It may be added back in a future release if it integrates well into the new evaluation engine and doesn't complicate it too much.
- Removed
getComputedValue
v0.7.0
What's Changed
Support selecting entire rows, columns, and tables.
Full Changelog: v0.6.2...v0.7.0
v0.6.0
- Split
Row
to two components: Row
for rows in the table body and HeaderRow
for the table header row.
v0.5.20
- Add
darkMode
prop to Spreadsheet to activate dark mode
v0.5.19
- Bundle type declarations for better experience introspecting types.
v0.5.18
Fix an issue introduced in 0.15.17 that double-clicking the active cell won't change the mode to edit.
v0.5.17
- Update Spreadsheet active and selected when the component blurs
v0.5.16
- Add
exitEditMode
prop to DataEditor
to allow to programmatically exit edit mode.
v0.5.15
- Deprecate
CellDescriptor
- Support newer versions of React (by changing the code to use context and reducer as store instead of Unistore)
- Test most of the code and make sure code is more testable