handsontable 0.0.0-next-b209352-20250310 → 0.0.0-next-866c0ca-20250310
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.
- package/3rdparty/walkontable/src/table.js +1 -0
- package/3rdparty/walkontable/src/table.mjs +2 -1
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +180 -188
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +10 -10
- package/dist/handsontable.js +180 -188
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +8 -8
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/columnSorting/columnSorting.js +17 -1
- package/plugins/columnSorting/columnSorting.mjs +18 -2
- package/plugins/columnSorting/utils.js +14 -0
- package/plugins/columnSorting/utils.mjs +13 -0
- package/plugins/multiColumnSorting/multiColumnSorting.js +1 -21
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +1 -21
- package/styles/handsontable.css +2 -2
- package/styles/handsontable.min.css +2 -2
- package/styles/ht-theme-horizon.css +2 -2
- package/styles/ht-theme-horizon.min.css +2 -2
- package/styles/ht-theme-main.css +2 -2
- package/styles/ht-theme-main.min.css +2 -2
- package/plugins/multiColumnSorting/utils.js +0 -13
- package/plugins/multiColumnSorting/utils.mjs +0 -9
|
@@ -213,6 +213,7 @@ class Table {
|
|
|
213
213
|
holder = this.domBindings.rootDocument.createElement('div');
|
|
214
214
|
holder.style.position = 'relative';
|
|
215
215
|
holder.className = 'wtHolder';
|
|
216
|
+
(0, _element.setAttribute)(holder, [(0, _a11y.A11Y_TABINDEX)(-1)]);
|
|
216
217
|
if (parent) {
|
|
217
218
|
// if TABLE is detached (e.g. in Jasmine test), it has no parentNode so we cannot attach holder to it
|
|
218
219
|
parent.insertBefore(holder, hider);
|
|
@@ -13,7 +13,7 @@ import { Renderer } from "./renderer/index.mjs";
|
|
|
13
13
|
import ColumnUtils from "./utils/column.mjs";
|
|
14
14
|
import RowUtils from "./utils/row.mjs";
|
|
15
15
|
import { CLONE_TOP, CLONE_BOTTOM, CLONE_INLINE_START, CLONE_TOP_INLINE_START_CORNER, CLONE_BOTTOM_INLINE_START_CORNER } from "./overlay/index.mjs";
|
|
16
|
-
import { A11Y_PRESENTATION } from "../../../helpers/a11y.mjs";
|
|
16
|
+
import { A11Y_PRESENTATION, A11Y_TABINDEX } from "../../../helpers/a11y.mjs";
|
|
17
17
|
/**
|
|
18
18
|
* @todo These mixes are never added to the class Table, however their members are used here.
|
|
19
19
|
* @todo Continue: Potentially it works only, because some of these mixes are added to every inherited class.
|
|
@@ -209,6 +209,7 @@ class Table {
|
|
|
209
209
|
holder = this.domBindings.rootDocument.createElement('div');
|
|
210
210
|
holder.style.position = 'relative';
|
|
211
211
|
holder.className = 'wtHolder';
|
|
212
|
+
setAttribute(holder, [A11Y_TABINDEX(-1)]);
|
|
212
213
|
if (parent) {
|
|
213
214
|
// if TABLE is detached (e.g. in Jasmine test), it has no parentNode so we cannot attach holder to it
|
|
214
215
|
parent.insertBefore(holder, hider);
|
package/base.js
CHANGED
|
@@ -45,8 +45,8 @@ Handsontable.hooks = _hooks.Hooks.getSingleton();
|
|
|
45
45
|
Handsontable.CellCoords = _src.CellCoords;
|
|
46
46
|
Handsontable.CellRange = _src.CellRange;
|
|
47
47
|
Handsontable.packageName = 'handsontable';
|
|
48
|
-
Handsontable.buildDate = "10/03/2025
|
|
49
|
-
Handsontable.version = "0.0.0-next-
|
|
48
|
+
Handsontable.buildDate = "10/03/2025 13:49:23";
|
|
49
|
+
Handsontable.version = "0.0.0-next-866c0ca-20250310";
|
|
50
50
|
Handsontable.languages = {
|
|
51
51
|
dictionaryKeys: _registry.dictionaryKeys,
|
|
52
52
|
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 = "10/03/2025
|
|
39
|
-
Handsontable.version = "0.0.0-next-
|
|
38
|
+
Handsontable.buildDate = "10/03/2025 13:49:29";
|
|
39
|
+
Handsontable.version = "0.0.0-next-866c0ca-20250310";
|
|
40
40
|
Handsontable.languages = {
|
|
41
41
|
dictionaryKeys,
|
|
42
42
|
getLanguageDictionary,
|
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: 20/02/2025 (built at 10/03/2025
|
|
28
|
+
* Version: 0.0.0-next-866c0ca-20250310
|
|
29
|
+
* Release date: 20/02/2025 (built at 10/03/2025 13:49:50)
|
|
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-
|
|
29
|
-
* Release date: 20/02/2025 (built at 10/03/2025
|
|
28
|
+
* Version: 0.0.0-next-866c0ca-20250310
|
|
29
|
+
* Release date: 20/02/2025 (built at 10/03/2025 13:49:50)
|
|
30
30
|
*/
|
|
31
31
|
/**
|
|
32
32
|
* Fix for bootstrap styles
|