handsontable 14.0.0-next-4fd76bc-20231114 → 14.0.0-next-bdc44e7-20231115
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.
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core/focusCatcher/index.js +3 -3
- package/core/focusCatcher/index.mjs +3 -3
- package/dataMap/metaManager/metaSchema.js +7 -7
- package/dataMap/metaManager/metaSchema.mjs +7 -7
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +393 -267
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +147 -147
- package/dist/handsontable.js +393 -267
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +22 -22
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/package.json +1 -1
- package/plugins/manualColumnMove/manualColumnMove.js +31 -28
- package/plugins/manualColumnMove/manualColumnMove.mjs +29 -26
- package/plugins/manualColumnResize/manualColumnResize.js +161 -105
- package/plugins/manualColumnResize/manualColumnResize.mjs +160 -104
- package/plugins/manualRowMove/manualRowMove.js +31 -28
- package/plugins/manualRowMove/manualRowMove.mjs +29 -26
- package/plugins/manualRowResize/manualRowResize.js +160 -104
- package/plugins/manualRowResize/manualRowResize.mjs +159 -103
- package/settings.d.ts +1 -1
package/base.js
CHANGED
@@ -43,8 +43,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
43
43
|
Handsontable.CellCoords = _src.CellCoords;
|
44
44
|
Handsontable.CellRange = _src.CellRange;
|
45
45
|
Handsontable.packageName = 'handsontable';
|
46
|
-
Handsontable.buildDate = "
|
47
|
-
Handsontable.version = "14.0.0-next-
|
46
|
+
Handsontable.buildDate = "15/11/2023 14:48:36";
|
47
|
+
Handsontable.version = "14.0.0-next-bdc44e7-20231115";
|
48
48
|
Handsontable.languages = {
|
49
49
|
dictionaryKeys: _registry.dictionaryKeys,
|
50
50
|
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 = "
|
39
|
-
Handsontable.version = "14.0.0-next-
|
38
|
+
Handsontable.buildDate = "15/11/2023 14:48:42";
|
39
|
+
Handsontable.version = "14.0.0-next-bdc44e7-20231115";
|
40
40
|
Handsontable.languages = {
|
41
41
|
dictionaryKeys,
|
42
42
|
getLanguageDictionary,
|
@@ -79,7 +79,7 @@ function installFocusCatcher(hot) {
|
|
79
79
|
...shortcutOptions,
|
80
80
|
callback: () => {
|
81
81
|
isTabOrShiftTabPressed = true;
|
82
|
-
if (hot.getSelectedRangeLast() && hot.getSettings().
|
82
|
+
if (hot.getSelectedRangeLast() && !hot.getSettings().tabNavigation) {
|
83
83
|
isSavingCoordsEnabled = false;
|
84
84
|
}
|
85
85
|
},
|
@@ -88,12 +88,12 @@ function installFocusCatcher(hot) {
|
|
88
88
|
...shortcutOptions,
|
89
89
|
callback: event => {
|
90
90
|
const {
|
91
|
-
|
91
|
+
tabNavigation,
|
92
92
|
autoWrapRow
|
93
93
|
} = hot.getSettings();
|
94
94
|
isTabOrShiftTabPressed = false;
|
95
95
|
isSavingCoordsEnabled = true;
|
96
|
-
if (
|
96
|
+
if (!tabNavigation || !hot.selection.isSelected() || autoWrapRow && rowWrapState.wrapped && rowWrapState.flipped || !autoWrapRow && rowWrapState.wrapped) {
|
97
97
|
if (autoWrapRow && rowWrapState.wrapped && rowWrapState.flipped) {
|
98
98
|
recentlyAddedFocusCoords = event.shiftKey ? getMostTopStartPosition(hot) : getMostBottomEndPosition(hot);
|
99
99
|
}
|
@@ -75,7 +75,7 @@ export function installFocusCatcher(hot) {
|
|
75
75
|
...shortcutOptions,
|
76
76
|
callback: () => {
|
77
77
|
isTabOrShiftTabPressed = true;
|
78
|
-
if (hot.getSelectedRangeLast() && hot.getSettings().
|
78
|
+
if (hot.getSelectedRangeLast() && !hot.getSettings().tabNavigation) {
|
79
79
|
isSavingCoordsEnabled = false;
|
80
80
|
}
|
81
81
|
},
|
@@ -84,12 +84,12 @@ export function installFocusCatcher(hot) {
|
|
84
84
|
...shortcutOptions,
|
85
85
|
callback: event => {
|
86
86
|
const {
|
87
|
-
|
87
|
+
tabNavigation,
|
88
88
|
autoWrapRow
|
89
89
|
} = hot.getSettings();
|
90
90
|
isTabOrShiftTabPressed = false;
|
91
91
|
isSavingCoordsEnabled = true;
|
92
|
-
if (
|
92
|
+
if (!tabNavigation || !hot.selection.isSelected() || autoWrapRow && rowWrapState.wrapped && rowWrapState.flipped || !autoWrapRow && rowWrapState.wrapped) {
|
93
93
|
if (autoWrapRow && rowWrapState.wrapped && rowWrapState.flipped) {
|
94
94
|
recentlyAddedFocusCoords = event.shiftKey ? getMostTopStartPosition(hot) : getMostBottomEndPosition(hot);
|
95
95
|
}
|
@@ -3128,7 +3128,7 @@ var _default = () => {
|
|
3128
3128
|
*/
|
3129
3129
|
multiColumnSorting: undefined,
|
3130
3130
|
/**
|
3131
|
-
* When set to `true`, the `navigableHeaders` option lets you navigate [row headers](@/guides/rows/row-header.md) and [column headers](@/guides/columns/column-header.md), using the arrow keys or the <kbd>**Tab**</kbd> key (if the [`
|
3131
|
+
* When set to `true`, the `navigableHeaders` option lets you navigate [row headers](@/guides/rows/row-header.md) and [column headers](@/guides/columns/column-header.md), using the arrow keys or the <kbd>**Tab**</kbd> key (if the [`tabNavigation`](#tabNavigation) option is set to `true`).
|
3132
3132
|
*
|
3133
3133
|
* @since 14.0.0
|
3134
3134
|
* @memberof Options#
|
@@ -3147,27 +3147,27 @@ var _default = () => {
|
|
3147
3147
|
*/
|
3148
3148
|
navigableHeaders: false,
|
3149
3149
|
/**
|
3150
|
-
* When set to `
|
3150
|
+
* When set to `false`, the `tabNavigation` option changes the behavior of the
|
3151
3151
|
* <kbd>Tab</kbd> and <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts. The Handsontable
|
3152
|
-
* no more captures that shortcuts to make the grid navigation available (`
|
3152
|
+
* no more captures that shortcuts to make the grid navigation available (`tabNavigation: true`)
|
3153
3153
|
* but returns control to the browser so the native page navigation is possible.
|
3154
3154
|
*
|
3155
3155
|
* @since 14.0.0
|
3156
3156
|
* @memberof Options#
|
3157
3157
|
* @type {boolean}
|
3158
|
-
* @default
|
3158
|
+
* @default true
|
3159
3159
|
* @category Core
|
3160
3160
|
*
|
3161
3161
|
* @example
|
3162
3162
|
* ```js
|
3163
3163
|
* // you can't navigate row and column headers using <kbd>Tab</kbd> or <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts
|
3164
|
-
*
|
3164
|
+
* tabNavigation: false,
|
3165
3165
|
*
|
3166
3166
|
* // default behavior: you can navigate row and column headers using <kbd>Tab</kbd> or <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts
|
3167
|
-
*
|
3167
|
+
* tabNavigation: true,
|
3168
3168
|
* ```
|
3169
3169
|
*/
|
3170
|
-
|
3170
|
+
tabNavigation: true,
|
3171
3171
|
/**
|
3172
3172
|
* @description
|
3173
3173
|
* The `nestedHeaders` option configures the [`NestedHeaders`](@/api/nestedHeaders.md) plugin.
|
@@ -3125,7 +3125,7 @@ export default (() => {
|
|
3125
3125
|
*/
|
3126
3126
|
multiColumnSorting: undefined,
|
3127
3127
|
/**
|
3128
|
-
* When set to `true`, the `navigableHeaders` option lets you navigate [row headers](@/guides/rows/row-header.md) and [column headers](@/guides/columns/column-header.md), using the arrow keys or the <kbd>**Tab**</kbd> key (if the [`
|
3128
|
+
* When set to `true`, the `navigableHeaders` option lets you navigate [row headers](@/guides/rows/row-header.md) and [column headers](@/guides/columns/column-header.md), using the arrow keys or the <kbd>**Tab**</kbd> key (if the [`tabNavigation`](#tabNavigation) option is set to `true`).
|
3129
3129
|
*
|
3130
3130
|
* @since 14.0.0
|
3131
3131
|
* @memberof Options#
|
@@ -3144,27 +3144,27 @@ export default (() => {
|
|
3144
3144
|
*/
|
3145
3145
|
navigableHeaders: false,
|
3146
3146
|
/**
|
3147
|
-
* When set to `
|
3147
|
+
* When set to `false`, the `tabNavigation` option changes the behavior of the
|
3148
3148
|
* <kbd>Tab</kbd> and <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts. The Handsontable
|
3149
|
-
* no more captures that shortcuts to make the grid navigation available (`
|
3149
|
+
* no more captures that shortcuts to make the grid navigation available (`tabNavigation: true`)
|
3150
3150
|
* but returns control to the browser so the native page navigation is possible.
|
3151
3151
|
*
|
3152
3152
|
* @since 14.0.0
|
3153
3153
|
* @memberof Options#
|
3154
3154
|
* @type {boolean}
|
3155
|
-
* @default
|
3155
|
+
* @default true
|
3156
3156
|
* @category Core
|
3157
3157
|
*
|
3158
3158
|
* @example
|
3159
3159
|
* ```js
|
3160
3160
|
* // you can't navigate row and column headers using <kbd>Tab</kbd> or <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts
|
3161
|
-
*
|
3161
|
+
* tabNavigation: false,
|
3162
3162
|
*
|
3163
3163
|
* // default behavior: you can navigate row and column headers using <kbd>Tab</kbd> or <kbd>Shift</kbd>+<kbd>Tab</kbd> keyboard shortcuts
|
3164
|
-
*
|
3164
|
+
* tabNavigation: true,
|
3165
3165
|
* ```
|
3166
3166
|
*/
|
3167
|
-
|
3167
|
+
tabNavigation: true,
|
3168
3168
|
/**
|
3169
3169
|
* @description
|
3170
3170
|
* 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: 14.0.0-next-
|
29
|
-
* Release date:
|
28
|
+
* Version: 14.0.0-next-bdc44e7-20231115
|
29
|
+
* Release date: 22/11/2023 (built at 15/11/2023 14:48:47)
|
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: 14.0.0-next-
|
29
|
-
* Release date:
|
28
|
+
* Version: 14.0.0-next-bdc44e7-20231115
|
29
|
+
* Release date: 22/11/2023 (built at 15/11/2023 14:48:47)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|