handsontable 0.0.0-next-ba9a67b-20240320 → 0.0.0-next-ea5e3ca-20240320
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/base.js +2 -2
- package/base.mjs +2 -2
- package/dataMap/metaManager/metaSchema.js +1 -1
- package/dataMap/metaManager/metaSchema.mjs +1 -1
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +8 -12
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +6 -6
- package/dist/handsontable.js +8 -12
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +2 -2
- package/plugins/dropdownMenu/dropdownMenu.js +2 -6
- package/plugins/dropdownMenu/dropdownMenu.mjs +2 -6
package/helpers/mixed.js
CHANGED
|
@@ -134,7 +134,7 @@ const domMessages = {
|
|
|
134
134
|
function _injectProductInfo(key, element) {
|
|
135
135
|
const hasValidType = !isEmpty(key);
|
|
136
136
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
|
137
|
-
const hotVersion = "0.0.0-next-
|
|
137
|
+
const hotVersion = "0.0.0-next-ea5e3ca-20240320";
|
|
138
138
|
let keyValidityDate;
|
|
139
139
|
let consoleMessageState = 'invalid';
|
|
140
140
|
let domMessageState = 'invalid';
|
package/helpers/mixed.mjs
CHANGED
|
@@ -124,7 +124,7 @@ const domMessages = {
|
|
|
124
124
|
export function _injectProductInfo(key, element) {
|
|
125
125
|
const hasValidType = !isEmpty(key);
|
|
126
126
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
|
127
|
-
const hotVersion = "0.0.0-next-
|
|
127
|
+
const hotVersion = "0.0.0-next-ea5e3ca-20240320";
|
|
128
128
|
let keyValidityDate;
|
|
129
129
|
let consoleMessageState = 'invalid';
|
|
130
130
|
let domMessageState = 'invalid';
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"url": "https://github.com/handsontable/handsontable/issues"
|
|
11
11
|
},
|
|
12
12
|
"author": "Handsoncode <hello@handsontable.com>",
|
|
13
|
-
"version": "0.0.0-next-
|
|
13
|
+
"version": "0.0.0-next-ea5e3ca-20240320",
|
|
14
14
|
"main": "index",
|
|
15
15
|
"module": "index.mjs",
|
|
16
16
|
"jsnext:main": "index.mjs",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"webpack-cli": "^5.1.4"
|
|
104
104
|
},
|
|
105
105
|
"optionalDependencies": {
|
|
106
|
-
"hyperformula": "^2.
|
|
106
|
+
"hyperformula": "^2.6.2"
|
|
107
107
|
},
|
|
108
108
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
109
109
|
"typings": "./index.d.ts",
|
|
@@ -39,15 +39,14 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
|
39
39
|
* @class DropdownMenu
|
|
40
40
|
*
|
|
41
41
|
* @description
|
|
42
|
-
* This plugin creates the Handsontable Dropdown Menu. It allows to create a new
|
|
42
|
+
* This plugin creates the Handsontable Dropdown Menu. It allows to create a new column at any place in the grid
|
|
43
43
|
* among [other features](@/guides/accessories-and-menus/context-menu/context-menu.md#context-menu-with-specific-options).
|
|
44
44
|
* Possible values:
|
|
45
45
|
* * `true` (to enable default options),
|
|
46
46
|
* * `false` (to disable completely).
|
|
47
47
|
*
|
|
48
48
|
* or array of any available strings:
|
|
49
|
-
* * `["
|
|
50
|
-
* "remove_row", "remove_col", "---------", "undo", "redo"]`.
|
|
49
|
+
* * `["col_left", "col_right", "remove_col", "---------", "undo", "redo"]`.
|
|
51
50
|
*
|
|
52
51
|
* See [the dropdown menu demo](@/guides/columns/column-menu/column-menu.md) for examples.
|
|
53
52
|
*
|
|
@@ -360,12 +359,9 @@ class DropdownMenu extends _base.BasePlugin {
|
|
|
360
359
|
* When no cells are selected, `executeCommand()` doesn't do anything.
|
|
361
360
|
*
|
|
362
361
|
* You can execute all predefined commands:
|
|
363
|
-
* * `'row_above'` - Insert row above
|
|
364
|
-
* * `'row_below'` - Insert row below
|
|
365
362
|
* * `'col_left'` - Insert column left
|
|
366
363
|
* * `'col_right'` - Insert column right
|
|
367
364
|
* * `'clear_column'` - Clear selected column
|
|
368
|
-
* * `'remove_row'` - Remove row
|
|
369
365
|
* * `'remove_col'` - Remove column
|
|
370
366
|
* * `'undo'` - Undo last action
|
|
371
367
|
* * `'redo'` - Redo last action
|
|
@@ -35,15 +35,14 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
|
35
35
|
* @class DropdownMenu
|
|
36
36
|
*
|
|
37
37
|
* @description
|
|
38
|
-
* This plugin creates the Handsontable Dropdown Menu. It allows to create a new
|
|
38
|
+
* This plugin creates the Handsontable Dropdown Menu. It allows to create a new column at any place in the grid
|
|
39
39
|
* among [other features](@/guides/accessories-and-menus/context-menu/context-menu.md#context-menu-with-specific-options).
|
|
40
40
|
* Possible values:
|
|
41
41
|
* * `true` (to enable default options),
|
|
42
42
|
* * `false` (to disable completely).
|
|
43
43
|
*
|
|
44
44
|
* or array of any available strings:
|
|
45
|
-
* * `["
|
|
46
|
-
* "remove_row", "remove_col", "---------", "undo", "redo"]`.
|
|
45
|
+
* * `["col_left", "col_right", "remove_col", "---------", "undo", "redo"]`.
|
|
47
46
|
*
|
|
48
47
|
* See [the dropdown menu demo](@/guides/columns/column-menu/column-menu.md) for examples.
|
|
49
48
|
*
|
|
@@ -356,12 +355,9 @@ export class DropdownMenu extends BasePlugin {
|
|
|
356
355
|
* When no cells are selected, `executeCommand()` doesn't do anything.
|
|
357
356
|
*
|
|
358
357
|
* You can execute all predefined commands:
|
|
359
|
-
* * `'row_above'` - Insert row above
|
|
360
|
-
* * `'row_below'` - Insert row below
|
|
361
358
|
* * `'col_left'` - Insert column left
|
|
362
359
|
* * `'col_right'` - Insert column right
|
|
363
360
|
* * `'clear_column'` - Clear selected column
|
|
364
|
-
* * `'remove_row'` - Remove row
|
|
365
361
|
* * `'remove_col'` - Remove column
|
|
366
362
|
* * `'undo'` - Undo last action
|
|
367
363
|
* * `'redo'` - Redo last action
|