handsontable 12.3.0-next-bb1a7c2-20221208 → 12.3.0-next-97562d5-20221213
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/CHANGELOG.md +167 -79
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +5 -5
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +4 -4
- package/dist/handsontable.js +5 -5
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# Handsontable changelog
|
2
|
+
|
2
3
|
All notable changes to this project will be documented in this file.
|
3
4
|
|
4
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
@@ -10,48 +11,70 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
10
11
|
|
11
12
|
## [12.3.0] - 2022-12-14
|
12
13
|
|
13
|
-
|
14
|
-
-
|
15
|
-
-
|
16
|
-
-
|
17
|
-
- Fixed a problem where the table was not rendered properly if it had been initialized in a hidden container. [#5322](https://github.com/handsontable/handsontable/issues/5322)
|
18
|
-
- Fixed cell meta objects desynchronization issue when they are declared within the `{before,after}CreateRow` or `{before,after}CreateColumn` hooks. [#6](https://github.com/handsontable/dev-handsontable/issues/6)
|
19
|
-
- Comment editor will be shown properly, when comment had been added on fixed column and some scrolling was performed [#9645](https://github.com/handsontable/handsontable/issues/9645)
|
20
|
-
- Fixed `dropdown`-type editor that prevents typing values using IME. [#9672](https://github.com/handsontable/handsontable/issues/9672)
|
21
|
-
- Internal: Fixed the broken "verify-bundles" script, used in the version freezing process. [#9891](https://github.com/handsontable/handsontable/issues/9891)
|
22
|
-
- *React:* Fixed a problem with the dropdown-typed cells validation when using `HotColumn`. [#10065](https://github.com/handsontable/handsontable/issues/10065)
|
14
|
+
For more information on this release, see:
|
15
|
+
- [Blog post](https://handsontable.com/blog/handsontable-12.3.0-copying-column-headers)
|
16
|
+
- [Documentation (12.3)](https://handsontable.com/docs/12.3/)
|
17
|
+
- [Release notes](https://handsontable.com/docs/release-notes/#_12-3-0)
|
23
18
|
|
24
19
|
### Added
|
25
|
-
|
26
|
-
-
|
27
|
-
-
|
20
|
+
|
21
|
+
- Added a new feature that lets you copy the contents of column headers by using 3 new context menu options: "Copy with headers", "Copy with group headers", and "Copy headers only". [#2288](https://github.com/handsontable/handsontable/issues/2288)
|
22
|
+
- Added 4 new API methods for copying column headers programmatically: `copyCellsOnly()`, `copyWithColumnHeaders()`, `copyWithAllColumnHeaders()`, and `copyColumnHeadersOnly()`. [#2288](https://github.com/handsontable/handsontable/issues/2288)
|
23
|
+
- Added missing TypeScript definitions of the `CellCoords` and `CellRange` classes, which are used in the arguments of some of the APIs. [#9755](https://github.com/handsontable/handsontable/issues/9755)
|
24
|
+
- Added missing TypeScript definitions for the following Handsontable hooks: `beforeColumnFreeze`, `afterColumnFreeze`, `beforeColumnUnfreeze`, and `afterColumnUnfreeze`. [#9859](https://github.com/handsontable/handsontable/issues/9859)
|
25
|
+
|
26
|
+
### Fixed
|
27
|
+
|
28
|
+
- Fixed an issue where the `UndoRedo` plugin didn't work properly with preconfigured columns. [#10108](https://github.com/handsontable/handsontable/pull/10108)
|
29
|
+
- Fixed an issue where formulas inserted programmatically by using `updateData()` were not evaluated. [#10011](https://github.com/handsontable/handsontable/issues/10011)
|
30
|
+
- Fixed a regression where setting a column's `type` could overwrite other custom-defined settings. [#10128](https://github.com/handsontable/handsontable/pull/10128)
|
31
|
+
- Fixed an issue where Handsontable didn't render properly when initialized inside of a hidden container. [#5322](https://github.com/handsontable/handsontable/issues/5322)
|
32
|
+
- Fixed an issue of desynchronization between configuration options (cell meta) and Handsontable's data. The issue occurred when Handsontable's options were modified through the following hooks: `beforeCreateRow`, `afterCreateRow`, `beforeCreateCol`, and `afterCreateCol`. [#10136](https://github.com/handsontable/handsontable/pull/10136)
|
33
|
+
- Fixed an issue where comments added to fixed columns didn't display properly after scrolling. [#9645](https://github.com/handsontable/handsontable/issues/9645)
|
34
|
+
- Fixed an issue where typing in a `dropdown` editor caused the IME to disappear, resulting in wrong characters being typed. [#9672](https://github.com/handsontable/handsontable/issues/9672)
|
35
|
+
- React: Fixed an issue where `dropdown` cells weren't validated properly when using the `HotColumn` component. [#10065](https://github.com/handsontable/handsontable/issues/10065)
|
28
36
|
|
29
37
|
## [12.2.0] - 2022-10-25
|
30
38
|
|
31
39
|
For more information on this release, see:
|
40
|
+
- [Blog post](https://handsontable.com/blog/handsontable-12.2.0)
|
41
|
+
- [Documentation (12.2)](https://handsontable.com/docs/12.2/)
|
32
42
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-2-0)
|
33
|
-
- [Blog post](https://handsontable.com/blog/articles/handsontable-12.2.0)
|
34
43
|
|
35
44
|
### Added
|
36
|
-
|
45
|
+
|
46
|
+
- Added a new feature that lets you add rows and columns at a specified position. Now, the `alter()` method takes 4 new parameter values: `insert_row_above`, `insert_row_below`, `insert_col_start`, and `insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
|
47
|
+
|
48
|
+
### Deprecated
|
49
|
+
|
50
|
+
- Deprecated the `insert_row` parameter of the `alter()` method. Instead, use `insert_row_above` or `insert_row_below`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
|
51
|
+
- Deprecated the `insert_col` parameter of the `alter()` method. Instead, use `insert_col_start` or `insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
|
52
|
+
|
53
|
+
### Removed
|
54
|
+
|
55
|
+
- Removed a type definition for a non-existing method, `translateRowsToColumns()`. [#9919](https://github.com/handsontable/handsontable/issues/9919)
|
37
56
|
|
38
57
|
### Fixed
|
58
|
+
|
39
59
|
- Fixed an issue where the width of the cell editor was calculated incorrectly. [#3815](https://github.com/handsontable/handsontable/issues/3815)
|
40
60
|
- Fixed an issue where formulas surrounded by merged cells were converted to values by mistake. [#6359](https://github.com/handsontable/handsontable/issues/6359)
|
41
61
|
- Fixed an issue where Handsontable could disappear on Firefox 93 (and later) in a specific use case. [#9545](https://github.com/handsontable/handsontable/issues/9545)
|
42
62
|
- Fixed an issue where changing a cell's `type` through `setCellMeta()` didn't properly set the cell's `editor` and `renderer`. [#9734](https://github.com/handsontable/handsontable/issues/9734)
|
43
63
|
- Fixed an issue where the dropdown menu didn't display when the `NestedHeaders` plugin was enabled and all rows were trimmed out. [#9753](https://github.com/handsontable/handsontable/issues/9753)
|
44
64
|
|
45
|
-
### Removed
|
46
|
-
- Removed a type definition for a non-existing method, `translateRowsToColumns()`. [#9919](https://github.com/handsontable/handsontable/issues/9919)
|
47
|
-
|
48
65
|
## [12.1.3] - 2022-09-22
|
49
66
|
|
50
67
|
For more information on this release, see:
|
68
|
+
- [Documentation (12.1)](https://handsontable.com/docs/12.1/)
|
51
69
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-3)
|
52
|
-
|
70
|
+
|
71
|
+
### Removed
|
72
|
+
|
73
|
+
- Removed a custom stable sorting implementation in favor of the built-in sorting algorithm [#6091](https://github.com/handsontable/handsontable/issues/6091)
|
74
|
+
- Removed type definitions for non-existing methods `rowOffset` and `colOffset` and a non-existing hook `modifyRowSourceData`. [#8659](https://github.com/handsontable/handsontable/issues/8659), [#7317](https://github.com/handsontable/handsontable/issues/7317)
|
53
75
|
|
54
76
|
### Fixed
|
77
|
+
|
55
78
|
- Fixed incorrect date format conversion on input in the date editor. [#9681](https://github.com/handsontable/handsontable/issues/9681)
|
56
79
|
- Fixed an error when adding a large number of rows using the `alter` method. [#7840](https://github.com/handsontable/handsontable/issues/7840)
|
57
80
|
- Fixed IME text input in the editors. [#9586](https://github.com/handsontable/handsontable/issues/9586)
|
@@ -63,34 +86,36 @@ For more information on this release, see:
|
|
63
86
|
- Fixed misalignment on mobile devices when the edge cells were selected. [#9621](https://github.com/handsontable/handsontable/issues/9621)
|
64
87
|
- Fixed type definitions for the method `setSourceDataAtCell`. [#8599](https://github.com/handsontable/handsontable/issues/8599)
|
65
88
|
|
66
|
-
### Removed
|
67
|
-
- Removed a custom stable sorting implementation in favor of the built-in sorting algorithm [#6091](https://github.com/handsontable/handsontable/issues/6091)
|
68
|
-
- Removed type definitions for non-existing methods `rowOffset` and `colOffset` and a non-existing hook `modifyRowSourceData`. [#8659](https://github.com/handsontable/handsontable/issues/8659), [#7317](https://github.com/handsontable/handsontable/issues/7317)
|
69
|
-
|
70
89
|
## [12.1.2] - 2022-07-08
|
71
90
|
|
72
91
|
For more information on this release, see:
|
92
|
+
- [Documentation (12.1)](https://handsontable.com/docs/12.1/)
|
73
93
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-2)
|
74
94
|
|
75
95
|
### Changed
|
96
|
+
|
76
97
|
- Changed the version of the Moment.js dependency from 2.29.3 to 2.29.4, in reaction to a recently-found Moment.js security vulnerability. The vulnerability did not affect a correct configuration of Handsontable. [#9638](https://github.com/handsontable/handsontable/issues/9638)
|
77
|
-
-
|
98
|
+
- Vue: Freezed the version of the Vue framework that is used in our build chain to ~2.6. This shouldn't affect apps that use Vue 2.7+. [#9624](https://github.com/handsontable/handsontable/issues/9624)
|
78
99
|
|
79
100
|
## [12.1.1] - 2022-07-05
|
80
101
|
|
81
102
|
For more information on this release, see:
|
103
|
+
- [Documentation (12.1)](https://handsontable.com/docs/12.1/)
|
82
104
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-1)
|
83
105
|
|
84
106
|
### Fixed
|
85
|
-
|
107
|
+
|
108
|
+
- Angular: Fixed an issue where the installation of `@handsontable/angular` package failed for versions of Angular other than 9 [#9622](https://github.com/handsontable/handsontable/issues/9622)
|
86
109
|
|
87
110
|
## [12.1.0] - 2022-06-28
|
88
111
|
|
89
112
|
For more information on this release, see:
|
90
|
-
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-0)
|
91
113
|
- [Blog post](https://handsontable.com/blog/handsontable-12.1.0-data-grid-new-hooks-new-translations-and-rendering-improvements)
|
114
|
+
- [Documentation (12.1)](https://handsontable.com/docs/12.1/)
|
115
|
+
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-0)
|
92
116
|
|
93
117
|
### Added
|
118
|
+
|
94
119
|
- Added smoother row and column moving when some row or columns are hidden. [#7613](https://github.com/handsontable/handsontable/issues/7613)
|
95
120
|
- Added `getNearestNotHiddenIndex()`, a new method that finds the visual index of the nearest not-hidden row or column and works even with large numbers of hidden rows or columns. The previous method, `getFirstNotHiddenIndex()`, still works, but is marked as deprecated. [#9064](https://github.com/handsontable/handsontable/issues/9064)
|
96
121
|
- Added a Czech translation. [#9343](https://github.com/handsontable/handsontable/issues/9343)
|
@@ -98,12 +123,18 @@ For more information on this release, see:
|
|
98
123
|
- Added new hooks: `beforeColumnFreeze`, `afterColumnFreeze`, `beforeColumnUnfreeze`, and `afterColumnUnfreeze`. [#9248](https://github.com/handsontable/handsontable/issues/9248)
|
99
124
|
|
100
125
|
### Changed
|
126
|
+
|
101
127
|
- Replaced HTML entities appearing in Handsontable's license texts with canonical counterparts. [#9487](https://github.com/handsontable/handsontable/issues/9487)
|
102
128
|
- Updated the Pikaday optional dependency to 1.8.2, to let Handsontable work with Parcel 2 without errors. [#9410](https://github.com/handsontable/handsontable/issues/9410)
|
103
|
-
-
|
104
|
-
-
|
129
|
+
- React: Changed the wrapper's lifecycle methods, to let Handsontable work with React 17+ without warnings. [#8748](https://github.com/handsontable/handsontable/issues/8748)
|
130
|
+
- Angular: Moved the `@angular/core` dependency to peer dependencies. [#9574](https://github.com/handsontable/handsontable/issues/9574)
|
131
|
+
|
132
|
+
### Deprecated
|
133
|
+
|
134
|
+
- Deprecated the `getFirstNotHiddenIndex()` method. Use `getNearestNotHiddenIndex()` instead. [#9064](https://github.com/handsontable/handsontable/issues/9064)
|
105
135
|
|
106
136
|
### Fixed
|
137
|
+
|
107
138
|
- Fixed an issue where dropdown and autocomplete cell editors rendered incorrectly if the `preventOverflow` option was set to `'horizontal'`. [#3828](https://github.com/handsontable/handsontable/issues/3828)
|
108
139
|
- Fixed an issue where frozen rows were getting duplicated. [#4454](https://github.com/handsontable/handsontable/issues/4454)
|
109
140
|
- Fixed an issue where comments rendered outside the viewport. [#4785](https://github.com/handsontable/handsontable/issues/4785)
|
@@ -118,9 +149,11 @@ For more information on this release, see:
|
|
118
149
|
## [12.0.1] - 2022-05-16
|
119
150
|
|
120
151
|
For more information on this release, see:
|
152
|
+
- [Documentation (12.0)](https://handsontable.com/docs/12.0/)
|
121
153
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-0-1)
|
122
154
|
|
123
155
|
### Fixed
|
156
|
+
|
124
157
|
- Fixed an issue where checking or unchecking a checkbox in a row with `autoRowSize: true` and multi-line cell values caused rows to align incorrectly. [#7102](https://github.com/handsontable/handsontable/issues/7102)
|
125
158
|
- Fixed an issue where checking or unchecking a checkbox changed the cell width. [#8211](https://github.com/handsontable/handsontable/issues/8211)
|
126
159
|
- Fixed an issue where using a single Handsontable instance with multiple HyperFormula sheets could lead to an uncaught `TypeError`. [#8268](https://github.com/handsontable/handsontable/issues/8268)
|
@@ -130,11 +163,13 @@ For more information on this release, see:
|
|
130
163
|
## [12.0.0] - 2022-04-28
|
131
164
|
|
132
165
|
For more information on this release, see:
|
166
|
+
- [Blog post](https://handsontable.com/blog/handsontable-12.0.0-data-grid-rtl-support-and-a-new-keyboard-shortcuts-api)
|
167
|
+
- [Documentation (12.0)](https://handsontable.com/docs/12.0/)
|
168
|
+
- [Migration guide (11.1 → 12.0)](https://handsontable.com/docs/migration-from-11.1-to-12.0/)
|
133
169
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-0-0)
|
134
|
-
- [Blog post](https://handsontable.com/blog/articles/2022/4/handsontable-12.0.0-data-grid-rtl-support-and-a-new-keyboard-shortcuts-api)
|
135
|
-
- [Migration guide](https://handsontable.com/docs/migration-from-11.1-to-12.0/)
|
136
170
|
|
137
171
|
### Added
|
172
|
+
|
138
173
|
- Added `ShortcutManager`, a new API for customizing keyboard shortcuts. [#8942](https://github.com/handsontable/handsontable/issues/8942)
|
139
174
|
- Added support for right-to-left (RTL) languages, introducing a new configuration option: `layoutDirection`. [#8760](https://github.com/handsontable/handsontable/issues/8760)
|
140
175
|
- Added an Arabic translation. [#9208](https://github.com/handsontable/handsontable/issues/9208)
|
@@ -144,6 +179,7 @@ For more information on this release, see:
|
|
144
179
|
- Added support for the latest Node LTS version. [#9149](https://github.com/handsontable/handsontable/issues/9149)
|
145
180
|
|
146
181
|
### Changed
|
182
|
+
|
147
183
|
- **Breaking change**: Changed how `updateSettings()` handles data updates, to improve performance and the consistency of user experience. Now, when provided with a new data object, `updateSettings()` updates the data without resetting any states. [#7263](https://github.com/handsontable/handsontable/issues/7263)
|
148
184
|
- **Breaking change (React, Angular, Vue 2, Vue 3)**: Updating your data through a component property no longer resets your index mapper information and configuration options. [#7263](https://github.com/handsontable/handsontable/issues/7263)
|
149
185
|
- **Breaking change**: Changed how `updatePlugin()` reacts to `updateSettings()` calls, to improve performance and the consistency of user experience. Now, calls to `updateSettings()` update a plugin's state only when the options object contains a configuration option that's relevant to that particular plugin. [#9021](https://github.com/handsontable/handsontable/issues/9021)
|
@@ -156,43 +192,49 @@ For more information on this release, see:
|
|
156
192
|
- Changed the version of the HyperFormula optional dependency from ^1.2.0 to ^2.0.0. [#9411](https://github.com/handsontable/handsontable/issues/9411)
|
157
193
|
- Changed an internal property name, from `hot.view.wt` to `hot.view._wt`, where `hot` is the name of your Handsontable instance. The intention of this change is to make it clear that Walkontable (Handsontable's rendering engine) is not a part of Handsontable's public API. [#8760](https://github.com/handsontable/handsontable/issues/8760)
|
158
194
|
|
195
|
+
### Removed
|
196
|
+
|
197
|
+
- **Breaking change**: Removed the <kbd>Cmd</kbd> + <kbd>M</kbd> keyboard shortcut (used for cell merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd> + <kbd>M</kbd> keyboard shortcut works the same as before. [#9368](https://github.com/handsontable/handsontable/issues/9368)
|
198
|
+
- **Breaking change**: Removed the <kbd>Shift</kbd> + <kbd>Page Up</kbd>/<kbd>Page Down</kbd> keyboard shortcuts from the cell editing context. [#9401](https://github.com/handsontable/handsontable/issues/9401)
|
199
|
+
- Dropped support for Internet Explorer 11 and Edge Legacy (the non-Chromium version of Edge). Handsontable 11.x becomes the long-term support (LTS) version for Internet Explorer 11 and Edge Legacy, until the end of 2023. [#7026](https://github.com/handsontable/handsontable/issues/7026)
|
200
|
+
- React: Removed the `enzyme` dependency from the React wrapper. [#9151](https://github.com/handsontable/handsontable/issues/9151)
|
201
|
+
|
159
202
|
### Fixed
|
160
|
-
|
203
|
+
|
204
|
+
- React, Angular, Vue 2, Vue 3: Fixed an issue where using `updateSettings()` caused problems for state managers. [#8372](https://github.com/handsontable/handsontable/issues/8372)
|
161
205
|
- Fixed an issue where using `updateSettings()` caused hidden columns to reappear. [#7165](https://github.com/handsontable/handsontable/issues/7165)
|
162
206
|
- Fixed an issue where using `updateSettings()` caused merged cells to unmerge. [#3315](https://github.com/handsontable/handsontable/issues/3315)
|
163
207
|
- Fixed an issue where using `updateSettings()` caused the state of nested rows to reset. [#8838](https://github.com/handsontable/handsontable/issues/8838)
|
164
208
|
- Fixed an issue where using `updateSettings()` caused problems with column sorting. [#7688](https://github.com/handsontable/handsontable/issues/7688)
|
165
|
-
-
|
166
|
-
-
|
167
|
-
-
|
209
|
+
- React: Fixed an issue where using React's `setState()` within the `afterFilter` hook broke filtering. [#7567](https://github.com/handsontable/handsontable/issues/7567)
|
210
|
+
- Vue 2: Fixed an issue where repeatedly changing Handsontable's height through `updateSettings()` caused Handsontable to crash. [#7546](https://github.com/handsontable/handsontable/issues/7546)
|
211
|
+
- Vue 2: Fixed an issue where the `failed` validation status got erased when editing a new row. [#7541](https://github.com/handsontable/handsontable/issues/7541)
|
168
212
|
- Fixed an issue where cell filtering did not use formula results. [#5455](https://github.com/handsontable/handsontable/issues/5455)
|
169
213
|
- Fixed a wrong TypeScript definition in the `BasePlugin` class. [#9175](https://github.com/handsontable/handsontable/issues/9175)
|
170
214
|
- Fixed an issue where the <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Z</kbd> and <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> keyboard shortcuts didn't behave properly inside cell editors. [#9367](https://github.com/handsontable/handsontable/issues/9367)
|
171
215
|
- Fixed an issue where the dropdown menu contained unwanted rectangle elements. [#9240](https://github.com/handsontable/handsontable/issues/9240)
|
172
|
-
-
|
173
|
-
|
174
|
-
### Removed
|
175
|
-
- **Breaking change**: Removed the <kbd>Cmd</kbd> + <kbd>M</kbd> keyboard shortcut (used for cell merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd> + <kbd>M</kbd> keyboard shortcut works the same as before. [#9368](https://github.com/handsontable/handsontable/issues/9368)
|
176
|
-
- **Breaking change**: Removed the <kbd>Shift</kbd> + <kbd>Page Up</kbd>/<kbd>Page Down</kbd> keyboard shortcuts from the cell editing context. [#9401](https://github.com/handsontable/handsontable/issues/9401)
|
177
|
-
- Dropped support for Internet Explorer 11 and Edge Legacy (the non-Chromium version of Edge). Handsontable 11.x becomes the long-term support (LTS) version for Internet Explorer 11 and Edge Legacy, until the end of 2023. [#7026](https://github.com/handsontable/handsontable/issues/7026)
|
178
|
-
- *React:* Removed the `enzyme` dependency from the React wrapper. [#9151](https://github.com/handsontable/handsontable/issues/9151)
|
216
|
+
- React, Vue 2, Vue 3: Fixed an issue with registering modules for the React, Vue 2, and Vue 3 wrappers, by adding an `"exports"` field to their `package.json` files. [#9140](https://github.com/handsontable/handsontable/issues/9140)
|
179
217
|
|
180
218
|
## [11.1.0] - 2022-01-13
|
181
219
|
|
182
220
|
For more information on this release, see:
|
183
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-1)
|
184
221
|
- [Blog post](https://handsontable.com/blog/handsontable-11.1.0-vue-3-support-and-updatedata)
|
222
|
+
- [Documentation (11.1)](https://handsontable.com/docs/11.1/)
|
223
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-1)
|
185
224
|
|
186
225
|
### Added
|
226
|
+
|
187
227
|
- Added `updateData()`, a new method that allows for replacing Handsontable's `data` without
|
188
228
|
resetting the states of cells, rows and columns. [#7263](https://github.com/handsontable/handsontable/issues/7263)
|
189
|
-
-
|
229
|
+
- Vue: Added Vue 3 support, by introducing a new wrapper. [#7545](https://github.com/handsontable/handsontable/issues/7545)
|
190
230
|
|
191
231
|
### Changed
|
232
|
+
|
192
233
|
- Updated the TypeScript definition of the `setDataAtCell()` method. [#8601](https://github.com/handsontable/handsontable/issues/8601)
|
193
234
|
- Extended Handsontable's GitHub Actions workflow, to allow for deploying code examples to GitHub Pages. [#9058](https://github.com/handsontable/handsontable/issues/9058)
|
194
235
|
|
195
236
|
### Fixed
|
237
|
+
|
196
238
|
- Fixed an issue where the `autocomplete` editor's suggestion list didn't update properly. [#7570](https://github.com/handsontable/handsontable/issues/7570)
|
197
239
|
- Fixed an issue where nested headers didn't render when `data` wasn't defined. [#8589](https://github.com/handsontable/handsontable/issues/8589)
|
198
240
|
- Fixed some end-to-end tests that failed on mobile devices. [#8749](https://github.com/handsontable/handsontable/issues/8749)
|
@@ -205,25 +247,29 @@ resetting the states of cells, rows and columns. [#7263](https://github.com/hand
|
|
205
247
|
- Fixed an issue where performance was affected by removing events. [#9044](https://github.com/handsontable/handsontable/issues/9044)
|
206
248
|
- Fixed a wrong TypeScript definition of the `MultiColumnSorting` plugin's `sort()` method. [#9067](https://github.com/handsontable/handsontable/issues/9067)
|
207
249
|
- Fixed an issue where the `Comments` plugin's editor disappeared after adding a comment. [#9075](https://github.com/handsontable/handsontable/issues/9075) [#6661](https://github.com/handsontable/handsontable/issues/6661)
|
208
|
-
-
|
250
|
+
- React: Fixed a wrong return type. [#9000](https://github.com/handsontable/handsontable/issues/9000)
|
209
251
|
|
210
252
|
## [11.0.1] - 2021-11-17
|
211
253
|
|
212
254
|
For more information on this release, see:
|
255
|
+
- [Documentation (11.0)](https://handsontable.com/docs/11.0/)
|
213
256
|
- [Release notes](https://handsontable.com/docs/release-notes/#_11-0-1)
|
214
257
|
|
215
258
|
### Fixed
|
259
|
+
|
216
260
|
- Fixed the UMD build of `@handsontable/angular`, which was not working properly in `11.0.0`. [#8946](https://github.com/handsontable/handsontable/pull/8946)
|
217
261
|
|
218
262
|
## [11.0.0] - 2021-11-17
|
219
263
|
|
220
264
|
For more information on this release, see:
|
221
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-0)
|
222
265
|
- [Blog post](https://handsontable.com/blog/handsontable-11.0.0-modularization-for-react-angular-and-vue)
|
223
|
-
- [
|
266
|
+
- [Documentation (11.0)](https://handsontable.com/docs/11.0/)
|
267
|
+
- [Migration guide (10.0 → 11.0)](https://handsontable.com/docs/migration-from-10.0-to-11.0/)
|
268
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-0)
|
224
269
|
|
225
270
|
### Added
|
226
|
-
|
271
|
+
|
272
|
+
- **Breaking change**: Added TypeScript definition files for Handsontable's modularized version. [#7489](https://github.com/handsontable/handsontable/issues/7489)
|
227
273
|
- **Breaking change (Vue)**: Added support for modularization to the Vue wrapper. [#8820](https://github.com/handsontable/handsontable/issues/8820)
|
228
274
|
- **Breaking change (React)**: Added support for modularization to the React wrapper. [#8819](https://github.com/handsontable/handsontable/issues/8819)
|
229
275
|
- **Breaking change (Angular)**: Added support for modularization to the Angular wrapper. [#8818](https://github.com/handsontable/handsontable/issues/8818)
|
@@ -233,27 +279,31 @@ For more information on this release, see:
|
|
233
279
|
- Added new direction helpers (internal API) that lay ground for future RTL support. [#8868](https://github.com/handsontable/handsontable/issues/8868)
|
234
280
|
|
235
281
|
### Changed
|
282
|
+
|
236
283
|
- **Breaking change**: Changed how the `populateFromArray()` method works with its `method` argument set to `shift_down` or `shift_right`. [#888](https://github.com/handsontable/handsontable/issues/888)
|
237
284
|
- Moved the entire Handsontable package to its own, new subdirectory: `./handsontable`. [#8759](https://github.com/handsontable/handsontable/issues/8759)
|
238
285
|
- Replaced the license files with updated versions. [#8877](https://github.com/handsontable/handsontable/issues/8877)
|
239
286
|
|
240
|
-
### Fixed
|
287
|
+
### Fixed
|
288
|
+
|
241
289
|
- Fixed an issue with incorrect filtering of locale-based data while using search input from a drop-down menu. [#6095](https://github.com/handsontable/handsontable/issues/6095)
|
242
290
|
- Fixed an error thrown when using the `populateFromArray()` method with its `method` argument set to `shift_right`. [#6929](https://github.com/handsontable/handsontable/issues/6929)
|
243
291
|
- Fixed an issue with the `beforeOnCellMouseDown` and `afterOnCellMouseDown` hooks using wrong coordinates. [#8498](https://github.com/handsontable/handsontable/issues/8498)
|
244
292
|
- Fixed a `TypeError` thrown when calling the `updateSettings()` method in Handsontable's modularized version. [#8830](https://github.com/handsontable/handsontable/issues/8830)
|
245
293
|
- Fixed two issues with the documentation's `canonicalUrl` entries. [#8886](https://github.com/handsontable/handsontable/issues/8886)
|
246
294
|
- Fixed an error thrown when autofill's source is a `date` cell. [#8894](https://github.com/handsontable/handsontable/issues/8894)
|
247
|
-
-
|
295
|
+
- React: Fixed a React wrapper issue where it's impossible to use different sets of props in editor components reused across multiple columns. [#8527](https://github.com/handsontable/handsontable/issues/8527)
|
248
296
|
|
249
297
|
## [10.0.0] - 2021-09-29
|
250
298
|
|
251
299
|
For more information on this release, see:
|
252
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_10-0)
|
253
300
|
- [Blog post](https://handsontable.com/blog/handsontable-10.0.0-improved-performance-and-consistency)
|
254
|
-
- [
|
301
|
+
- [Documentation (10.0)](https://handsontable.com/docs/10.0/)
|
302
|
+
- [Migration guide (9.0 → 10.0)](https://handsontable.com/docs/migration-from-9.0-to-10.0/)
|
303
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_10-0)
|
255
304
|
|
256
305
|
### Changed
|
306
|
+
|
257
307
|
- **Breaking change**: Unified the naming and description of the fourth argument, `controller`, for selection manipulation in the `beforeOnCellMouseDown` and `beforeOnCellMouseOver` hooks. [#4996](https://github.com/handsontable/handsontable/issues/4996)
|
258
308
|
- **Breaking change**: Changed what the `beforeRender` and `afterRender` hooks are, and when they are triggered. Added two new hooks: `beforeViewRender` and `afterViewRender`. [#6303](https://github.com/handsontable/handsontable/issues/6303)
|
259
309
|
- **Breaking change**: Changed the optional HyperFormula dependency from 0.6.2 to ^1.1.0, which introduces breaking changes for the `Formulas` plugin users. [#8502](https://github.com/handsontable/handsontable/issues/8502)
|
@@ -266,6 +316,7 @@ For more information on this release, see:
|
|
266
316
|
- Added a Github Actions workflow covering the testing of Handsontable and all of the wrappers. [#8652](https://github.com/handsontable/handsontable/issues/8652)
|
267
317
|
|
268
318
|
### Fixed
|
319
|
+
|
269
320
|
- Fixed an issue of not resetting the date picker's configuration. [#6636](https://github.com/handsontable/handsontable/issues/6636)
|
270
321
|
- An error won't be thrown while inserting a new row for nested rows in a specific case. [#7137](https://github.com/handsontable/handsontable/issues/7137)
|
271
322
|
- Fixed a few problems with the `NestedRows` plugin, occurring with the `Formulas` plugin enabled. [#8048](https://github.com/handsontable/handsontable/issues/8048)
|
@@ -282,76 +333,90 @@ For more information on this release, see:
|
|
282
333
|
## [9.0.2] - 2021-07-28
|
283
334
|
|
284
335
|
For more information on this release, see:
|
285
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0-2)
|
286
336
|
- [Blog post](https://handsontable.com/blog/whats-new-in-handsontable-9.0.2)
|
337
|
+
- [Documentation (9.0)](https://handsontable.com/docs/9.0/)
|
338
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0-2)
|
287
339
|
|
288
340
|
### Fixed
|
341
|
+
|
289
342
|
- Fixed an issue with an error being thrown when lazy loading columns on a setup with Nested Headers + Hidden Columns. [#7160](https://github.com/handsontable/handsontable/issues/7160)
|
290
343
|
- Fixed column header sizes not being updated on `updateSettings` calls containing `columns`. [#7689](https://github.com/handsontable/handsontable/issues/7689)
|
291
344
|
- Fixed functional keys' behavior, to prevent unexpected editing. [#7838](https://github.com/handsontable/handsontable/issues/7838)
|
292
345
|
- Fixed missing collapsible indicator on IE. [#8028](https://github.com/handsontable/handsontable/issues/8028)
|
293
346
|
- Fixed support for row and column headers in the `parseTable` utility. [#8041](https://github.com/handsontable/handsontable/issues/8041)
|
294
347
|
- Fixed a bug where not providing a data object with the `nestedRows` plugin enabled crashed the table. [#8171](https://github.com/handsontable/handsontable/issues/8171)
|
295
|
-
-
|
296
|
-
-
|
297
|
-
-
|
298
|
-
-
|
348
|
+
- Vue: Fixed an issue where adding rows to a Handsontable instance wrapped for Vue resulted in additional rows being inserted at the end of the table. [#8148](https://github.com/handsontable/handsontable/issues/8148)
|
349
|
+
- Vue: Fixed a problem in the Vue wrapper, where destroying the underlying Handsontable instance caused it to throw errors and crash. [#8311](https://github.com/handsontable/handsontable/issues/8311)
|
350
|
+
- React: Fixed a problem in the React wrapper, where destroying the underlying Handsontable instance caused it to throw errors and crash. [#8311](https://github.com/handsontable/handsontable/issues/8311)
|
351
|
+
- Angular: Fixed a problem in the Angular wrapper, where destroying the underlying Handsontable instance caused it to throw errors and crash. [#8311](https://github.com/handsontable/handsontable/issues/8311)
|
299
352
|
|
300
353
|
### Added
|
354
|
+
|
301
355
|
- Added new documentation engine [#7624](https://github.com/handsontable/handsontable/issues/7624)
|
302
356
|
|
303
357
|
## [9.0.1] - 2021-06-17
|
304
358
|
|
305
359
|
For more information on this release, see:
|
360
|
+
- [Documentation (9.0)](https://handsontable.com/docs/9.0/)
|
306
361
|
- [Release notes](https://handsontable.com/docs/release-notes/#_9-0-1)
|
307
362
|
|
363
|
+
### Removed
|
364
|
+
|
365
|
+
- Removed the redundant internal `jsonpatch` library from the source code. [#8140](https://github.com/handsontable/handsontable/issues/8140)
|
366
|
+
|
308
367
|
### Fixed
|
368
|
+
|
309
369
|
- Fixed an issue where the validator function was called twice when the Formulas plugin was enabled. [#8138](https://github.com/handsontable/handsontable/issues/8138)
|
310
370
|
- Introduced a new CSS style for cells of the `checkbox` type to restore previous behaviour. [#8196](https://github.com/handsontable/handsontable/issues/8196)
|
311
371
|
|
312
|
-
### Removed
|
313
|
-
- Removed the redundant internal `jsonpatch` library from the source code. [#8140](https://github.com/handsontable/handsontable/issues/8140)
|
314
|
-
|
315
372
|
## [9.0.0] - 2021-06-01
|
316
373
|
|
317
374
|
For more information on this release, see:
|
318
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0)
|
319
375
|
- [Blog post](https://handsontable.com/blog/handsontable-9.0.0-new-formula-plugin)
|
320
|
-
- [
|
376
|
+
- [Documentation (9.0)](https://handsontable.com/docs/9.0/)
|
377
|
+
- [Migration guide (8.4 → 9.0)](https://handsontable.com/docs/migration-from-8.4-to-9.0/)
|
378
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0)
|
321
379
|
|
322
380
|
### Changed
|
381
|
+
|
323
382
|
- **Breaking change**: New Formulas plugin, with an entirely different API. See the migration guide for a full list of changes. Removed the required `hot-formula-parser` dependency for the sake of an optional one, `hyperformula`. [#6466](https://github.com/handsontable/handsontable/issues/6466)
|
324
383
|
- **Breaking change**: Changed the `afterAutofill` and `beforeAutofill` hooks' signatures. [#7987](https://github.com/handsontable/handsontable/issues/7987)
|
325
384
|
- Upgraded `eslint` and eslint-related modules. [#7531](https://github.com/handsontable/handsontable/issues/7531)
|
326
385
|
- Added `fit` & `fdescribe` to restricted globals in test files. [#8088](https://github.com/handsontable/handsontable/issues/8088)
|
327
386
|
|
387
|
+
### Removed
|
388
|
+
|
389
|
+
- **Breaking change**: Removed the deprecated plugins - Header Tooltips and Observe Changes. [#8083](https://github.com/handsontable/handsontable/issues/8083)
|
390
|
+
|
328
391
|
### Fixed
|
392
|
+
|
329
393
|
- Fixed a problem with the column indicator of the Collapsible Columns plugin not being displayed properly on styled headers. [#7970](https://github.com/handsontable/handsontable/issues/7970)
|
330
394
|
- Fixed a problem with duplicated `afterCreateCol` hooks being triggered after undoing a removal of a column. [#8076](https://github.com/handsontable/handsontable/issues/8076)
|
331
395
|
|
332
|
-
### Removed
|
333
|
-
- **Breaking change**: Removed the deprecated plugins - Header Tooltips and Observe Changes. [#8083](https://github.com/handsontable/handsontable/issues/8083)
|
334
|
-
|
335
396
|
### Deprecated
|
397
|
+
|
336
398
|
- Deprecated the `beforeAutofillInsidePopulate` hook. It will be removed in the next major release. [#8095](https://github.com/handsontable/handsontable/issues/8095)
|
337
399
|
|
338
400
|
## [8.4.0] - 2021-05-11
|
339
401
|
|
340
402
|
For more information on this release, see:
|
341
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-4)
|
342
403
|
- [Blog post](https://handsontable.com/blog/whats-new-in-handsontable-8-4-0)
|
404
|
+
- [Documentation (8.4.0)](https://handsontable.com/docs/8.4.0/)
|
405
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-4)
|
343
406
|
|
344
407
|
### Added
|
408
|
+
|
345
409
|
- Introduced a `separated` attribute for the label options (the `label` DOM element may wrap `input` or be placed next to it). [#3172](https://github.com/handsontable/handsontable/issues/3172)
|
346
410
|
- Introduced the `modifyAutoColumnSizeSeed` hook to let developers overwrite the default behaviour of the AutoColumnSize sampling. [#3339](https://github.com/handsontable/handsontable/issues/3339)
|
347
411
|
- Added support for hiding columns for the _NestedHeaders_ plugin. [#6879](https://github.com/handsontable/handsontable/issues/6879)
|
348
412
|
- Added ability to skip stacking actions by the `UndoRedo` plugin and introduced new hooks. [#6948](https://github.com/handsontable/handsontable/issues/6948)
|
349
|
-
-
|
350
|
-
-
|
351
|
-
-
|
352
|
-
-
|
413
|
+
- Added 2 new hooks, `beforeHighlightingColumnHeader` and `beforeHighlightingRowHeader`. Use them to retrieve a header element (`<th>`) before it gets highlighted. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
414
|
+
- Added a new method, `indexMapper.unregisterAll()`. Use it to unregister all collected index maps from all map collections types. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
415
|
+
- Added a new method, `indexMapper.createChangesObserver()`. Use it to listen to any changes made to indexes while Handsontable is running. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
416
|
+
- Added a new method, `indexMapper.createAndRegisterIndexMap()`. Use it to create and register a new index map. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
353
417
|
|
354
418
|
### Fixed
|
419
|
+
|
355
420
|
- Fixed a problem with sorting the `checkbox`-typed cells and an issue with empty cells not being displayed properly. [#4047](https://github.com/handsontable/handsontable/issues/4047)
|
356
421
|
- Fixed a problem where undoing the removal of row with `readOnly` cells was not performed properly. [#4754](https://github.com/handsontable/handsontable/issues/4754)
|
357
422
|
- Fixed state-change resolving for externally added checkboxes. [#5934](https://github.com/handsontable/handsontable/issues/5934)
|
@@ -368,19 +433,21 @@ For more information on this release, see:
|
|
368
433
|
- Fixed the `postbuild` and `examples:install` scripts on Windows. [#7680](https://github.com/handsontable/handsontable/issues/7680)
|
369
434
|
- Fixed the contents of the production `package.json`. [#7723](https://github.com/handsontable/handsontable/issues/7723)
|
370
435
|
- Fixed an issue, where the callbacks for the UndoRedo plugin were called twice. [#7825](https://github.com/handsontable/handsontable/issues/7825)
|
371
|
-
-
|
372
|
-
-
|
436
|
+
- Vue: Fixed a problem with displaying and removing rows in the Nested Rows plugin. [#7548](https://github.com/handsontable/handsontable/issues/7548)
|
437
|
+
- React: Fixed an incompatibility in the property type definitions for the HotColumn component. [#7612](https://github.com/handsontable/handsontable/issues/7612)
|
373
438
|
|
374
439
|
### Changed
|
440
|
+
|
375
441
|
- Enhanced the ESLint config file by adding a rule that checks if there are new lines missing before some keywords or statements. [#7691](https://github.com/handsontable/handsontable/issues/7691)
|
376
442
|
|
377
443
|
## [8.3.2] - 2021-03-16
|
378
444
|
|
379
445
|
For more information on this release, see:
|
380
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3-2)
|
381
446
|
- [Blog post](https://handsontable.com/blog/handsontable-8-3-2-introducing-monorepo)
|
447
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3-2)
|
382
448
|
|
383
449
|
### Fixed
|
450
|
+
|
384
451
|
- Fixed a bug where it was impossible to enable `disableVisualSelection` for cells/columns. [#5082](https://github.com/handsontable/handsontable/issues/5082)
|
385
452
|
- Fixed wrong paddings for multi-level headers. [#5086](https://github.com/handsontable/handsontable/issues/5086)
|
386
453
|
- Fixed problems with the `current` option of the `disableVisualSelection` setting. [#5869](https://github.com/handsontable/handsontable/issues/5869)
|
@@ -396,27 +463,32 @@ For more information on this release, see:
|
|
396
463
|
- Fixed a bug with the `trimWhitespace` option not working properly. [#7458](https://github.com/handsontable/handsontable/issues/7458)
|
397
464
|
- Fixed an issue with inconsistent documentation and TypeScript definitions for `colWidths` and `rowHeights` options. [#7507](https://github.com/handsontable/handsontable/issues/7507)
|
398
465
|
- Fixed the incorrect `cellTypes` module paths in the `exports` entry of the `package.json` file. [#7597](https://github.com/handsontable/handsontable/issues/7597)
|
399
|
-
-
|
466
|
+
- Vue: Fixed Remote Code Execution vulnerability in the dev dependencies. [#7620](https://github.com/handsontable/handsontable/issues/7620)
|
400
467
|
|
401
468
|
### Added
|
469
|
+
|
402
470
|
- Introduced the monorepo to this repository. From now on, `handsontable`, `@handsontable/angular`, `@handsontable/react`, and `@handsontable/vue` will all be developed in the same repo - `handsontable`. [#7380](https://github.com/handsontable/handsontable/issues/7380)
|
403
471
|
- Added a custom ESLint rule which allows restricting specified modules from loading by `import` or re-exporting. [#7473](https://github.com/handsontable/handsontable/issues/7473)
|
404
472
|
|
405
473
|
## [8.3.1] - 2021-02-10
|
406
474
|
|
407
475
|
For more information on this release, see:
|
476
|
+
- [Documentation (8.3.1)](https://handsontable.com/docs/8.3.1/)
|
408
477
|
- [Release notes](https://handsontable.com/docs/release-notes/#_8-3-1)
|
409
478
|
|
410
479
|
### Fixed
|
480
|
+
|
411
481
|
- Fixed an issue where the CSS files could be eliminated during tree-shaking [#7516](https://github.com/handsontable/handsontable/issues/7516)
|
412
482
|
|
413
483
|
## [8.3.0] - 2021-01-28
|
414
484
|
|
415
485
|
For more information on this release, see:
|
416
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3)
|
417
486
|
- [Blog post](https://handsontable.com/blog/handsontable-8.3.0-has-been-released)
|
487
|
+
- [Documentation (8.3.0)](https://handsontable.com/docs/8.3.0/)
|
488
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3)
|
418
489
|
|
419
490
|
### Added
|
491
|
+
|
420
492
|
- Introduced a new feature that allows postponing the table render and internal data cache update. The table rendering time can be reduced several-fold times by batching (using the `batch` method), multi-line API calls, or manually suspending rendering using the `suspendRender` and `resumeRender` methods. [#7274](https://github.com/handsontable/handsontable/issues/7274)
|
421
493
|
- Introduced a possibility to import:
|
422
494
|
- plugins
|
@@ -429,6 +501,7 @@ For more information on this release, see:
|
|
429
501
|
- Added a new workflow for managing and generating changelogs. [#7405](https://github.com/handsontable/handsontable/issues/7405)
|
430
502
|
|
431
503
|
### Fixed
|
504
|
+
|
432
505
|
- Fixed a bug with auto-execution of the first item in the ContextMenu plugin. [#7364](https://github.com/handsontable/handsontable/issues/7364)
|
433
506
|
- Fixed a bug where column sorting with multi column sorting crashed the table. [#7415](https://github.com/handsontable/handsontable/issues/7415)
|
434
507
|
- Added a missing entry for the `skipRowOnPaste` option in the TypeScript definition file. [#7394](https://github.com/handsontable/handsontable/issues/7394)
|
@@ -438,20 +511,24 @@ For more information on this release, see:
|
|
438
511
|
- Updated the dependencies causing potential security issues, as well as Babel configuration needed after the update. [#7463](https://github.com/handsontable/handsontable/issues/7463)
|
439
512
|
|
440
513
|
### Changed
|
514
|
+
|
441
515
|
- Corrected a typo in a helper method from the Column Sorting plugin. [#7375](https://github.com/handsontable/handsontable/issues/7375)
|
442
516
|
- Optimized the performance of rendering the table with numerous spare rows (for `minSpareRows`, `minSpareCols`, `minRows`, and `minCols` options). [#7439](https://github.com/handsontable/handsontable/issues/7439)
|
443
517
|
|
444
518
|
## [8.2.0] - 2020-11-12
|
445
519
|
|
446
520
|
For more information on this release, see:
|
447
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-2)
|
448
521
|
- [Blog post](https://handsontable.com/blog/handsontable-8.2.0-has-been-released)
|
522
|
+
- [Documentation (8.2.0)](https://handsontable.com/docs/8.2.0/)
|
523
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-2)
|
449
524
|
|
450
525
|
### Added
|
526
|
+
|
451
527
|
- Added new type of Index Map named `LinkedPhysicalIndexToValueMap` [#7276](https://github.com/handsontable/handsontable/pull/7276)
|
452
528
|
- Added an external dependency, `DOMPurify`, to add HTML sanitization what should minimize the risk of inserting insecure code using Handsontable built-in functionalities. [#7292](https://github.com/handsontable/handsontable/issues/7292)
|
453
529
|
|
454
530
|
### Fixed
|
531
|
+
|
455
532
|
- Fixed an issue the container not being updated after trimming rows. [#7241](https://github.com/handsontable/handsontable/issues/7241)
|
456
533
|
- Fixed an issue with a `htmlToGridSettings` helper if passed `<table>` had no rows. [#7311](https://github.com/handsontable/handsontable/issues/7311)
|
457
534
|
- Fixed an issue where sorting indicator moved incorrectly when column was added. [#6397](https://github.com/handsontable/handsontable/issues/6397)
|
@@ -466,14 +543,17 @@ For more information on this release, see:
|
|
466
543
|
## [8.1.0] - 2020-10-01
|
467
544
|
|
468
545
|
For more information on this release, see:
|
469
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-1)
|
470
546
|
- [Blog post](https://handsontable.com/blog/handsontable-8.1.0-has-been-released)
|
547
|
+
- [Documentation (8.1.0)](https://handsontable.com/docs/8.1.0/)
|
548
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-1)
|
471
549
|
|
472
550
|
### Added
|
551
|
+
|
473
552
|
- Added support for resizing non-contiguous selected rows [#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
|
474
553
|
- Added e2e tests and reorganized already existing ones [#6491](https://github.com/handsontable/handsontable/issues/6491)
|
475
554
|
|
476
555
|
### Fixed
|
556
|
+
|
477
557
|
- Fixed an issue where if the first part of the merged area was hidden the value did not show [#6871](https://github.com/handsontable/handsontable/issues/6871)
|
478
558
|
- Fixed an issue where after selecting the top-left element the row range resizing was not possible [#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
|
479
559
|
- Fixed an issue where the column headers were cut off after hiding and then showing columns using the Hidden Columns plugin. [#6395](https://github.com/handsontable/handsontable/issues/6395)
|
@@ -489,24 +569,27 @@ For more information on this release, see:
|
|
489
569
|
- Fixed an issue with clipped column headers if they were changed before or within usage `updateSettings`. [#6004](https://github.com/handsontable/handsontable/issues/6004)
|
490
570
|
|
491
571
|
### Changed
|
572
|
+
|
492
573
|
- Updated dependencies to meet security requirements [#7222](https://github.com/handsontable/handsontable/pull/7222)
|
493
574
|
- Improved performance for TrimRows, HiddenRows and HiddenColumns plugins for big datasets with lots trimmed/hidden indexes [#7223](https://github.com/handsontable/handsontable/pull/7223)
|
494
575
|
|
495
576
|
## [8.0.0] - 2020-08-05
|
496
577
|
|
497
578
|
For more information on this release, see:
|
498
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-0)
|
499
579
|
- [Blog post](https://handsontable.com/blog/the-new-handsontable-8-is-now-available)
|
500
|
-
- [
|
580
|
+
- [Documentation (8.0.0)](https://handsontable.com/docs/8.0.0/)
|
581
|
+
- [Migration guide (7.4 → 8.0)](https://handsontable.com/docs/migration-from-7.4-to-8.0/)
|
582
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-0)
|
501
583
|
|
502
584
|
### Added
|
585
|
+
|
503
586
|
- Added `modifySourceData` hook and `setSourceDataAtCell` method. [#6664](https://github.com/handsontable/handsontable/issues/6664)
|
504
587
|
- Added new argument to `scrollViewportTo` method: optional `considerHiddenIndexes` which is a `boolean`. [#6547](https://github.com/handsontable/handsontable/pull/6547)
|
505
588
|
- Added additional information available in the cell meta object - the language. [#6254](https://github.com/handsontable/handsontable/pull/6254).
|
506
589
|
- Added a possibility to allow cancelling of `autofill` in the `beforeAutofill` hook. [#4441](https://github.com/handsontable/handsontable/issues/4441)
|
507
590
|
- Added support for newer versions of moment, numbro and pikaday. [#5159](https://github.com/handsontable/handsontable/issues/5159)
|
508
591
|
- Added `afterAutoFill` hook. [#6135](https://github.com/handsontable/handsontable/issues/6135)
|
509
|
-
- Added deprecated warning messages mechanism for plugin hooks. [#6613](https://github.com/handsontable/handsontable/pull/6613)
|
592
|
+
- Added "deprecated" warning messages mechanism for plugin hooks. [#6613](https://github.com/handsontable/handsontable/pull/6613)
|
510
593
|
- Added missing types for `instance.undoRedo`. [#6346](https://github.com/handsontable/handsontable/issues/6346)
|
511
594
|
- Added `countRenderableColumns` method to the `TableView`. [#6177](https://github.com/handsontable/handsontable/issues/6177)
|
512
595
|
- Added missing "hide" property in `CustomBorders` typings. [#6788](https://github.com/handsontable/handsontable/issues/6788)
|
@@ -514,6 +597,7 @@ For more information on this release, see:
|
|
514
597
|
- Added additional test for autofill plugin. [#6756](https://github.com/handsontable/handsontable/issues/6756)
|
515
598
|
|
516
599
|
### Changed
|
600
|
+
|
517
601
|
- Changed how `manualRowMove` and `manualColumnMove` plugins work [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
518
602
|
- Click on a row header will select all cells (also hidden). [#2391](https://github.com/handsontable/handsontable/issues/2391)
|
519
603
|
- Extracted Cell-Meta logic from Core to separate module. [#6254](https://github.com/handsontable/handsontable/pull/6254)
|
@@ -546,10 +630,13 @@ For more information on this release, see:
|
|
546
630
|
- Standardize the `z-index` properties between the overlays. [#6269](https://github.com/handsontable/handsontable/pull/6269)
|
547
631
|
|
548
632
|
### Deprecated
|
633
|
+
|
634
|
+
- The `ObserveChanges` plugin is no longer enabled by `columnSorting` and became deprecated. [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
549
635
|
- `HeaderTooltips` plugin becomes deprecated and will be removed in the next major version. [#7023](https://github.com/handsontable/handsontable/issues/7023)
|
550
636
|
- IE support is depreacated and will removed by the end of the year. [#7026](https://github.com/handsontable/handsontable/issues/7026)
|
551
637
|
|
552
638
|
### Removed
|
639
|
+
|
553
640
|
- Removed `firstVisibleColumn` CSS class as no longer needed. [#6547](https://github.com/handsontable/handsontable/pull/6547)
|
554
641
|
- Removed helpers that covered IE8 support or are not needed anymore. [#6525](https://github.com/handsontable/handsontable/issues/6525)
|
555
642
|
- Removed old unnecessary warning about `beforeChange` callback. [#6792](https://github.com/handsontable/handsontable/issues/6792)
|
@@ -562,6 +649,7 @@ For more information on this release, see:
|
|
562
649
|
- The `modifyRow`, `modifyCol`, `unmodifyRow`, `unmodifyCol` and `skipLengthCache` hooks are no longer needed and were removed. [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
563
650
|
|
564
651
|
### Fixed
|
652
|
+
|
565
653
|
- Fixed a problem with data not being added to the table properly with the `columnSorting` option enabled. [#2685](https://github.com/handsontable/handsontable/issues/2685)
|
566
654
|
- Fixed a problem with `loadData` not resetting the row order changed by the `manualRowMove` plugin. [#3568](https://github.com/handsontable/handsontable/issues/3568)
|
567
655
|
- Fixed a bug, where using `alter`'s `insert_row` after using the `loadData` method and sorting the data would add unintentional additional rows to the table. [#3809](https://github.com/handsontable/handsontable/issues/3809)
|