handsontable 0.0.0-next-9be9c5f-20241120 → 0.0.0-next-5709dd1-20241121
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 +7 -5
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +5 -5
- package/dist/handsontable.js +7 -5
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +5 -5
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/filters/filters.js +2 -0
- package/plugins/filters/filters.mjs +2 -0
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-5709dd1-20241121";
|
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-5709dd1-20241121";
|
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-5709dd1-20241121",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -900,10 +900,12 @@ function _onActionBarSubmit(submitType) {
|
|
900
900
|
* @param {object} command Menu item object (command).
|
901
901
|
*/
|
902
902
|
function _onComponentChange(component, command) {
|
903
|
+
const menu = this.dropdownMenuPlugin.menu;
|
903
904
|
this.updateDependentComponentsVisibility();
|
904
905
|
if (component.constructor === _condition.ConditionComponent && !command.inputsCount) {
|
905
906
|
this.setListeningDropdownMenu();
|
906
907
|
}
|
908
|
+
menu.updateMenuDimensions();
|
907
909
|
}
|
908
910
|
/**
|
909
911
|
* On component SelectUI closed listener.
|
@@ -893,10 +893,12 @@ function _onActionBarSubmit(submitType) {
|
|
893
893
|
* @param {object} command Menu item object (command).
|
894
894
|
*/
|
895
895
|
function _onComponentChange(component, command) {
|
896
|
+
const menu = this.dropdownMenuPlugin.menu;
|
896
897
|
this.updateDependentComponentsVisibility();
|
897
898
|
if (component.constructor === ConditionComponent && !command.inputsCount) {
|
898
899
|
this.setListeningDropdownMenu();
|
899
900
|
}
|
901
|
+
menu.updateMenuDimensions();
|
900
902
|
}
|
901
903
|
/**
|
902
904
|
* On component SelectUI closed listener.
|