This repository has been archived by the owner on Mar 14, 2022. It is now read-only.
2.0.0
Breaking changes
- The
on-
prefixes (as inonAfterChange
) 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)
- Was:
Changes
- Added a
version
property to the component (as inHotTable.version
), so it's easier to check which version we're using.