handsontable 0.0.0-next-8d3d78c-20230518 → 0.0.0-next-59715d3-20230523
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/CHANGELOG.md +25 -0
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/dist/handsontable.css +24 -2
- package/dist/handsontable.full.css +24 -2
- package/dist/handsontable.full.js +83 -74
- package/dist/handsontable.full.min.css +4 -4
- package/dist/handsontable.full.min.js +16 -16
- package/dist/handsontable.js +23 -14
- package/dist/handsontable.min.css +4 -4
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/package.json +1 -1
- package/pluginHooks.js +8 -4
- package/pluginHooks.mjs +8 -4
package/CHANGELOG.md
CHANGED
@@ -9,6 +9,31 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
10
10
|
<!-- UNVERSIONED -->
|
11
11
|
|
12
|
+
## [12.4.0] - 2023-05-23
|
13
|
+
|
14
|
+
### Added
|
15
|
+
|
16
|
+
- Added two new Handsontable hooks, `afterColumnSequenceChange` and `afterRowSequenceChange`, which are fired after changing the order of columns or rows, respectively. [#10215](https://github.com/handsontable/handsontable/pull/10215)
|
17
|
+
|
18
|
+
### Fixed
|
19
|
+
|
20
|
+
- Fixed numerous issues related to syncing Handsontable with HyperFormula. Now, formulas work properly with all the Handsontable features. [#10215](https://github.com/handsontable/handsontable/pull/10215)
|
21
|
+
- Fixed na issue where formulas didn't recalculate after rows or columns were moved. [#4668](https://github.com/handsontable/handsontable/issues/4668)
|
22
|
+
- Fixed an issue where Handsontable's dates didn't sync correctly with HyperFormula's dates. [#10085](https://github.com/handsontable/handsontable/issues/10085)
|
23
|
+
- Fixed an issue where calling `updateSettings()` would reset HyperFormula's undo/redo actions stack. [#10326](https://github.com/handsontable/handsontable/pull/10326)
|
24
|
+
- Fixed an issue where the `Autofill`, `TrimRows` and `Formulas` plugins didn't work properly together. [#10200](https://github.com/handsontable/handsontable/issues/10200)
|
25
|
+
- Fixed an issue where the `modifySourceData` hook used the wrong type of indexes. [#10215](https://github.com/handsontable/handsontable/pull/10215)
|
26
|
+
- Fixed an issue where text copied from Handsontable to Excel included wrong types of spaces. [#10017](https://github.com/handsontable/handsontable/issues/10017)
|
27
|
+
- Fixed an issue where mousing over the same cell twice didn't trigger the `beforeOnCellMouseOver` and `afterOnCellMouseOver` hooks. [#10321](https://github.com/handsontable/handsontable/pull/10321)
|
28
|
+
- Updated TypeScript definition files related to the `CustomBorders` plugin. [#10360](https://github.com/handsontable/handsontable/pull/10360)
|
29
|
+
- Fixed an issue where moving rows manually to the bottom was difficult due the misalignment between the backlight and guideline elements. [#9556](https://github.com/handsontable/handsontable/issues/9556)
|
30
|
+
|
31
|
+
For more information on Handsontable 12.4.0, see:
|
32
|
+
|
33
|
+
- [Blog post (12.4.0)](https://handsontable.com/blog/handsontable-12-4-0-auto-updating-formulas)
|
34
|
+
- [Documentation (12.4)](https://handsontable.com/docs/12.4)
|
35
|
+
- [Release notes (12.4.0)](https://handsontable.com/docs/release-notes/#_12-4-0)
|
36
|
+
|
12
37
|
## [12.3.3] - 2023-03-28
|
13
38
|
|
14
39
|
### Added
|
package/base.js
CHANGED
@@ -44,8 +44,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
44
44
|
Handsontable.CellCoords = _src.CellCoords;
|
45
45
|
Handsontable.CellRange = _src.CellRange;
|
46
46
|
Handsontable.packageName = 'handsontable';
|
47
|
-
Handsontable.buildDate = "
|
48
|
-
Handsontable.version = "0.0.0-next-
|
47
|
+
Handsontable.buildDate = "23/05/2023 09:16:56";
|
48
|
+
Handsontable.version = "0.0.0-next-59715d3-20230523";
|
49
49
|
Handsontable.languages = {
|
50
50
|
dictionaryKeys: _registry.dictionaryKeys,
|
51
51
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
package/base.mjs
CHANGED
@@ -35,8 +35,8 @@ Handsontable.hooks = Hooks.getSingleton();
|
|
35
35
|
Handsontable.CellCoords = CellCoords;
|
36
36
|
Handsontable.CellRange = CellRange;
|
37
37
|
Handsontable.packageName = 'handsontable';
|
38
|
-
Handsontable.buildDate = "
|
39
|
-
Handsontable.version = "0.0.0-next-
|
38
|
+
Handsontable.buildDate = "23/05/2023 09:17:12";
|
39
|
+
Handsontable.version = "0.0.0-next-59715d3-20230523";
|
40
40
|
Handsontable.languages = {
|
41
41
|
dictionaryKeys: dictionaryKeys,
|
42
42
|
getLanguageDictionary: getLanguageDictionary,
|
package/dist/handsontable.css
CHANGED
@@ -25,8 +25,8 @@
|
|
25
25
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
26
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
27
|
*
|
28
|
-
* Version: 0.0.0-next-
|
29
|
-
* Release date:
|
28
|
+
* Version: 0.0.0-next-59715d3-20230523
|
29
|
+
* Release date: 23/05/2023 (built at 23/05/2023 09:17:25)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -1064,10 +1064,21 @@ CheckboxRenderer
|
|
1064
1064
|
margin-right: 6px;
|
1065
1065
|
}
|
1066
1066
|
|
1067
|
+
[dir=rtl].htContextMenu table tbody tr td .htItemWrapper {
|
1068
|
+
margin-right: 10px;
|
1069
|
+
margin-left: 6px;
|
1070
|
+
}
|
1071
|
+
|
1067
1072
|
.htContextMenu table tbody tr td div span.selected {
|
1068
1073
|
margin-top: -2px;
|
1069
1074
|
position: absolute;
|
1070
1075
|
left: 4px;
|
1076
|
+
right: 0;
|
1077
|
+
}
|
1078
|
+
|
1079
|
+
[dir=rtl].htContextMenu table tbody tr td div span.selected {
|
1080
|
+
right: 4px;
|
1081
|
+
left: 0;
|
1071
1082
|
}
|
1072
1083
|
|
1073
1084
|
.htContextMenu .ht_master .wtHolder {
|
@@ -1202,10 +1213,21 @@ textarea.HandsontableCopyPaste {
|
|
1202
1213
|
margin-right: 10px;
|
1203
1214
|
}
|
1204
1215
|
|
1216
|
+
[dir=rtl].htDropdownMenu table tbody tr td .htItemWrapper {
|
1217
|
+
margin-right: 10px;
|
1218
|
+
margin-left: 10px;
|
1219
|
+
}
|
1220
|
+
|
1205
1221
|
.htDropdownMenu table tbody tr td div span.selected {
|
1206
1222
|
margin-top: -2px;
|
1207
1223
|
position: absolute;
|
1208
1224
|
left: 4px;
|
1225
|
+
right: 0;
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
[dir=rtl].htDropdownMenu table tbody tr td div span.selected {
|
1229
|
+
right: 4px;
|
1230
|
+
left: 0;
|
1209
1231
|
}
|
1210
1232
|
|
1211
1233
|
.htDropdownMenu .ht_master .wtHolder {
|
@@ -25,8 +25,8 @@
|
|
25
25
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
26
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
27
|
*
|
28
|
-
* Version: 0.0.0-next-
|
29
|
-
* Release date:
|
28
|
+
* Version: 0.0.0-next-59715d3-20230523
|
29
|
+
* Release date: 23/05/2023 (built at 23/05/2023 09:17:25)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -1297,10 +1297,21 @@ CheckboxRenderer
|
|
1297
1297
|
margin-right: 6px;
|
1298
1298
|
}
|
1299
1299
|
|
1300
|
+
[dir=rtl].htContextMenu table tbody tr td .htItemWrapper {
|
1301
|
+
margin-right: 10px;
|
1302
|
+
margin-left: 6px;
|
1303
|
+
}
|
1304
|
+
|
1300
1305
|
.htContextMenu table tbody tr td div span.selected {
|
1301
1306
|
margin-top: -2px;
|
1302
1307
|
position: absolute;
|
1303
1308
|
left: 4px;
|
1309
|
+
right: 0;
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
[dir=rtl].htContextMenu table tbody tr td div span.selected {
|
1313
|
+
right: 4px;
|
1314
|
+
left: 0;
|
1304
1315
|
}
|
1305
1316
|
|
1306
1317
|
.htContextMenu .ht_master .wtHolder {
|
@@ -1435,10 +1446,21 @@ textarea.HandsontableCopyPaste {
|
|
1435
1446
|
margin-right: 10px;
|
1436
1447
|
}
|
1437
1448
|
|
1449
|
+
[dir=rtl].htDropdownMenu table tbody tr td .htItemWrapper {
|
1450
|
+
margin-right: 10px;
|
1451
|
+
margin-left: 10px;
|
1452
|
+
}
|
1453
|
+
|
1438
1454
|
.htDropdownMenu table tbody tr td div span.selected {
|
1439
1455
|
margin-top: -2px;
|
1440
1456
|
position: absolute;
|
1441
1457
|
left: 4px;
|
1458
|
+
right: 0;
|
1459
|
+
}
|
1460
|
+
|
1461
|
+
[dir=rtl].htDropdownMenu table tbody tr td div span.selected {
|
1462
|
+
right: 4px;
|
1463
|
+
left: 0;
|
1442
1464
|
}
|
1443
1465
|
|
1444
1466
|
.htDropdownMenu .ht_master .wtHolder {
|