Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

2.0.0

Compare
Choose a tag to compare
@jansiegel jansiegel released this 10 Oct 09:44
· 46 commits to master since this release

Breaking changes

  • The on- prefixes (as in onAfterChange) were removed from hook declaration names, to simplify the Handsontable configuration, when migrating from the vanilla version.
    After this change, the hooks should be declared exactly like in the plain JS Handsontable config:
    • Was: onAfterChange: function() { }
    • Is: afterChange: function() { }
      (#101)

Changes

  • Added a version property to the component (as in HotTable.version), so it's easier to check which version we're using.