handsontable 0.0.0-next-be250b6-20230621 → 0.0.0-next-d1c8e0e-20230621

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.

Potentially problematic release.


This version of handsontable might be problematic. Click here for more details.

Files changed (65) hide show
  1. package/base.js +2 -2
  2. package/base.mjs +2 -2
  3. package/dist/handsontable.css +2 -2
  4. package/dist/handsontable.full.css +2 -2
  5. package/dist/handsontable.full.js +3023 -2833
  6. package/dist/handsontable.full.min.css +2 -2
  7. package/dist/handsontable.full.min.js +77 -77
  8. package/dist/handsontable.js +2944 -2754
  9. package/dist/handsontable.min.css +2 -2
  10. package/dist/handsontable.min.js +4 -4
  11. package/helpers/mixed.js +1 -1
  12. package/helpers/mixed.mjs +1 -1
  13. package/package.json +1 -1
  14. package/plugins/comments/comments.js +11 -4
  15. package/plugins/comments/comments.mjs +11 -4
  16. package/plugins/contextMenu/contextMenu.d.ts +1 -1
  17. package/plugins/contextMenu/contextMenu.js +80 -29
  18. package/plugins/contextMenu/contextMenu.mjs +81 -30
  19. package/plugins/contextMenu/predefinedItems/alignment.js +7 -0
  20. package/plugins/contextMenu/predefinedItems/alignment.mjs +7 -0
  21. package/plugins/contextMenu/predefinedItems/clearColumn.js +5 -3
  22. package/plugins/contextMenu/predefinedItems/clearColumn.mjs +5 -3
  23. package/plugins/contextMenu/predefinedItems/columnLeft.js +5 -3
  24. package/plugins/contextMenu/predefinedItems/columnLeft.mjs +5 -3
  25. package/plugins/contextMenu/predefinedItems/columnRight.js +5 -3
  26. package/plugins/contextMenu/predefinedItems/columnRight.mjs +5 -3
  27. package/plugins/contextMenu/predefinedItems/readOnly.js +7 -0
  28. package/plugins/contextMenu/predefinedItems/readOnly.mjs +7 -0
  29. package/plugins/contextMenu/predefinedItems/removeColumn.js +7 -5
  30. package/plugins/contextMenu/predefinedItems/removeColumn.mjs +5 -3
  31. package/plugins/contextMenu/predefinedItems/removeRow.js +7 -5
  32. package/plugins/contextMenu/predefinedItems/removeRow.mjs +5 -3
  33. package/plugins/contextMenu/predefinedItems/rowAbove.js +5 -3
  34. package/plugins/contextMenu/predefinedItems/rowAbove.mjs +5 -3
  35. package/plugins/contextMenu/predefinedItems/rowBelow.js +5 -3
  36. package/plugins/contextMenu/predefinedItems/rowBelow.mjs +5 -3
  37. package/plugins/contextMenu/utils.js +25 -16
  38. package/plugins/contextMenu/utils.mjs +24 -15
  39. package/plugins/copyPaste/contextMenuItem/copy.js +7 -0
  40. package/plugins/copyPaste/contextMenuItem/copy.mjs +7 -0
  41. package/plugins/copyPaste/contextMenuItem/copyColumnHeadersOnly.js +9 -1
  42. package/plugins/copyPaste/contextMenuItem/copyColumnHeadersOnly.mjs +9 -1
  43. package/plugins/copyPaste/contextMenuItem/copyWithColumnGroupHeaders.js +9 -1
  44. package/plugins/copyPaste/contextMenuItem/copyWithColumnGroupHeaders.mjs +9 -1
  45. package/plugins/copyPaste/contextMenuItem/copyWithColumnHeaders.js +9 -1
  46. package/plugins/copyPaste/contextMenuItem/copyWithColumnHeaders.mjs +9 -1
  47. package/plugins/copyPaste/contextMenuItem/cut.js +7 -0
  48. package/plugins/copyPaste/contextMenuItem/cut.mjs +7 -0
  49. package/plugins/customBorders/customBorders.js +7 -0
  50. package/plugins/customBorders/customBorders.mjs +7 -0
  51. package/plugins/dropdownMenu/dropdownMenu.d.ts +1 -1
  52. package/plugins/dropdownMenu/dropdownMenu.js +94 -30
  53. package/plugins/dropdownMenu/dropdownMenu.mjs +94 -30
  54. package/plugins/filters/filters.js +62 -42
  55. package/plugins/filters/filters.mjs +61 -41
  56. package/shortcutContexts/commands/index.js +1 -2
  57. package/shortcutContexts/commands/index.mjs +1 -2
  58. package/shortcutContexts/grid.js +0 -5
  59. package/shortcutContexts/grid.mjs +0 -5
  60. package/shortcuts/recorder.js +2 -2
  61. package/shortcuts/recorder.mjs +2 -2
  62. package/shortcuts/utils.js +21 -5
  63. package/shortcuts/utils.mjs +20 -4
  64. package/shortcutContexts/commands/scrollToFocusedCell.js +0 -38
  65. package/shortcutContexts/commands/scrollToFocusedCell.mjs +0 -33
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 = "21/06/2023 09:41:43";
48
- Handsontable.version = "0.0.0-next-be250b6-20230621";
47
+ Handsontable.buildDate = "21/06/2023 10:11:09";
48
+ Handsontable.version = "0.0.0-next-d1c8e0e-20230621";
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 = "21/06/2023 09:41:58";
39
- Handsontable.version = "0.0.0-next-be250b6-20230621";
38
+ Handsontable.buildDate = "21/06/2023 10:11:24";
39
+ Handsontable.version = "0.0.0-next-d1c8e0e-20230621";
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-be250b6-20230621
29
- * Release date: 23/05/2023 (built at 21/06/2023 09:42:10)
28
+ * Version: 0.0.0-next-d1c8e0e-20230621
29
+ * Release date: 23/05/2023 (built at 21/06/2023 10:11:36)
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-be250b6-20230621
29
- * Release date: 23/05/2023 (built at 21/06/2023 09:42:10)
28
+ * Version: 0.0.0-next-d1c8e0e-20230621
29
+ * Release date: 23/05/2023 (built at 21/06/2023 10:11:36)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles