handsontable 14.0.0-next-c648fa4-20231128 → 14.0.0-next-b112557-20231129
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/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +926 -901
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +4 -4
- package/dist/handsontable.js +928 -903
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +4 -4
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/shortcutContexts/commands/editor/closeAndSave.js +1 -1
- package/shortcutContexts/commands/editor/closeAndSave.mjs +1 -1
- package/shortcutContexts/commands/index.js +3 -2
- package/shortcutContexts/commands/index.mjs +3 -2
- package/shortcutContexts/commands/{selectAll.js → selectAllCells.js} +1 -1
- package/shortcutContexts/commands/{selectAll.mjs → selectAllCells.mjs} +1 -1
- package/shortcutContexts/commands/selectAllCellsAndHeaders.js +11 -0
- package/shortcutContexts/commands/selectAllCellsAndHeaders.mjs +8 -0
- package/shortcutContexts/editor.js +5 -1
- package/shortcutContexts/editor.mjs +5 -1
- package/shortcutContexts/grid.js +5 -2
- package/shortcutContexts/grid.mjs +5 -2
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 = "29/11/2023 10:37:31";
|
47
|
+
Handsontable.version = "14.0.0-next-b112557-20231129";
|
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 = "29/11/2023 10:37:37";
|
39
|
+
Handsontable.version = "14.0.0-next-b112557-20231129";
|
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: 14.0.0-next-
|
29
|
-
* Release date: 30/11/2023 (built at
|
28
|
+
* Version: 14.0.0-next-b112557-20231129
|
29
|
+
* Release date: 30/11/2023 (built at 29/11/2023 10:37:42)
|
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: 30/11/2023 (built at
|
28
|
+
* Version: 14.0.0-next-b112557-20231129
|
29
|
+
* Release date: 30/11/2023 (built at 29/11/2023 10:37:42)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|