handsontable 12.0.0 → 12.0.1

Sign up to get free protection for your applications and to get access to all the features.
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 = "28/04/2022 12:45:01";
56
- Handsontable.version = "12.0.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 = "28/04/2022 12:45:15";
41
- Handsontable.version = "12.0.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,
@@ -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.0
29
- * Release date: 28/04/2022 (built at 28/04/2022 12:45:25)
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.0
29
- * Release date: 28/04/2022 (built at 28/04/2022 12:45:25)
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