handsontable 12.0.0 → 12.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +1 -1
- package/core.mjs +1 -1
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +1724 -1525
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +68 -68
- package/dist/handsontable.js +1078 -1038
- package/dist/handsontable.min.css +2 -2
- 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/plugins/autoColumnSize/autoColumnSize.js +3 -3
- package/plugins/autoColumnSize/autoColumnSize.mjs +3 -3
- package/plugins/autoRowSize/autoRowSize.js +1 -1
- package/plugins/autoRowSize/autoRowSize.mjs +1 -1
- package/plugins/customBorders/customBorders.js +5 -4
- package/plugins/customBorders/customBorders.mjs +6 -5
- package/plugins/formulas/formulas.js +7 -2
- package/plugins/formulas/formulas.mjs +7 -2
- package/plugins/nestedHeaders/utils/ghostTable.js +36 -35
- package/plugins/nestedHeaders/utils/ghostTable.mjs +36 -34
package/CHANGELOG.md
CHANGED
@@ -8,6 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
8
8
|
|
9
9
|
<!-- UNVERSIONED -->
|
10
10
|
|
11
|
+
## [12.0.1] - 2022-05-16
|
12
|
+
|
13
|
+
For more information on this release, see:
|
14
|
+
- [Release notes](https://handsontable.com/docs/release-notes/#_12-0-1)
|
15
|
+
|
16
|
+
### Fixed
|
17
|
+
- Fixed an issue where checking or unchecking a checkbox in a row with `autoRowSize: true` and multi-line cell values caused rows to align incorrectly. [#7102](https://github.com/handsontable/handsontable/issues/7102)
|
18
|
+
- Fixed an issue where checking or unchecking a checkbox changed the cell width. [#8211](https://github.com/handsontable/handsontable/issues/8211)
|
19
|
+
- Fixed an issue where using a single Handsontable instance with multiple HyperFormula sheets could lead to an uncaught `TypeError`. [#8268](https://github.com/handsontable/handsontable/issues/8268)
|
20
|
+
- Fixed an issue where nested column headers didn't expand properly. [#9099](https://github.com/handsontable/handsontable/issues/9099)
|
21
|
+
- Fixed an issue where updating custom borders could lead to uncaught error exceptions. [#9455](https://github.com/handsontable/handsontable/issues/9455)
|
22
|
+
|
11
23
|
## [12.0.0] - 2022-04-28
|
12
24
|
|
13
25
|
For more information on this release, see:
|
package/base.js
CHANGED
@@ -52,8 +52,8 @@ Handsontable.Core = function (rootElement) {
|
|
52
52
|
Handsontable.DefaultSettings = (0, _dataMap.metaSchemaFactory)();
|
53
53
|
Handsontable.hooks = _pluginHooks.default.getSingleton();
|
54
54
|
Handsontable.packageName = 'handsontable';
|
55
|
-
Handsontable.buildDate = "
|
56
|
-
Handsontable.version = "12.0.
|
55
|
+
Handsontable.buildDate = "13/05/2022 13:49:59";
|
56
|
+
Handsontable.version = "12.0.1";
|
57
57
|
Handsontable.languages = {
|
58
58
|
dictionaryKeys: _registry.dictionaryKeys,
|
59
59
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
package/base.mjs
CHANGED
@@ -37,8 +37,8 @@ Handsontable.Core = function (rootElement) {
|
|
37
37
|
Handsontable.DefaultSettings = metaSchemaFactory();
|
38
38
|
Handsontable.hooks = Hooks.getSingleton();
|
39
39
|
Handsontable.packageName = 'handsontable';
|
40
|
-
Handsontable.buildDate = "
|
41
|
-
Handsontable.version = "12.0.
|
40
|
+
Handsontable.buildDate = "13/05/2022 13:50:15";
|
41
|
+
Handsontable.version = "12.0.1";
|
42
42
|
Handsontable.languages = {
|
43
43
|
dictionaryKeys: dictionaryKeys,
|
44
44
|
getLanguageDictionary: getLanguageDictionary,
|
package/core.js
CHANGED
@@ -4499,7 +4499,7 @@ function Core(rootElement, userSettings) {
|
|
4499
4499
|
|
4500
4500
|
|
4501
4501
|
this.hasHook = function (key) {
|
4502
|
-
return _pluginHooks.default.getSingleton().has(key, instance);
|
4502
|
+
return _pluginHooks.default.getSingleton().has(key, instance) || _pluginHooks.default.getSingleton().has(key);
|
4503
4503
|
};
|
4504
4504
|
/**
|
4505
4505
|
* Adds listener to specified hook name (only for this Handsontable instance). After the listener is triggered,
|
package/core.mjs
CHANGED
@@ -4437,7 +4437,7 @@ export default function Core(rootElement, userSettings) {
|
|
4437
4437
|
|
4438
4438
|
|
4439
4439
|
this.hasHook = function (key) {
|
4440
|
-
return Hooks.getSingleton().has(key, instance);
|
4440
|
+
return Hooks.getSingleton().has(key, instance) || Hooks.getSingleton().has(key);
|
4441
4441
|
};
|
4442
4442
|
/**
|
4443
4443
|
* Adds listener to specified hook name (only for this Handsontable instance). After the listener is triggered,
|
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: 12.0.
|
29
|
-
* Release date:
|
28
|
+
* Version: 12.0.1
|
29
|
+
* Release date: 16/05/2022 (built at 13/05/2022 13:50:27)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -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: 12.0.
|
29
|
-
* Release date:
|
28
|
+
* Version: 12.0.1
|
29
|
+
* Release date: 16/05/2022 (built at 13/05/2022 13:50:27)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|