@handsontable/vue 14.3.0 → 14.4.0-next-0a79a1f-20240521

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.
@@ -81,7 +81,6 @@ function _defineProperties(target, props) {
81
81
  }
82
82
  function _createClass(Constructor, protoProps, staticProps) {
83
83
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
84
- if (staticProps) _defineProperties(Constructor, staticProps);
85
84
  Object.defineProperty(Constructor, "prototype", {
86
85
  writable: false
87
86
  });
@@ -341,33 +340,13 @@ function simpleEqual(objectA, objectB) {
341
340
  }
342
341
  }
343
342
 
344
- var version="14.3.0";
343
+ var version="14.4.0-next-0a79a1f-20240521";
345
344
 
346
345
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
347
346
 
348
- function createCommonjsModule(fn, module) {
349
- return module = { exports: {} }, fn(module, module.exports), module.exports;
350
- }
347
+ var lru = {};
351
348
 
352
- var lru = createCommonjsModule(function (module, exports) {
353
- /**
354
- * A doubly linked list-based Least Recently Used (LRU) cache. Will keep most
355
- * recently used items while discarding least recently used items when its limit
356
- * is reached.
357
- *
358
- * Licensed under MIT. Copyright (c) 2010 Rasmus Andersson <http://hunch.se/>
359
- * See README.md for details.
360
- *
361
- * Illustration of the design:
362
- *
363
- * entry entry entry entry
364
- * ______ ______ ______ ______
365
- * | head |.newer => | |.newer => | |.newer => | tail |
366
- * | A | | B | | C | | D |
367
- * |______| <= older.|______| <= older.|______| <= older.|______|
368
- *
369
- * removed <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- added
370
- */
349
+ (function (exports) {
371
350
  (function (g, f) {
372
351
  var e = exports ;
373
352
  f(e);
@@ -511,8 +490,7 @@ var lru = createCommonjsModule(function (module, exports) {
511
490
  return this._keymap.has(key);
512
491
  };
513
492
  });
514
- });
515
- var lru_1 = lru.LRUMap;
493
+ })(lru);
516
494
 
517
495
  var HotTable = {
518
496
  name: 'HotTable',
@@ -541,10 +519,10 @@ var HotTable = {
541
519
  },
542
520
  data: function data() {
543
521
  var thisComponent = this;
544
- var rendererCache = new lru_1(this.wrapperRendererCacheSize);
522
+ var rendererCache = new lru.LRUMap(this.wrapperRendererCacheSize);
545
523
  // Make the LRU cache destroy each removed component
546
524
  rendererCache.shift = function () {
547
- var entry = lru_1.prototype.shift.call(this);
525
+ var entry = lru.LRUMap.prototype.shift.call(this);
548
526
  entry[1].component.$destroy();
549
527
  return entry;
550
528
  };
@@ -750,11 +728,6 @@ var HotTable = {
750
728
  };
751
729
 
752
730
  function normalizeComponent(template, style, script, scopeId, isFunctionalTemplate, moduleIdentifier /* server only */, shadowMode, createInjector, createInjectorSSR, createInjectorShadow) {
753
- if (typeof shadowMode !== 'boolean') {
754
- createInjectorSSR = createInjector;
755
- createInjector = shadowMode;
756
- shadowMode = false;
757
- }
758
731
  // Vue.extend constructor export interop.
759
732
  const options = typeof script === 'function' ? script.options : script;
760
733
  // render functions
@@ -767,60 +740,6 @@ function normalizeComponent(template, style, script, scopeId, isFunctionalTempla
767
740
  options.functional = true;
768
741
  }
769
742
  }
770
- // scopedId
771
- if (scopeId) {
772
- options._scopeId = scopeId;
773
- }
774
- let hook;
775
- if (moduleIdentifier) {
776
- // server build
777
- hook = function (context) {
778
- // 2.3 injection
779
- context =
780
- context || // cached call
781
- (this.$vnode && this.$vnode.ssrContext) || // stateful
782
- (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext); // functional
783
- // 2.2 with runInNewContext: true
784
- if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
785
- context = __VUE_SSR_CONTEXT__;
786
- }
787
- // inject component styles
788
- if (style) {
789
- style.call(this, createInjectorSSR(context));
790
- }
791
- // register component module identifier for async chunk inference
792
- if (context && context._registeredComponents) {
793
- context._registeredComponents.add(moduleIdentifier);
794
- }
795
- };
796
- // used by ssr in case component is cached and beforeCreate
797
- // never gets called
798
- options._ssrRegister = hook;
799
- }
800
- else if (style) {
801
- hook = shadowMode
802
- ? function (context) {
803
- style.call(this, createInjectorShadow(context, this.$root.$options.shadowRoot));
804
- }
805
- : function (context) {
806
- style.call(this, createInjector(context));
807
- };
808
- }
809
- if (hook) {
810
- if (options.functional) {
811
- // register for functional component in vue file
812
- const originalRender = options.render;
813
- options.render = function renderWithStyleInjection(h, context) {
814
- hook.call(context);
815
- return originalRender(h, context);
816
- };
817
- }
818
- else {
819
- // inject component registration as beforeCreate hook
820
- const existing = options.beforeCreate;
821
- options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
822
- }
823
- }
824
743
  return script;
825
744
  }
826
745
 
@@ -844,8 +763,6 @@ var __vue_staticRenderFns__ = [];
844
763
  var __vue_inject_styles__$2 = undefined;
845
764
  /* scoped */
846
765
  var __vue_scope_id__$2 = undefined;
847
- /* module identifier */
848
- var __vue_module_identifier__$2 = undefined;
849
766
  /* functional template */
850
767
  var __vue_is_functional_template__$2 = false;
851
768
  /* style inject */
@@ -857,7 +774,7 @@ var __vue_is_functional_template__$2 = false;
857
774
  var __vue_component__$2 = /*#__PURE__*/normalizeComponent({
858
775
  render: __vue_render__,
859
776
  staticRenderFns: __vue_staticRenderFns__
860
- }, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, undefined, undefined, undefined);
777
+ }, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2);
861
778
 
862
779
  var HotColumn = {
863
780
  name: 'HotColumn',
@@ -904,8 +821,6 @@ var __vue_script__$1 = HotColumn;
904
821
  var __vue_inject_styles__$1 = undefined;
905
822
  /* scoped */
906
823
  var __vue_scope_id__$1 = undefined;
907
- /* module identifier */
908
- var __vue_module_identifier__$1 = undefined;
909
824
  /* functional template */
910
825
  var __vue_is_functional_template__$1 = undefined;
911
826
  /* style inject */
@@ -914,23 +829,23 @@ var __vue_is_functional_template__$1 = undefined;
914
829
 
915
830
  /* style inject shadow dom */
916
831
 
917
- var __vue_component__$1 = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, undefined, undefined, undefined);
832
+ var __vue_component__$1 = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1);
918
833
 
919
- /*! *****************************************************************************
920
- Copyright (c) Microsoft Corporation. All rights reserved.
921
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
922
- this file except in compliance with the License. You may obtain a copy of the
923
- License at http://www.apache.org/licenses/LICENSE-2.0
834
+ /******************************************************************************
835
+ Copyright (c) Microsoft Corporation.
924
836
 
925
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
926
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
927
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
928
- MERCHANTABLITY OR NON-INFRINGEMENT.
837
+ Permission to use, copy, modify, and/or distribute this software for any
838
+ purpose with or without fee is hereby granted.
929
839
 
930
- See the Apache Version 2.0 License for specific language governing permissions
931
- and limitations under the License.
840
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
841
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
842
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
843
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
844
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
845
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
846
+ PERFORMANCE OF THIS SOFTWARE.
932
847
  ***************************************************************************** */
933
- /* global Reflect, Promise */
848
+ /* global Reflect, Promise, SuppressedError, Symbol */
934
849
 
935
850
 
936
851
  function __decorate(decorators, target, key, desc) {
@@ -938,7 +853,12 @@ function __decorate(decorators, target, key, desc) {
938
853
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
939
854
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
940
855
  return c > 3 && r && Object.defineProperty(target, key, r), r;
941
- }
856
+ }
857
+
858
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
859
+ var e = new Error(message);
860
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
861
+ };
942
862
 
943
863
  function _typeof(obj) {
944
864
  if (typeof Symbol === "function" && _typeof$1(Symbol.iterator) === "symbol") {
@@ -1486,8 +1406,6 @@ var __vue_script__ = script;
1486
1406
  var __vue_inject_styles__ = undefined;
1487
1407
  /* scoped */
1488
1408
  var __vue_scope_id__ = undefined;
1489
- /* module identifier */
1490
- var __vue_module_identifier__ = undefined;
1491
1409
  /* functional template */
1492
1410
  var __vue_is_functional_template__ = undefined;
1493
1411
  /* style inject */
@@ -1496,7 +1414,7 @@ var __vue_is_functional_template__ = undefined;
1496
1414
 
1497
1415
  /* style inject shadow dom */
1498
1416
 
1499
- var __vue_component__ = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__, __vue_script__, __vue_scope_id__, __vue_is_functional_template__, __vue_module_identifier__, false, undefined, undefined, undefined);
1417
+ var __vue_component__ = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__, __vue_script__, __vue_scope_id__, __vue_is_functional_template__);
1500
1418
 
1501
1419
  exports.BaseEditorComponent = __vue_component__;
1502
1420
  exports.HotColumn = __vue_component__$1;
@@ -25,7 +25,7 @@
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: 14.3.0 (built at Tue Apr 16 2024 10:26:14 GMT+0200 (Central European Summer Time))
28
+ * Version: 14.4.0-next-0a79a1f-20240521 (built at Tue May 21 2024 10:49:30 GMT+0000 (Coordinated Universal Time))
29
29
  */
30
30
  (function (global, factory) {
31
31
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('handsontable/base'), require('vue')) :
@@ -109,7 +109,6 @@ function _defineProperties(target, props) {
109
109
  }
110
110
  function _createClass(Constructor, protoProps, staticProps) {
111
111
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
112
- if (staticProps) _defineProperties(Constructor, staticProps);
113
112
  Object.defineProperty(Constructor, "prototype", {
114
113
  writable: false
115
114
  });
@@ -369,33 +368,13 @@ function simpleEqual(objectA, objectB) {
369
368
  }
370
369
  }
371
370
 
372
- var version="14.3.0";
371
+ var version="14.4.0-next-0a79a1f-20240521";
373
372
 
374
373
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
375
374
 
376
- function createCommonjsModule(fn, module) {
377
- return module = { exports: {} }, fn(module, module.exports), module.exports;
378
- }
375
+ var lru = {};
379
376
 
380
- var lru = createCommonjsModule(function (module, exports) {
381
- /**
382
- * A doubly linked list-based Least Recently Used (LRU) cache. Will keep most
383
- * recently used items while discarding least recently used items when its limit
384
- * is reached.
385
- *
386
- * Licensed under MIT. Copyright (c) 2010 Rasmus Andersson <http://hunch.se/>
387
- * See README.md for details.
388
- *
389
- * Illustration of the design:
390
- *
391
- * entry entry entry entry
392
- * ______ ______ ______ ______
393
- * | head |.newer => | |.newer => | |.newer => | tail |
394
- * | A | | B | | C | | D |
395
- * |______| <= older.|______| <= older.|______| <= older.|______|
396
- *
397
- * removed <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- added
398
- */
377
+ (function (exports) {
399
378
  (function (g, f) {
400
379
  var e = exports ;
401
380
  f(e);
@@ -539,8 +518,7 @@ var lru = createCommonjsModule(function (module, exports) {
539
518
  return this._keymap.has(key);
540
519
  };
541
520
  });
542
- });
543
- var lru_1 = lru.LRUMap;
521
+ })(lru);
544
522
 
545
523
  var HotTable = {
546
524
  name: 'HotTable',
@@ -569,10 +547,10 @@ var HotTable = {
569
547
  },
570
548
  data: function data() {
571
549
  var thisComponent = this;
572
- var rendererCache = new lru_1(this.wrapperRendererCacheSize);
550
+ var rendererCache = new lru.LRUMap(this.wrapperRendererCacheSize);
573
551
  // Make the LRU cache destroy each removed component
574
552
  rendererCache.shift = function () {
575
- var entry = lru_1.prototype.shift.call(this);
553
+ var entry = lru.LRUMap.prototype.shift.call(this);
576
554
  entry[1].component.$destroy();
577
555
  return entry;
578
556
  };
@@ -778,11 +756,6 @@ var HotTable = {
778
756
  };
779
757
 
780
758
  function normalizeComponent(template, style, script, scopeId, isFunctionalTemplate, moduleIdentifier /* server only */, shadowMode, createInjector, createInjectorSSR, createInjectorShadow) {
781
- if (typeof shadowMode !== 'boolean') {
782
- createInjectorSSR = createInjector;
783
- createInjector = shadowMode;
784
- shadowMode = false;
785
- }
786
759
  // Vue.extend constructor export interop.
787
760
  const options = typeof script === 'function' ? script.options : script;
788
761
  // render functions
@@ -795,60 +768,6 @@ function normalizeComponent(template, style, script, scopeId, isFunctionalTempla
795
768
  options.functional = true;
796
769
  }
797
770
  }
798
- // scopedId
799
- if (scopeId) {
800
- options._scopeId = scopeId;
801
- }
802
- let hook;
803
- if (moduleIdentifier) {
804
- // server build
805
- hook = function (context) {
806
- // 2.3 injection
807
- context =
808
- context || // cached call
809
- (this.$vnode && this.$vnode.ssrContext) || // stateful
810
- (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext); // functional
811
- // 2.2 with runInNewContext: true
812
- if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
813
- context = __VUE_SSR_CONTEXT__;
814
- }
815
- // inject component styles
816
- if (style) {
817
- style.call(this, createInjectorSSR(context));
818
- }
819
- // register component module identifier for async chunk inference
820
- if (context && context._registeredComponents) {
821
- context._registeredComponents.add(moduleIdentifier);
822
- }
823
- };
824
- // used by ssr in case component is cached and beforeCreate
825
- // never gets called
826
- options._ssrRegister = hook;
827
- }
828
- else if (style) {
829
- hook = shadowMode
830
- ? function (context) {
831
- style.call(this, createInjectorShadow(context, this.$root.$options.shadowRoot));
832
- }
833
- : function (context) {
834
- style.call(this, createInjector(context));
835
- };
836
- }
837
- if (hook) {
838
- if (options.functional) {
839
- // register for functional component in vue file
840
- const originalRender = options.render;
841
- options.render = function renderWithStyleInjection(h, context) {
842
- hook.call(context);
843
- return originalRender(h, context);
844
- };
845
- }
846
- else {
847
- // inject component registration as beforeCreate hook
848
- const existing = options.beforeCreate;
849
- options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
850
- }
851
- }
852
771
  return script;
853
772
  }
854
773
 
@@ -872,8 +791,6 @@ var __vue_staticRenderFns__ = [];
872
791
  var __vue_inject_styles__$2 = undefined;
873
792
  /* scoped */
874
793
  var __vue_scope_id__$2 = undefined;
875
- /* module identifier */
876
- var __vue_module_identifier__$2 = undefined;
877
794
  /* functional template */
878
795
  var __vue_is_functional_template__$2 = false;
879
796
  /* style inject */
@@ -885,7 +802,7 @@ var __vue_is_functional_template__$2 = false;
885
802
  var __vue_component__$2 = /*#__PURE__*/normalizeComponent({
886
803
  render: __vue_render__,
887
804
  staticRenderFns: __vue_staticRenderFns__
888
- }, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, undefined, undefined, undefined);
805
+ }, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2);
889
806
 
890
807
  var HotColumn = {
891
808
  name: 'HotColumn',
@@ -932,8 +849,6 @@ var __vue_script__$1 = HotColumn;
932
849
  var __vue_inject_styles__$1 = undefined;
933
850
  /* scoped */
934
851
  var __vue_scope_id__$1 = undefined;
935
- /* module identifier */
936
- var __vue_module_identifier__$1 = undefined;
937
852
  /* functional template */
938
853
  var __vue_is_functional_template__$1 = undefined;
939
854
  /* style inject */
@@ -942,23 +857,23 @@ var __vue_is_functional_template__$1 = undefined;
942
857
 
943
858
  /* style inject shadow dom */
944
859
 
945
- var __vue_component__$1 = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, undefined, undefined, undefined);
860
+ var __vue_component__$1 = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1);
946
861
 
947
- /*! *****************************************************************************
948
- Copyright (c) Microsoft Corporation. All rights reserved.
949
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
950
- this file except in compliance with the License. You may obtain a copy of the
951
- License at http://www.apache.org/licenses/LICENSE-2.0
862
+ /******************************************************************************
863
+ Copyright (c) Microsoft Corporation.
952
864
 
953
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
954
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
955
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
956
- MERCHANTABLITY OR NON-INFRINGEMENT.
865
+ Permission to use, copy, modify, and/or distribute this software for any
866
+ purpose with or without fee is hereby granted.
957
867
 
958
- See the Apache Version 2.0 License for specific language governing permissions
959
- and limitations under the License.
868
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
869
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
870
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
871
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
872
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
873
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
874
+ PERFORMANCE OF THIS SOFTWARE.
960
875
  ***************************************************************************** */
961
- /* global Reflect, Promise */
876
+ /* global Reflect, Promise, SuppressedError, Symbol */
962
877
 
963
878
 
964
879
  function __decorate(decorators, target, key, desc) {
@@ -966,7 +881,12 @@ function __decorate(decorators, target, key, desc) {
966
881
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
967
882
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
968
883
  return c > 3 && r && Object.defineProperty(target, key, r), r;
969
- }
884
+ }
885
+
886
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
887
+ var e = new Error(message);
888
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
889
+ };
970
890
 
971
891
  function _typeof(obj) {
972
892
  if (typeof Symbol === "function" && _typeof$1(Symbol.iterator) === "symbol") {
@@ -1514,8 +1434,6 @@ var __vue_script__ = script;
1514
1434
  var __vue_inject_styles__ = undefined;
1515
1435
  /* scoped */
1516
1436
  var __vue_scope_id__ = undefined;
1517
- /* module identifier */
1518
- var __vue_module_identifier__ = undefined;
1519
1437
  /* functional template */
1520
1438
  var __vue_is_functional_template__ = undefined;
1521
1439
  /* style inject */
@@ -1524,7 +1442,7 @@ var __vue_is_functional_template__ = undefined;
1524
1442
 
1525
1443
  /* style inject shadow dom */
1526
1444
 
1527
- var __vue_component__ = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__, __vue_script__, __vue_scope_id__, __vue_is_functional_template__, __vue_module_identifier__, false, undefined, undefined, undefined);
1445
+ var __vue_component__ = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__, __vue_script__, __vue_scope_id__, __vue_is_functional_template__);
1528
1446
 
1529
1447
  exports.BaseEditorComponent = __vue_component__;
1530
1448
  exports.HotColumn = __vue_component__$1;