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.
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core/focusCatcher/focusDetector.js +62 -0
- package/core/focusCatcher/focusDetector.mjs +58 -0
- package/core/focusCatcher/index.js +133 -0
- package/core/focusCatcher/index.mjs +129 -0
- package/core/index.js +12 -0
- package/core/index.mjs +1 -0
- package/core.d.ts +0 -1
- package/core.js +24 -31
- package/core.mjs +24 -31
- package/dataMap/metaManager/metaSchema.js +22 -0
- package/dataMap/metaManager/metaSchema.mjs +22 -0
- package/dist/handsontable.css +13 -2
- package/dist/handsontable.full.css +13 -2
- package/dist/handsontable.full.js +4801 -4783
- package/dist/handsontable.full.min.css +3 -3
- package/dist/handsontable.full.min.js +61 -61
- package/dist/handsontable.js +9892 -9874
- package/dist/handsontable.min.css +3 -3
- package/dist/handsontable.min.js +4 -4
- package/editorManager.js +10 -4
- package/editorManager.mjs +10 -4
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/pluginHooks.d.ts +1 -1
- package/pluginHooks.js +10 -7
- package/pluginHooks.mjs +10 -7
- package/plugins/comments/commentEditor.js +0 -1
- package/plugins/comments/commentEditor.mjs +0 -1
- package/plugins/comments/comments.js +231 -289
- package/plugins/comments/comments.mjs +241 -297
- package/plugins/contextMenu/contextMenu.js +0 -1
- package/plugins/contextMenu/contextMenu.mjs +0 -1
- package/plugins/copyPaste/copyPaste.js +1 -1
- package/plugins/copyPaste/copyPaste.mjs +1 -1
- package/plugins/dropdownMenu/dropdownMenu.js +1 -0
- package/plugins/dropdownMenu/dropdownMenu.mjs +1 -0
- package/plugins/formulas/engine/settings.js +2 -2
- package/plugins/formulas/engine/settings.mjs +2 -2
- package/plugins/formulas/formulas.js +2 -2
- package/plugins/formulas/formulas.mjs +2 -2
- package/plugins/manualRowResize/manualRowResize.js +2 -2
- package/plugins/manualRowResize/manualRowResize.mjs +2 -2
- package/settings.d.ts +1 -0
- package/shortcutContexts/constants.js +1 -6
- package/shortcutContexts/constants.mjs +0 -4
- package/tableView.js +4 -9
- package/tableView.mjs +4 -9
- package/plugins/comments/contextMenuItem/addEditComment.js +0 -51
- package/plugins/comments/contextMenuItem/addEditComment.mjs +0 -35
- package/plugins/comments/contextMenuItem/readOnlyComment.js +0 -63
- package/plugins/comments/contextMenuItem/readOnlyComment.mjs +0 -55
- package/plugins/comments/contextMenuItem/removeComment.js +0 -48
- 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.
|
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: 0.0.0-next-
|
29
|
-
* Release date: 22/06/2023 (built at
|
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-
|
29
|
-
* Release date: 22/06/2023 (built at
|
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 {
|