handsontable 12.3.1 → 12.3.2-next-e75de58-20230322
Sign up to get free protection for your applications and to get access to all the features.
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +31 -9
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +31 -9
- package/3rdparty/walkontable/src/calculator/viewportRows.js +21 -6
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +21 -6
- package/3rdparty/walkontable/src/core/_base.js +19 -20
- package/3rdparty/walkontable/src/core/_base.mjs +19 -20
- package/3rdparty/walkontable/src/scroll.js +14 -3
- package/3rdparty/walkontable/src/scroll.mjs +14 -3
- package/3rdparty/walkontable/src/table.js +4 -2
- package/3rdparty/walkontable/src/table.mjs +4 -2
- package/3rdparty/walkontable/src/types.js +1 -0
- package/3rdparty/walkontable/src/types.mjs +1 -0
- package/3rdparty/walkontable/src/viewport.js +11 -14
- package/3rdparty/walkontable/src/viewport.mjs +11 -14
- package/CHANGELOG.md +1156 -494
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +32 -21
- package/core.mjs +32 -21
- package/dataMap/metaManager/metaSchema.js +9 -9
- package/dataMap/metaManager/metaSchema.mjs +9 -9
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +4631 -3987
- package/dist/handsontable.full.min.css +8 -8
- package/dist/handsontable.full.min.js +241 -227
- package/dist/handsontable.js +2753 -2435
- package/dist/handsontable.min.css +7 -7
- package/dist/handsontable.min.js +3 -3
- package/dist/languages/all.js +1 -1
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/zh-CN.js +1 -1
- package/dist/languages/zh-CN.min.js +1 -1
- package/editors/autocompleteEditor/autocompleteEditor.js +8 -9
- package/editors/autocompleteEditor/autocompleteEditor.mjs +8 -9
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/i18n/languages/zh-CN.js +1 -1
- package/i18n/languages/zh-CN.mjs +3 -3
- package/languages/all.js +1 -1
- package/languages/index.js +1 -1
- package/languages/zh-CN.js +1 -1
- package/languages/zh-CN.mjs +3 -3
- package/package.json +12 -13
- package/plugins/base/base.js +9 -10
- package/plugins/base/base.mjs +9 -10
- package/plugins/collapsibleColumns/collapsibleColumns.js +24 -7
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +24 -7
- package/plugins/copyPaste/copyPaste.js +92 -16
- package/plugins/copyPaste/copyPaste.mjs +92 -16
- package/plugins/copyPaste/copyableRanges.js +14 -8
- package/plugins/copyPaste/copyableRanges.mjs +14 -8
- package/plugins/customBorders/customBorders.js +6 -7
- package/plugins/customBorders/customBorders.mjs +6 -7
- package/plugins/filters/filters.js +0 -8
- package/plugins/filters/filters.mjs +0 -8
- package/plugins/formulas/formulas.js +34 -7
- package/plugins/formulas/formulas.mjs +34 -7
- package/plugins/hiddenColumns/hiddenColumns.js +12 -7
- package/plugins/hiddenColumns/hiddenColumns.mjs +12 -7
- package/plugins/hiddenRows/hiddenRows.js +12 -7
- package/plugins/hiddenRows/hiddenRows.mjs +12 -7
- package/plugins/nestedHeaders/nestedHeaders.js +26 -7
- package/plugins/nestedHeaders/nestedHeaders.mjs +26 -7
- package/plugins/nestedHeaders/stateManager/index.js +18 -0
- package/plugins/nestedHeaders/stateManager/index.mjs +18 -0
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +19 -0
- package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +19 -0
- package/translations/changesObservable/observer.js +7 -0
- package/translations/changesObservable/observer.mjs +7 -0
- package/translations/maps/linkedPhysicalIndexToValueMap.js +6 -0
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +6 -0
package/CHANGELOG.md
CHANGED
@@ -2,28 +2,62 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
6
|
-
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0), and this project
|
6
|
+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
8
|
<!-- This file should generally be updated automatically using our changelog script. See `.changelogs/README.md` for more information. -->
|
9
9
|
|
10
10
|
<!-- UNVERSIONED -->
|
11
11
|
|
12
|
+
## [12.3.2] - 2023-03-22
|
13
|
+
|
14
|
+
### Added
|
15
|
+
|
16
|
+
- Added a Chinese (zh-CN) translation of the "Copy with headers" feature.
|
17
|
+
[#10273](https://github.com/handsontable/handsontable/pull/10273)
|
18
|
+
|
19
|
+
### Fixed
|
20
|
+
|
21
|
+
- Fixed an issue where column-filter checkboxes were resetting when the table was scrolled out
|
22
|
+
of view. We solved this by preventing the table from triggering a complete render each time it
|
23
|
+
leaves the viewport. [#10206](https://github.com/handsontable/handsontable/pull/10206)
|
24
|
+
- Fixed an issue where clicking on a cell scrolled the table sideways in certain RTL configurations.
|
25
|
+
[#10206](https://github.com/handsontable/handsontable/pull/10206)
|
26
|
+
- Fixed an issue where calling
|
27
|
+
[`getDataAtCol()`](https://handsontable.com/docs/javascript-data-grid/api/core/#getdataatcol) or
|
28
|
+
[`getDataAtProp()`](https://handsontable.com/docs/javascript-data-grid/api/core/#getdataatprop) caused an error when the data set had more than 125 000 rows.
|
29
|
+
[#10226](https://github.com/handsontable/handsontable/pull/10226)
|
30
|
+
- React: Fixed React 18 warnings about deprecated lifecycle methods. We removed
|
31
|
+
`componentWillMount()` and `componentWillUpdate()` from Handsontable's codebase and recreated
|
32
|
+
their functionality by using React's portals.
|
33
|
+
[#10263](https://github.com/handsontable/handsontable/pull/10263)
|
34
|
+
|
12
35
|
## [12.3.1] - 2023-02-06
|
13
36
|
|
14
37
|
### Added
|
15
|
-
|
38
|
+
|
39
|
+
- Added a Japanese translation of the "Copy with headers" feature.
|
40
|
+
[#10201](https://github.com/handsontable/handsontable/pull/10201)
|
16
41
|
|
17
42
|
### Removed
|
18
|
-
|
43
|
+
|
44
|
+
- Removed the two-week delay in showing the console warning about license expiration.
|
45
|
+
[#10175](https://github.com/handsontable/handsontable/pull/10175)
|
19
46
|
|
20
47
|
### Fixed
|
21
|
-
|
22
|
-
- Fixed an issue
|
23
|
-
|
24
|
-
- Fixed an issue
|
48
|
+
|
49
|
+
- Fixed an issue where `updateData()` didn't work with nested data structures (`NestedRows`).
|
50
|
+
[#10178](https://github.com/handsontable/handsontable/pull/10178)
|
51
|
+
- Fixed an issue of unwanted pixels in the "Filter by condition" menu by removing a superfluous
|
52
|
+
overlay. [#10174](https://github.com/handsontable/handsontable/pull/10174)
|
53
|
+
- Fixed an issue where merged cells could lack right and bottom borders due to a Chrome bug.
|
54
|
+
[#10212](https://github.com/handsontable/handsontable/pull/10212)
|
55
|
+
- Fixed an issue where using some browser and system shortcuts could cause Handsontable to behave as
|
56
|
+
if <kbd>Cmd</kbd>/<kbd>Ctrl</kbd> was being held down.
|
57
|
+
[#10210](https://github.com/handsontable/handsontable/pull/10210)
|
25
58
|
|
26
59
|
For more information on Handsontable 12.3.1, see:
|
60
|
+
|
27
61
|
- [Blog post (12.3.1)](https://handsontable.com/blog/articles/2023/2/handsontable-12.3.1-japanese-translation-and-improved-keyboard-interaction)
|
28
62
|
- [Documentation (12.3)](https://handsontable.com/docs/12.3)
|
29
63
|
- [Release notes (12.3.1)](https://handsontable.com/docs/release-notes/#_12-3-1)
|
@@ -32,23 +66,42 @@ For more information on Handsontable 12.3.1, see:
|
|
32
66
|
|
33
67
|
### Added
|
34
68
|
|
35
|
-
- Added a new feature that lets you copy the contents of column headers by using 3 new context menu
|
36
|
-
|
37
|
-
|
38
|
-
- Added
|
69
|
+
- Added a new feature that lets you copy the contents of column headers by using 3 new context menu
|
70
|
+
options: "Copy with headers", "Copy with group headers", and "Copy headers only".
|
71
|
+
[#2288](https://github.com/handsontable/handsontable/issues/2288)
|
72
|
+
- Added 4 new API methods for copying column headers programmatically: `copyCellsOnly()`,
|
73
|
+
`copyWithColumnHeaders()`, `copyWithAllColumnHeaders()`, and `copyColumnHeadersOnly()`.
|
74
|
+
[#2288](https://github.com/handsontable/handsontable/issues/2288)
|
75
|
+
- Added missing TypeScript definitions of the `CellCoords` and `CellRange` classes, which are used
|
76
|
+
in the arguments of some of the APIs.
|
77
|
+
[#9755](https://github.com/handsontable/handsontable/issues/9755)
|
78
|
+
- Added missing TypeScript definitions for the following Handsontable hooks: `beforeColumnFreeze`,
|
79
|
+
`afterColumnFreeze`, `beforeColumnUnfreeze`, and `afterColumnUnfreeze`.
|
80
|
+
[#9859](https://github.com/handsontable/handsontable/issues/9859)
|
39
81
|
|
40
|
-
### Fixed
|
82
|
+
### Fixed
|
41
83
|
|
42
|
-
- Fixed an issue where the `UndoRedo` plugin didn't work properly with preconfigured columns.
|
43
|
-
|
44
|
-
- Fixed
|
45
|
-
|
46
|
-
- Fixed
|
47
|
-
|
48
|
-
- Fixed an issue where
|
49
|
-
|
84
|
+
- Fixed an issue where the `UndoRedo` plugin didn't work properly with preconfigured columns.
|
85
|
+
[#10108](https://github.com/handsontable/handsontable/pull/10108)
|
86
|
+
- Fixed an issue where formulas inserted programmatically by using `updateData()` were not
|
87
|
+
evaluated. [#10011](https://github.com/handsontable/handsontable/issues/10011)
|
88
|
+
- Fixed a regression where setting a column's `type` could overwrite other custom-defined settings.
|
89
|
+
[#10128](https://github.com/handsontable/handsontable/pull/10128)
|
90
|
+
- Fixed an issue where Handsontable didn't render properly when initialized inside of a hidden
|
91
|
+
container. [#5322](https://github.com/handsontable/handsontable/issues/5322)
|
92
|
+
- Fixed an issue of desynchronization between configuration options (cell meta) and Handsontable's
|
93
|
+
data. The issue occurred when Handsontable's options were modified through the following hooks:
|
94
|
+
`beforeCreateRow`, `afterCreateRow`, `beforeCreateCol`, and `afterCreateCol`.
|
95
|
+
[#10136](https://github.com/handsontable/handsontable/pull/10136)
|
96
|
+
- Fixed an issue where comments added to fixed columns didn't display properly after scrolling.
|
97
|
+
[#9645](https://github.com/handsontable/handsontable/issues/9645)
|
98
|
+
- Fixed an issue where typing in a `dropdown` editor caused the IME to disappear, resulting in wrong
|
99
|
+
characters being typed. [#9672](https://github.com/handsontable/handsontable/issues/9672)
|
100
|
+
- React: Fixed an issue where `dropdown` cells weren't validated properly when using the `HotColumn`
|
101
|
+
component. [#10065](https://github.com/handsontable/handsontable/issues/10065)
|
50
102
|
|
51
103
|
For more information on Handsontable 12.3.0, see:
|
104
|
+
|
52
105
|
- [Blog post (12.3.0)](https://handsontable.com/blog/articles/2022/12/handsontable-12-3-0-copying-cells-with-headers)
|
53
106
|
- [Documentation (12.3)](https://handsontable.com/docs/12.3)
|
54
107
|
- [Release notes (12.3.0)](https://handsontable.com/docs/release-notes/#_12-3-0)
|
@@ -57,26 +110,37 @@ For more information on Handsontable 12.3.0, see:
|
|
57
110
|
|
58
111
|
### Added
|
59
112
|
|
60
|
-
- Added a new feature that lets you add rows and columns at a specified position. Now, the `alter()`
|
113
|
+
- Added a new feature that lets you add rows and columns at a specified position. Now, the `alter()`
|
114
|
+
method takes 4 new parameter values: `insert_row_above`, `insert_row_below`, `insert_col_start`,
|
115
|
+
and `insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
|
61
116
|
|
62
117
|
### Deprecated
|
63
118
|
|
64
|
-
- Deprecated the `insert_row` parameter of the `alter()` method. Instead, use `insert_row_above` or
|
65
|
-
|
119
|
+
- Deprecated the `insert_row` parameter of the `alter()` method. Instead, use `insert_row_above` or
|
120
|
+
`insert_row_below`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
|
121
|
+
- Deprecated the `insert_col` parameter of the `alter()` method. Instead, use `insert_col_start` or
|
122
|
+
`insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
|
66
123
|
|
67
124
|
### Removed
|
68
125
|
|
69
|
-
- Removed a type definition for a non-existing method, `translateRowsToColumns()`.
|
126
|
+
- Removed a type definition for a non-existing method, `translateRowsToColumns()`.
|
127
|
+
[#9919](https://github.com/handsontable/handsontable/issues/9919)
|
70
128
|
|
71
129
|
### Fixed
|
72
130
|
|
73
|
-
- Fixed an issue where the width of the cell editor was calculated incorrectly.
|
74
|
-
|
75
|
-
- Fixed an issue where
|
76
|
-
|
77
|
-
- Fixed an issue where
|
131
|
+
- Fixed an issue where the width of the cell editor was calculated incorrectly.
|
132
|
+
[#3815](https://github.com/handsontable/handsontable/issues/3815)
|
133
|
+
- Fixed an issue where formulas surrounded by merged cells were converted to values by mistake.
|
134
|
+
[#6359](https://github.com/handsontable/handsontable/issues/6359)
|
135
|
+
- Fixed an issue where Handsontable could disappear on Firefox 93 (and later) in a specific use
|
136
|
+
case. [#9545](https://github.com/handsontable/handsontable/issues/9545)
|
137
|
+
- Fixed an issue where changing a cell's `type` through `setCellMeta()` didn't properly set the
|
138
|
+
cell's `editor` and `renderer`. [#9734](https://github.com/handsontable/handsontable/issues/9734)
|
139
|
+
- Fixed an issue where the dropdown menu didn't display when the `NestedHeaders` plugin was enabled
|
140
|
+
and all rows were trimmed out. [#9753](https://github.com/handsontable/handsontable/issues/9753)
|
78
141
|
|
79
142
|
For more information on Handsontable 12.2.0, see:
|
143
|
+
|
80
144
|
- [Blog post (12.2.0)](https://handsontable.com/blog/handsontable-12.2.0)
|
81
145
|
- [Documentation (12.2)](https://handsontable.com/docs/12.2)
|
82
146
|
- [Release notes (12.2.0)](https://handsontable.com/docs/release-notes/#_12-2-0)
|
@@ -85,23 +149,37 @@ For more information on Handsontable 12.2.0, see:
|
|
85
149
|
|
86
150
|
### Removed
|
87
151
|
|
88
|
-
- Removed a custom stable sorting implementation in favor of the built-in sorting algorithm
|
89
|
-
|
152
|
+
- Removed a custom stable sorting implementation in favor of the built-in sorting algorithm
|
153
|
+
[#6091](https://github.com/handsontable/handsontable/issues/6091)
|
154
|
+
- Removed type definitions for non-existing methods `rowOffset` and `colOffset` and a non-existing
|
155
|
+
hook `modifyRowSourceData`. [#8659](https://github.com/handsontable/handsontable/issues/8659),
|
156
|
+
[#7317](https://github.com/handsontable/handsontable/issues/7317)
|
90
157
|
|
91
158
|
### Fixed
|
92
159
|
|
93
|
-
- Fixed incorrect date format conversion on input in the date editor.
|
94
|
-
|
95
|
-
- Fixed
|
96
|
-
|
97
|
-
- Fixed
|
98
|
-
|
99
|
-
- Fixed an issue where the
|
100
|
-
|
101
|
-
- Fixed
|
102
|
-
|
160
|
+
- Fixed incorrect date format conversion on input in the date editor.
|
161
|
+
[#9681](https://github.com/handsontable/handsontable/issues/9681)
|
162
|
+
- Fixed an error when adding a large number of rows using the `alter` method.
|
163
|
+
[#7840](https://github.com/handsontable/handsontable/issues/7840)
|
164
|
+
- Fixed IME text input in the editors.
|
165
|
+
[#9586](https://github.com/handsontable/handsontable/issues/9586)
|
166
|
+
- Fixed an issue where the editor did not open on key events when the cell was outside the viewport.
|
167
|
+
[#9022](https://github.com/handsontable/handsontable/issues/9022)
|
168
|
+
- Fixed an issue with "0" values being ignored by the Column Summary plugin.
|
169
|
+
[#6385](https://github.com/handsontable/handsontable/issues/6385)
|
170
|
+
- Fixed an error when opening the column dropdown menu with the Filters plugin enabled.
|
171
|
+
[#9561](https://github.com/handsontable/handsontable/issues/9561)
|
172
|
+
- Fixed an issue where the `trimWhitespace` option could not be used in the column and cell levels
|
173
|
+
of the cascading configuration. [#7387](https://github.com/handsontable/handsontable/issues/7387)
|
174
|
+
- Fixed the flickering of the selection area at the edge of the table while scrolling.
|
175
|
+
[#8317](https://github.com/handsontable/handsontable/issues/8317)
|
176
|
+
- Fixed misalignment on mobile devices when the edge cells were selected.
|
177
|
+
[#9621](https://github.com/handsontable/handsontable/issues/9621)
|
178
|
+
- Fixed type definitions for the method `setSourceDataAtCell`.
|
179
|
+
[#8599](https://github.com/handsontable/handsontable/issues/8599)
|
103
180
|
|
104
181
|
For more information on Handsontable 12.1.3, see:
|
182
|
+
|
105
183
|
- [Documentation (12.1)](https://handsontable.com/docs/12.1)
|
106
184
|
- [Release notes (12.1.3)](https://handsontable.com/docs/release-notes/#_12-1-3)
|
107
185
|
|
@@ -109,10 +187,15 @@ For more information on Handsontable 12.1.3, see:
|
|
109
187
|
|
110
188
|
### Changed
|
111
189
|
|
112
|
-
- Changed the version of the Moment.js dependency from 2.29.3 to 2.29.4, in reaction to a
|
113
|
-
-
|
190
|
+
- Changed the version of the Moment.js dependency from 2.29.3 to 2.29.4, in reaction to a
|
191
|
+
recently-found Moment.js security vulnerability. The vulnerability did not affect a correct
|
192
|
+
configuration of Handsontable. [#9638](https://github.com/handsontable/handsontable/issues/9638)
|
193
|
+
- Vue: Freezed the version of the Vue framework that is used in our build chain to ~2.6. This
|
194
|
+
shouldn't affect apps that use Vue 2.7+.
|
195
|
+
[#9624](https://github.com/handsontable/handsontable/issues/9624)
|
114
196
|
|
115
197
|
For more information on Handsontable 12.1.2, see:
|
198
|
+
|
116
199
|
- [Documentation (12.1)](https://handsontable.com/docs/12.1)
|
117
200
|
- [Release notes (12.1.2)](https://handsontable.com/docs/release-notes/#_12-1-2)
|
118
201
|
|
@@ -120,9 +203,11 @@ For more information on Handsontable 12.1.2, see:
|
|
120
203
|
|
121
204
|
### Fixed
|
122
205
|
|
123
|
-
- Angular: Fixed an issue where the installation of `@handsontable/angular` package failed for
|
206
|
+
- Angular: Fixed an issue where the installation of `@handsontable/angular` package failed for
|
207
|
+
versions of Angular other than 9 [#9622](https://github.com/handsontable/handsontable/issues/9622)
|
124
208
|
|
125
209
|
For more information on Handsontable 12.1.1, see:
|
210
|
+
|
126
211
|
- [Documentation (12.1)](https://handsontable.com/docs/12.1)
|
127
212
|
- [Release notes (12.1.1)](https://handsontable.com/docs/release-notes/#_12-1-1)
|
128
213
|
|
@@ -130,37 +215,61 @@ For more information on Handsontable 12.1.1, see:
|
|
130
215
|
|
131
216
|
### Added
|
132
217
|
|
133
|
-
- Added smoother row and column moving when some row or columns are hidden.
|
134
|
-
|
218
|
+
- Added smoother row and column moving when some row or columns are hidden.
|
219
|
+
[#7613](https://github.com/handsontable/handsontable/issues/7613)
|
220
|
+
- Added `getNearestNotHiddenIndex()`, a new method that finds the visual index of the nearest
|
221
|
+
not-hidden row or column and works even with large numbers of hidden rows or columns. The previous
|
222
|
+
method, `getFirstNotHiddenIndex()`, still works, but is marked as deprecated.
|
223
|
+
[#9064](https://github.com/handsontable/handsontable/issues/9064)
|
135
224
|
- Added a Czech translation. [#9343](https://github.com/handsontable/handsontable/issues/9343)
|
136
225
|
- Added a Serbian translation. [#9469](https://github.com/handsontable/handsontable/issues/9469)
|
137
|
-
- Added new hooks: `beforeColumnFreeze`, `afterColumnFreeze`, `beforeColumnUnfreeze`, and
|
226
|
+
- Added new hooks: `beforeColumnFreeze`, `afterColumnFreeze`, `beforeColumnUnfreeze`, and
|
227
|
+
`afterColumnUnfreeze`. [#9248](https://github.com/handsontable/handsontable/issues/9248)
|
138
228
|
|
139
229
|
### Changed
|
140
230
|
|
141
|
-
- Replaced HTML entities appearing in Handsontable's license texts with canonical counterparts.
|
142
|
-
|
143
|
-
-
|
144
|
-
|
231
|
+
- Replaced HTML entities appearing in Handsontable's license texts with canonical counterparts.
|
232
|
+
[#9487](https://github.com/handsontable/handsontable/issues/9487)
|
233
|
+
- Updated the Pikaday optional dependency to 1.8.2, to let Handsontable work with Parcel 2 without
|
234
|
+
errors. [#9410](https://github.com/handsontable/handsontable/issues/9410)
|
235
|
+
- React: Changed the wrapper's lifecycle methods, to let Handsontable work with React 17+ without
|
236
|
+
warnings. [#8748](https://github.com/handsontable/handsontable/issues/8748)
|
237
|
+
- Angular: Moved the `@angular/core` dependency to peer dependencies.
|
238
|
+
[#9574](https://github.com/handsontable/handsontable/issues/9574)
|
145
239
|
|
146
240
|
### Deprecated
|
147
241
|
|
148
|
-
- Deprecated the `getFirstNotHiddenIndex()` method. Use `getNearestNotHiddenIndex()` instead.
|
242
|
+
- Deprecated the `getFirstNotHiddenIndex()` method. Use `getNearestNotHiddenIndex()` instead.
|
243
|
+
[#9064](https://github.com/handsontable/handsontable/issues/9064)
|
149
244
|
|
150
245
|
### Fixed
|
151
246
|
|
152
|
-
- Fixed an issue where dropdown and autocomplete cell editors rendered incorrectly if the
|
153
|
-
|
154
|
-
|
155
|
-
- Fixed an issue where
|
156
|
-
|
157
|
-
- Fixed an issue where
|
158
|
-
|
159
|
-
- Fixed an issue where
|
160
|
-
|
161
|
-
- Fixed an issue
|
247
|
+
- Fixed an issue where dropdown and autocomplete cell editors rendered incorrectly if the
|
248
|
+
`preventOverflow` option was set to `'horizontal'`.
|
249
|
+
[#3828](https://github.com/handsontable/handsontable/issues/3828)
|
250
|
+
- Fixed an issue where frozen rows were getting duplicated.
|
251
|
+
[#4454](https://github.com/handsontable/handsontable/issues/4454)
|
252
|
+
- Fixed an issue where comments rendered outside the viewport.
|
253
|
+
[#4785](https://github.com/handsontable/handsontable/issues/4785)
|
254
|
+
- Fixed an issue where comments got positioned incorrectly when Handsontable ran within a scrollable
|
255
|
+
element. [#6744](https://github.com/handsontable/handsontable/issues/6744)
|
256
|
+
- Fixed an issue that occurred when Handsontable ran within an HTML `<form>`: pressing
|
257
|
+
<kbd>Enter</kbd> inside another form's `<input>` could open Handsontable's dropdown menu.
|
258
|
+
[#9295](https://github.com/handsontable/handsontable/issues/9295)
|
259
|
+
- Fixed an issue where it was impossible to unmerge cells in the RTL layout direction.
|
260
|
+
[#9362](https://github.com/handsontable/handsontable/issues/9362)
|
261
|
+
- Fixed an issue where columns wider than the viewport's width and rows higher than the viewport's
|
262
|
+
height didn't render correctly. [#9473](https://github.com/handsontable/handsontable/issues/9473)
|
263
|
+
- Fixed an issue where dragging-to-scroll on mobile didn't work properly in the RTL layout
|
264
|
+
direction. [#9475](https://github.com/handsontable/handsontable/issues/9475)
|
265
|
+
- Fixed an issue where hiding columns with nested headers caused incorrect column width calculation
|
266
|
+
(for the `stretchH: 'all'` option).
|
267
|
+
[#9496](https://github.com/handsontable/handsontable/issues/9496)
|
268
|
+
- Fixed an issue where `ShortcutManager` unnecessarily handled `keyup` events with no `key` defined.
|
269
|
+
[#9562](https://github.com/handsontable/handsontable/issues/9562)
|
162
270
|
|
163
271
|
For more information on Handsontable 12.1.0, see:
|
272
|
+
|
164
273
|
- [Blog post (12.1.0)](https://handsontable.com/blog/handsontable-12.1.0-data-grid-new-hooks-new-translations-and-rendering-improvements)
|
165
274
|
- [Documentation (12.1)](https://handsontable.com/docs/12.1)
|
166
275
|
- [Release notes (12.1.0)](https://handsontable.com/docs/release-notes/#_12-1-0)
|
@@ -169,13 +278,20 @@ For more information on Handsontable 12.1.0, see:
|
|
169
278
|
|
170
279
|
### Fixed
|
171
280
|
|
172
|
-
- Fixed an issue where checking or unchecking a checkbox in a row with `autoRowSize: true` and
|
173
|
-
-
|
174
|
-
|
175
|
-
- Fixed an issue where
|
176
|
-
|
281
|
+
- Fixed an issue where checking or unchecking a checkbox in a row with `autoRowSize: true` and
|
282
|
+
multi-line cell values caused rows to align incorrectly.
|
283
|
+
[#7102](https://github.com/handsontable/handsontable/issues/7102)
|
284
|
+
- Fixed an issue where checking or unchecking a checkbox changed the cell width.
|
285
|
+
[#8211](https://github.com/handsontable/handsontable/issues/8211)
|
286
|
+
- Fixed an issue where using a single Handsontable instance with multiple HyperFormula sheets could
|
287
|
+
lead to an uncaught `TypeError`. [#8268](https://github.com/handsontable/handsontable/issues/8268)
|
288
|
+
- Fixed an issue where nested column headers didn't expand properly.
|
289
|
+
[#9099](https://github.com/handsontable/handsontable/issues/9099)
|
290
|
+
- Fixed an issue where updating custom borders could lead to uncaught error exceptions.
|
291
|
+
[#9455](https://github.com/handsontable/handsontable/issues/9455)
|
177
292
|
|
178
293
|
For more information on Handsontable 12.0.1, see:
|
294
|
+
|
179
295
|
- [Documentation (12.0)](https://handsontable.com/docs/12.0)
|
180
296
|
- [Release notes (12.0.1)](https://handsontable.com/docs/release-notes/#_12-0-1)
|
181
297
|
|
@@ -183,52 +299,125 @@ For more information on Handsontable 12.0.1, see:
|
|
183
299
|
|
184
300
|
### Added
|
185
301
|
|
186
|
-
- Added `ShortcutManager`, a new API for customizing keyboard shortcuts.
|
187
|
-
|
302
|
+
- Added `ShortcutManager`, a new API for customizing keyboard shortcuts.
|
303
|
+
[#8942](https://github.com/handsontable/handsontable/issues/8942)
|
304
|
+
- Added support for right-to-left (RTL) languages, introducing a new configuration option:
|
305
|
+
`layoutDirection`. [#8760](https://github.com/handsontable/handsontable/issues/8760)
|
188
306
|
- Added an Arabic translation. [#9208](https://github.com/handsontable/handsontable/issues/9208)
|
189
|
-
- Added a new configuration option: `fixedColumnsStart`.
|
190
|
-
|
191
|
-
- Added
|
192
|
-
|
307
|
+
- Added a new configuration option: `fixedColumnsStart`.
|
308
|
+
[#8760](https://github.com/handsontable/handsontable/issues/8760)
|
309
|
+
- Added a new keyboard shortcut (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Enter</kbd>) for filling the
|
310
|
+
selected range of cells with the value of the active cell.
|
311
|
+
[#9366](https://github.com/handsontable/handsontable/issues/9366)
|
312
|
+
- Added support for the <kbd>Home</kbd> and <kbd>End</kbd> keys inside cell editors, for moving the
|
313
|
+
cursor to the beginning or end of the text.
|
314
|
+
[#9367](https://github.com/handsontable/handsontable/issues/9367)
|
315
|
+
- Added support for the latest Node LTS version.
|
316
|
+
[#9149](https://github.com/handsontable/handsontable/issues/9149)
|
193
317
|
|
194
318
|
### Changed
|
195
319
|
|
196
|
-
- **Breaking change**: Changed how `updateSettings()` handles data updates, to improve performance
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
- **Breaking change
|
201
|
-
|
202
|
-
|
203
|
-
-
|
204
|
-
|
205
|
-
|
206
|
-
|
320
|
+
- **Breaking change**: Changed how `updateSettings()` handles data updates, to improve performance
|
321
|
+
and the consistency of user experience. Now, when provided with a new data object,
|
322
|
+
`updateSettings()` updates the data without resetting any states.
|
323
|
+
[#7263](https://github.com/handsontable/handsontable/issues/7263)
|
324
|
+
- **Breaking change (React, Angular, Vue 2, Vue 3)**: Updating your data through a component
|
325
|
+
property no longer resets your index mapper information and configuration options.
|
326
|
+
[#7263](https://github.com/handsontable/handsontable/issues/7263)
|
327
|
+
- **Breaking change**: Changed how `updatePlugin()` reacts to `updateSettings()` calls, to improve
|
328
|
+
performance and the consistency of user experience. Now, calls to `updateSettings()` update a
|
329
|
+
plugin's state only when the options object contains a configuration option that's relevant to
|
330
|
+
that particular plugin. [#9021](https://github.com/handsontable/handsontable/issues/9021)
|
331
|
+
- **Breaking change**: Changed the order of execution for two hooks: now, `beforeKeyDown` is
|
332
|
+
properly fired before `afterDocumentKeyDown`.
|
333
|
+
[#6236](https://github.com/handsontable/handsontable/issues/6236)
|
334
|
+
- **Breaking change**: Changed how default keyboard shortcuts are defined, to improve keyboard
|
335
|
+
navigation consistency. Most of the shortcuts did not change and are now properly documented in
|
336
|
+
the
|
337
|
+
[keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts)
|
338
|
+
guide. However, some shortcuts that were not defined explicitly, and were not listed in the
|
339
|
+
documentation, don't work anymore (e.g., <kbd>Enter</kbd> opens a cell's editor, but
|
340
|
+
<kbd>Ctrl</kbd> + <kbd>Enter</kbd> doesn't). This change doesn't affect custom keyboard shortcuts.
|
341
|
+
[#8942](https://github.com/handsontable/handsontable/issues/8942)
|
342
|
+
- **Breaking change**: Split a cross-platform modifier key (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>) into two
|
343
|
+
separate keys, to improve keyboard navigation consistency. Now, the <kbd>Cmd</kbd> key triggers
|
344
|
+
actions on macOS where the <kbd>Ctrl</kbd> key triggers actions on Windows. For example, on macOS,
|
345
|
+
<kbd>Ctrl</kbd> + <kbd>A</kbd> doesn't work anymore: <kbd>Cmd</kbd> + <kbd>A</kbd> is used
|
346
|
+
instead. [#9369](https://github.com/handsontable/handsontable/issues/9369)
|
347
|
+
- **Breaking change**: Changed the actions of the following
|
348
|
+
[keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts),
|
349
|
+
to match the usual spreadsheet software behavior, and provide a more intuitive user experience:
|
350
|
+
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> +
|
351
|
+
<kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
|
352
|
+
<kbd>Shift</kbd> + <kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>←</kbd>,
|
353
|
+
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>←</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
|
354
|
+
<kbd>→</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>→</kbd>, <kbd>Home</kbd>,
|
355
|
+
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Home</kbd>, <kbd>End</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
|
356
|
+
<kbd>End</kbd>, <kbd>Shift</kbd> + <kbd>Page Up</kbd>, and <kbd>Shift</kbd> + <kbd>Page
|
357
|
+
Down</kbd>. [#9363](https://github.com/handsontable/handsontable/issues/9363)
|
358
|
+
[#9364](https://github.com/handsontable/handsontable/issues/9364)
|
359
|
+
[#9365](https://github.com/handsontable/handsontable/issues/9365)
|
360
|
+
- Changed two scripts of the main Handsontable workspace (`./`), to speed up the build process: now,
|
361
|
+
the `npm run build` and `npm run test` scripts don't build or test the Handsontable examples
|
362
|
+
(`./examples`). [#9412](https://github.com/handsontable/handsontable/issues/9412)
|
363
|
+
- Changed the version of the Moment.js dependency from 2.24.0 to 2.29.3, in reaction to a
|
364
|
+
recently-found Moment.js security vulnerability that did not directly affect Handsontable.
|
365
|
+
[#9381](https://github.com/handsontable/handsontable/issues/9381)
|
366
|
+
- Changed the version of the HyperFormula optional dependency from ^1.2.0 to ^2.0.0.
|
367
|
+
[#9411](https://github.com/handsontable/handsontable/issues/9411)
|
368
|
+
- Changed an internal property name, from `hot.view.wt` to `hot.view._wt`, where `hot` is the name
|
369
|
+
of your Handsontable instance. The intention of this change is to make it clear that Walkontable
|
370
|
+
(Handsontable's rendering engine) is not a part of Handsontable's public API.
|
371
|
+
[#8760](https://github.com/handsontable/handsontable/issues/8760)
|
207
372
|
|
208
373
|
### Removed
|
209
374
|
|
210
|
-
- **Breaking change**: Removed the <kbd>Cmd</kbd> + <kbd>M</kbd> keyboard shortcut (used for cell
|
211
|
-
|
212
|
-
|
213
|
-
|
375
|
+
- **Breaking change**: Removed the <kbd>Cmd</kbd> + <kbd>M</kbd> keyboard shortcut (used for cell
|
376
|
+
merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd> + <kbd>M</kbd>
|
377
|
+
keyboard shortcut works the same as before.
|
378
|
+
[#9368](https://github.com/handsontable/handsontable/issues/9368)
|
379
|
+
- **Breaking change**: Removed the <kbd>Shift</kbd> + <kbd>Page Up</kbd>/<kbd>Page Down</kbd>
|
380
|
+
keyboard shortcuts from the cell editing context.
|
381
|
+
[#9401](https://github.com/handsontable/handsontable/issues/9401)
|
382
|
+
- Dropped support for Internet Explorer 11 and Edge Legacy (the non-Chromium version of Edge).
|
383
|
+
Handsontable 11.x becomes the long-term support (LTS) version for Internet Explorer 11 and Edge
|
384
|
+
Legacy, until the end of 2023. [#7026](https://github.com/handsontable/handsontable/issues/7026)
|
385
|
+
- React: Removed the `enzyme` dependency from the React wrapper.
|
386
|
+
[#9151](https://github.com/handsontable/handsontable/issues/9151)
|
214
387
|
|
215
388
|
### Fixed
|
216
389
|
|
217
|
-
- React, Angular, Vue 2, Vue 3: Fixed an issue where using `updateSettings()` caused problems for
|
218
|
-
|
219
|
-
- Fixed an issue where using `updateSettings()` caused
|
220
|
-
|
221
|
-
- Fixed an issue where using `updateSettings()` caused
|
222
|
-
|
223
|
-
-
|
224
|
-
|
225
|
-
- Fixed an issue where
|
226
|
-
|
227
|
-
- Fixed an issue where
|
228
|
-
|
229
|
-
-
|
390
|
+
- React, Angular, Vue 2, Vue 3: Fixed an issue where using `updateSettings()` caused problems for
|
391
|
+
state managers. [#8372](https://github.com/handsontable/handsontable/issues/8372)
|
392
|
+
- Fixed an issue where using `updateSettings()` caused hidden columns to reappear.
|
393
|
+
[#7165](https://github.com/handsontable/handsontable/issues/7165)
|
394
|
+
- Fixed an issue where using `updateSettings()` caused merged cells to unmerge.
|
395
|
+
[#3315](https://github.com/handsontable/handsontable/issues/3315)
|
396
|
+
- Fixed an issue where using `updateSettings()` caused the state of nested rows to reset.
|
397
|
+
[#8838](https://github.com/handsontable/handsontable/issues/8838)
|
398
|
+
- Fixed an issue where using `updateSettings()` caused problems with column sorting.
|
399
|
+
[#7688](https://github.com/handsontable/handsontable/issues/7688)
|
400
|
+
- React: Fixed an issue where using React's `setState()` within the `afterFilter` hook broke
|
401
|
+
filtering. [#7567](https://github.com/handsontable/handsontable/issues/7567)
|
402
|
+
- Vue 2: Fixed an issue where repeatedly changing Handsontable's height through `updateSettings()`
|
403
|
+
caused Handsontable to crash. [#7546](https://github.com/handsontable/handsontable/issues/7546)
|
404
|
+
- Vue 2: Fixed an issue where the `failed` validation status got erased when editing a new row.
|
405
|
+
[#7541](https://github.com/handsontable/handsontable/issues/7541)
|
406
|
+
- Fixed an issue where cell filtering did not use formula results.
|
407
|
+
[#5455](https://github.com/handsontable/handsontable/issues/5455)
|
408
|
+
- Fixed a wrong TypeScript definition in the `BasePlugin` class.
|
409
|
+
[#9175](https://github.com/handsontable/handsontable/issues/9175)
|
410
|
+
- Fixed an issue where the <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Z</kbd> and
|
411
|
+
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> keyboard shortcuts didn't behave
|
412
|
+
properly inside cell editors. [#9367](https://github.com/handsontable/handsontable/issues/9367)
|
413
|
+
- Fixed an issue where the dropdown menu contained unwanted rectangle elements.
|
414
|
+
[#9240](https://github.com/handsontable/handsontable/issues/9240)
|
415
|
+
- React, Vue 2, Vue 3: Fixed an issue with registering modules for the React, Vue 2, and Vue 3
|
416
|
+
wrappers, by adding an `"exports"` field to their `package.json` files.
|
417
|
+
[#9140](https://github.com/handsontable/handsontable/issues/9140)
|
230
418
|
|
231
419
|
For more information on Handsontable 12.0.0, see:
|
420
|
+
|
232
421
|
- [Blog post (12.0.0)](https://handsontable.com/blog/handsontable-12.0.0-data-grid-rtl-support-and-a-new-keyboard-shortcuts-api)
|
233
422
|
- [Documentation (12.0)](https://handsontable.com/docs/12.0)
|
234
423
|
- [Migration guide (11.1 → 12.0)](https://handsontable.com/docs/migration-from-11.1-to-12.0)
|
@@ -238,32 +427,51 @@ For more information on Handsontable 12.0.0, see:
|
|
238
427
|
|
239
428
|
### Added
|
240
429
|
|
241
|
-
- Added `updateData()`, a new method that allows for replacing Handsontable's `data` without
|
242
|
-
resetting the states of cells, rows and columns.
|
243
|
-
|
430
|
+
- Added `updateData()`, a new method that allows for replacing Handsontable's `data` without
|
431
|
+
resetting the states of cells, rows and columns.
|
432
|
+
[#7263](https://github.com/handsontable/handsontable/issues/7263)
|
433
|
+
- Vue: Added Vue 3 support, by introducing a new wrapper.
|
434
|
+
[#7545](https://github.com/handsontable/handsontable/issues/7545)
|
244
435
|
|
245
436
|
### Changed
|
246
437
|
|
247
|
-
- Updated the TypeScript definition of the `setDataAtCell()` method.
|
248
|
-
|
438
|
+
- Updated the TypeScript definition of the `setDataAtCell()` method.
|
439
|
+
[#8601](https://github.com/handsontable/handsontable/issues/8601)
|
440
|
+
- Extended Handsontable's GitHub Actions workflow, to allow for deploying code examples to GitHub
|
441
|
+
Pages. [#9058](https://github.com/handsontable/handsontable/issues/9058)
|
249
442
|
|
250
443
|
### Fixed
|
251
444
|
|
252
|
-
- Fixed an issue where the `autocomplete` editor's suggestion list didn't update properly.
|
253
|
-
|
254
|
-
- Fixed
|
255
|
-
|
256
|
-
- Fixed
|
257
|
-
|
258
|
-
- Fixed
|
259
|
-
|
260
|
-
- Fixed an issue where the
|
261
|
-
|
262
|
-
- Fixed
|
263
|
-
|
264
|
-
-
|
445
|
+
- Fixed an issue where the `autocomplete` editor's suggestion list didn't update properly.
|
446
|
+
[#7570](https://github.com/handsontable/handsontable/issues/7570)
|
447
|
+
- Fixed an issue where nested headers didn't render when `data` wasn't defined.
|
448
|
+
[#8589](https://github.com/handsontable/handsontable/issues/8589)
|
449
|
+
- Fixed some end-to-end tests that failed on mobile devices.
|
450
|
+
[#8749](https://github.com/handsontable/handsontable/issues/8749)
|
451
|
+
- Fixed an issue where the rendered selection could get shifted by 1px.
|
452
|
+
[#8756](https://github.com/handsontable/handsontable/issues/8756)
|
453
|
+
- Fixed an issue where the first column's border didn't display properly.
|
454
|
+
[#8767](https://github.com/handsontable/handsontable/issues/8767)
|
455
|
+
- Fixed an issue where the `CollapsibleColumns` plugin's `expandAll()` method didn't expand
|
456
|
+
collapsed columns. [#8900](https://github.com/handsontable/handsontable/issues/8900)
|
457
|
+
- Fixed end-to-end test scripts that occasionally crashed.
|
458
|
+
[#8961](https://github.com/handsontable/handsontable/issues/8961)
|
459
|
+
- Fixed a typo in the `valueAccordingPercent()` helper.
|
460
|
+
[#9006](https://github.com/handsontable/handsontable/issues/9006)
|
461
|
+
- Fixed an issue where the `NestedRows` plugin could throw a type error after calling the
|
462
|
+
`updateSettings()` method. [#9018](https://github.com/handsontable/handsontable/issues/9018)
|
463
|
+
- Fixed an issue where performance was affected by removing events.
|
464
|
+
[#9044](https://github.com/handsontable/handsontable/issues/9044)
|
465
|
+
- Fixed a wrong TypeScript definition of the `MultiColumnSorting` plugin's `sort()` method.
|
466
|
+
[#9067](https://github.com/handsontable/handsontable/issues/9067)
|
467
|
+
- Fixed an issue where the `Comments` plugin's editor disappeared after adding a comment.
|
468
|
+
[#9075](https://github.com/handsontable/handsontable/issues/9075)
|
469
|
+
[#6661](https://github.com/handsontable/handsontable/issues/6661)
|
470
|
+
- React: Fixed a wrong return type.
|
471
|
+
[#9000](https://github.com/handsontable/handsontable/issues/9000)
|
265
472
|
|
266
473
|
For more information on Handsontable 11.1.0, see:
|
474
|
+
|
267
475
|
- [Blog post (11.1.0)](https://handsontable.com/blog/handsontable-11.1.0-vue-3-support-and-updatedata)
|
268
476
|
- [Documentation (11.1)](https://handsontable.com/docs/11.1)
|
269
477
|
- [Release notes (11.1.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-1)
|
@@ -272,9 +480,11 @@ For more information on Handsontable 11.1.0, see:
|
|
272
480
|
|
273
481
|
### Fixed
|
274
482
|
|
275
|
-
- Fixed the UMD build of `@handsontable/angular`, which was not working properly in `11.0.0`.
|
483
|
+
- Fixed the UMD build of `@handsontable/angular`, which was not working properly in `11.0.0`.
|
484
|
+
[#8946](https://github.com/handsontable/handsontable/pull/8946)
|
276
485
|
|
277
486
|
For more information on Handsontable 11.0.0, see:
|
487
|
+
|
278
488
|
- [Documentation (11.0)](https://handsontable.com/docs/11.0)
|
279
489
|
- [Release notes (11.0.1)](https://handsontable.com/docs/release-notes/#_11-0-1)
|
280
490
|
|
@@ -282,32 +492,54 @@ For more information on Handsontable 11.0.0, see:
|
|
282
492
|
|
283
493
|
### Added
|
284
494
|
|
285
|
-
- **Breaking change**: Added TypeScript definition files for Handsontable's modularized version.
|
286
|
-
|
287
|
-
- **Breaking change (
|
288
|
-
|
289
|
-
-
|
290
|
-
|
291
|
-
-
|
292
|
-
|
495
|
+
- **Breaking change**: Added TypeScript definition files for Handsontable's modularized version.
|
496
|
+
[#7489](https://github.com/handsontable/handsontable/issues/7489)
|
497
|
+
- **Breaking change (Vue)**: Added support for modularization to the Vue wrapper.
|
498
|
+
[#8820](https://github.com/handsontable/handsontable/issues/8820)
|
499
|
+
- **Breaking change (React)**: Added support for modularization to the React wrapper.
|
500
|
+
[#8819](https://github.com/handsontable/handsontable/issues/8819)
|
501
|
+
- **Breaking change (Angular)**: Added support for modularization to the Angular wrapper.
|
502
|
+
[#8818](https://github.com/handsontable/handsontable/issues/8818)
|
503
|
+
- Added a new package entry point that allows importing built-in modules in one function call:
|
504
|
+
`import { registerAllEditors, registerAllRenderers, registerAllValidators, registerAllCellTypes, registerAllPlugins } from 'handsontable/registry'`.
|
505
|
+
[#8816](https://github.com/handsontable/handsontable/issues/8816)
|
506
|
+
- Added a new `locale` option, to properly handle locale-based data.
|
507
|
+
[#8897](https://github.com/handsontable/handsontable/issues/8897)
|
508
|
+
- Added a GitHub Actions workflow that covers testing Handsontable and the wrappers.
|
509
|
+
[#8652](https://github.com/handsontable/handsontable/issues/8652)
|
510
|
+
- Added new direction helpers (internal API) that lay ground for future RTL support.
|
511
|
+
[#8868](https://github.com/handsontable/handsontable/issues/8868)
|
293
512
|
|
294
513
|
### Changed
|
295
514
|
|
296
|
-
- **Breaking change**: Changed how the `populateFromArray()` method works with its `method` argument
|
297
|
-
|
298
|
-
|
515
|
+
- **Breaking change**: Changed how the `populateFromArray()` method works with its `method` argument
|
516
|
+
set to `shift_down` or `shift_right`.
|
517
|
+
[#888](https://github.com/handsontable/handsontable/issues/888)
|
518
|
+
- Moved the entire Handsontable package to its own, new subdirectory: `./handsontable`.
|
519
|
+
[#8759](https://github.com/handsontable/handsontable/issues/8759)
|
520
|
+
- Replaced the license files with updated versions.
|
521
|
+
[#8877](https://github.com/handsontable/handsontable/issues/8877)
|
299
522
|
|
300
523
|
### Fixed
|
301
524
|
|
302
|
-
- Fixed an issue with incorrect filtering of locale-based data while using search input from a
|
303
|
-
-
|
304
|
-
- Fixed an
|
305
|
-
|
306
|
-
- Fixed
|
307
|
-
|
308
|
-
-
|
525
|
+
- Fixed an issue with incorrect filtering of locale-based data while using search input from a
|
526
|
+
drop-down menu. [#6095](https://github.com/handsontable/handsontable/issues/6095)
|
527
|
+
- Fixed an error thrown when using the `populateFromArray()` method with its `method` argument set
|
528
|
+
to `shift_right`. [#6929](https://github.com/handsontable/handsontable/issues/6929)
|
529
|
+
- Fixed an issue with the `beforeOnCellMouseDown` and `afterOnCellMouseDown` hooks using wrong
|
530
|
+
coordinates. [#8498](https://github.com/handsontable/handsontable/issues/8498)
|
531
|
+
- Fixed a `TypeError` thrown when calling the `updateSettings()` method in Handsontable's
|
532
|
+
modularized version. [#8830](https://github.com/handsontable/handsontable/issues/8830)
|
533
|
+
- Fixed two issues with the documentation's `canonicalUrl` entries.
|
534
|
+
[#8886](https://github.com/handsontable/handsontable/issues/8886)
|
535
|
+
- Fixed an error thrown when autofill's source is a `date` cell.
|
536
|
+
[#8894](https://github.com/handsontable/handsontable/issues/8894)
|
537
|
+
- React: Fixed a React wrapper issue where it's impossible to use different sets of props in editor
|
538
|
+
components reused across multiple columns.
|
539
|
+
[#8527](https://github.com/handsontable/handsontable/issues/8527)
|
309
540
|
|
310
541
|
For more information on Handsontable 11.0.0, see:
|
542
|
+
|
311
543
|
- [Blog post (11.0.0)](https://handsontable.com/blog/handsontable-11.0.0-modularization-for-react-angular-and-vue)
|
312
544
|
- [Documentation (11.0)](https://handsontable.com/docs/11.0)
|
313
545
|
- [Migration guide (10.0 → 11.0)](https://handsontable.com/docs/migration-from-10.0-to-11.0)
|
@@ -317,33 +549,60 @@ For more information on Handsontable 11.0.0, see:
|
|
317
549
|
|
318
550
|
### Changed
|
319
551
|
|
320
|
-
- **Breaking change**: Unified the naming and description of the fourth argument, `controller`, for
|
321
|
-
|
322
|
-
|
323
|
-
- **Breaking change**: Changed
|
324
|
-
|
325
|
-
|
326
|
-
-
|
327
|
-
|
328
|
-
|
329
|
-
-
|
552
|
+
- **Breaking change**: Unified the naming and description of the fourth argument, `controller`, for
|
553
|
+
selection manipulation in the `beforeOnCellMouseDown` and `beforeOnCellMouseOver` hooks.
|
554
|
+
[#4996](https://github.com/handsontable/handsontable/issues/4996)
|
555
|
+
- **Breaking change**: Changed what the `beforeRender` and `afterRender` hooks are, and when they
|
556
|
+
are triggered. Added two new hooks: `beforeViewRender` and `afterViewRender`.
|
557
|
+
[#6303](https://github.com/handsontable/handsontable/issues/6303)
|
558
|
+
- **Breaking change**: Changed the optional HyperFormula dependency from 0.6.2 to ^1.1.0, which
|
559
|
+
introduces breaking changes for the `Formulas` plugin users.
|
560
|
+
[#8502](https://github.com/handsontable/handsontable/issues/8502)
|
561
|
+
- **Breaking change**: Changed the default values for the `rowsLimit` and `columnsLimit` options of
|
562
|
+
the `CopyPaste` plugin. [#8660](https://github.com/handsontable/handsontable/issues/8660)
|
563
|
+
- **Breaking change**: Added a default font family, size, weight and color.
|
564
|
+
[#8661](https://github.com/handsontable/handsontable/issues/8661)
|
565
|
+
- **Breaking change**: Changed the `autoWrapRow` and `autoWrapCol` options\` default values from
|
566
|
+
`true` to `false`. [#8662](https://github.com/handsontable/handsontable/issues/8662)
|
567
|
+
- Improved the performance of the `getCellMeta()` method.
|
568
|
+
[#6303](https://github.com/handsontable/handsontable/issues/6303)
|
569
|
+
- Improved the documentation and TypeScript definition of the `selectOptions` option.
|
570
|
+
[#8488](https://github.com/handsontable/handsontable/issues/8488)
|
571
|
+
- Improved the arguments forwarding in the hooks
|
572
|
+
[#8668](https://github.com/handsontable/handsontable/issues/8668)
|
573
|
+
- Added a Github Actions workflow covering the testing of Handsontable and all of the wrappers.
|
574
|
+
[#8652](https://github.com/handsontable/handsontable/issues/8652)
|
330
575
|
|
331
576
|
### Fixed
|
332
577
|
|
333
|
-
- Fixed an issue of not resetting the date picker's configuration.
|
334
|
-
|
335
|
-
-
|
336
|
-
|
337
|
-
- Fixed
|
338
|
-
|
339
|
-
-
|
340
|
-
|
341
|
-
- Fixed
|
342
|
-
|
343
|
-
-
|
344
|
-
|
578
|
+
- Fixed an issue of not resetting the date picker's configuration.
|
579
|
+
[#6636](https://github.com/handsontable/handsontable/issues/6636)
|
580
|
+
- An error won't be thrown while inserting a new row for nested rows in a specific case.
|
581
|
+
[#7137](https://github.com/handsontable/handsontable/issues/7137)
|
582
|
+
- Fixed a few problems with the `NestedRows` plugin, occurring with the `Formulas` plugin enabled.
|
583
|
+
[#8048](https://github.com/handsontable/handsontable/issues/8048)
|
584
|
+
- Fixed errors being thrown in the `Formulas` plugin if a provided sheet name contained a dash
|
585
|
+
character. [#8057](https://github.com/handsontable/handsontable/issues/8057)
|
586
|
+
- Fixed multiple bugs related to undo/redo actions while using the `Formulas` plugin.
|
587
|
+
[#8078](https://github.com/handsontable/handsontable/issues/8078)
|
588
|
+
- Fixed an issue where autofill was not able to be blocked/changed with the `beforeChange` hook when
|
589
|
+
the `Formulas` plugin was enabled
|
590
|
+
[#8107](https://github.com/handsontable/handsontable/issues/8107)
|
591
|
+
- Data stored by the `NestedRows` plugin won't be corrupted by some actions.
|
592
|
+
[#8180](https://github.com/handsontable/handsontable/issues/8180)
|
593
|
+
- Collapsed parents won't be expanded after inserting rows.
|
594
|
+
[#8181](https://github.com/handsontable/handsontable/issues/8181)
|
595
|
+
- Fixed the cooperation of the dropdown menu and column sorting (menu closing on click).
|
596
|
+
[#8232](https://github.com/handsontable/handsontable/issues/8232)
|
597
|
+
- Data won't be corrupted anymore when some alterations are performed.
|
598
|
+
[#8614](https://github.com/handsontable/handsontable/issues/8614)
|
599
|
+
- Adjusted directories and files related to `dataMap`, to prevent potential circular references.
|
600
|
+
[#8704](https://github.com/handsontable/handsontable/issues/8704)
|
601
|
+
- Improved the performance of the regular expression used to detect numeric values, and fixed major
|
602
|
+
code smells. [#8752](https://github.com/handsontable/handsontable/issues/8752)
|
345
603
|
|
346
604
|
For more information on Handsontable 10.0.0, see:
|
605
|
+
|
347
606
|
- [Blog post (10.0.0)](https://handsontable.com/blog/handsontable-10.0.0-improved-performance-and-consistency)
|
348
607
|
- [Documentation (10.0)](https://handsontable.com/docs/10.0)
|
349
608
|
- [Migration guide (9.0 → 10.0)](https://handsontable.com/docs/migration-from-9.0-to-10.0)
|
@@ -353,22 +612,37 @@ For more information on Handsontable 10.0.0, see:
|
|
353
612
|
|
354
613
|
### Fixed
|
355
614
|
|
356
|
-
- Fixed an issue with an error being thrown when lazy loading columns on a setup with Nested
|
357
|
-
|
358
|
-
- Fixed
|
359
|
-
|
360
|
-
- Fixed
|
361
|
-
|
362
|
-
-
|
363
|
-
|
364
|
-
-
|
365
|
-
|
615
|
+
- Fixed an issue with an error being thrown when lazy loading columns on a setup with Nested
|
616
|
+
Headers + Hidden Columns. [#7160](https://github.com/handsontable/handsontable/issues/7160)
|
617
|
+
- Fixed column header sizes not being updated on `updateSettings` calls containing `columns`.
|
618
|
+
[#7689](https://github.com/handsontable/handsontable/issues/7689)
|
619
|
+
- Fixed functional keys' behavior, to prevent unexpected editing.
|
620
|
+
[#7838](https://github.com/handsontable/handsontable/issues/7838)
|
621
|
+
- Fixed missing collapsible indicator on IE.
|
622
|
+
[#8028](https://github.com/handsontable/handsontable/issues/8028)
|
623
|
+
- Fixed support for row and column headers in the `parseTable` utility.
|
624
|
+
[#8041](https://github.com/handsontable/handsontable/issues/8041)
|
625
|
+
- Fixed a bug where not providing a data object with the `nestedRows` plugin enabled crashed the
|
626
|
+
table. [#8171](https://github.com/handsontable/handsontable/issues/8171)
|
627
|
+
- Vue: Fixed an issue where adding rows to a Handsontable instance wrapped for Vue resulted in
|
628
|
+
additional rows being inserted at the end of the table.
|
629
|
+
[#8148](https://github.com/handsontable/handsontable/issues/8148)
|
630
|
+
- Vue: Fixed a problem in the Vue wrapper, where destroying the underlying Handsontable instance
|
631
|
+
caused it to throw errors and crash.
|
632
|
+
[#8311](https://github.com/handsontable/handsontable/issues/8311)
|
633
|
+
- React: Fixed a problem in the React wrapper, where destroying the underlying Handsontable instance
|
634
|
+
caused it to throw errors and crash.
|
635
|
+
[#8311](https://github.com/handsontable/handsontable/issues/8311)
|
636
|
+
- Angular: Fixed a problem in the Angular wrapper, where destroying the underlying Handsontable
|
637
|
+
instance caused it to throw errors and crash.
|
638
|
+
[#8311](https://github.com/handsontable/handsontable/issues/8311)
|
366
639
|
|
367
640
|
### Added
|
368
641
|
|
369
642
|
- Added new documentation engine [#7624](https://github.com/handsontable/handsontable/issues/7624)
|
370
643
|
|
371
644
|
For more information on Handsontable 9.0.2, see:
|
645
|
+
|
372
646
|
- [Blog post (9.0.2)](https://handsontable.com/blog/whats-new-in-handsontable-9.0.2)
|
373
647
|
- [Documentation (9.0)](https://handsontable.com/docs/9.0)
|
374
648
|
- [Release notes (9.0.2)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0-2)
|
@@ -377,14 +651,18 @@ For more information on Handsontable 9.0.2, see:
|
|
377
651
|
|
378
652
|
### Removed
|
379
653
|
|
380
|
-
- Removed the redundant internal `jsonpatch` library from the source code.
|
654
|
+
- Removed the redundant internal `jsonpatch` library from the source code.
|
655
|
+
[#8140](https://github.com/handsontable/handsontable/issues/8140)
|
381
656
|
|
382
657
|
### Fixed
|
383
658
|
|
384
|
-
- Fixed an issue where the validator function was called twice when the Formulas plugin was enabled.
|
385
|
-
|
659
|
+
- Fixed an issue where the validator function was called twice when the Formulas plugin was enabled.
|
660
|
+
[#8138](https://github.com/handsontable/handsontable/issues/8138)
|
661
|
+
- Introduced a new CSS style for cells of the `checkbox` type to restore previous behaviour.
|
662
|
+
[#8196](https://github.com/handsontable/handsontable/issues/8196)
|
386
663
|
|
387
664
|
For more information on Handsontable 9.0.1, see:
|
665
|
+
|
388
666
|
- [Documentation (9.0)](https://handsontable.com/docs/9.0)
|
389
667
|
- [Release notes (9.0.1)](https://handsontable.com/docs/release-notes/#_9-0-1)
|
390
668
|
|
@@ -392,25 +670,35 @@ For more information on Handsontable 9.0.1, see:
|
|
392
670
|
|
393
671
|
### Changed
|
394
672
|
|
395
|
-
- **Breaking change**: New Formulas plugin, with an entirely different API. See the migration guide
|
396
|
-
|
397
|
-
|
398
|
-
-
|
673
|
+
- **Breaking change**: New Formulas plugin, with an entirely different API. See the migration guide
|
674
|
+
for a full list of changes. Removed the required `hot-formula-parser` dependency for the sake of
|
675
|
+
an optional one, `hyperformula`. [#6466](https://github.com/handsontable/handsontable/issues/6466)
|
676
|
+
- **Breaking change**: Changed the `afterAutofill` and `beforeAutofill` hooks' signatures.
|
677
|
+
[#7987](https://github.com/handsontable/handsontable/issues/7987)
|
678
|
+
- Upgraded `eslint` and eslint-related modules.
|
679
|
+
[#7531](https://github.com/handsontable/handsontable/issues/7531)
|
680
|
+
- Added `fit` & `fdescribe` to restricted globals in test files.
|
681
|
+
[#8088](https://github.com/handsontable/handsontable/issues/8088)
|
399
682
|
|
400
683
|
### Removed
|
401
684
|
|
402
|
-
- **Breaking change**: Removed the deprecated plugins - Header Tooltips and Observe Changes.
|
685
|
+
- **Breaking change**: Removed the deprecated plugins - Header Tooltips and Observe Changes.
|
686
|
+
[#8083](https://github.com/handsontable/handsontable/issues/8083)
|
403
687
|
|
404
688
|
### Fixed
|
405
689
|
|
406
|
-
- Fixed a problem with the column indicator of the Collapsible Columns plugin not being displayed
|
407
|
-
|
690
|
+
- Fixed a problem with the column indicator of the Collapsible Columns plugin not being displayed
|
691
|
+
properly on styled headers. [#7970](https://github.com/handsontable/handsontable/issues/7970)
|
692
|
+
- Fixed a problem with duplicated `afterCreateCol` hooks being triggered after undoing a removal of
|
693
|
+
a column. [#8076](https://github.com/handsontable/handsontable/issues/8076)
|
408
694
|
|
409
695
|
### Deprecated
|
410
696
|
|
411
|
-
- Deprecated the `beforeAutofillInsidePopulate` hook. It will be removed in the next major release.
|
697
|
+
- Deprecated the `beforeAutofillInsidePopulate` hook. It will be removed in the next major release.
|
698
|
+
[#8095](https://github.com/handsontable/handsontable/issues/8095)
|
412
699
|
|
413
700
|
For more information on Handsontable 9.0.0, see:
|
701
|
+
|
414
702
|
- [Blog post (9.0.0)](https://handsontable.com/blog/handsontable-9.0.0-new-formula-plugin)
|
415
703
|
- [Documentation (9.0)](https://handsontable.com/docs/9.0)
|
416
704
|
- [Migration guide (8.4 → 9.0)](https://handsontable.com/docs/migration-from-8.4-to-9.0)
|
@@ -420,41 +708,70 @@ For more information on Handsontable 9.0.0, see:
|
|
420
708
|
|
421
709
|
### Added
|
422
710
|
|
423
|
-
- Introduced a `separated` attribute for the label options (the `label` DOM element may wrap `input`
|
424
|
-
|
425
|
-
-
|
426
|
-
|
427
|
-
- Added
|
428
|
-
|
429
|
-
- Added
|
430
|
-
|
711
|
+
- Introduced a `separated` attribute for the label options (the `label` DOM element may wrap `input`
|
712
|
+
or be placed next to it). [#3172](https://github.com/handsontable/handsontable/issues/3172)
|
713
|
+
- Introduced the `modifyAutoColumnSizeSeed` hook to let developers overwrite the default behaviour
|
714
|
+
of the AutoColumnSize sampling. [#3339](https://github.com/handsontable/handsontable/issues/3339)
|
715
|
+
- Added support for hiding columns for the _NestedHeaders_ plugin.
|
716
|
+
[#6879](https://github.com/handsontable/handsontable/issues/6879)
|
717
|
+
- Added ability to skip stacking actions by the `UndoRedo` plugin and introduced new hooks.
|
718
|
+
[#6948](https://github.com/handsontable/handsontable/issues/6948)
|
719
|
+
- Added 2 new hooks, `beforeHighlightingColumnHeader` and `beforeHighlightingRowHeader`. Use them to
|
720
|
+
retrieve a header element (`<th>`) before it gets highlighted.
|
721
|
+
([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
722
|
+
- Added a new method, `indexMapper.unregisterAll()`. Use it to unregister all collected index maps
|
723
|
+
from all map collections types. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
724
|
+
- Added a new method, `indexMapper.createChangesObserver()`. Use it to listen to any changes made to
|
725
|
+
indexes while Handsontable is running.
|
726
|
+
([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
727
|
+
- Added a new method, `indexMapper.createAndRegisterIndexMap()`. Use it to create and register a new
|
728
|
+
index map. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
431
729
|
|
432
730
|
### Fixed
|
433
731
|
|
434
|
-
- Fixed a problem with sorting the `checkbox`-typed cells and an issue with empty cells not being
|
435
|
-
|
436
|
-
- Fixed
|
437
|
-
|
438
|
-
- Fixed
|
439
|
-
|
440
|
-
- Fixed the
|
441
|
-
|
442
|
-
- Fixed
|
443
|
-
|
444
|
-
- Fixed
|
732
|
+
- Fixed a problem with sorting the `checkbox`-typed cells and an issue with empty cells not being
|
733
|
+
displayed properly. [#4047](https://github.com/handsontable/handsontable/issues/4047)
|
734
|
+
- Fixed a problem where undoing the removal of row with `readOnly` cells was not performed properly.
|
735
|
+
[#4754](https://github.com/handsontable/handsontable/issues/4754)
|
736
|
+
- Fixed state-change resolving for externally added checkboxes.
|
737
|
+
[#5934](https://github.com/handsontable/handsontable/issues/5934)
|
738
|
+
- Fixed a problem with the native selection being removed with the `fragmentSelection` option
|
739
|
+
enabled. [#6083](https://github.com/handsontable/handsontable/issues/6083)
|
740
|
+
- Fixed a bug where number of columns rendered in the viewport was not correct.
|
741
|
+
[#6115](https://github.com/handsontable/handsontable/issues/6115)
|
742
|
+
- Fixed a bug with the Dropdown Menu not opening on Android devices.
|
743
|
+
[#6212](https://github.com/handsontable/handsontable/issues/6212)
|
744
|
+
- Fixed the double-tap issue on iOS.
|
745
|
+
[#6961](https://github.com/handsontable/handsontable/issues/6961)
|
746
|
+
- Fixed a problem with the Comments editor being destroyed after destroying another Handsontable
|
747
|
+
instance. [#7091](https://github.com/handsontable/handsontable/issues/7091)
|
748
|
+
- Fixed incorrect `numericFormat`'s type definition.
|
749
|
+
[#7420](https://github.com/handsontable/handsontable/issues/7420)
|
750
|
+
- Fixed the `trimWhitespace` tests on Firefox.
|
751
|
+
[#7593](https://github.com/handsontable/handsontable/issues/7593)
|
752
|
+
- Fixed the [NPM Audit] Github Action job to report found vulnerabilities.
|
753
|
+
[#7621](https://github.com/handsontable/handsontable/issues/7621)
|
445
754
|
- Fixed some minor iOS problems. [#7659](https://github.com/handsontable/handsontable/issues/7659)
|
446
|
-
- Fixed the TypeScript definition for the suspended rendering feature.
|
447
|
-
|
448
|
-
- Fixed the
|
449
|
-
|
450
|
-
-
|
451
|
-
|
755
|
+
- Fixed the TypeScript definition for the suspended rendering feature.
|
756
|
+
[#7666](https://github.com/handsontable/handsontable/issues/7666)
|
757
|
+
- Fixed the `postbuild` and `examples:install` scripts on Windows.
|
758
|
+
[#7680](https://github.com/handsontable/handsontable/issues/7680)
|
759
|
+
- Fixed the contents of the production `package.json`.
|
760
|
+
[#7723](https://github.com/handsontable/handsontable/issues/7723)
|
761
|
+
- Fixed an issue, where the callbacks for the UndoRedo plugin were called twice.
|
762
|
+
[#7825](https://github.com/handsontable/handsontable/issues/7825)
|
763
|
+
- Vue: Fixed a problem with displaying and removing rows in the Nested Rows plugin.
|
764
|
+
[#7548](https://github.com/handsontable/handsontable/issues/7548)
|
765
|
+
- React: Fixed an incompatibility in the property type definitions for the HotColumn component.
|
766
|
+
[#7612](https://github.com/handsontable/handsontable/issues/7612)
|
452
767
|
|
453
768
|
### Changed
|
454
769
|
|
455
|
-
- Enhanced the ESLint config file by adding a rule that checks if there are new lines missing before
|
770
|
+
- Enhanced the ESLint config file by adding a rule that checks if there are new lines missing before
|
771
|
+
some keywords or statements. [#7691](https://github.com/handsontable/handsontable/issues/7691)
|
456
772
|
|
457
773
|
For more information on Handsontable 8.4.0, see:
|
774
|
+
|
458
775
|
- [Blog post (8.4.0)](https://handsontable.com/blog/whats-new-in-handsontable-8-4-0)
|
459
776
|
- [Documentation (8.4.0)](https://handsontable.com/docs/8.4.0)
|
460
777
|
- [Release notes (8.4.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-4)
|
@@ -463,29 +780,49 @@ For more information on Handsontable 8.4.0, see:
|
|
463
780
|
|
464
781
|
### Fixed
|
465
782
|
|
466
|
-
- Fixed a bug where it was impossible to enable `disableVisualSelection` for cells/columns.
|
467
|
-
|
468
|
-
- Fixed
|
469
|
-
|
470
|
-
- Fixed
|
471
|
-
|
472
|
-
- Fixed
|
473
|
-
|
474
|
-
- Fixed a bug where
|
475
|
-
|
476
|
-
- Fixed a bug where the `
|
477
|
-
|
478
|
-
- Fixed
|
479
|
-
|
480
|
-
- Fixed
|
481
|
-
|
783
|
+
- Fixed a bug where it was impossible to enable `disableVisualSelection` for cells/columns.
|
784
|
+
[#5082](https://github.com/handsontable/handsontable/issues/5082)
|
785
|
+
- Fixed wrong paddings for multi-level headers.
|
786
|
+
[#5086](https://github.com/handsontable/handsontable/issues/5086)
|
787
|
+
- Fixed problems with the `current` option of the `disableVisualSelection` setting.
|
788
|
+
[#5869](https://github.com/handsontable/handsontable/issues/5869)
|
789
|
+
- Fixed problems with the `header` option of the `disableVisualSelection` setting.
|
790
|
+
[#6025](https://github.com/handsontable/handsontable/issues/6025)
|
791
|
+
- Fixed a bug where the "double-tap-to-zoom" gesture prevented the editor from opening properly on
|
792
|
+
some mobile devices. [#7142](https://github.com/handsontable/handsontable/issues/7142)
|
793
|
+
- Fixed a bug where calling the `updateSettings` method in the body of some callbacks would break
|
794
|
+
the table. [#7231](https://github.com/handsontable/handsontable/issues/7231)
|
795
|
+
- Fixed an issue where the `maxRows` and `maxCols` options interfered with hidden index
|
796
|
+
calculations. [#7350](https://github.com/handsontable/handsontable/issues/7350)
|
797
|
+
- Fixed problems with doubled borders being displayed when `window` was a scrollable container.
|
798
|
+
[#7356](https://github.com/handsontable/handsontable/issues/7356)
|
799
|
+
- Fixed a bug where value population from an edited cell would result in a console error.
|
800
|
+
[#7382](https://github.com/handsontable/handsontable/issues/7382)
|
801
|
+
- Fixed a bug where the dropdown cell type would not work on Safari 14+.
|
802
|
+
[#7413](https://github.com/handsontable/handsontable/issues/7413)
|
803
|
+
- Fixed a bug where the `AutoRowSize` plugin would break the table when placed in an iframe.
|
804
|
+
[#7424](https://github.com/handsontable/handsontable/issues/7424)
|
805
|
+
- Fixed bugs in navigation by `HOME` and `END` keys with hidden rows/columns enabled.
|
806
|
+
[#7454](https://github.com/handsontable/handsontable/issues/7454)
|
807
|
+
- Fixed a bug with the `trimWhitespace` option not working properly.
|
808
|
+
[#7458](https://github.com/handsontable/handsontable/issues/7458)
|
809
|
+
- Fixed an issue with inconsistent documentation and TypeScript definitions for `colWidths` and
|
810
|
+
`rowHeights` options. [#7507](https://github.com/handsontable/handsontable/issues/7507)
|
811
|
+
- Fixed the incorrect `cellTypes` module paths in the `exports` entry of the `package.json` file.
|
812
|
+
[#7597](https://github.com/handsontable/handsontable/issues/7597)
|
813
|
+
- Vue: Fixed Remote Code Execution vulnerability in the dev dependencies.
|
814
|
+
[#7620](https://github.com/handsontable/handsontable/issues/7620)
|
482
815
|
|
483
816
|
### Added
|
484
817
|
|
485
|
-
- Introduced the monorepo to this repository. From now on, `handsontable`, `@handsontable/angular`,
|
486
|
-
|
818
|
+
- Introduced the monorepo to this repository. From now on, `handsontable`, `@handsontable/angular`,
|
819
|
+
`@handsontable/react`, and `@handsontable/vue` will all be developed in the same repo -
|
820
|
+
`handsontable`. [#7380](https://github.com/handsontable/handsontable/issues/7380)
|
821
|
+
- Added a custom ESLint rule which allows restricting specified modules from loading by `import` or
|
822
|
+
re-exporting. [#7473](https://github.com/handsontable/handsontable/issues/7473)
|
487
823
|
|
488
824
|
For more information on Handsontable 8.3.2, see:
|
825
|
+
|
489
826
|
- [Blog post (8.3.2)](https://handsontable.com/blog/handsontable-8-3-2-introducing-monorepo)
|
490
827
|
- [Documentation (8.3.2)](https://handsontable.com/docs/8.3.2)
|
491
828
|
- [Release notes (8.3.2)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3-2)
|
@@ -494,9 +831,11 @@ For more information on Handsontable 8.3.2, see:
|
|
494
831
|
|
495
832
|
### Fixed
|
496
833
|
|
497
|
-
- Fixed an issue where the CSS files could be eliminated during tree-shaking
|
834
|
+
- Fixed an issue where the CSS files could be eliminated during tree-shaking
|
835
|
+
[#7516](https://github.com/handsontable/handsontable/issues/7516)
|
498
836
|
|
499
837
|
For more information on Handsontable 8.3.1, see:
|
838
|
+
|
500
839
|
- [Documentation (8.3.1)](https://handsontable.com/docs/8.3.1)
|
501
840
|
- [Release notes (8.3.1)](https://handsontable.com/docs/release-notes/#_8-3-1)
|
502
841
|
|
@@ -504,33 +843,53 @@ For more information on Handsontable 8.3.1, see:
|
|
504
843
|
|
505
844
|
### Added
|
506
845
|
|
507
|
-
- Introduced a new feature that allows postponing the table render and internal data cache update.
|
846
|
+
- Introduced a new feature that allows postponing the table render and internal data cache update.
|
847
|
+
The table rendering time can be reduced several-fold times by batching (using the `batch` method),
|
848
|
+
multi-line API calls, or manually suspending rendering using the `suspendRender` and
|
849
|
+
`resumeRender` methods. [#7274](https://github.com/handsontable/handsontable/issues/7274)
|
508
850
|
- Introduced a possibility to import:
|
851
|
+
|
509
852
|
- plugins
|
510
853
|
- cell types
|
511
854
|
- editors
|
512
855
|
- renderers
|
513
856
|
- validators
|
514
857
|
|
515
|
-
as separate modules, along with the Handsontable _base_. This change allows utilizing only the
|
516
|
-
|
858
|
+
as separate modules, along with the Handsontable _base_. This change allows utilizing only the
|
859
|
+
parts of Handsontable the end application is actually using, without the overhead of the full
|
860
|
+
bundle. [#7403](https://github.com/handsontable/handsontable/issues/7403)
|
861
|
+
|
862
|
+
- Added a new workflow for managing and generating changelogs.
|
863
|
+
[#7405](https://github.com/handsontable/handsontable/issues/7405)
|
517
864
|
|
518
865
|
### Fixed
|
519
866
|
|
520
|
-
- Fixed a bug with auto-execution of the first item in the ContextMenu plugin.
|
521
|
-
|
522
|
-
-
|
523
|
-
|
524
|
-
-
|
525
|
-
|
526
|
-
-
|
867
|
+
- Fixed a bug with auto-execution of the first item in the ContextMenu plugin.
|
868
|
+
[#7364](https://github.com/handsontable/handsontable/issues/7364)
|
869
|
+
- Fixed a bug where column sorting with multi column sorting crashed the table.
|
870
|
+
[#7415](https://github.com/handsontable/handsontable/issues/7415)
|
871
|
+
- Added a missing entry for the `skipRowOnPaste` option in the TypeScript definition file.
|
872
|
+
[#7394](https://github.com/handsontable/handsontable/issues/7394)
|
873
|
+
- Added missing tests to prevent issue #7377 from resurfacing.
|
874
|
+
[#7396](https://github.com/handsontable/handsontable/issues/7396)
|
875
|
+
- Fixed an issue where altering columns did not update filters attached to columns.
|
876
|
+
[#6830](https://github.com/handsontable/handsontable/issues/6830)
|
877
|
+
- Fixed typos and wrong return types in the TypeScript definition file.
|
878
|
+
[#7399](https://github.com/handsontable/handsontable/issues/7399),
|
879
|
+
[#7400](https://github.com/handsontable/handsontable/issues/7400)
|
880
|
+
- Updated the dependencies causing potential security issues, as well as Babel configuration needed
|
881
|
+
after the update. [#7463](https://github.com/handsontable/handsontable/issues/7463)
|
527
882
|
|
528
883
|
### Changed
|
529
884
|
|
530
|
-
- Corrected a typo in a helper method from the Column Sorting plugin.
|
531
|
-
|
885
|
+
- Corrected a typo in a helper method from the Column Sorting plugin.
|
886
|
+
[#7375](https://github.com/handsontable/handsontable/issues/7375)
|
887
|
+
- Optimized the performance of rendering the table with numerous spare rows (for `minSpareRows`,
|
888
|
+
`minSpareCols`, `minRows`, and `minCols` options).
|
889
|
+
[#7439](https://github.com/handsontable/handsontable/issues/7439)
|
532
890
|
|
533
891
|
For more information on Handsontable 8.3.0, see:
|
892
|
+
|
534
893
|
- [Blog post (8.3.0)](https://handsontable.com/blog/handsontable-8.3.0-has-been-released)
|
535
894
|
- [Documentation (8.3.0)](https://handsontable.com/docs/8.3.0)
|
536
895
|
- [Release notes (8.3.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3)
|
@@ -539,23 +898,41 @@ For more information on Handsontable 8.3.0, see:
|
|
539
898
|
|
540
899
|
### Added
|
541
900
|
|
542
|
-
- Added new type of Index Map named `LinkedPhysicalIndexToValueMap`
|
543
|
-
|
901
|
+
- Added new type of Index Map named `LinkedPhysicalIndexToValueMap`
|
902
|
+
[#7276](https://github.com/handsontable/handsontable/pull/7276)
|
903
|
+
- Added an external dependency, `DOMPurify`, to add HTML sanitization what should minimize the risk
|
904
|
+
of inserting insecure code using Handsontable built-in functionalities.
|
905
|
+
[#7292](https://github.com/handsontable/handsontable/issues/7292)
|
544
906
|
|
545
907
|
### Fixed
|
546
908
|
|
547
|
-
- Fixed an issue the container not being updated after trimming rows.
|
548
|
-
|
549
|
-
- Fixed an issue
|
550
|
-
|
551
|
-
-
|
552
|
-
|
553
|
-
- Fixed
|
554
|
-
|
555
|
-
|
556
|
-
-
|
909
|
+
- Fixed an issue the container not being updated after trimming rows.
|
910
|
+
[#7241](https://github.com/handsontable/handsontable/issues/7241)
|
911
|
+
- Fixed an issue with a `htmlToGridSettings` helper if passed `<table>` had no rows.
|
912
|
+
[#7311](https://github.com/handsontable/handsontable/issues/7311)
|
913
|
+
- Fixed an issue where sorting indicator moved incorrectly when column was added.
|
914
|
+
[#6397](https://github.com/handsontable/handsontable/issues/6397)
|
915
|
+
- Fixed a bug, where untrimming previously trimmed rows would sometimes result in the table instance
|
916
|
+
not refreshing its height, leaving the row headers not properly rendered.
|
917
|
+
[#6276](https://github.com/handsontable/handsontable/issues/6276)
|
918
|
+
- Fixes a bug, where tables' viewport was scrolled if a user opened editor when some columns on the
|
919
|
+
left side of that cell were hidden.
|
920
|
+
[#7322](https://github.com/handsontable/handsontable/issues/7322)
|
921
|
+
- Fix a problem when `event.target`'s parent in the `mouseover` event was not defined, the table
|
922
|
+
threw an error when hovering over row/column headers.
|
923
|
+
[#6926](https://github.com/handsontable/handsontable/issues/6926)
|
924
|
+
- Fixed an issue, where calling the validation-triggering methods on a `hiddenColumns`-enabled
|
925
|
+
Handsontable instance rendered the validated cells improperly.
|
926
|
+
[#7301](https://github.com/handsontable/handsontable/issues/7301)
|
927
|
+
- Fixed an issue, where adding 0 rows to the table ended with doubled entries in indexMappers'
|
928
|
+
collections. [#7326](https://github.com/handsontable/handsontable/issues/7326)
|
929
|
+
- Fix a problem with the inconsistent behavior of the Context Menu's "Clear column" disabled status.
|
930
|
+
[#7003](https://github.com/handsontable/handsontable/issues/7003)
|
931
|
+
- Fix a bug with parsing multiline cells on pasting `text/html` mime-type.
|
932
|
+
[#7369](https://github.com/handsontable/handsontable/issues/7369)
|
557
933
|
|
558
934
|
For more information on Handsontable 8.2.0, see:
|
935
|
+
|
559
936
|
- [Blog post (8.2.0)](https://handsontable.com/blog/handsontable-8.2.0-has-been-released)
|
560
937
|
- [Documentation (8.2.0)](https://handsontable.com/docs/8.2.0)
|
561
938
|
- [Release notes (8.2.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-2)
|
@@ -564,31 +941,55 @@ For more information on Handsontable 8.2.0, see:
|
|
564
941
|
|
565
942
|
### Added
|
566
943
|
|
567
|
-
- Added support for resizing non-contiguous selected rows
|
568
|
-
|
944
|
+
- Added support for resizing non-contiguous selected rows
|
945
|
+
[#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix
|
946
|
+
introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
|
947
|
+
- Added e2e tests and reorganized already existing ones
|
948
|
+
[#6491](https://github.com/handsontable/handsontable/issues/6491)
|
569
949
|
|
570
950
|
### Fixed
|
571
951
|
|
572
|
-
- Fixed an issue where if the first part of the merged area was hidden the value did not show
|
573
|
-
|
574
|
-
- Fixed an issue where
|
575
|
-
|
576
|
-
|
577
|
-
- Fixed
|
578
|
-
|
579
|
-
- Fixed an issue where
|
580
|
-
|
581
|
-
- Fixed an issue where
|
582
|
-
|
583
|
-
- Fixed
|
584
|
-
|
952
|
+
- Fixed an issue where if the first part of the merged area was hidden the value did not show
|
953
|
+
[#6871](https://github.com/handsontable/handsontable/issues/6871)
|
954
|
+
- Fixed an issue where after selecting the top-left element the row range resizing was not possible
|
955
|
+
[#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix
|
956
|
+
introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
|
957
|
+
- Fixed an issue where the column headers were cut off after hiding and then showing columns using
|
958
|
+
the Hidden Columns plugin. [#6395](https://github.com/handsontable/handsontable/issues/6395)
|
959
|
+
- Fixed an issue where redundant row has been added during copy/paste operations in some case
|
960
|
+
[#5961](https://github.com/handsontable/handsontable/issues/5961)
|
961
|
+
- Fixed an issue where too many values have been pasted when column was hidden
|
962
|
+
[#6743](https://github.com/handsontable/handsontable/issues/6743)
|
963
|
+
- Fixed a bug, where trying to move collapsed parent rows with the Nested Rows plugin enabled threw
|
964
|
+
an error. [#7132](https://github.com/handsontable/handsontable/issues/7132)
|
965
|
+
- Fixed an issue where after column or row alteration, Handsontable threw an error if ColumnSummary
|
966
|
+
was enabled without defined rows ranges
|
967
|
+
[#7174](https://github.com/handsontable/handsontable/pull/7174)
|
968
|
+
- Fixed an issue where using updateSettings() has been breaking column sorting in specific cases
|
969
|
+
[#7228](https://github.com/handsontable/handsontable/issues/7228)
|
970
|
+
- Fixed an issue where the rows were missing their left border after disabling the row headers using
|
971
|
+
`updateSettings`, while there were `fixedColumnsLeft` defined.
|
972
|
+
[#5735](https://github.com/handsontable/handsontable/issues/5735)
|
973
|
+
- Fixed an issue where the Handsontable could fall into an infinite loop during vertical scrolling.
|
974
|
+
It only happened when the scrollable element was the `window` object.
|
975
|
+
[#7260](https://github.com/handsontable/handsontable/issues/7260);
|
976
|
+
- Fixed an issue with moving rows to the last row of the table, when the Nested Rows plugin was
|
977
|
+
enabled along with some other minor moving-related bugs.
|
978
|
+
[#6067](https://github.com/handsontable/handsontable/issues/6067)
|
979
|
+
- Fixed an issue with adding unnecessary extra empty line in cells on Safari.
|
980
|
+
[#7262](https://github.com/handsontable/handsontable/issues/7262)
|
981
|
+
- Fixed an issue with clipped column headers if they were changed before or within usage
|
982
|
+
`updateSettings`. [#6004](https://github.com/handsontable/handsontable/issues/6004)
|
585
983
|
|
586
984
|
### Changed
|
587
985
|
|
588
|
-
- Updated dependencies to meet security requirements
|
589
|
-
|
986
|
+
- Updated dependencies to meet security requirements
|
987
|
+
[#7222](https://github.com/handsontable/handsontable/pull/7222)
|
988
|
+
- Improved performance for TrimRows, HiddenRows and HiddenColumns plugins for big datasets with lots
|
989
|
+
trimmed/hidden indexes [#7223](https://github.com/handsontable/handsontable/pull/7223)
|
590
990
|
|
591
991
|
For more information on Handsontable 8.1.0, see:
|
992
|
+
|
592
993
|
- [Blog post (8.1.0)](https://handsontable.com/blog/handsontable-8.1.0-has-been-released)
|
593
994
|
- [Documentation (8.1.0)](https://handsontable.com/docs/8.1.0)
|
594
995
|
- [Release notes (8.1.0)](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-1)
|
@@ -597,246 +998,506 @@ For more information on Handsontable 8.1.0, see:
|
|
597
998
|
|
598
999
|
### Added
|
599
1000
|
|
600
|
-
- Added `modifySourceData` hook and `setSourceDataAtCell` method.
|
601
|
-
|
602
|
-
- Added
|
603
|
-
|
604
|
-
- Added
|
1001
|
+
- Added `modifySourceData` hook and `setSourceDataAtCell` method.
|
1002
|
+
[#6664](https://github.com/handsontable/handsontable/issues/6664)
|
1003
|
+
- Added new argument to `scrollViewportTo` method: optional `considerHiddenIndexes` which is a
|
1004
|
+
`boolean`. [#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1005
|
+
- Added additional information available in the cell meta object - the language.
|
1006
|
+
[#6254](https://github.com/handsontable/handsontable/pull/6254).
|
1007
|
+
- Added a possibility to allow cancelling of `autofill` in the `beforeAutofill` hook.
|
1008
|
+
[#4441](https://github.com/handsontable/handsontable/issues/4441)
|
1009
|
+
- Added support for newer versions of moment, numbro and pikaday.
|
1010
|
+
[#5159](https://github.com/handsontable/handsontable/issues/5159)
|
605
1011
|
- Added `afterAutoFill` hook. [#6135](https://github.com/handsontable/handsontable/issues/6135)
|
606
|
-
- Added "deprecated" warning messages mechanism for plugin hooks.
|
607
|
-
|
608
|
-
- Added
|
609
|
-
|
610
|
-
- Added `
|
611
|
-
|
1012
|
+
- Added "deprecated" warning messages mechanism for plugin hooks.
|
1013
|
+
[#6613](https://github.com/handsontable/handsontable/pull/6613)
|
1014
|
+
- Added missing types for `instance.undoRedo`.
|
1015
|
+
[#6346](https://github.com/handsontable/handsontable/issues/6346)
|
1016
|
+
- Added `countRenderableColumns` method to the `TableView`.
|
1017
|
+
[#6177](https://github.com/handsontable/handsontable/issues/6177)
|
1018
|
+
- Added missing "hide" property in `CustomBorders` typings.
|
1019
|
+
[#6788](https://github.com/handsontable/handsontable/issues/6788)
|
1020
|
+
- Added `beforeSetCellMeta` hook with an ability to cancel the changes.
|
1021
|
+
[#5388](https://github.com/handsontable/handsontable/issues/5388)
|
1022
|
+
- Added additional test for autofill plugin.
|
1023
|
+
[#6756](https://github.com/handsontable/handsontable/issues/6756)
|
612
1024
|
|
613
1025
|
### Changed
|
614
1026
|
|
615
|
-
- Changed how `manualRowMove` and `manualColumnMove` plugins work
|
616
|
-
|
617
|
-
-
|
618
|
-
|
619
|
-
-
|
620
|
-
|
621
|
-
- The
|
622
|
-
|
623
|
-
-
|
624
|
-
|
625
|
-
-
|
626
|
-
|
627
|
-
-
|
628
|
-
|
629
|
-
|
630
|
-
-
|
631
|
-
|
632
|
-
|
633
|
-
- The `
|
634
|
-
|
635
|
-
- The `
|
636
|
-
|
637
|
-
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
-
|
642
|
-
|
643
|
-
|
644
|
-
-
|
1027
|
+
- Changed how `manualRowMove` and `manualColumnMove` plugins work
|
1028
|
+
[#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1029
|
+
- Click on a row header will select all cells (also hidden).
|
1030
|
+
[#2391](https://github.com/handsontable/handsontable/issues/2391)
|
1031
|
+
- Extracted Cell-Meta logic from Core to separate module.
|
1032
|
+
[#6254](https://github.com/handsontable/handsontable/pull/6254)
|
1033
|
+
- The `CellMeta` manager was refactored for future features and improvements.
|
1034
|
+
[#6233](https://github.com/handsontable/handsontable/issues/6233)
|
1035
|
+
- Rows can be resized to less than `rowHeights`.
|
1036
|
+
[#6149](https://github.com/handsontable/handsontable/issues/6149)
|
1037
|
+
- Left mouse button (LMB) click on the corner will now select all cells.
|
1038
|
+
[#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1039
|
+
- The right mouse button (`RMB`) click on the corner, column and row headers will show just some
|
1040
|
+
options, defined by newly created specification
|
1041
|
+
[#7082](https://github.com/handsontable/handsontable/pull/7082)
|
1042
|
+
- Hidden indexes will no longer be rendered, as a consequence `afterRenderer`, `modifyColWidth`,
|
1043
|
+
`beforeStretchingColumnWidth` will be executable only on visible (meaning, rendered) rows and
|
1044
|
+
columns. [#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1045
|
+
- The `getColWidth` for hidden index will return 0 - it used to return 0.1
|
1046
|
+
[#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1047
|
+
- The `modifyColWidth` hook isn't called internally. However, it will be executed when the user will
|
1048
|
+
call the `getColWidth`. [#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1049
|
+
- Hidden rows/columns won't rendered anymore. As a consequence hooks `beforeValueRender`,
|
1050
|
+
`beforeRenderer`, `afterRenderer`, `modifyColWidth`, `beforeStretchingColumnWidth` etc. will be
|
1051
|
+
executed just for some of the columns (just the renderable ones).
|
1052
|
+
[#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1053
|
+
- Selection behavior changed when hiding cells from the `ContextMenu`, now it is selecting a column
|
1054
|
+
on the right when there is space on right to the last selected column, selecting a column on the
|
1055
|
+
left otherwise. [#6547](https://github.com/handsontable/handsontable#6547)
|
1056
|
+
- Developed a unified way to identify HOT "input" elements. All input elements owned by HOT got an
|
1057
|
+
attribute "data-hot-input" which are identified by that key.
|
1058
|
+
[#6383](https://github.com/handsontable/handsontable/issues/6383)
|
1059
|
+
- `NestedHeaders` plugin was rewritten, from now on, only a tree-like structure will be allowed,
|
1060
|
+
meaning, there will be no possibility to place nested headers in-between layers.
|
1061
|
+
[#6716](https://github.com/handsontable/handsontable/pull/6716)
|
1062
|
+
- `CustomBorders` plugin was adapted to work with `HiddenColumns` properly, from now on hiding cells
|
1063
|
+
at the start or at the end of a range will also hide their borders. Also, hiding a single cell
|
1064
|
+
with borders will hide all of its borders.
|
1065
|
+
[#7083](https://github.com/handsontable/handsontable/pull/7083)
|
1066
|
+
- `CollapsibleColumns` will no longer use `HiddenColumns` plugin to work.
|
1067
|
+
[#6204](https://github.com/handsontable/handsontable/issue/6204)
|
1068
|
+
- Modifying the table's data by reference and calling `render()` will not work properly anymore.
|
1069
|
+
From this point onward, all the data-related operations need to be performed using the API
|
1070
|
+
methods, such as `populateFromArray` or `setDataAtCell`.
|
1071
|
+
[#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1072
|
+
- Removed dependencies between plugins: the `manualColumnFreeze` plugin doesn't use the
|
1073
|
+
`manualColumnMove`, the `collapsibleColumns` plugin doesn't use the `hiddenColumns` plugin,
|
1074
|
+
`nestedRows` plugin doesn't use the `trimRows` plugin, `filters` plugin doesn't use the `trimRows`
|
1075
|
+
plugin anymore. [#5945](https://github.com/handsontable/handsontable/pull/5945) along with other
|
1076
|
+
adjustments [#6547](https://github.com/handsontable/handsontable/pull/6547):
|
1077
|
+
- The `minSpareRows` and `minRows` options will ensure that the number of visible rows corresponds
|
1078
|
+
to the value provided to them (for example, the `trimRows` plugin won't have an impact on the
|
1079
|
+
number of displayed rows). [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1080
|
+
- `toPhysicalRow` and `toVisualColumn` now return `null` for non-existant rows/columns.
|
1081
|
+
[#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1082
|
+
- The `afterLoadData` hook receives a different set of arguments. It used to be just the initialLoad
|
1083
|
+
flag, now the first argument is `sourceData`, followed by `initialLoad`.
|
1084
|
+
[#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1085
|
+
- The `manualColumnFreeze` plugin unfreezes the column just after the "line of freeze".
|
1086
|
+
[#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1087
|
+
- The `RecordTranslator` object and the `t` property available in the plugins were removed.
|
1088
|
+
[#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1089
|
+
- After-prefixed hooks (`afterLoadData`, `afterFilter`, etc.) are now called just before the
|
1090
|
+
`render` call. [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1091
|
+
- Newly created rows and columns are now placed in the source data in the place calculated from its
|
1092
|
+
position in the visual context (they "stick" to their adjacent rows/columns). It also applies to
|
1093
|
+
moved rows and columns. [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1094
|
+
- When the `nestedRows` plugin is `enabled`, moving rows will be possible only using the UI or by
|
1095
|
+
calling the `dragRows` method of the `manualRowMove` plugin.
|
1096
|
+
[#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1097
|
+
- The `beforeRowResize`, `afterRowResize`, `beforeColumnResize`, `afterColumnResize` hooks have the
|
1098
|
+
order of their arguments rearranged for the sake of consistency with other hooks.
|
1099
|
+
[#3328](https://github.com/handsontable/handsontable/issues/3328)
|
1100
|
+
- Changed the argument structure in `collapsibleColumns`' `toggleCollapsibleSection` method.
|
1101
|
+
[#6193](https://github.com/handsontable/handsontable/issues/6193)
|
1102
|
+
- Updated the `moment`, `numbro` and `pikaday` dependencies to their latest versions.
|
1103
|
+
[#6610](https://github.com/handsontable/handsontable/issues/6610)
|
1104
|
+
- Standardize the `z-index` properties between the overlays.
|
1105
|
+
[#6269](https://github.com/handsontable/handsontable/pull/6269)
|
645
1106
|
|
646
1107
|
### Deprecated
|
647
1108
|
|
648
|
-
- The `ObserveChanges` plugin is no longer enabled by `columnSorting` and became deprecated.
|
649
|
-
|
650
|
-
-
|
1109
|
+
- The `ObserveChanges` plugin is no longer enabled by `columnSorting` and became deprecated.
|
1110
|
+
[#5945](https://github.com/handsontable/handsontable/pull/5945)
|
1111
|
+
- `HeaderTooltips` plugin becomes deprecated and will be removed in the next major version.
|
1112
|
+
[#7023](https://github.com/handsontable/handsontable/issues/7023)
|
1113
|
+
- IE support is depreacated and will removed by the end of the year.
|
1114
|
+
[#7026](https://github.com/handsontable/handsontable/issues/7026)
|
651
1115
|
|
652
1116
|
### Removed
|
653
1117
|
|
654
|
-
- Removed `firstVisibleColumn` CSS class as no longer needed.
|
655
|
-
|
656
|
-
- Removed
|
657
|
-
|
658
|
-
- Removed
|
659
|
-
|
660
|
-
- Removed `
|
661
|
-
|
662
|
-
- Removed
|
663
|
-
|
1118
|
+
- Removed `firstVisibleColumn` CSS class as no longer needed.
|
1119
|
+
[#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1120
|
+
- Removed helpers that covered IE8 support or are not needed anymore.
|
1121
|
+
[#6525](https://github.com/handsontable/handsontable/issues/6525)
|
1122
|
+
- Removed old unnecessary warning about `beforeChange` callback.
|
1123
|
+
[#6792](https://github.com/handsontable/handsontable/issues/6792)
|
1124
|
+
- Removed `debug` key (key, css, docs).
|
1125
|
+
[#6672](https://github.com/handsontable/handsontable/issues/6672)
|
1126
|
+
- Removed `hiddenRow` and `hiddenColumn` hooks.
|
1127
|
+
[#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1128
|
+
- Removed optional argument `modifyDocumentFocus` from the `listen` function.
|
1129
|
+
[#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1130
|
+
- Removed `rowOffset` and `colOffset` public API methods since they aliased the methods from
|
1131
|
+
Walkontable. [#6547](https://github.com/handsontable/handsontable/pull/6547)
|
1132
|
+
- Removed the experimental `GanttChart` plugin.
|
1133
|
+
[#7022](https://github.com/handsontable/handsontable/issues/7022)
|
1134
|
+
- Removed post-install warning from package.json file
|
1135
|
+
[#6608](https://github.com/handsontable/handsontable/pull/6608)
|
1136
|
+
- The `modifyRow`, `modifyCol`, `unmodifyRow`, `unmodifyCol` and `skipLengthCache` hooks are no
|
1137
|
+
longer needed and were removed. [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
664
1138
|
|
665
1139
|
### Fixed
|
666
1140
|
|
667
|
-
- Fixed a problem with data not being added to the table properly with the `columnSorting` option
|
668
|
-
|
669
|
-
- Fixed a
|
670
|
-
|
671
|
-
- Fixed a
|
672
|
-
|
673
|
-
|
674
|
-
- Fixed a bug
|
675
|
-
|
676
|
-
- Fixed a
|
677
|
-
|
678
|
-
|
679
|
-
- Fixed a bug, where calling `loadData` with
|
680
|
-
|
681
|
-
- Fixed a problem
|
682
|
-
|
683
|
-
- Fixed a bug
|
684
|
-
|
685
|
-
- Fixed a bug
|
686
|
-
|
687
|
-
- Fixed a
|
688
|
-
|
689
|
-
- Fixed a
|
690
|
-
|
691
|
-
- Fixed a problem with `
|
692
|
-
|
693
|
-
- Fixed a bug, where
|
694
|
-
|
695
|
-
|
696
|
-
- Fixed a bug
|
697
|
-
|
698
|
-
- Fixed a problem
|
699
|
-
|
700
|
-
- Fixed a bug
|
701
|
-
|
702
|
-
- Fixed a
|
703
|
-
|
704
|
-
- Fixed a bug
|
705
|
-
|
706
|
-
|
707
|
-
- Fixed a bug, where
|
708
|
-
|
709
|
-
- Fixed a bug
|
710
|
-
|
711
|
-
- Fixed
|
712
|
-
|
713
|
-
- Fixed
|
714
|
-
|
715
|
-
- Fixed
|
716
|
-
|
717
|
-
- Fixed
|
718
|
-
|
719
|
-
- Fixed
|
720
|
-
|
721
|
-
- Fixed
|
722
|
-
|
723
|
-
- Fixed
|
724
|
-
|
725
|
-
- Fixed
|
726
|
-
|
727
|
-
- Fixed
|
728
|
-
|
729
|
-
|
730
|
-
- Fixed
|
731
|
-
|
732
|
-
- Fixed
|
733
|
-
|
734
|
-
- Fixed
|
735
|
-
|
736
|
-
- Fixed
|
737
|
-
|
738
|
-
- Fixed
|
739
|
-
|
740
|
-
|
741
|
-
- Fixed
|
742
|
-
|
743
|
-
|
744
|
-
- Fixed
|
745
|
-
|
746
|
-
- Fixed
|
747
|
-
|
748
|
-
- Fixed
|
749
|
-
|
750
|
-
- Fixed
|
751
|
-
|
752
|
-
- Fixed
|
753
|
-
|
754
|
-
- Fixed
|
755
|
-
|
756
|
-
- Fixed
|
757
|
-
|
758
|
-
- Fixed
|
759
|
-
|
760
|
-
- Fixed an issue where
|
761
|
-
|
762
|
-
- Fixed an
|
763
|
-
|
764
|
-
- Fixed an issue
|
765
|
-
|
766
|
-
- Fixed
|
767
|
-
|
768
|
-
- Fixed
|
769
|
-
|
770
|
-
- Fixed an
|
771
|
-
|
772
|
-
- Fixed an issue where `
|
773
|
-
|
774
|
-
- Fixed an issue
|
775
|
-
|
776
|
-
- Fixed
|
777
|
-
|
778
|
-
- Fixed an issue where
|
779
|
-
|
780
|
-
- Fixed an issue where
|
781
|
-
|
782
|
-
- Fixed an issue where
|
783
|
-
|
784
|
-
- Fixed an issue where
|
785
|
-
|
786
|
-
- Fixed an issue
|
787
|
-
|
788
|
-
- Fixed an issue where `
|
789
|
-
|
790
|
-
- Fixed an issue where
|
791
|
-
|
792
|
-
- Fixed an issue where
|
793
|
-
|
794
|
-
- Fixed an issue where
|
795
|
-
|
796
|
-
- Fixed an issue where
|
797
|
-
|
798
|
-
- Fixed an issue where
|
799
|
-
|
800
|
-
|
801
|
-
- Fixed
|
802
|
-
|
803
|
-
|
804
|
-
- Fixed an issue where
|
805
|
-
|
806
|
-
- Fixed an issue where
|
807
|
-
|
808
|
-
- Fixed an issue where
|
809
|
-
|
810
|
-
- Fixed an issue where
|
811
|
-
|
812
|
-
- Fixed an issue where
|
813
|
-
|
814
|
-
|
815
|
-
- Fixed
|
816
|
-
|
817
|
-
- Fixed
|
818
|
-
|
819
|
-
- Fixed
|
820
|
-
|
821
|
-
- Fixed an issue where
|
822
|
-
|
823
|
-
- Fixed
|
824
|
-
|
825
|
-
- Fixed an
|
826
|
-
|
827
|
-
- Fixed
|
828
|
-
|
829
|
-
- Fixed
|
830
|
-
|
831
|
-
- Fixed an issue where
|
832
|
-
|
833
|
-
- Fixed an issue
|
834
|
-
|
835
|
-
- Fixed an issue
|
836
|
-
|
837
|
-
-
|
1141
|
+
- Fixed a problem with data not being added to the table properly with the `columnSorting` option
|
1142
|
+
enabled. [#2685](https://github.com/handsontable/handsontable/issues/2685)
|
1143
|
+
- Fixed a problem with `loadData` not resetting the row order changed by the `manualRowMove` plugin.
|
1144
|
+
[#3568](https://github.com/handsontable/handsontable/issues/3568)
|
1145
|
+
- Fixed a bug, where using `alter`'s `insert_row` after using the `loadData` method and sorting the
|
1146
|
+
data would add unintentional additional rows to the table.
|
1147
|
+
[#3809](https://github.com/handsontable/handsontable/issues/3809)
|
1148
|
+
- Fixed a bug, where blank rows appeared in the middle of the table after using `loadData` along
|
1149
|
+
with the `minSpareRows` option. [#3937](https://github.com/handsontable/handsontable/issues/3937)
|
1150
|
+
- Fixed a problem with the `columnSummary` plugin not working properly after adding new rows using
|
1151
|
+
the Context Menu and sorting the data.
|
1152
|
+
[#3924](https://github.com/handsontable/handsontable/issues/3924)
|
1153
|
+
- Fixed a bug, where calling `loadData` with an object-based data source would not work properly.
|
1154
|
+
[#4204](https://github.com/handsontable/handsontable/issues/4204)
|
1155
|
+
- Fixed a problem with the Hidden Columns settings being reset after calling `updateSettings`.
|
1156
|
+
[#4121](https://github.com/handsontable/handsontable/issues/4121)
|
1157
|
+
- Fixed a bug with the `filters` plugin using incorrect indexes after moving and/or sorting the
|
1158
|
+
table. [#4442](https://github.com/handsontable/handsontable/issues/4442)
|
1159
|
+
- Fixed a bug that caused a column to contain improper data after moving it to index `0`.
|
1160
|
+
[#4470](https://github.com/handsontable/handsontable/issues/4470)
|
1161
|
+
- Fixed a bug with the `afterRowMove` hook receiving an improper `target` argument.
|
1162
|
+
[#4501](https://github.com/handsontable/handsontable/issues/4501)
|
1163
|
+
- Fixed a problem with the `manualColumnFreeze` plugin enabling `manualColumnMove`, even if it was
|
1164
|
+
declared as `false`. [#4553](https://github.com/handsontable/handsontable/issues/4553)
|
1165
|
+
- Fixed a problem with plugins using `arrayMappers` not working properly after updating the dataset.
|
1166
|
+
[#4567](https://github.com/handsontable/handsontable/issues/4567)
|
1167
|
+
- Fixed a bug, where calling `loadData` with `minSpareRows` and `manualRowMove` enabled caused the
|
1168
|
+
table to improperly load the data.
|
1169
|
+
[#4576](https://github.com/handsontable/handsontable/issues/4576)
|
1170
|
+
- Fixed a bug, where enabling `columnSorting` caused the `manualColumnFreeze` to be unusable.
|
1171
|
+
[#4601](https://github.com/handsontable/handsontable/issues/4601)
|
1172
|
+
- Fixed a problem, where the columns were assigned improper widths after inserting additional
|
1173
|
+
columns or removing any of them. [#4666](https://github.com/handsontable/handsontable/issues/4666)
|
1174
|
+
- Fixed a bug, where moving rows was impossible while `persistentState` was enabled.
|
1175
|
+
[#4713](https://github.com/handsontable/handsontable/issues/4713)
|
1176
|
+
- Fixed a bug, where `manualColumnMove` didn't work if the dataset was empty.
|
1177
|
+
[#4926](https://github.com/handsontable/handsontable/issues/4926)
|
1178
|
+
- Fixed a bug with the `collapseAll` method from the `collapsibleColumns` plugin did not work
|
1179
|
+
properly if `columnSorting` was enabled.
|
1180
|
+
[#4999](https://github.com/handsontable/handsontable/issues/4999)
|
1181
|
+
- Fixed a bug, where calling `loadData` with `minSpareRows` enabled would cause unwanted blank rows
|
1182
|
+
to appear. [#5707](https://github.com/handsontable/handsontable/issues/5707)
|
1183
|
+
- Fixed a bug with the `afterColumnMove` hook receiving an improper `target` argument.
|
1184
|
+
[#5173](https://github.com/handsontable/handsontable/issues/5173)
|
1185
|
+
- Fixed a problem, where filtering data after moving rows would not work properly.
|
1186
|
+
[#5178](https://github.com/handsontable/handsontable/issues/5178)
|
1187
|
+
- Fixed a bug, where calling `loadData` made `NaN` appear in the column headers.
|
1188
|
+
[#5369](https://github.com/handsontable/handsontable/issues/5369)
|
1189
|
+
- Fixed a bug with the `skipColumnOnPaste` option not working properly when using `columnSorting`
|
1190
|
+
and `hiddenColumns`. [#5824](https://github.com/handsontable/handsontable/issues/5824)
|
1191
|
+
- Fixed a bug with the `trimRows` plugin did not work properly after moving rows.
|
1192
|
+
[#5860](https://github.com/handsontable/handsontable/issues/5860)
|
1193
|
+
- Fixed a problem with `minSpareRows` not working properly with the `trimRows` plugin being used.
|
1194
|
+
[#5862](https://github.com/handsontable/handsontable/issues/5862)
|
1195
|
+
- Fixed a problem, where it was impossible to filter the data declared in the `nestedRows` plugin.
|
1196
|
+
[#5889](https://github.com/handsontable/handsontable/issues/5889)
|
1197
|
+
- Fixed a bug, where filtering and sorting data would cause the `toVisualRow` method to return the
|
1198
|
+
wrong results. [#5890](https://github.com/handsontable/handsontable/issues/5890)
|
1199
|
+
- Fixed a bug with the `filters` and `trimRows` plugins not working properly alongside each other.
|
1200
|
+
[#5915](https://github.com/handsontable/handsontable/issues/5915)
|
1201
|
+
- Fixed a bug, where `manualColumnMove` would not work properly when the data object properties
|
1202
|
+
count would be lower than the table column count.
|
1203
|
+
[#5931](https://github.com/handsontable/handsontable/issues/5931)
|
1204
|
+
- Fixed a bug with the `trimRows` plugin did not work properly with the `startRows` option.
|
1205
|
+
[#5953](https://github.com/handsontable/handsontable/issues/5953)
|
1206
|
+
- Fixed a problem, where using `loadData` after sorting would not work as expected.
|
1207
|
+
[#5956](https://github.com/handsontable/handsontable/issues/5953)
|
1208
|
+
- Fixed a problem with the `beforeColumnMove` and `afterColumnMove` hooks not containing information
|
1209
|
+
about their destination indexes. [#6005](https://github.com/handsontable/handsontable/issues/6005)
|
1210
|
+
- Fixed a problem where using `filters` and `minSpareRows` would make the table add an empty row at
|
1211
|
+
the beginning of the table. [#6278](https://github.com/handsontable/handsontable/issues/5953)
|
1212
|
+
- Fixed a bug with the `manualRowMove` plugin would duplicate data in the moved rows, when used with
|
1213
|
+
a row index greater than the table row count.
|
1214
|
+
[#6088](https://github.com/handsontable/handsontable/issues/5953)
|
1215
|
+
- Fixed a bug, where the `toVisualRow` method returned `null` when using the `trimRows` and
|
1216
|
+
`columnSorting` plugins together.
|
1217
|
+
[#6310](https://github.com/handsontable/handsontable/issues/6310)
|
1218
|
+
- Fixed a problem, where calling `updateSettings` in the `afterColumnMove` hook callback would have
|
1219
|
+
no effect. [#4480](https://github.com/handsontable/handsontable/issues/4480)
|
1220
|
+
- Fixed a bug, where calling `loadData` would make the `filters` plugin to not behave as expected.
|
1221
|
+
[#5244](https://github.com/handsontable/handsontable/issues/5244)
|
1222
|
+
- Fixed a bug, where detaching a child from a parent in the `nestedRows` plugin would cause a `+/-`
|
1223
|
+
button misalignment. [#5900](https://github.com/handsontable/handsontable/issues/5900)
|
1224
|
+
- Fixed a problem with the `columnSummary` plugin creating a doubled summary row.
|
1225
|
+
[#5794](https://github.com/handsontable/handsontable/issues/5794)
|
1226
|
+
- Fixed a bug, where moving children between parents using the `nestedRows` plugin would throw an
|
1227
|
+
error. [#6066](https://github.com/handsontable/handsontable/issues/6066)
|
1228
|
+
- Fixed a bug, where adding rows by modifying the data by reference while using the `nestedRows`
|
1229
|
+
plugin would throw an error. [#3914](https://github.com/handsontable/handsontable/issues/3914)
|
1230
|
+
- Fixed a bug, where merging cells would conflict with the `columnSorting` plugin.
|
1231
|
+
[#6086](https://github.com/handsontable/handsontable/issues/6086)
|
1232
|
+
- Fixed a bug, where the row headers would stay visible after removing all the table columns.
|
1233
|
+
[#6412](https://github.com/handsontable/handsontable/issues/6412)
|
1234
|
+
- Fixed an issue where Hidden columns become visible when the user ran `updateSettings`.
|
1235
|
+
[#4121](https://github.com/handsontable/handsontable/issues/4121)
|
1236
|
+
- Fixed an issue where using `hiddenColumns` and `stretchH` showed a redundant horizontal scrollbar.
|
1237
|
+
[#4181](https://github.com/handsontable/handsontable/issues/4181)
|
1238
|
+
- Fixed an issue in which if the last column was a hidden column and `stretchH` was enabled, the
|
1239
|
+
last column was displayed. [#4370](https://github.com/handsontable/handsontable/issues/4370)
|
1240
|
+
- Fixed an issue where `updateSettings` performance was very low because of `hiddenColumns` being
|
1241
|
+
rendered. [#4381](https://github.com/handsontable/handsontable/issues/4381)
|
1242
|
+
- Fixed an issue where collapse was not working correctly with custom cell renderers.
|
1243
|
+
[#4716](https://github.com/handsontable/handsontable/issues/4716)
|
1244
|
+
- Fixed an incorrect header name when user defined more columns in the `nestedHeaders` plugin.
|
1245
|
+
[#4716](https://github.com/handsontable/handsontable/issues/4716)
|
1246
|
+
- Fixed an issue where `hiddenColumns` did not work properly with `columnSorting`.
|
1247
|
+
[#5571](https://github.com/handsontable/handsontable/issues/5571)
|
1248
|
+
- Fixed an issue where `manualColumnMove` should work with `hiddenColumns`.
|
1249
|
+
[#5598](https://github.com/handsontable/handsontable/issues/5598)
|
1250
|
+
- Fixed an issue where `hiddenColumns` option interfered with the keyboard movement.
|
1251
|
+
[#5704](https://github.com/handsontable/handsontable/issues/5704)
|
1252
|
+
- Fixed an issue where after hiding the first two rows, the row headers became de-synchronized by
|
1253
|
+
1px. [#5817](https://github.com/handsontable/handsontable/issues/5817)
|
1254
|
+
- Fixed an issue where hiding columns affected selection of hidden columns.
|
1255
|
+
[#5871](https://github.com/handsontable/handsontable/issues/5871)
|
1256
|
+
- Fixed an issue where if `collapsibleColumns` were set to `true` it was impossible to exit
|
1257
|
+
selection mode. [#5875](https://github.com/handsontable/handsontable/issues/5875)
|
1258
|
+
- Fixed an issue where `hiddenColumns` did not work properly with `autoWrapRow/autoWrapCol`.
|
1259
|
+
[#5877](https://github.com/handsontable/handsontable/issues/5877)
|
1260
|
+
- Fixed an issue on IE where hiding the first column caused a display of double border for top left
|
1261
|
+
corner. [#5881](https://github.com/handsontable/handsontable/issues/5881)
|
1262
|
+
- Fixed an issue where `nestedHeaders` duplicated a header name if more columns are added.
|
1263
|
+
[#5882](https://github.com/handsontable/handsontable/issues/5882)
|
1264
|
+
- Fixed an issue where `hiddenColumns` plugin unset cell's `renderer`.
|
1265
|
+
[#5883](https://github.com/handsontable/handsontable/issues/5883)
|
1266
|
+
- Fixed an issue where `hiddenColumns` had stored visual indexes and should have used physical
|
1267
|
+
indexes. [#5909](https://github.com/handsontable/handsontable/issues/5909)
|
1268
|
+
- Fixed an issue where hidden columns should be unrecoverable.
|
1269
|
+
[#6113](https://github.com/handsontable/handsontable/issues/6113)
|
1270
|
+
- Fixed an issue where row selection ignored columns that are hidden at the end.
|
1271
|
+
[#6181](https://github.com/handsontable/handsontable/issues/6181)
|
1272
|
+
- Fixed an issue where defining data with more data than used in `columns` caused an issue with
|
1273
|
+
showing column once it was hidden.
|
1274
|
+
[#6426](https://github.com/handsontable/handsontable/issues/6426)
|
1275
|
+
- Fixed an issue where hiding rows, while there was a merged area, involved caused data shifting and
|
1276
|
+
unexpected merged area coordinates.
|
1277
|
+
[#6376](https://github.com/handsontable/handsontable/issues/6376)
|
1278
|
+
- Fixed an issue where `colHeader` was truncated after moving `hiddenColumn`.
|
1279
|
+
[#6463](https://github.com/handsontable/handsontable/issues/6463)
|
1280
|
+
- Fixed an issue where the last hidden column was visible upon column resizing.
|
1281
|
+
[#6557](https://github.com/handsontable/handsontable/issues/6557)
|
1282
|
+
- Fixed an issue where with hiding columns after moved them manually.
|
1283
|
+
[#6668](https://github.com/handsontable/handsontable/issues/6668)
|
1284
|
+
- Fixed an issue where expanding a collapsed column caused expanding of a child columns except for
|
1285
|
+
the first one. [#5792](https://github.com/handsontable/handsontable/issues/5792)
|
1286
|
+
- Fixed an issue where setting `columnSorting` to `true` (on initialization or via `updateSettings`)
|
1287
|
+
made headers non-collapsible programmatically via `collapseAll` method.
|
1288
|
+
[#4999](https://github.com/handsontable/handsontable/issues/4999)
|
1289
|
+
- Fixed an issue where `customBorders` plugin was missing in the definition file.
|
1290
|
+
[#6477](https://github.com/handsontable/handsontable/issues/6477)
|
1291
|
+
- Fixed incorrect size of `wtHider`and `wtHolder` in overlays.
|
1292
|
+
[#3873](https://github.com/handsontable/handsontable/issues/3873)
|
1293
|
+
- Fixed an issue where `updateSettings` could not update `tableClassName`.
|
1294
|
+
[#6295](https://github.com/handsontable/handsontable/issues/6295)
|
1295
|
+
- Fixed an issue where JSON data with empty value was losing some double quotes when pasted into a
|
1296
|
+
cell. [#6167](https://github.com/handsontable/handsontable/issues/6167)
|
1297
|
+
- Fixed an issue where some classes for the table were missing if one of them was empty.
|
1298
|
+
[#6371](https://github.com/handsontable/handsontable/issues/6371)
|
1299
|
+
- Fixed an issue where clicking in a contextmenu's border opened the native context menu.
|
1300
|
+
[#6218](https://github.com/handsontable/handsontable/issues/6218)
|
1301
|
+
- Fixed the error that ocurred during loading of E2E test runner in Edge and IE.
|
1302
|
+
[#6713](https://github.com/handsontable/handsontable/issues/6713)
|
1303
|
+
- Fixed the inconsistency and problems with adding rows from the corner when all rows are trimmed.
|
1304
|
+
[#7061](https://github.com/handsontable/handsontable/issues/7061)
|
1305
|
+
- Fixed an issue where using read-only and alignment from the context menu was disabled when all
|
1306
|
+
columns were selected. [#7114](https://github.com/handsontable/handsontable/issues/7114)
|
1307
|
+
- Fixed an issue where setting focus to a column to open context menu after applying a filter was
|
1308
|
+
impossible. [#7005](https://github.com/handsontable/handsontable/issues/7005)
|
1309
|
+
- Fixed an issue where `minSpareCols` with `undo` added too many columns.
|
1310
|
+
[#6363](https://github.com/handsontable/handsontable/issues/6363)
|
1311
|
+
- Fixed the inconsistency in selection when using the right mouse button for first row/column.
|
1312
|
+
[#6334](https://github.com/handsontable/handsontable/issues/6334)
|
1313
|
+
- Fixed an issue where undoing column removal caused column headers to lack a header.
|
1314
|
+
[#6992](https://github.com/handsontable/handsontable/issues/6992)
|
1315
|
+
- Fixed an issue where `readOnly` for column was erased (did not apply) if filters were used.
|
1316
|
+
[#6559](https://github.com/handsontable/handsontable/issues/6559)
|
1317
|
+
- Fixed an issue where readonly property was lost after declining confirmation in `beforeRemoveCol`
|
1318
|
+
or `beforeRemoverow`. [#6332](https://github.com/handsontable/handsontable/issues/6332)
|
1319
|
+
- Fixed an issue where `readOnly` state for some cells was lost when rows with `trimRows` turned on
|
1320
|
+
were removed. [#6990](https://github.com/handsontable/handsontable/issues/6990)
|
1321
|
+
- Fixed incorrect column header highlight when merged cells were unmerged and `hiddenColumns` were
|
1322
|
+
used. [#6978](https://github.com/handsontable/handsontable/issues/6978)
|
1323
|
+
- Fixed an issue where after hiding the first row, the second row top border disappeared.
|
1324
|
+
[#6977](https://github.com/handsontable/handsontable/issues/6977)
|
1325
|
+
- Fixed an issue with incorrect selection after hiding the first row.
|
1326
|
+
[#6831](https://github.com/handsontable/handsontable/issues/6831)
|
1327
|
+
- Fixed an issue where hiding the first row caused blue highlight in column headers selection to
|
1328
|
+
disappear. [#6976](https://github.com/handsontable/handsontable/issues/6976)
|
1329
|
+
- Fixed wrong selection area after sorting with hidden rows.
|
1330
|
+
[#6386](https://github.com/handsontable/handsontable/issues/6386)
|
1331
|
+
- Fixed an issue where it was not possible to use `selectAll` when the first row was hidden.
|
1332
|
+
[#6975](https://github.com/handsontable/handsontable/issues/6975)
|
1333
|
+
- Fixed an issue where it was possible to select hidden row or column.
|
1334
|
+
[#6974](https://github.com/handsontable/handsontable/issues/6974)
|
1335
|
+
- Fixed an issue where row indexes changed if the first row was hiding after moving row from bottom
|
1336
|
+
to top. [#6965](https://github.com/handsontable/handsontable/issues/6965)
|
1337
|
+
- Fixed an issue where selection skipped the highest parent.
|
1338
|
+
[#6770](https://github.com/handsontable/handsontable/issues/6770)
|
1339
|
+
- Fixed an iisue where `nestedRows` blocked table from loading if data was not provided.
|
1340
|
+
[#6928](https://github.com/handsontable/handsontable/issues/6928)
|
1341
|
+
- Fixed an isse where it was impossible to go back to the original cell after dragging down.
|
1342
|
+
[#4233](https://github.com/handsontable/handsontable/issues/4233)
|
1343
|
+
- Fixed an issue where keyboard navigation did not work on merged cells with hidden rows/columns.
|
1344
|
+
[#6973](https://github.com/handsontable/handsontable/issues/6973)
|
1345
|
+
- Fixed an issue where `trimRows` and `hiddenRows` with specific settings broke borders.
|
1346
|
+
[#6904](https://github.com/handsontable/handsontable/issues/6904)
|
1347
|
+
- Fixed wrong union type for `startPosition`.
|
1348
|
+
[#6840](https://github.com/handsontable/handsontable/issues/6840)
|
1349
|
+
- Fixed type mismatch for `Handsontable.plugins.ContextMenu`.
|
1350
|
+
[#6347](https://github.com/handsontable/handsontable/issues/6347)
|
1351
|
+
- Fixed an issue where `manualColumnMove` did not modify the `columns` in `updateSettings`.
|
1352
|
+
[#5200](https://github.com/handsontable/handsontable/issues/5200)
|
1353
|
+
- Fixed rendering issue on column udpate with `updateSettings`.
|
1354
|
+
[#3770](https://github.com/handsontable/handsontable/issues/3770)
|
1355
|
+
- Fixed an issue where expanding a collapsed column was also expanding 'child' collapsed columns,
|
1356
|
+
except the first child. [#5792](https://github.com/handsontable/handsontable/issues/5792)
|
1357
|
+
- Fixed an issue with inproper selection for headers when the first column was hidden.
|
1358
|
+
[#5999](https://github.com/handsontable/handsontable/issues/5999)
|
1359
|
+
- Fixed an issue where it was not possible to align cells if the selection was made upward.
|
1360
|
+
[#6600](https://github.com/handsontable/handsontable/issues/6600)
|
1361
|
+
- Fixed an issue where `currentColClassName` did not work properly with `nestedHeaders`.
|
1362
|
+
[#5861](https://github.com/handsontable/handsontable/issues/5861)
|
1363
|
+
- Fixed an issue with scrollbar and dimension calculation in Firefox for toggling column visibility
|
1364
|
+
with fixed columns and `stretchH`.
|
1365
|
+
[#6186](https://github.com/handsontable/handsontable/issues/6186)
|
1366
|
+
- Fixed an issue with undoing the nested row removal.
|
1367
|
+
[#6433](https://github.com/handsontable/handsontable/issues/6433)
|
1368
|
+
- Fixed an isse where `getSourceData` functions returned wrong data for nested rows.
|
1369
|
+
[#5771](https://github.com/handsontable/handsontable/issues/5771)
|
1370
|
+
- Fixed na issue where formulas plugin did not work with `nestedRows`.
|
1371
|
+
[#4154](https://github.com/handsontable/handsontable/issues/4154)
|
1372
|
+
- Fixed an issue where nested headers and hidden columns highlighted ad additional column when used
|
1373
|
+
together. [#6881](https://github.com/handsontable/handsontable/issues/6881)
|
1374
|
+
- Fixed an issue where `getByRange` for sourceData did not work properly with nested object data.
|
1375
|
+
[#6548](https://github.com/handsontable/handsontable/issues/6548)
|
1376
|
+
- Fixed an issue where `window.frameElement` threw errors in MSEdge, IE and Safari.
|
1377
|
+
[#6478](https://github.com/handsontable/handsontable/issues/6478)
|
1378
|
+
- Fixed an issue where `DataSource.countColumns` returned invalid number of columns for nested
|
1379
|
+
objects. [#3958](https://github.com/handsontable/handsontable/issues/3958)
|
1380
|
+
- Fixed an issue where `mergedCells` with hidden cells caused problems with rendering.
|
1381
|
+
[#7020](https://github.com/handsontable/handsontable/issues/7020)
|
1382
|
+
- Fixed an issue where it was not possible to move column when all columns were selected by
|
1383
|
+
`ctrl + a`. [#6355](https://github.com/handsontable/handsontable/issues/6355)
|
1384
|
+
- Fixed an issue where double click on the column resize handle did not adjust size correctly.
|
1385
|
+
[#6755](https://github.com/handsontable/handsontable/issues/6755)
|
1386
|
+
- Fixed an issue where the cell meta was retrieved using the wrong coordinates.
|
1387
|
+
[#6703](https://github.com/handsontable/handsontable/issues/6703)
|
1388
|
+
- Fixed nested rows incorrect state after changing data.
|
1389
|
+
[#5753](https://github.com/handsontable/handsontable/issues/5753)
|
1390
|
+
- Fixed an issue in EDGE where the dropdown menu `onMouseOut` event caused critical errors when
|
1391
|
+
hovering over vertical scrollbar.
|
1392
|
+
[#6699](https://github.com/handsontable/handsontable/issues/6699)
|
1393
|
+
- Fixed an issue with too many layers of highlight with noncontinuous selection on merged cells.
|
1394
|
+
[#7028](https://github.com/handsontable/handsontable/issues/7028)
|
1395
|
+
- Fixed an issue where `NestedHeaders` did not allow to define header level as an empty array.
|
1396
|
+
[#7035](https://github.com/handsontable/handsontable/issues/7035)
|
1397
|
+
- Fixed an issue where passing `nestedHeaders` as a single empty array stoped the table from
|
1398
|
+
rendering. [#7036](https://github.com/handsontable/handsontable/issues/7036)
|
1399
|
+
- Fixed an issue where opening a context menu for a column when its hidden data was selected did not
|
1400
|
+
block adding of rows by the menu.
|
1401
|
+
[#7050](https://github.com/handsontable/handsontable/issues/7050)
|
1402
|
+
- Fixed an issue where it was not possible to navigate past hidden column using keyboard
|
1403
|
+
if` hot.updateSettings` was called in `afterSelection`.
|
1404
|
+
[#3726](https://github.com/handsontable/handsontable/issues/3726)
|
1405
|
+
- Fixed an issue where headers did not export with `exportToFile` in the specific case.
|
1406
|
+
[#4176](https://github.com/handsontable/handsontable/issues/4176)
|
1407
|
+
- Fixed an issue with types mismatch.
|
1408
|
+
[#6035](https://github.com/handsontable/handsontable/issues/6035)
|
1409
|
+
- Fixed an issue where manual row resize handler threw an error when bottom rows overlay was
|
1410
|
+
enabled. [#6435](https://github.com/handsontable/handsontable/issues/6435)
|
1411
|
+
- Fixed an issue where the `afterRowResize` hook shared incorrect results in the second parameter.
|
1412
|
+
[#6430](https://github.com/handsontable/handsontable/issues/6430)
|
1413
|
+
- Fixed an issue where the row/column resize hooks should not have returned `null`.
|
1414
|
+
[#7074](https://github.com/handsontable/handsontable/issues/7074)
|
1415
|
+
- Fixed the loss of selection after merging from headers.
|
1416
|
+
[#7076](https://github.com/handsontable/handsontable/issues/7076)
|
1417
|
+
- Fixed an issue where calling `updateSettings` changed the index of frozen columns via
|
1418
|
+
`freezeColumn` method. [#6843](https://github.com/handsontable/handsontable/issues/6843)
|
1419
|
+
- Fixed an issue where deleting the last column via `updateSettings` which was part of the selection
|
1420
|
+
caused scroll to the bottom. [#5849](https://github.com/handsontable/handsontable/issues/5849)
|
1421
|
+
- Fixed an issue where it was not possible to hide rows and merge cells at the same time.
|
1422
|
+
[#6224](https://github.com/handsontable/handsontable/issues/6224)
|
1423
|
+
- Fixed the wrong data in merge cells after the hidden column and additionally an error occurs.
|
1424
|
+
[#6888](https://github.com/handsontable/handsontable/issues/6888)
|
1425
|
+
- Fixed an issue where it was not possible to change cell type via `setCellMeta`.
|
1426
|
+
[#4793](https://github.com/handsontable/handsontable/issues/4793)
|
1427
|
+
- Fixed an issue where cell editor did not dynamically changed while changing the cell type.
|
1428
|
+
[#4360](https://github.com/handsontable/handsontable/issues/4360)
|
1429
|
+
- Fixed an issue where it was not possible to unmerge cells if part of them was hidden.
|
1430
|
+
[#7095](https://github.com/handsontable/handsontable/issues/7095)
|
1431
|
+
- Fixed an issue where calling `clear` method removed the focus from the table.
|
1432
|
+
[#7099](https://github.com/handsontable/handsontable/issues/7099)
|
1433
|
+
- Fixed an issue where `clear` method did not work for hidden data.
|
1434
|
+
[#7097](https://github.com/handsontable/handsontable/issues/7097)
|
1435
|
+
- Fixed an issue where the editor was moved by 1px when the first row / column was hidden.
|
1436
|
+
[#6982](https://github.com/handsontable/handsontable/issues/6982)
|
1437
|
+
- Fixed an issue where headers were deselected after undoing removal.
|
1438
|
+
[#6670](https://github.com/handsontable/handsontable/issues/6670)
|
1439
|
+
- Fixed an issue with improper selection after insert column/row when mergeCells was enabled.
|
1440
|
+
[#4897](https://github.com/handsontable/handsontable/issues/4897)
|
1441
|
+
- Fixed an issue where wrong cell meta was removed when deleting rows.
|
1442
|
+
[#6051](https://github.com/handsontable/handsontable/issues/6051)
|
1443
|
+
- Fixed wrong types of `beforeRowMove` arguments.
|
1444
|
+
[#6539](https://github.com/handsontable/handsontable/issues/6539)
|
1445
|
+
- Fixed an issue where selection of a whole row did not happen consequently after selecting a row
|
1446
|
+
header. [#5906](https://github.com/handsontable/handsontable/issues/5906)
|
1447
|
+
- Fixed an issue where it was not possible to use physical row index instead of visual one.
|
1448
|
+
[#6309](https://github.com/handsontable/handsontable/issues/6309)
|
1449
|
+
- Fixed an issue where incorrect data was returned after undoing the remove column option.
|
1450
|
+
[#5000](https://github.com/handsontable/handsontable/issues/5000)
|
1451
|
+
- Fixed - Copy and paste works properly also when selecting hidden columns when: all columns within
|
1452
|
+
a selected range are hidden and when just some columns within a selected range are hidden.
|
1453
|
+
[#7043](https://github.com/handsontable/handsontable/issues/7043).
|
1454
|
+
- Fixed an issue where it was impossible to add new row in the `nestedRows`.
|
1455
|
+
[#5133](https://github.com/handsontable/handsontable/issues/5133)
|
1456
|
+
- Fixed an issue where `afterOnCellMouseDown` returned (0,0) coords after clicking on the topleft
|
1457
|
+
corner. [#3978](https://github.com/handsontable/handsontable/issues/3978)
|
1458
|
+
- Fixed an issue where persisted `manualColumnMove` was not restored when using `loadData`.
|
1459
|
+
[#5207](https://github.com/handsontable/handsontable/issues/5207)
|
1460
|
+
- Fixed issues with filtering results in blank rows.
|
1461
|
+
[#5208](https://github.com/handsontable/handsontable/issues/5208)
|
1462
|
+
- Fixed an issue where changing data on collapsed rows resulted in error.
|
1463
|
+
[#5328](https://github.com/handsontable/handsontable/issues/5328)
|
1464
|
+
- Fixed an issue where the `manualColumnMove` operation affected the column order of data loaded by
|
1465
|
+
`loadData`. [#5591](https://github.com/handsontable/handsontable/issues/5591)
|
1466
|
+
- Fixed an issue where `nestedRows` did not allow to keep `rowHeaders` after collapsing.
|
1467
|
+
[#5874](https://github.com/handsontable/handsontable/issues/5874)
|
1468
|
+
- Fixed performance and CPU issue caused by using some handsontable properties.
|
1469
|
+
[#6058](https://github.com/handsontable/handsontable/issues/6058)
|
1470
|
+
- Fixed an error with columnSummary plugin when trying to create a row.
|
1471
|
+
[#6300](https://github.com/handsontable/handsontable/issues/6300)
|
1472
|
+
- Fixed an error where `walkontable.css` and `handsontable.css` stylesheets were out of sync.
|
1473
|
+
[#6381](https://github.com/handsontable/handsontable/issues/6381)
|
1474
|
+
- Fixed an issue where `colHeaders` order was not updated after manual move with empty object data
|
1475
|
+
source. [#6413](https://github.com/handsontable/handsontable/issues/6413)
|
1476
|
+
- Fixed "detach from parent" option.
|
1477
|
+
[#6432](https://github.com/handsontable/handsontable/issues/6432)
|
1478
|
+
- Fixed an issue where `PreventOverflow` feature did not work if `multiColumnSorting` plugin was
|
1479
|
+
enabled. [#6514](https://github.com/handsontable/handsontable/issues/6514)
|
1480
|
+
- Fixed an issue where old CSS classes were not removed after `updateSettings`.
|
1481
|
+
[#6575](https://github.com/handsontable/handsontable/issues/6575)
|
1482
|
+
- Fixed an issue where `columnSummary`, `Filters` and spare rows were causing 'RangeError: Maximum
|
1483
|
+
call stack size exceeded'. [#6695](https://github.com/handsontable/handsontable/issues/6695)
|
1484
|
+
- Fixed an issue where `afterSelectionEnd` returned incorrect data when clicking on a column when
|
1485
|
+
all rows were hidden. [#7045](https://github.com/handsontable/handsontable/issues/7045)
|
1486
|
+
- Fixed an issue where wrapping was not applied after setting `trimWhitespace` to `false`.
|
1487
|
+
[#6232](https://github.com/handsontable/handsontable/issues/6232)
|
1488
|
+
- Fixed an issue with additional selection border in iOS.
|
1489
|
+
[#7103](https://github.com/handsontable/handsontable/issues/7103)
|
1490
|
+
- Fixed an issue with rendering different borders.
|
1491
|
+
[#6955](https://github.com/handsontable/handsontable/issues/6955)
|
1492
|
+
- Fixed an issue with `BACKSPACE` not working properly in the filter by value input.
|
1493
|
+
[#6842](https://github.com/handsontable/handsontable/issues/6842)
|
1494
|
+
- Fixed an issue with Undo/Redo not working with fixing columns.
|
1495
|
+
[#6869](https://github.com/handsontable/handsontable/issues/6869)
|
1496
|
+
- Added a missing argument in the `deepObjectSize` function.
|
1497
|
+
[#6821](https://github.com/handsontable/handsontable/pull/6821)
|
838
1498
|
|
839
1499
|
For more information on Handsontable 8.0.0, see:
|
1500
|
+
|
840
1501
|
- [Blog post (8.0.0)](https://handsontable.com/blog/the-new-handsontable-8-is-now-available)
|
841
1502
|
- [Documentation (8.0.0)](https://handsontable.com/docs/8.0.0)
|
842
1503
|
- [Migration guide (7.4 → 8.0)](https://handsontable.com/docs/migration-from-7.4-to-8.0)
|
@@ -844,4 +1505,5 @@ For more information on Handsontable 8.0.0, see:
|
|
844
1505
|
|
845
1506
|
## Prior [8.0.0]
|
846
1507
|
|
847
|
-
The changes for previous versions are described at
|
1508
|
+
The changes for previous versions are described at
|
1509
|
+
https://github.com/handsontable/handsontable/releases.
|