handsontable 0.0.0-next-1aba9db-20231128 → 0.0.0-next-fc6b71a-20231129
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/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +935 -903
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +5 -5
- package/dist/handsontable.js +937 -905
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +5 -5
- package/focusManager.js +2 -2
- package/focusManager.mjs +2 -2
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/contextMenu/contextMenu.js +3 -0
- package/plugins/contextMenu/contextMenu.mjs +3 -0
- package/plugins/dropdownMenu/dropdownMenu.js +3 -0
- package/plugins/dropdownMenu/dropdownMenu.mjs +3 -0
- 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 +12 -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 = "0.0.0-next-
|
46
|
+
Handsontable.buildDate = "29/11/2023 14:08:42";
|
47
|
+
Handsontable.version = "0.0.0-next-fc6b71a-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 = "0.0.0-next-
|
38
|
+
Handsontable.buildDate = "29/11/2023 14:08:48";
|
39
|
+
Handsontable.version = "0.0.0-next-fc6b71a-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: 0.0.0-next-
|
29
|
-
* Release date: 31/08/2023 (built at
|
28
|
+
* Version: 0.0.0-next-fc6b71a-20231129
|
29
|
+
* Release date: 31/08/2023 (built at 29/11/2023 14:08:53)
|
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: 31/08/2023 (built at
|
28
|
+
* Version: 0.0.0-next-fc6b71a-20231129
|
29
|
+
* Release date: 31/08/2023 (built at 29/11/2023 14:08:53)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|