handsontable 0.0.0-next-c3d199b-20230626 → 0.0.0-next-74a68c1-20230627

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.

Files changed (37) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/base.js +2 -2
  3. package/base.mjs +2 -2
  4. package/dist/handsontable.css +2 -2
  5. package/dist/handsontable.full.css +2 -2
  6. package/dist/handsontable.full.js +3347 -3475
  7. package/dist/handsontable.full.min.css +2 -2
  8. package/dist/handsontable.full.min.js +53 -53
  9. package/dist/handsontable.js +5524 -5652
  10. package/dist/handsontable.min.css +2 -2
  11. package/dist/handsontable.min.js +4 -4
  12. package/helpers/mixed.js +2 -2
  13. package/helpers/mixed.mjs +2 -2
  14. package/package.json +1 -1
  15. package/plugins/comments/commentEditor.js +0 -1
  16. package/plugins/comments/commentEditor.mjs +0 -1
  17. package/plugins/comments/comments.js +231 -263
  18. package/plugins/comments/comments.mjs +241 -271
  19. package/plugins/copyPaste/copyPaste.js +1 -1
  20. package/plugins/copyPaste/copyPaste.mjs +1 -1
  21. package/plugins/filters/filters.js +62 -42
  22. package/plugins/filters/filters.mjs +61 -41
  23. package/shortcutContexts/commands/index.js +2 -1
  24. package/shortcutContexts/commands/index.mjs +2 -1
  25. package/shortcutContexts/commands/scrollToFocusedCell.js +38 -0
  26. package/shortcutContexts/commands/scrollToFocusedCell.mjs +33 -0
  27. package/shortcutContexts/grid.js +5 -0
  28. package/shortcutContexts/grid.mjs +5 -0
  29. package/tableView.js +2 -5
  30. package/tableView.mjs +2 -5
  31. package/translations/indexMapper.d.ts +0 -2
  32. package/plugins/comments/contextMenuItem/addEditComment.js +0 -51
  33. package/plugins/comments/contextMenuItem/addEditComment.mjs +0 -35
  34. package/plugins/comments/contextMenuItem/readOnlyComment.js +0 -63
  35. package/plugins/comments/contextMenuItem/readOnlyComment.mjs +0 -55
  36. package/plugins/comments/contextMenuItem/removeComment.js +0 -48
  37. package/plugins/comments/contextMenuItem/removeComment.mjs +0 -32
package/CHANGELOG.md CHANGED
@@ -9,6 +9,37 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
10
  <!-- UNVERSIONED -->
11
11
 
12
+ ## [13.0.0] - 2023-06-22
13
+
14
+ ### Added
15
+
16
+ - Angular: Added support for Angular 16. [#10396](https://github.com/handsontable/handsontable/pull/10396)
17
+
18
+ ### Changed
19
+
20
+ - **Breaking change (React, Angular, Vue 2, Vue 3)**: Changed Handsontable's policy toward older versions of supported frameworks. From now on, Handsontable supports only those versions of any supported frameworks that are officially supported by their respective teams. Dropping Handsontable's support for any older framework versions won't be treated as a breaking change. [#10396](https://github.com/handsontable/handsontable/pull/10396)
21
+ - **Breaking change**: Changed the order in which three hooks are executed: now, the `beforeChange` hook is fired before the `afterSetDataAtCell` and `afterSetDataAtRowProp` hooks. [#10231](https://github.com/handsontable/handsontable/pull/10231)
22
+ - Changed the margins of the context menu in the RTL layout direction. [#10375](https://github.com/handsontable/handsontable/pull/10375)
23
+
24
+ ### Removed
25
+
26
+ - **Breaking change (Angular)**: Dropped support for Angular 13 and lower. From now on, Handsontable supports only those versions of Angular that are officially supported by the Angular team: currently, it's 14-16. However, Handsontable 13.0.0 was thoroughly tested and, to the best of our knowledge, works correctly with versions down to Angular 12. [#10396](https://github.com/handsontable/handsontable/pull/10396)
27
+ - **Breaking change**: Removed the deprecated `beforeAutofillInsidePopulate` hook. [#10407](https://github.com/handsontable/handsontable/pull/10407)
28
+ - **Breaking change**: Removed the deprecated `getFirstNotHiddenIndex` method. Instead, use the `getNearestNotHiddenIndex()` method. [#10407](https://github.com/handsontable/handsontable/pull/10407)
29
+ - **Breaking change**: Removed the deprecated parameters of the `alter()` method: `insert_row` and `insert_col`. Instead, use the following parameters: `insert_row_above`, `insert_row_below`, `insert_col_start`, and `insert_col_end`. [#10407](https://github.com/handsontable/handsontable/pull/10407)
30
+ - **Breaking change**: Removed the deprecated parameters of the `populateFromArray()` method: `direction` and `deltas`. [#10407](https://github.com/handsontable/handsontable/pull/10407)
31
+
32
+ ### Fixed
33
+
34
+ - Fixed an issue where the "Read only" icon of the context menu displayed incorrectly in the RTL layout direction. [#10375](https://github.com/handsontable/handsontable/pull/10375)
35
+
36
+ For more information on Handsontable 13.0.0, see:
37
+
38
+ - [Blog post (13.0.0)](https://handsontable.com/blog/handsontable-13-0-0-support-for-angular-16-and-new-frameworks-support-policy)
39
+ - [Documentation (13.0)](https://handsontable.com/docs/13.0)
40
+ - [Migration guide (12.4 → 13.0)](https://handsontable.com/docs/migration-from-12.4-to-13.0)
41
+ - [Release notes (13.0.0)](https://handsontable.com/docs/release-notes/#_13-0-0)
42
+
12
43
  ## [12.4.0] - 2023-05-23
13
44
 
14
45
  ### 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 = "26/06/2023 11:06:22";
48
- Handsontable.version = "0.0.0-next-c3d199b-20230626";
47
+ Handsontable.buildDate = "27/06/2023 07:43:32";
48
+ Handsontable.version = "0.0.0-next-74a68c1-20230627";
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 = "26/06/2023 11:06:37";
39
- Handsontable.version = "0.0.0-next-c3d199b-20230626";
38
+ Handsontable.buildDate = "27/06/2023 07:43:47";
39
+ Handsontable.version = "0.0.0-next-74a68c1-20230627";
40
40
  Handsontable.languages = {
41
41
  dictionaryKeys: dictionaryKeys,
42
42
  getLanguageDictionary: getLanguageDictionary,
@@ -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-c3d199b-20230626
29
- * Release date: 23/05/2023 (built at 26/06/2023 11:06:49)
28
+ * Version: 0.0.0-next-74a68c1-20230627
29
+ * Release date: 22/06/2023 (built at 27/06/2023 07:43:59)
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: 0.0.0-next-c3d199b-20230626
29
- * Release date: 23/05/2023 (built at 26/06/2023 11:06:49)
28
+ * Version: 0.0.0-next-74a68c1-20230627
29
+ * Release date: 22/06/2023 (built at 27/06/2023 07:43:59)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles