handsontable 0.0.0-next-e697250-20230707 → 0.0.0-next-b02b3d1-20230710

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 (56) hide show
  1. package/base.js +2 -2
  2. package/base.mjs +2 -2
  3. package/core/focusCatcher/focusDetector.js +62 -0
  4. package/core/focusCatcher/focusDetector.mjs +58 -0
  5. package/core/focusCatcher/index.js +133 -0
  6. package/core/focusCatcher/index.mjs +129 -0
  7. package/core/index.js +12 -0
  8. package/core/index.mjs +1 -0
  9. package/core.d.ts +0 -1
  10. package/core.js +24 -31
  11. package/core.mjs +24 -31
  12. package/dataMap/metaManager/metaSchema.js +22 -0
  13. package/dataMap/metaManager/metaSchema.mjs +22 -0
  14. package/dist/handsontable.css +13 -2
  15. package/dist/handsontable.full.css +13 -2
  16. package/dist/handsontable.full.js +4801 -4783
  17. package/dist/handsontable.full.min.css +3 -3
  18. package/dist/handsontable.full.min.js +61 -61
  19. package/dist/handsontable.js +9892 -9874
  20. package/dist/handsontable.min.css +3 -3
  21. package/dist/handsontable.min.js +4 -4
  22. package/editorManager.js +10 -4
  23. package/editorManager.mjs +10 -4
  24. package/helpers/mixed.js +1 -1
  25. package/helpers/mixed.mjs +1 -1
  26. package/package.json +1 -1
  27. package/pluginHooks.d.ts +1 -1
  28. package/pluginHooks.js +10 -7
  29. package/pluginHooks.mjs +10 -7
  30. package/plugins/comments/commentEditor.js +0 -1
  31. package/plugins/comments/commentEditor.mjs +0 -1
  32. package/plugins/comments/comments.js +231 -289
  33. package/plugins/comments/comments.mjs +241 -297
  34. package/plugins/contextMenu/contextMenu.js +0 -1
  35. package/plugins/contextMenu/contextMenu.mjs +0 -1
  36. package/plugins/copyPaste/copyPaste.js +1 -1
  37. package/plugins/copyPaste/copyPaste.mjs +1 -1
  38. package/plugins/dropdownMenu/dropdownMenu.js +1 -0
  39. package/plugins/dropdownMenu/dropdownMenu.mjs +1 -0
  40. package/plugins/formulas/engine/settings.js +2 -2
  41. package/plugins/formulas/engine/settings.mjs +2 -2
  42. package/plugins/formulas/formulas.js +2 -2
  43. package/plugins/formulas/formulas.mjs +2 -2
  44. package/plugins/manualRowResize/manualRowResize.js +2 -2
  45. package/plugins/manualRowResize/manualRowResize.mjs +2 -2
  46. package/settings.d.ts +1 -0
  47. package/shortcutContexts/constants.js +1 -6
  48. package/shortcutContexts/constants.mjs +0 -4
  49. package/tableView.js +4 -9
  50. package/tableView.mjs +4 -9
  51. package/plugins/comments/contextMenuItem/addEditComment.js +0 -51
  52. package/plugins/comments/contextMenuItem/addEditComment.mjs +0 -35
  53. package/plugins/comments/contextMenuItem/readOnlyComment.js +0 -63
  54. package/plugins/comments/contextMenuItem/readOnlyComment.mjs +0 -55
  55. package/plugins/comments/contextMenuItem/removeComment.js +0 -48
  56. package/plugins/comments/contextMenuItem/removeComment.mjs +0 -32
@@ -3131,6 +3131,28 @@ var _default = function _default() {
3131
3131
  * ```
3132
3132
  */
3133
3133
  navigableHeaders: false,
3134
+ /**
3135
+ * When set to `true`, the `disableTabNavigation` option changes the behavior of the
3136
+ * <kbd>Tab</kbd> and <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts. The Handsontable
3137
+ * no more captures that shortcuts to make the grid navigation available (`disableTabNavigation: false`)
3138
+ * but returns control to the browser so the native page navigation is possible.
3139
+ *
3140
+ * @since 14.0.0
3141
+ * @memberof Options#
3142
+ * @type {boolean}
3143
+ * @default false
3144
+ * @category Core
3145
+ *
3146
+ * @example
3147
+ * ```js
3148
+ * // you can't navigate row and column headers using <kbd>Tab</kbd> or <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts
3149
+ * disableTabNavigation: true,
3150
+ *
3151
+ * // default behavior: you can navigate row and column headers using <kbd>Tab</kbd> or <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts
3152
+ * disableTabNavigation: false,
3153
+ * ```
3154
+ */
3155
+ disableTabNavigation: false,
3134
3156
  /**
3135
3157
  * @description
3136
3158
  * The `nestedHeaders` option configures the [`NestedHeaders`](@/api/nestedHeaders.md) plugin.
@@ -3127,6 +3127,28 @@ export default (function () {
3127
3127
  * ```
3128
3128
  */
3129
3129
  navigableHeaders: false,
3130
+ /**
3131
+ * When set to `true`, the `disableTabNavigation` option changes the behavior of the
3132
+ * <kbd>Tab</kbd> and <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts. The Handsontable
3133
+ * no more captures that shortcuts to make the grid navigation available (`disableTabNavigation: false`)
3134
+ * but returns control to the browser so the native page navigation is possible.
3135
+ *
3136
+ * @since 14.0.0
3137
+ * @memberof Options#
3138
+ * @type {boolean}
3139
+ * @default false
3140
+ * @category Core
3141
+ *
3142
+ * @example
3143
+ * ```js
3144
+ * // you can't navigate row and column headers using <kbd>Tab</kbd> or <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts
3145
+ * disableTabNavigation: true,
3146
+ *
3147
+ * // default behavior: you can navigate row and column headers using <kbd>Tab</kbd> or <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts
3148
+ * disableTabNavigation: false,
3149
+ * ```
3150
+ */
3151
+ disableTabNavigation: false,
3130
3152
  /**
3131
3153
  * @description
3132
3154
  * The `nestedHeaders` option configures the [`NestedHeaders`](@/api/nestedHeaders.md) plugin.
@@ -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-e697250-20230707
29
- * Release date: 22/06/2023 (built at 07/07/2023 07:19:59)
28
+ * Version: 0.0.0-next-b02b3d1-20230710
29
+ * Release date: 22/06/2023 (built at 10/07/2023 08:57:09)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -410,6 +410,17 @@ innerBorderBottom - Property controlled by bottom overlay
410
410
  font-size: 10px;
411
411
  }
412
412
 
413
+ .handsontable .htFocusCatcher {
414
+ position: absolute;
415
+ z-index: -1;
416
+ opacity: 0;
417
+ border: 0;
418
+ margin: 0;
419
+ padding: 0;
420
+ width: 0;
421
+ height: 0;
422
+ }
423
+
413
424
  /* plugins */
414
425
  /* row + column resizer*/
415
426
  .handsontable .manualColumnResizer {
@@ -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-e697250-20230707
29
- * Release date: 22/06/2023 (built at 07/07/2023 07:19:59)
28
+ * Version: 0.0.0-next-b02b3d1-20230710
29
+ * Release date: 22/06/2023 (built at 10/07/2023 08:57:09)
30
30
  */
31
31
  /**
32
32
  * Fix for bootstrap styles
@@ -410,6 +410,17 @@ innerBorderBottom - Property controlled by bottom overlay
410
410
  font-size: 10px;
411
411
  }
412
412
 
413
+ .handsontable .htFocusCatcher {
414
+ position: absolute;
415
+ z-index: -1;
416
+ opacity: 0;
417
+ border: 0;
418
+ margin: 0;
419
+ padding: 0;
420
+ width: 0;
421
+ height: 0;
422
+ }
423
+
413
424
  /* plugins */
414
425
  /* row + column resizer*/
415
426
  .handsontable .manualColumnResizer {