handsontable 0.0.0-next-e6bff81-20221216 → 0.0.0-next-153a482-20221216
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 +8 -5
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +5 -5
- package/dist/handsontable.js +8 -5
- 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 +1 -1
- package/plugins/nestedRows/nestedRows.js +3 -0
- package/plugins/nestedRows/nestedRows.mjs +3 -0
package/helpers/mixed.js
CHANGED
@@ -152,7 +152,7 @@ var domMessages = {
|
|
152
152
|
function _injectProductInfo(key, element) {
|
153
153
|
var hasValidType = !isEmpty(key);
|
154
154
|
var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
155
|
-
var hotVersion = "0.0.0-next-
|
155
|
+
var hotVersion = "0.0.0-next-153a482-20221216";
|
156
156
|
var keyValidityDate;
|
157
157
|
var consoleMessageState = 'invalid';
|
158
158
|
var domMessageState = 'invalid';
|
package/helpers/mixed.mjs
CHANGED
@@ -142,7 +142,7 @@ var domMessages = {
|
|
142
142
|
export function _injectProductInfo(key, element) {
|
143
143
|
var hasValidType = !isEmpty(key);
|
144
144
|
var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
145
|
-
var hotVersion = "0.0.0-next-
|
145
|
+
var hotVersion = "0.0.0-next-153a482-20221216";
|
146
146
|
var keyValidityDate;
|
147
147
|
var consoleMessageState = 'invalid';
|
148
148
|
var 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-153a482-20221216",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -199,6 +199,9 @@ var NestedRows = /*#__PURE__*/function (_BasePlugin) {
|
|
199
199
|
this.addHook('beforeLoadData', function (data) {
|
200
200
|
return _this2.onBeforeLoadData(data);
|
201
201
|
});
|
202
|
+
this.addHook('beforeUpdateData', function (data) {
|
203
|
+
return _this2.onBeforeLoadData(data);
|
204
|
+
});
|
202
205
|
_get(_getPrototypeOf(NestedRows.prototype), "enablePlugin", this).call(this);
|
203
206
|
}
|
204
207
|
|
@@ -192,6 +192,9 @@ export var NestedRows = /*#__PURE__*/function (_BasePlugin) {
|
|
192
192
|
this.addHook('beforeLoadData', function (data) {
|
193
193
|
return _this2.onBeforeLoadData(data);
|
194
194
|
});
|
195
|
+
this.addHook('beforeUpdateData', function (data) {
|
196
|
+
return _this2.onBeforeLoadData(data);
|
197
|
+
});
|
195
198
|
_get(_getPrototypeOf(NestedRows.prototype), "enablePlugin", this).call(this);
|
196
199
|
}
|
197
200
|
|