@handsontable/vue 14.2.0 → 14.3.0-next-3fa6b18-20240410

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.
@@ -5,11 +5,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  var Handsontable = require('handsontable/base');
6
6
  var Vue = require('vue');
7
7
 
8
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
9
-
10
- var Handsontable__default = /*#__PURE__*/_interopDefaultLegacy(Handsontable);
11
- var Vue__default = /*#__PURE__*/_interopDefaultLegacy(Vue);
12
-
13
8
  function _callSuper(t, o, e) {
14
9
  return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
15
10
  }
@@ -54,7 +49,7 @@ function _toPrimitive(t, r) {
54
49
  }
55
50
  function _toPropertyKey(t) {
56
51
  var i = _toPrimitive(t, "string");
57
- return "symbol" == typeof i ? i : String(i);
52
+ return "symbol" == typeof i ? i : i + "";
58
53
  }
59
54
  function _typeof$1(o) {
60
55
  "@babel/helpers - typeof";
@@ -181,9 +176,9 @@ function preventInternalEditWatch(component) {
181
176
  * @returns {Object}
182
177
  */
183
178
  function propFactory(source) {
184
- var registeredHooks = Handsontable__default["default"].hooks.getRegistered();
179
+ var registeredHooks = Handsontable.hooks.getRegistered();
185
180
  var propSchema = {};
186
- Object.assign(propSchema, Handsontable__default["default"].DefaultSettings);
181
+ Object.assign(propSchema, Handsontable.DefaultSettings);
187
182
  for (var prop in propSchema) {
188
183
  propSchema[prop] = {
189
184
  "default": unassignedPropSymbol
@@ -319,20 +314,29 @@ function createVueComponent(vNode, parent, props, data) {
319
314
  * @returns {boolean} `true` if they're the same, `false` otherwise.
320
315
  */
321
316
  function simpleEqual(objectA, objectB) {
322
- var circularReplacer = function () {
323
- var seen = new WeakSet();
324
- return function (key, value) {
325
- if (_typeof$1(value) === 'object' && value !== null) {
326
- if (seen.has(value)) return;
327
- seen.add(value);
328
- }
329
- return value;
330
- };
331
- }();
332
- return JSON.stringify(objectA, circularReplacer) === JSON.stringify(objectB, circularReplacer);
317
+ var stringifyToJSON = function stringifyToJSON(val) {
318
+ var circularReplacer = function () {
319
+ var seen = new WeakSet();
320
+ return function (key, value) {
321
+ if (_typeof$1(value) === 'object' && value !== null) {
322
+ if (seen.has(value)) return;
323
+ seen.add(value);
324
+ }
325
+ return value;
326
+ };
327
+ }();
328
+ return JSON.stringify(val, circularReplacer);
329
+ };
330
+ if (typeof objectA === 'function' && typeof objectB === 'function') {
331
+ return objectA.toString() === objectB.toString();
332
+ } else if (_typeof$1(objectA) !== _typeof$1(objectB)) {
333
+ return false;
334
+ } else {
335
+ return stringifyToJSON(objectA) === stringifyToJSON(objectB);
336
+ }
333
337
  }
334
338
 
335
- var version="14.2.0";
339
+ var version="14.3.0-next-3fa6b18-20240410";
336
340
 
337
341
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
338
342
 
@@ -584,7 +588,7 @@ var HotTable = {
584
588
  newSettings.renderer = this.getRendererWrapper(globalRendererVNode, this);
585
589
  globalRendererVNode.child.$destroy();
586
590
  }
587
- this.hotInstance = new Handsontable__default["default"].Core(this.$el, newSettings);
591
+ this.hotInstance = new Handsontable.Core(this.$el, newSettings);
588
592
  this.hotInstance.init();
589
593
  preventInternalEditWatch(this);
590
594
  this.miscCache.currentSourceColumns = this.hotInstance.countSourceCols();
@@ -921,6 +925,8 @@ MERCHANTABLITY OR NON-INFRINGEMENT.
921
925
  See the Apache Version 2.0 License for specific language governing permissions
922
926
  and limitations under the License.
923
927
  ***************************************************************************** */
928
+ /* global Reflect, Promise */
929
+
924
930
 
925
931
  function __decorate(decorators, target, key, desc) {
926
932
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -1097,7 +1103,7 @@ function componentFactory(Component) {
1097
1103
  } // find super
1098
1104
 
1099
1105
  var superProto = Object.getPrototypeOf(Component.prototype);
1100
- var Super = superProto instanceof Vue__default["default"] ? superProto.constructor : Vue__default["default"];
1106
+ var Super = superProto instanceof Vue ? superProto.constructor : Vue;
1101
1107
  var Extended = Super.extend(options);
1102
1108
  forwardStaticMembers(Extended, Component, Super);
1103
1109
  if (reflectionIsSupported()) {
@@ -1159,7 +1165,6 @@ Component.registerHooks = function registerHooks(keys) {
1159
1165
  };
1160
1166
 
1161
1167
  var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1162
- _inherits(BaseEditorComponent, _Vue);
1163
1168
  function BaseEditorComponent() {
1164
1169
  var _this2;
1165
1170
  _classCallCheck(this, BaseEditorComponent);
@@ -1176,21 +1181,22 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1176
1181
  _this2.hot = null;
1177
1182
  return _this2;
1178
1183
  }
1179
- _createClass(BaseEditorComponent, [{
1184
+ _inherits(BaseEditorComponent, _Vue);
1185
+ return _createClass(BaseEditorComponent, [{
1180
1186
  key: "mounted",
1181
1187
  value: function mounted() {
1182
1188
  var _this = this;
1183
1189
  this.$data.hotCustomEditorClass = function () {
1184
1190
  var customEditorClass = /*#__PURE__*/function (_Handsontable$editors) {
1185
- _inherits(CustomEditor, _Handsontable$editors);
1186
1191
  function CustomEditor(hotInstance) {
1187
1192
  var _this3;
1188
1193
  _classCallCheck(this, CustomEditor);
1189
1194
  _this3 = _callSuper(this, CustomEditor, [hotInstance]);
1190
- _this.$data.hotCustomEditorInstance = _assertThisInitialized(_this3);
1195
+ _this.$data.hotCustomEditorInstance = _this3;
1191
1196
  return _this3;
1192
1197
  }
1193
- _createClass(CustomEditor, [{
1198
+ _inherits(CustomEditor, _Handsontable$editors);
1199
+ return _createClass(CustomEditor, [{
1194
1200
  key: "focus",
1195
1201
  value: function focus() {}
1196
1202
  }, {
@@ -1206,10 +1212,9 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1206
1212
  key: "close",
1207
1213
  value: function close() {}
1208
1214
  }]);
1209
- return CustomEditor;
1210
- }(Handsontable__default["default"].editors.BaseEditor);
1215
+ }(Handsontable.editors.BaseEditor);
1211
1216
  // Fill with the rest of the BaseEditorComponent methods
1212
- Object.getOwnPropertyNames(Handsontable__default["default"].editors.BaseEditor.prototype).forEach(function (propName) {
1217
+ Object.getOwnPropertyNames(Handsontable.editors.BaseEditor.prototype).forEach(function (propName) {
1213
1218
  if (propName === 'constructor') {
1214
1219
  return;
1215
1220
  }
@@ -1232,7 +1237,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1232
1237
  for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
1233
1238
  args[_key2] = arguments[_key2];
1234
1239
  }
1235
- (_Handsontable$editors2 = Handsontable__default["default"].editors.BaseEditor.prototype._fireCallbacks).call.apply(_Handsontable$editors2, [this.$data.hotCustomEditorInstance].concat(args));
1240
+ (_Handsontable$editors2 = Handsontable.editors.BaseEditor.prototype._fireCallbacks).call.apply(_Handsontable$editors2, [this.$data.hotCustomEditorInstance].concat(args));
1236
1241
  }
1237
1242
  }, {
1238
1243
  key: "beginEditing",
@@ -1241,7 +1246,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1241
1246
  for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
1242
1247
  args[_key3] = arguments[_key3];
1243
1248
  }
1244
- return (_Handsontable$editors3 = Handsontable__default["default"].editors.BaseEditor.prototype.beginEditing).call.apply(_Handsontable$editors3, [this.$data.hotCustomEditorInstance].concat(args));
1249
+ return (_Handsontable$editors3 = Handsontable.editors.BaseEditor.prototype.beginEditing).call.apply(_Handsontable$editors3, [this.$data.hotCustomEditorInstance].concat(args));
1245
1250
  }
1246
1251
  }, {
1247
1252
  key: "cancelChanges",
@@ -1250,7 +1255,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1250
1255
  for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
1251
1256
  args[_key4] = arguments[_key4];
1252
1257
  }
1253
- return (_Handsontable$editors4 = Handsontable__default["default"].editors.BaseEditor.prototype.cancelChanges).call.apply(_Handsontable$editors4, [this.$data.hotCustomEditorInstance].concat(args));
1258
+ return (_Handsontable$editors4 = Handsontable.editors.BaseEditor.prototype.cancelChanges).call.apply(_Handsontable$editors4, [this.$data.hotCustomEditorInstance].concat(args));
1254
1259
  }
1255
1260
  }, {
1256
1261
  key: "checkEditorSection",
@@ -1259,7 +1264,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1259
1264
  for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
1260
1265
  args[_key5] = arguments[_key5];
1261
1266
  }
1262
- return (_Handsontable$editors5 = Handsontable__default["default"].editors.BaseEditor.prototype.checkEditorSection).call.apply(_Handsontable$editors5, [this.$data.hotCustomEditorInstance].concat(args));
1267
+ return (_Handsontable$editors5 = Handsontable.editors.BaseEditor.prototype.checkEditorSection).call.apply(_Handsontable$editors5, [this.$data.hotCustomEditorInstance].concat(args));
1263
1268
  }
1264
1269
  }, {
1265
1270
  key: "close",
@@ -1268,7 +1273,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1268
1273
  for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {
1269
1274
  args[_key6] = arguments[_key6];
1270
1275
  }
1271
- return (_Handsontable$editors6 = Handsontable__default["default"].editors.BaseEditor.prototype.close).call.apply(_Handsontable$editors6, [this.$data.hotCustomEditorInstance].concat(args));
1276
+ return (_Handsontable$editors6 = Handsontable.editors.BaseEditor.prototype.close).call.apply(_Handsontable$editors6, [this.$data.hotCustomEditorInstance].concat(args));
1272
1277
  }
1273
1278
  }, {
1274
1279
  key: "discardEditor",
@@ -1277,7 +1282,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1277
1282
  for (var _len7 = arguments.length, args = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {
1278
1283
  args[_key7] = arguments[_key7];
1279
1284
  }
1280
- return (_Handsontable$editors7 = Handsontable__default["default"].editors.BaseEditor.prototype.discardEditor).call.apply(_Handsontable$editors7, [this.$data.hotCustomEditorInstance].concat(args));
1285
+ return (_Handsontable$editors7 = Handsontable.editors.BaseEditor.prototype.discardEditor).call.apply(_Handsontable$editors7, [this.$data.hotCustomEditorInstance].concat(args));
1281
1286
  }
1282
1287
  }, {
1283
1288
  key: "enableFullEditMode",
@@ -1286,7 +1291,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1286
1291
  for (var _len8 = arguments.length, args = new Array(_len8), _key8 = 0; _key8 < _len8; _key8++) {
1287
1292
  args[_key8] = arguments[_key8];
1288
1293
  }
1289
- return (_Handsontable$editors8 = Handsontable__default["default"].editors.BaseEditor.prototype.enableFullEditMode).call.apply(_Handsontable$editors8, [this.$data.hotCustomEditorInstance].concat(args));
1294
+ return (_Handsontable$editors8 = Handsontable.editors.BaseEditor.prototype.enableFullEditMode).call.apply(_Handsontable$editors8, [this.$data.hotCustomEditorInstance].concat(args));
1290
1295
  }
1291
1296
  }, {
1292
1297
  key: "extend",
@@ -1295,7 +1300,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1295
1300
  for (var _len9 = arguments.length, args = new Array(_len9), _key9 = 0; _key9 < _len9; _key9++) {
1296
1301
  args[_key9] = arguments[_key9];
1297
1302
  }
1298
- return (_Handsontable$editors9 = Handsontable__default["default"].editors.BaseEditor.prototype.extend).call.apply(_Handsontable$editors9, [this.$data.hotCustomEditorInstance].concat(args));
1303
+ return (_Handsontable$editors9 = Handsontable.editors.BaseEditor.prototype.extend).call.apply(_Handsontable$editors9, [this.$data.hotCustomEditorInstance].concat(args));
1299
1304
  }
1300
1305
  }, {
1301
1306
  key: "finishEditing",
@@ -1304,7 +1309,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1304
1309
  for (var _len10 = arguments.length, args = new Array(_len10), _key10 = 0; _key10 < _len10; _key10++) {
1305
1310
  args[_key10] = arguments[_key10];
1306
1311
  }
1307
- return (_Handsontable$editors10 = Handsontable__default["default"].editors.BaseEditor.prototype.finishEditing).call.apply(_Handsontable$editors10, [this.$data.hotCustomEditorInstance].concat(args));
1312
+ return (_Handsontable$editors10 = Handsontable.editors.BaseEditor.prototype.finishEditing).call.apply(_Handsontable$editors10, [this.$data.hotCustomEditorInstance].concat(args));
1308
1313
  }
1309
1314
  }, {
1310
1315
  key: "focus",
@@ -1313,7 +1318,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1313
1318
  for (var _len11 = arguments.length, args = new Array(_len11), _key11 = 0; _key11 < _len11; _key11++) {
1314
1319
  args[_key11] = arguments[_key11];
1315
1320
  }
1316
- return (_Handsontable$editors11 = Handsontable__default["default"].editors.BaseEditor.prototype.focus).call.apply(_Handsontable$editors11, [this.$data.hotCustomEditorInstance].concat(args));
1321
+ return (_Handsontable$editors11 = Handsontable.editors.BaseEditor.prototype.focus).call.apply(_Handsontable$editors11, [this.$data.hotCustomEditorInstance].concat(args));
1317
1322
  }
1318
1323
  }, {
1319
1324
  key: "getValue",
@@ -1322,7 +1327,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1322
1327
  for (var _len12 = arguments.length, args = new Array(_len12), _key12 = 0; _key12 < _len12; _key12++) {
1323
1328
  args[_key12] = arguments[_key12];
1324
1329
  }
1325
- return (_Handsontable$editors12 = Handsontable__default["default"].editors.BaseEditor.prototype.getValue).call.apply(_Handsontable$editors12, [this.$data.hotCustomEditorInstance].concat(args));
1330
+ return (_Handsontable$editors12 = Handsontable.editors.BaseEditor.prototype.getValue).call.apply(_Handsontable$editors12, [this.$data.hotCustomEditorInstance].concat(args));
1326
1331
  }
1327
1332
  }, {
1328
1333
  key: "init",
@@ -1331,7 +1336,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1331
1336
  for (var _len13 = arguments.length, args = new Array(_len13), _key13 = 0; _key13 < _len13; _key13++) {
1332
1337
  args[_key13] = arguments[_key13];
1333
1338
  }
1334
- return (_Handsontable$editors13 = Handsontable__default["default"].editors.BaseEditor.prototype.init).call.apply(_Handsontable$editors13, [this.$data.hotCustomEditorInstance].concat(args));
1339
+ return (_Handsontable$editors13 = Handsontable.editors.BaseEditor.prototype.init).call.apply(_Handsontable$editors13, [this.$data.hotCustomEditorInstance].concat(args));
1335
1340
  }
1336
1341
  }, {
1337
1342
  key: "isInFullEditMode",
@@ -1340,7 +1345,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1340
1345
  for (var _len14 = arguments.length, args = new Array(_len14), _key14 = 0; _key14 < _len14; _key14++) {
1341
1346
  args[_key14] = arguments[_key14];
1342
1347
  }
1343
- return (_Handsontable$editors14 = Handsontable__default["default"].editors.BaseEditor.prototype.isInFullEditMode).call.apply(_Handsontable$editors14, [this.$data.hotCustomEditorInstance].concat(args));
1348
+ return (_Handsontable$editors14 = Handsontable.editors.BaseEditor.prototype.isInFullEditMode).call.apply(_Handsontable$editors14, [this.$data.hotCustomEditorInstance].concat(args));
1344
1349
  }
1345
1350
  }, {
1346
1351
  key: "isOpened",
@@ -1349,7 +1354,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1349
1354
  for (var _len15 = arguments.length, args = new Array(_len15), _key15 = 0; _key15 < _len15; _key15++) {
1350
1355
  args[_key15] = arguments[_key15];
1351
1356
  }
1352
- return (_Handsontable$editors15 = Handsontable__default["default"].editors.BaseEditor.prototype.isOpened).call.apply(_Handsontable$editors15, [this.$data.hotCustomEditorInstance].concat(args));
1357
+ return (_Handsontable$editors15 = Handsontable.editors.BaseEditor.prototype.isOpened).call.apply(_Handsontable$editors15, [this.$data.hotCustomEditorInstance].concat(args));
1353
1358
  }
1354
1359
  }, {
1355
1360
  key: "isWaiting",
@@ -1358,7 +1363,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1358
1363
  for (var _len16 = arguments.length, args = new Array(_len16), _key16 = 0; _key16 < _len16; _key16++) {
1359
1364
  args[_key16] = arguments[_key16];
1360
1365
  }
1361
- return (_Handsontable$editors16 = Handsontable__default["default"].editors.BaseEditor.prototype.isWaiting).call.apply(_Handsontable$editors16, [this.$data.hotCustomEditorInstance].concat(args));
1366
+ return (_Handsontable$editors16 = Handsontable.editors.BaseEditor.prototype.isWaiting).call.apply(_Handsontable$editors16, [this.$data.hotCustomEditorInstance].concat(args));
1362
1367
  }
1363
1368
  }, {
1364
1369
  key: "open",
@@ -1367,7 +1372,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1367
1372
  for (var _len17 = arguments.length, args = new Array(_len17), _key17 = 0; _key17 < _len17; _key17++) {
1368
1373
  args[_key17] = arguments[_key17];
1369
1374
  }
1370
- return (_Handsontable$editors17 = Handsontable__default["default"].editors.BaseEditor.prototype.open).call.apply(_Handsontable$editors17, [this.$data.hotCustomEditorInstance].concat(args));
1375
+ return (_Handsontable$editors17 = Handsontable.editors.BaseEditor.prototype.open).call.apply(_Handsontable$editors17, [this.$data.hotCustomEditorInstance].concat(args));
1371
1376
  }
1372
1377
  }, {
1373
1378
  key: "prepare",
@@ -1379,7 +1384,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1379
1384
  this.$data.TD = TD;
1380
1385
  this.$data.originalValue = originalValue;
1381
1386
  this.$data.cellProperties = cellProperties;
1382
- return Handsontable__default["default"].editors.BaseEditor.prototype.prepare.call(this.$data.hotCustomEditorInstance, row, col, prop, TD, originalValue, cellProperties);
1387
+ return Handsontable.editors.BaseEditor.prototype.prepare.call(this.$data.hotCustomEditorInstance, row, col, prop, TD, originalValue, cellProperties);
1383
1388
  }
1384
1389
  }, {
1385
1390
  key: "saveValue",
@@ -1388,7 +1393,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1388
1393
  for (var _len18 = arguments.length, args = new Array(_len18), _key18 = 0; _key18 < _len18; _key18++) {
1389
1394
  args[_key18] = arguments[_key18];
1390
1395
  }
1391
- return (_Handsontable$editors18 = Handsontable__default["default"].editors.BaseEditor.prototype.saveValue).call.apply(_Handsontable$editors18, [this.$data.hotCustomEditorInstance].concat(args));
1396
+ return (_Handsontable$editors18 = Handsontable.editors.BaseEditor.prototype.saveValue).call.apply(_Handsontable$editors18, [this.$data.hotCustomEditorInstance].concat(args));
1392
1397
  }
1393
1398
  }, {
1394
1399
  key: "setValue",
@@ -1397,7 +1402,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1397
1402
  for (var _len19 = arguments.length, args = new Array(_len19), _key19 = 0; _key19 < _len19; _key19++) {
1398
1403
  args[_key19] = arguments[_key19];
1399
1404
  }
1400
- return (_Handsontable$editors19 = Handsontable__default["default"].editors.BaseEditor.prototype.setValue).call.apply(_Handsontable$editors19, [this.$data.hotCustomEditorInstance].concat(args));
1405
+ return (_Handsontable$editors19 = Handsontable.editors.BaseEditor.prototype.setValue).call.apply(_Handsontable$editors19, [this.$data.hotCustomEditorInstance].concat(args));
1401
1406
  }
1402
1407
  }, {
1403
1408
  key: "addHook",
@@ -1406,7 +1411,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1406
1411
  for (var _len20 = arguments.length, args = new Array(_len20), _key20 = 0; _key20 < _len20; _key20++) {
1407
1412
  args[_key20] = arguments[_key20];
1408
1413
  }
1409
- return (_Handsontable$editors20 = Handsontable__default["default"].editors.BaseEditor.prototype.addHook).call.apply(_Handsontable$editors20, [this.$data.hotCustomEditorInstance].concat(args));
1414
+ return (_Handsontable$editors20 = Handsontable.editors.BaseEditor.prototype.addHook).call.apply(_Handsontable$editors20, [this.$data.hotCustomEditorInstance].concat(args));
1410
1415
  }
1411
1416
  }, {
1412
1417
  key: "removeHooksByKey",
@@ -1415,7 +1420,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1415
1420
  for (var _len21 = arguments.length, args = new Array(_len21), _key21 = 0; _key21 < _len21; _key21++) {
1416
1421
  args[_key21] = arguments[_key21];
1417
1422
  }
1418
- return (_Handsontable$editors21 = Handsontable__default["default"].editors.BaseEditor.prototype.removeHooksByKey).call.apply(_Handsontable$editors21, [this.$data.hotCustomEditorInstance].concat(args));
1423
+ return (_Handsontable$editors21 = Handsontable.editors.BaseEditor.prototype.removeHooksByKey).call.apply(_Handsontable$editors21, [this.$data.hotCustomEditorInstance].concat(args));
1419
1424
  }
1420
1425
  }, {
1421
1426
  key: "clearHooks",
@@ -1424,7 +1429,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1424
1429
  for (var _len22 = arguments.length, args = new Array(_len22), _key22 = 0; _key22 < _len22; _key22++) {
1425
1430
  args[_key22] = arguments[_key22];
1426
1431
  }
1427
- return (_Handsontable$editors22 = Handsontable__default["default"].editors.BaseEditor.prototype.clearHooks).call.apply(_Handsontable$editors22, [this.$data.hotCustomEditorInstance].concat(args));
1432
+ return (_Handsontable$editors22 = Handsontable.editors.BaseEditor.prototype.clearHooks).call.apply(_Handsontable$editors22, [this.$data.hotCustomEditorInstance].concat(args));
1428
1433
  }
1429
1434
  }, {
1430
1435
  key: "getEditedCell",
@@ -1433,7 +1438,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1433
1438
  for (var _len23 = arguments.length, args = new Array(_len23), _key23 = 0; _key23 < _len23; _key23++) {
1434
1439
  args[_key23] = arguments[_key23];
1435
1440
  }
1436
- return (_Handsontable$editors23 = Handsontable__default["default"].editors.BaseEditor.prototype.getEditedCell).call.apply(_Handsontable$editors23, [this.$data.hotCustomEditorInstance].concat(args));
1441
+ return (_Handsontable$editors23 = Handsontable.editors.BaseEditor.prototype.getEditedCell).call.apply(_Handsontable$editors23, [this.$data.hotCustomEditorInstance].concat(args));
1437
1442
  }
1438
1443
  }, {
1439
1444
  key: "getEditedCellRect",
@@ -1442,7 +1447,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1442
1447
  for (var _len24 = arguments.length, args = new Array(_len24), _key24 = 0; _key24 < _len24; _key24++) {
1443
1448
  args[_key24] = arguments[_key24];
1444
1449
  }
1445
- return (_Handsontable$editors24 = Handsontable__default["default"].editors.BaseEditor.prototype.getEditedCellRect).call.apply(_Handsontable$editors24, [this.$data.hotCustomEditorInstance].concat(args));
1450
+ return (_Handsontable$editors24 = Handsontable.editors.BaseEditor.prototype.getEditedCellRect).call.apply(_Handsontable$editors24, [this.$data.hotCustomEditorInstance].concat(args));
1446
1451
  }
1447
1452
  }, {
1448
1453
  key: "getEditedCellsZIndex",
@@ -1451,7 +1456,7 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1451
1456
  for (var _len25 = arguments.length, args = new Array(_len25), _key25 = 0; _key25 < _len25; _key25++) {
1452
1457
  args[_key25] = arguments[_key25];
1453
1458
  }
1454
- return (_Handsontable$editors25 = Handsontable__default["default"].editors.BaseEditor.prototype.getEditedCellsZIndex).call.apply(_Handsontable$editors25, [this.$data.hotCustomEditorInstance].concat(args));
1459
+ return (_Handsontable$editors25 = Handsontable.editors.BaseEditor.prototype.getEditedCellsZIndex).call.apply(_Handsontable$editors25, [this.$data.hotCustomEditorInstance].concat(args));
1455
1460
  }
1456
1461
  }, {
1457
1462
  key: "getEditedCellsLayerClass",
@@ -1460,11 +1465,10 @@ var BaseEditorComponent = /*#__PURE__*/function (_Vue) {
1460
1465
  for (var _len26 = arguments.length, args = new Array(_len26), _key26 = 0; _key26 < _len26; _key26++) {
1461
1466
  args[_key26] = arguments[_key26];
1462
1467
  }
1463
- return (_Handsontable$editors26 = Handsontable__default["default"].editors.BaseEditor.prototype.getEditedCellsLayerClass).call.apply(_Handsontable$editors26, [this.$data.hotCustomEditorInstance].concat(args));
1468
+ return (_Handsontable$editors26 = Handsontable.editors.BaseEditor.prototype.getEditedCellsLayerClass).call.apply(_Handsontable$editors26, [this.$data.hotCustomEditorInstance].concat(args));
1464
1469
  }
1465
1470
  }]);
1466
- return BaseEditorComponent;
1467
- }(Vue__default["default"]);
1471
+ }(Vue);
1468
1472
  BaseEditorComponent = __decorate([Component({})], BaseEditorComponent);
1469
1473
  var script = BaseEditorComponent;
1470
1474
 
@@ -1492,4 +1496,4 @@ var __vue_component__ = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles_
1492
1496
  exports.BaseEditorComponent = __vue_component__;
1493
1497
  exports.HotColumn = __vue_component__$1;
1494
1498
  exports.HotTable = __vue_component__$2;
1495
- exports["default"] = __vue_component__$2;
1499
+ exports.default = __vue_component__$2;