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 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 = "14/11/2023 15:00:51";
47
- Handsontable.version = "14.0.0-next-4fd76bc-20231114";
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 = "14/11/2023 15:01:01";
39
- Handsontable.version = "14.0.0-next-4fd76bc-20231114";
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().disableTabNavigation) {
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
- disableTabNavigation,
91
+ tabNavigation,
92
92
  autoWrapRow
93
93
  } = hot.getSettings();
94
94
  isTabOrShiftTabPressed = false;
95
95
  isSavingCoordsEnabled = true;
96
- if (disableTabNavigation || !hot.selection.isSelected() || autoWrapRow && rowWrapState.wrapped && rowWrapState.flipped || !autoWrapRow && rowWrapState.wrapped) {
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().disableTabNavigation) {
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
- disableTabNavigation,
87
+ tabNavigation,
88
88
  autoWrapRow
89
89
  } = hot.getSettings();
90
90
  isTabOrShiftTabPressed = false;
91
91
  isSavingCoordsEnabled = true;
92
- if (disableTabNavigation || !hot.selection.isSelected() || autoWrapRow && rowWrapState.wrapped && rowWrapState.flipped || !autoWrapRow && rowWrapState.wrapped) {
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 [`disableTabNavigation`](#disabletabnavigation) option is set to `false`).
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 `true`, the `disableTabNavigation` option changes the behavior of the
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 (`disableTabNavigation: false`)
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 false
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
- * disableTabNavigation: true,
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
- * disableTabNavigation: false,
3167
+ * tabNavigation: true,
3168
3168
  * ```
3169
3169
  */
3170
- disableTabNavigation: false,
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 [`disableTabNavigation`](#disabletabnavigation) option is set to `false`).
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 `true`, the `disableTabNavigation` option changes the behavior of the
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 (`disableTabNavigation: false`)
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 false
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
- * disableTabNavigation: true,
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
- * disableTabNavigation: false,
3164
+ * tabNavigation: true,
3165
3165
  * ```
3166
3166
  */
3167
- disableTabNavigation: false,
3167
+ tabNavigation: true,
3168
3168
  /**
3169
3169
  * @description
3170
3170
  * 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: 14.0.0-next-4fd76bc-20231114
29
- * Release date: 15/11/2023 (built at 14/11/2023 15:01:09)
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-4fd76bc-20231114
29
- * Release date: 15/11/2023 (built at 14/11/2023 15:01:09)
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