handsontable 13.1.0-next-17a6f77-20230822 → 13.1.0-next-73d7f62-20230829

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.
@@ -25,8 +25,8 @@
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: 13.1.0-next-17a6f77-20230822
29
- * Release date: 29/08/2023 (built at 22/08/2023 09:32:38)
28
+ * Version: 13.1.0-next-73d7f62-20230829
29
+ * Release date: 31/08/2023 (built at 29/08/2023 10:09:08)
30
30
  */
31
31
  (function webpackUniversalModuleDefinition(root, factory) {
32
32
  if(typeof exports === 'object' && typeof module === 'object')
@@ -105,8 +105,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
105
105
  Handsontable.CellCoords = _src.CellCoords;
106
106
  Handsontable.CellRange = _src.CellRange;
107
107
  Handsontable.packageName = 'handsontable';
108
- Handsontable.buildDate = "22/08/2023 09:32:38";
109
- Handsontable.version = "13.1.0-next-17a6f77-20230822";
108
+ Handsontable.buildDate = "29/08/2023 10:09:08";
109
+ Handsontable.version = "13.1.0-next-73d7f62-20230829";
110
110
  Handsontable.languages = {
111
111
  dictionaryKeys: _registry.dictionaryKeys,
112
112
  getLanguageDictionary: _registry.getLanguageDictionary,
@@ -4918,7 +4918,7 @@ module.exports = function (options, source) {
4918
4918
  "use strict";
4919
4919
 
4920
4920
  var check = function (it) {
4921
- return it && it.Math == Math && it;
4921
+ return it && it.Math === Math && it;
4922
4922
  };
4923
4923
 
4924
4924
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
@@ -4974,7 +4974,7 @@ var fails = __webpack_require__(13);
4974
4974
  // Detect IE8's incomplete defineProperty implementation
4975
4975
  module.exports = !fails(function () {
4976
4976
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
4977
- return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
4977
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
4978
4978
  });
4979
4979
 
4980
4980
 
@@ -5095,7 +5095,7 @@ module.exports = fails(function () {
5095
5095
  // eslint-disable-next-line no-prototype-builtins -- safe
5096
5096
  return !$Object('z').propertyIsEnumerable(0);
5097
5097
  }) ? function (it) {
5098
- return classof(it) == 'String' ? split(it, '') : $Object(it);
5098
+ return classof(it) === 'String' ? split(it, '') : $Object(it);
5099
5099
  } : $Object;
5100
5100
 
5101
5101
 
@@ -5349,7 +5349,7 @@ var $String = global.String;
5349
5349
 
5350
5350
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
5351
5351
  module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
5352
- var symbol = Symbol();
5352
+ var symbol = Symbol('symbol detection');
5353
5353
  // Chrome 38 Symbol has incorrect toString conversion
5354
5354
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
5355
5355
  // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
@@ -5517,10 +5517,10 @@ var store = __webpack_require__(43);
5517
5517
  (module.exports = function (key, value) {
5518
5518
  return store[key] || (store[key] = value !== undefined ? value : {});
5519
5519
  })('versions', []).push({
5520
- version: '3.32.0',
5520
+ version: '3.32.1',
5521
5521
  mode: IS_PURE ? 'pure' : 'global',
5522
5522
  copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
5523
- license: 'https://github.com/zloirock/core-js/blob/v3.32.0/LICENSE',
5523
+ license: 'https://github.com/zloirock/core-js/blob/v3.32.1/LICENSE',
5524
5524
  source: 'https://github.com/zloirock/core-js'
5525
5525
  });
5526
5526
 
@@ -5637,7 +5637,7 @@ module.exports = !DESCRIPTORS && !fails(function () {
5637
5637
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
5638
5638
  return Object.defineProperty(createElement('div'), 'a', {
5639
5639
  get: function () { return 7; }
5640
- }).a != 7;
5640
+ }).a !== 7;
5641
5641
  });
5642
5642
 
5643
5643
 
@@ -5744,7 +5744,7 @@ module.exports = DESCRIPTORS && fails(function () {
5744
5744
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
5745
5745
  value: 42,
5746
5746
  writable: false
5747
- }).prototype != 42;
5747
+ }).prototype !== 42;
5748
5748
  });
5749
5749
 
5750
5750
 
@@ -6139,10 +6139,10 @@ var createMethod = function (IS_INCLUDES) {
6139
6139
  var value;
6140
6140
  // Array#includes uses SameValueZero equality algorithm
6141
6141
  // eslint-disable-next-line no-self-compare -- NaN check
6142
- if (IS_INCLUDES && el != el) while (length > index) {
6142
+ if (IS_INCLUDES && el !== el) while (length > index) {
6143
6143
  value = O[index++];
6144
6144
  // eslint-disable-next-line no-self-compare -- NaN check
6145
- if (value != value) return true;
6145
+ if (value !== value) return true;
6146
6146
  // Array#indexOf ignores holes, Array#includes - not
6147
6147
  } else for (;length > index; index++) {
6148
6148
  if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
@@ -6288,8 +6288,8 @@ var replacement = /#|\.prototype\./;
6288
6288
 
6289
6289
  var isForced = function (feature, detection) {
6290
6290
  var value = data[normalize(feature)];
6291
- return value == POLYFILL ? true
6292
- : value == NATIVE ? false
6291
+ return value === POLYFILL ? true
6292
+ : value === NATIVE ? false
6293
6293
  : isCallable(detection) ? fails(detection)
6294
6294
  : !!detection;
6295
6295
  };
@@ -6351,7 +6351,7 @@ var classof = __webpack_require__(21);
6351
6351
  // https://tc39.es/ecma262/#sec-isarray
6352
6352
  // eslint-disable-next-line es/no-array-isarray -- safe
6353
6353
  module.exports = Array.isArray || function isArray(argument) {
6354
- return classof(argument) == 'Array';
6354
+ return classof(argument) === 'Array';
6355
6355
  };
6356
6356
 
6357
6357
 
@@ -6679,7 +6679,7 @@ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
6679
6679
  var $Object = Object;
6680
6680
 
6681
6681
  // ES3 wrong here
6682
- var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
6682
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
6683
6683
 
6684
6684
  // fallback for IE11 Script Access Denied error
6685
6685
  var tryGet = function (it, key) {
@@ -6697,7 +6697,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
6697
6697
  // builtinTag case
6698
6698
  : CORRECT_ARGUMENTS ? classofRaw(O)
6699
6699
  // ES3 arguments fallback
6700
- : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
6700
+ : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
6701
6701
  };
6702
6702
 
6703
6703
 
@@ -7041,9 +7041,10 @@ module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
7041
7041
 
7042
7042
  "use strict";
7043
7043
 
7044
+ var global = __webpack_require__(10);
7044
7045
  var classof = __webpack_require__(21);
7045
7046
 
7046
- module.exports = typeof process != 'undefined' && classof(process) == 'process';
7047
+ module.exports = classof(global.process) === 'process';
7047
7048
 
7048
7049
 
7049
7050
  /***/ }),
@@ -7085,7 +7086,7 @@ var Function = global.Function;
7085
7086
  // dirty IE9- and Bun 0.3.0- checks
7086
7087
  var WRAP = /MSIE .\./.test(USER_AGENT) || ENGINE_IS_BUN && (function () {
7087
7088
  var version = global.Bun.version.split('.');
7088
- return version.length < 3 || version[0] == 0 && (version[1] < 3 || version[1] == 3 && version[2] == 0);
7089
+ return version.length < 3 || version[0] === '0' && (version[1] < 3 || version[1] === '3' && version[2] === '0');
7089
7090
  })();
7090
7091
 
7091
7092
  // IE9- / Bun 0.3.0- setTimeout / setInterval / setImmediate additional parameters fix
@@ -8341,7 +8342,7 @@ const domMessages = {
8341
8342
  function _injectProductInfo(key, element) {
8342
8343
  const hasValidType = !isEmpty(key);
8343
8344
  const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
8344
- const hotVersion = "13.1.0-next-17a6f77-20230822";
8345
+ const hotVersion = "13.1.0-next-73d7f62-20230829";
8345
8346
  let keyValidityDate;
8346
8347
  let consoleMessageState = 'invalid';
8347
8348
  let domMessageState = 'invalid';
@@ -8349,7 +8350,7 @@ function _injectProductInfo(key, element) {
8349
8350
  const schemaValidity = _checkKeySchema(key);
8350
8351
  if (hasValidType || isNonCommercial || schemaValidity) {
8351
8352
  if (schemaValidity) {
8352
- const releaseDate = (0, _moment.default)("29/08/2023", 'DD/MM/YYYY');
8353
+ const releaseDate = (0, _moment.default)("31/08/2023", 'DD/MM/YYYY');
8353
8354
  const releaseDays = Math.floor(releaseDate.toDate().getTime() / 8.64e7);
8354
8355
  const keyValidityDays = _extractTime(key);
8355
8356
  keyValidityDate = (0, _moment.default)((keyValidityDays + 1) * 8.64e7, 'x').format('MMMM DD, YYYY');
@@ -9682,13 +9683,13 @@ var low = /^[\uD800-\uDBFF]$/;
9682
9683
  var hi = /^[\uDC00-\uDFFF]$/;
9683
9684
 
9684
9685
  var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL || fails(function () {
9685
- var symbol = getBuiltIn('Symbol')();
9686
+ var symbol = getBuiltIn('Symbol')('stringify detection');
9686
9687
  // MS Edge converts symbol values to JSON as {}
9687
- return $stringify([symbol]) != '[null]'
9688
+ return $stringify([symbol]) !== '[null]'
9688
9689
  // WebKit converts symbol values to JSON as null
9689
- || $stringify({ a: symbol }) != '{}'
9690
+ || $stringify({ a: symbol }) !== '{}'
9690
9691
  // V8 throws on boxed symbols
9691
- || $stringify(Object(symbol)) != '{}';
9692
+ || $stringify(Object(symbol)) !== '{}';
9692
9693
  });
9693
9694
 
9694
9695
  // https://github.com/tc39/proposal-well-formed-stringify
@@ -9753,7 +9754,7 @@ module.exports = function (replacer) {
9753
9754
  for (var i = 0; i < rawLength; i++) {
9754
9755
  var element = replacer[i];
9755
9756
  if (typeof element == 'string') push(keys, element);
9756
- else if (typeof element == 'number' || classof(element) == 'Number' || classof(element) == 'String') push(keys, toString(element));
9757
+ else if (typeof element == 'number' || classof(element) === 'Number' || classof(element) === 'String') push(keys, toString(element));
9757
9758
  }
9758
9759
  var keysLength = keys.length;
9759
9760
  var root = true;
@@ -15850,14 +15851,14 @@ module.exports = _toPropertyKey, module.exports.__esModule = true, module.export
15850
15851
  /* 138 */
15851
15852
  /***/ ((module) => {
15852
15853
 
15853
- function _typeof(obj) {
15854
+ function _typeof(o) {
15854
15855
  "@babel/helpers - typeof";
15855
15856
 
15856
- return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
15857
- return typeof obj;
15858
- } : function (obj) {
15859
- return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
15860
- }, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(obj);
15857
+ return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
15858
+ return typeof o;
15859
+ } : function (o) {
15860
+ return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
15861
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(o);
15861
15862
  }
15862
15863
  module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
15863
15864
 
@@ -16316,7 +16317,7 @@ var ArrayPrototype = Array.prototype;
16316
16317
 
16317
16318
  // Array.prototype[@@unscopables]
16318
16319
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
16319
- if (ArrayPrototype[UNSCOPABLES] == undefined) {
16320
+ if (ArrayPrototype[UNSCOPABLES] === undefined) {
16320
16321
  defineProperty(ArrayPrototype, UNSCOPABLES, {
16321
16322
  configurable: true,
16322
16323
  value: create(null)
@@ -33842,7 +33843,7 @@ function extendByMetaType(metaObject, settings) {
33842
33843
  if (canBeOverwritten(property, settingsToCompareWith)) {
33843
33844
  var _metaObject$_automati2;
33844
33845
  expandedType[property] = value;
33845
- (_metaObject$_automati2 = metaObject._automaticallyAssignedMetaProps) === null || _metaObject$_automati2 === void 0 ? void 0 : _metaObject$_automati2.add(property);
33846
+ (_metaObject$_automati2 = metaObject._automaticallyAssignedMetaProps) === null || _metaObject$_automati2 === void 0 || _metaObject$_automati2.add(property);
33846
33847
  }
33847
33848
  });
33848
33849
  (0, _object.extend)(metaObject, expandedType);
@@ -39284,7 +39285,7 @@ class CellMeta {
39284
39285
  setMeta(physicalRow, physicalColumn, key, value) {
39285
39286
  var _cellMeta$_automatica;
39286
39287
  const cellMeta = this.metas.obtain(physicalRow).obtain(physicalColumn);
39287
- (_cellMeta$_automatica = cellMeta._automaticallyAssignedMetaProps) === null || _cellMeta$_automatica === void 0 ? void 0 : _cellMeta$_automatica.delete(key);
39288
+ (_cellMeta$_automatica = cellMeta._automaticallyAssignedMetaProps) === null || _cellMeta$_automatica === void 0 || _cellMeta$_automatica.delete(key);
39288
39289
  cellMeta[key] = value;
39289
39290
  }
39290
39291
 
@@ -48886,7 +48887,7 @@ class CollapsibleColumns extends _base.BasePlugin {
48886
48887
  }
48887
48888
  } else {
48888
48889
  var _collapsibleElement;
48889
- (_collapsibleElement = collapsibleElement) === null || _collapsibleElement === void 0 ? void 0 : _collapsibleElement.remove();
48890
+ (_collapsibleElement = collapsibleElement) === null || _collapsibleElement === void 0 || _collapsibleElement.remove();
48890
48891
  }
48891
48892
  }
48892
48893
 
@@ -49684,7 +49685,7 @@ class ColumnSorting extends _base.BasePlugin {
49684
49685
  var _this$columnStatesMan;
49685
49686
  // TODO: Probably not supported yet by ESLint: https://github.com/eslint/eslint/issues/11045
49686
49687
  // eslint-disable-next-line no-unused-expressions
49687
- (_this$columnStatesMan = this.columnStatesManager) === null || _this$columnStatesMan === void 0 ? void 0 : _this$columnStatesMan.destroy();
49688
+ (_this$columnStatesMan = this.columnStatesManager) === null || _this$columnStatesMan === void 0 || _this$columnStatesMan.destroy();
49688
49689
  super.destroy();
49689
49690
  }
49690
49691
  }
@@ -60089,7 +60090,7 @@ class Filters extends _base.BasePlugin {
60089
60090
  const selectedColumn = this.getSelectedColumn();
60090
60091
  if (selectedColumn === null) {
60091
60092
  var _this$dropdownMenuPlu2;
60092
- (_this$dropdownMenuPlu2 = this.dropdownMenuPlugin) === null || _this$dropdownMenuPlu2 === void 0 ? void 0 : _this$dropdownMenuPlu2.close();
60093
+ (_this$dropdownMenuPlu2 = this.dropdownMenuPlugin) === null || _this$dropdownMenuPlu2 === void 0 || _this$dropdownMenuPlu2.close();
60093
60094
  return;
60094
60095
  }
60095
60096
  const {
@@ -60119,7 +60120,7 @@ class Filters extends _base.BasePlugin {
60119
60120
  this.filtersRowsMap.clear();
60120
60121
  this.filter();
60121
60122
  }
60122
- (_this$dropdownMenuPlu3 = this.dropdownMenuPlugin) === null || _this$dropdownMenuPlu3 === void 0 ? void 0 : _this$dropdownMenuPlu3.close();
60123
+ (_this$dropdownMenuPlu3 = this.dropdownMenuPlugin) === null || _this$dropdownMenuPlu3 === void 0 || _this$dropdownMenuPlu3.close();
60123
60124
  }
60124
60125
 
60125
60126
  /**
@@ -64549,7 +64550,7 @@ class Formulas extends _base.BasePlugin {
64549
64550
  if ((renderSelf || sheetId !== this.sheetId) && affectedSheetIds.has(sheetId)) {
64550
64551
  var _relatedHot$view;
64551
64552
  relatedHot.render();
64552
- (_relatedHot$view = relatedHot.view) === null || _relatedHot$view === void 0 ? void 0 : _relatedHot$view.adjustElementsSize();
64553
+ (_relatedHot$view = relatedHot.view) === null || _relatedHot$view === void 0 || _relatedHot$view.adjustElementsSize();
64553
64554
  }
64554
64555
  });
64555
64556
  }
@@ -69191,12 +69192,6 @@ class ManualColumnResize extends _base.BasePlugin {
69191
69192
  return;
69192
69193
  }
69193
69194
  this.currentTH = TH;
69194
- const hotRootElement = this.hot.rootElement;
69195
-
69196
- // Handling elements placed only inside columns header of the main instance.
69197
- if ((0, _element.overlayContainsElement)('top_inline_start_corner', this.currentTH, hotRootElement) === false && (0, _element.overlayContainsElement)('top', this.currentTH, hotRootElement) === false) {
69198
- return;
69199
- }
69200
69195
  const {
69201
69196
  _wt: wt
69202
69197
  } = this.hot.view;
@@ -81378,7 +81373,7 @@ function removeExposedUndoRedoMethods(instance) {
81378
81373
  const hook = _pluginHooks.default.getSingleton();
81379
81374
  hook.add('afterUpdateSettings', function () {
81380
81375
  var _this$getPlugin;
81381
- (_this$getPlugin = this.getPlugin('undoRedo')) === null || _this$getPlugin === void 0 ? void 0 : _this$getPlugin.init();
81376
+ (_this$getPlugin = this.getPlugin('undoRedo')) === null || _this$getPlugin === void 0 || _this$getPlugin.init();
81382
81377
  });
81383
81378
  hook.register('beforeUndo');
81384
81379
  hook.register('afterUndo');
@@ -25,8 +25,8 @@
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: 13.1.0-next-17a6f77-20230822
29
- * Release date: 29/08/2023 (built at 22/08/2023 09:33:01)
28
+ * Version: 13.1.0-next-73d7f62-20230829
29
+ * Release date: 31/08/2023 (built at 29/08/2023 10:09:30)
30
30
  */.handsontable .table td,.handsontable .table th{border-top:none}.handsontable tr{background:#fff}.handsontable td{background-color:inherit}.handsontable .table caption+thead tr:first-child td,.handsontable .table caption+thead tr:first-child th,.handsontable .table colgroup+thead tr:first-child td,.handsontable .table colgroup+thead tr:first-child th,.handsontable .table thead:first-child tr:first-child td,.handsontable .table thead:first-child tr:first-child th{border-top:1px solid #ccc}.handsontable .table-bordered{border:0;border-collapse:separate}.handsontable .table-bordered td,.handsontable .table-bordered th{border-left:none}.handsontable .table-bordered td:first-child,.handsontable .table-bordered th:first-child{border-left:1px solid #ccc}.handsontable .table>tbody>tr>td,.handsontable .table>tbody>tr>th,.handsontable .table>tfoot>tr>td,.handsontable .table>tfoot>tr>th,.handsontable .table>thead>tr>td,.handsontable .table>thead>tr>th{line-height:21px;padding:0}.col-lg-1.handsontable,.col-lg-10.handsontable,.col-lg-11.handsontable,.col-lg-12.handsontable,.col-lg-2.handsontable,.col-lg-3.handsontable,.col-lg-4.handsontable,.col-lg-5.handsontable,.col-lg-6.handsontable,.col-lg-7.handsontable,.col-lg-8.handsontable,.col-lg-9.handsontable,.col-md-1.handsontable,.col-md-10.handsontable,.col-md-11.handsontable,.col-md-12.handsontable,.col-md-2.handsontable,.col-md-3.handsontable,.col-md-4.handsontable,.col-md-5.handsontable,.col-md-6.handsontable,.col-md-7.handsontable,.col-md-8.handsontable,.col-md-9.handsontable .col-sm-1.handsontable,.col-sm-10.handsontable,.col-sm-11.handsontable,.col-sm-12.handsontable,.col-sm-2.handsontable,.col-sm-3.handsontable,.col-sm-4.handsontable,.col-sm-5.handsontable,.col-sm-6.handsontable,.col-sm-7.handsontable,.col-sm-8.handsontable,.col-sm-9.handsontable .col-xs-1.handsontable,.col-xs-10.handsontable,.col-xs-11.handsontable,.col-xs-12.handsontable,.col-xs-2.handsontable,.col-xs-3.handsontable,.col-xs-4.handsontable,.col-xs-5.handsontable,.col-xs-6.handsontable,.col-xs-7.handsontable,.col-xs-8.handsontable,.col-xs-9.handsontable{padding-left:0;padding-right:0}.handsontable .table-striped>tbody>tr:nth-of-type(2n){background-color:#fff}.handsontable{position:relative}.handsontable .hide{display:none}.handsontable .relative{position:relative}.handsontable .wtHider{width:0}.handsontable .wtSpreader{height:auto;position:relative;width:0}.handsontable div,.handsontable input,.handsontable table,.handsontable tbody,.handsontable td,.handsontable textarea,.handsontable th,.handsontable thead{box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box}.handsontable input,.handsontable textarea{min-height:auto}.handsontable table.htCore{border-collapse:separate;border-spacing:0;border-width:0;cursor:default;margin:0;max-height:none;max-width:none;outline-width:0;table-layout:fixed;width:0}.handsontable col,.handsontable col.rowHeader{width:50px}.handsontable td,.handsontable th{background-color:#fff;border-bottom:1px solid #ccc;border-left-width:0;border-right:1px solid #ccc;border-top-width:0;empty-cells:show;height:22px;line-height:21px;outline-width:0;overflow:hidden;padding:0 4px;vertical-align:top;white-space:pre-wrap}[dir=rtl].handsontable td,[dir=rtl].handsontable th{border-left:1px solid #ccc;border-right-width:0}.handsontable th:last-child{border-bottom:1px solid #ccc;border-left:none;border-right:1px solid #ccc}[dir=rtl].handsontable th:last-child{border-left:1px solid #ccc;border-right:none}.handsontable td:first-of-type,.handsontable th:first-child,.handsontable th:nth-child(2){border-left:1px solid #ccc}[dir=rtl].handsontable td:first-of-type,[dir=rtl].handsontable th:first-child,[dir=rtl].handsontable th:nth-child(2){border-right:1px solid #ccc}.handsontable .ht_clone_top th:nth-child(2){border-left-width:0;border-right:1px solid #ccc}[dir=rtl].handsontable .ht_clone_top th:nth-child(2){border-left:1px solid #ccc;border-right-width:0}.handsontable.htRowHeaders thead tr th:nth-child(2){border-left:1px solid #ccc}[dir=rtl].handsontable.htRowHeaders thead tr th:nth-child(2){border-right:1px solid #ccc}.handsontable tr:first-child td,.handsontable tr:first-child th{border-top:1px solid #ccc}.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable tbody tr th,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top) thead tr th:first-child{border-left:1px solid #ccc;border-right-width:0}[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable tbody tr th,[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top) thead tr th:first-child{border-left-width:0;border-right:1px solid #ccc}.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr:last-child th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr:last-child th{border-bottom-width:0}.handsontable th{background-color:#f0f0f0;color:#222;font-weight:400;text-align:center;white-space:nowrap}.handsontable thead th{padding:0}.handsontable th.active{background-color:#ccc}.handsontable thead th .relative{padding:2px 4px}.handsontable span.colHeader{display:inline-block;line-height:1.1}.handsontable .wtBorder{font-size:0;position:absolute}.handsontable .wtBorder.hidden{display:none!important}.handsontable .wtBorder.current{z-index:10}.handsontable .wtBorder.area{z-index:8}.handsontable .wtBorder.fill{z-index:6}.handsontable .wtBorder.corner{cursor:crosshair;font-size:0}.ht_clone_master{z-index:100}.ht_clone_inline_start{z-index:120}.ht_clone_bottom{z-index:130}.ht_clone_bottom_inline_start_corner{z-index:150}.ht_clone_top{z-index:160}.ht_clone_top_inline_start_corner{z-index:180}.handsontable col.hidden{width:0!important}.handsontable tr.hidden,.handsontable tr.hidden td,.handsontable tr.hidden th{display:none}.ht_clone_bottom,.ht_clone_inline_start,.ht_clone_top,.ht_master{overflow:hidden}.ht_master .wtHolder{overflow:auto}.handsontable .ht_clone_inline_start thead,.handsontable .ht_master thead,.handsontable .ht_master tr th{visibility:hidden}.ht_clone_bottom .wtHolder,.ht_clone_inline_start .wtHolder,.ht_clone_top .wtHolder{overflow:hidden}.handsontable{color:#373737;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:13px;font-weight:400;touch-action:manipulation}.handsontable a{color:#104acc}.handsontable.htAutoSize{left:-99000px;position:absolute;top:-99000px;visibility:hidden}.handsontable td.htInvalid{background-color:#ff4c42!important}.handsontable td.htNoWrap{white-space:nowrap}.hot-display-license-info{color:#373737;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:10px;font-weight:400;padding:5px 0 3px;text-align:left}.hot-display-license-info a{color:#104acc;font-size:10px}.handsontable .manualColumnResizer{cursor:col-resize;height:25px;position:absolute;top:0;width:5px;z-index:210}.handsontable .manualRowResizer{cursor:row-resize;height:5px;left:0;position:absolute;width:50px;z-index:210}.handsontable .manualColumnResizer.active,.handsontable .manualColumnResizer:hover,.handsontable .manualRowResizer.active,.handsontable .manualRowResizer:hover{background-color:#34a9db}.handsontable .manualColumnResizerGuide{background-color:#34a9db;border-left:none;border-right:1px dashed #777;display:none;margin-left:5px;margin-right:unset;position:absolute;right:unset;top:0;width:0}[dir=rtl].handsontable .manualColumnResizerGuide{border-left:1px dashed #777;border-right:none;left:unset;margin-left:unset;margin-right:5px}.handsontable .manualRowResizerGuide{background-color:#34a9db;border-bottom:1px dashed #777;bottom:0;display:none;height:0;left:0;margin-top:5px;position:absolute}.handsontable .manualColumnResizerGuide.active,.handsontable .manualRowResizerGuide.active{display:block;z-index:209}.handsontable .columnSorting{position:relative}.handsontable .columnSorting.sortAction:hover{cursor:pointer;text-decoration:underline}.handsontable span.colHeader.columnSorting:before{background-position-x:right;background-repeat:no-repeat;background-size:contain;content:"";height:10px;left:unset;margin-top:-6px;padding-left:8px;padding-right:0;position:absolute;right:-9px;top:50%;width:5px}[dir=rtl].handsontable span.colHeader.columnSorting:before{background-position-x:left;left:-9px;padding-left:0;padding-right:8px;right:unset}.handsontable span.colHeader.columnSorting.ascending:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC)}.handsontable span.colHeader.columnSorting.descending:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=)}.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled):after{content:"*";display:inline-block;padding-right:20px;position:relative}.handsontable td.area,.handsontable td.area-1,.handsontable td.area-2,.handsontable td.area-3,.handsontable td.area-4,.handsontable td.area-5,.handsontable td.area-6,.handsontable td.area-7{position:relative}.handsontable td.area-1:before,.handsontable td.area-2:before,.handsontable td.area-3:before,.handsontable td.area-4:before,.handsontable td.area-5:before,.handsontable td.area-6:before,.handsontable td.area-7:before,.handsontable td.area:before{background:#005eff;bottom:0;bottom:-100%\9;content:"";left:0;position:absolute;right:0;top:0}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.handsontable td.area-1:before,.handsontable td.area-2:before,.handsontable td.area-3:before,.handsontable td.area-4:before,.handsontable td.area-5:before,.handsontable td.area-6:before,.handsontable td.area-7:before,.handsontable td.area:before{bottom:-100%}}.handsontable td.area:before{opacity:.1}.handsontable td.area-1:before{opacity:.2}.handsontable td.area-2:before{opacity:.27}.handsontable td.area-3:before{opacity:.35}.handsontable td.area-4:before{opacity:.41}.handsontable td.area-5:before{opacity:.47}.handsontable td.area-6:before{opacity:.54}.handsontable td.area-7:before{opacity:.58}.handsontable tbody th.ht__highlight,.handsontable thead th.ht__highlight{background-color:#dcdcdc}.handsontable tbody th.ht__active_highlight,.handsontable thead th.ht__active_highlight{background-color:#8eb0e7;color:#000}.handsontableInput{background-color:#fff;border:none;border-radius:0;box-shadow:inset 0 0 0 2px #5292f7;color:#000;display:block;font-family:inherit;font-size:inherit;line-height:21px;margin:0;outline-width:0;padding:1px 5px 0;resize:none}.handsontableInput:focus{outline:none}.handsontableInputHolder{left:0;position:absolute;top:0}.htSelectEditor{-webkit-appearance:menulist-button!important;position:absolute;width:auto}.htSelectEditor:focus{outline:none}.handsontable .htDimmed{color:#777}.handsontable .htSubmenu{position:relative}.handsontable .htSubmenu :after{color:#777;content:"▶";font-size:9px;position:absolute;right:5px}[dir=rtl].handsontable .htSubmenu :after{content:""}[dir=rtl].handsontable .htSubmenu :before{color:#777;content:"◀";font-size:9px;left:5px;position:absolute}.handsontable .htLeft{text-align:left}.handsontable .htCenter{text-align:center}.handsontable .htRight{text-align:right}.handsontable .htJustify{text-align:justify}.handsontable .htTop{vertical-align:top}.handsontable .htMiddle{vertical-align:middle}.handsontable .htBottom{vertical-align:bottom}.handsontable .htPlaceholder{color:#999}.handsontable.listbox{margin:0}.handsontable.listbox .ht_master table{background:#fff;border:1px solid #ccc;border-collapse:separate}.handsontable.listbox td,.handsontable.listbox th,.handsontable.listbox tr:first-child td,.handsontable.listbox tr:first-child th,.handsontable.listbox tr:last-child th{border-color:transparent!important}.handsontable.listbox td,.handsontable.listbox th{text-overflow:ellipsis;white-space:nowrap}.handsontable.listbox td.htDimmed{color:inherit;cursor:default;font-style:inherit}.handsontable.listbox .wtBorder{visibility:hidden}.handsontable.listbox tr td.current,.handsontable.listbox tr:hover td{background:#eee}.ht_editor_hidden{z-index:-1}.ht_editor_visible{z-index:200}.handsontable td.htSearchResult{background:#fcedd9;color:#583707}.handsontable .collapsibleIndicator{background:#eee;border:1px solid #a6a6a6;border-radius:10px;-webkit-box-shadow:0 0 0 6px #eee;-moz-box-shadow:0 0 0 6px #eee;box-shadow:0 0 0 6px #eee;color:#222;cursor:pointer;font-size:10px;height:10px;left:unset;line-height:8px;position:absolute;right:5px;text-align:center;top:50%;transform:translateY(-50%);width:10px}[dir=rtl].handsontable .collapsibleIndicator{left:5px;right:unset}.handsontable.mobile,.handsontable.mobile .wtHolder{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-overflow-scrolling:touch;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.handsontable.mobile .handsontableInput:focus{-webkit-appearance:none;-webkit-box-shadow:inset 0 0 0 2px #5292f7;-moz-box-shadow:inset 0 0 0 2px #5292f7;box-shadow:inset 0 0 0 2px #5292f7}.handsontable .bottomSelectionHandle,.handsontable .bottomSelectionHandle-HitArea,.handsontable .topSelectionHandle,.handsontable .topSelectionHandle-HitArea{left:-10000px;right:unset;top:-10000px;z-index:9999}[dir=rtl].handsontable .bottomSelectionHandle,[dir=rtl].handsontable .bottomSelectionHandle-HitArea,[dir=rtl].handsontable .topSelectionHandle,[dir=rtl].handsontable .topSelectionHandle-HitArea{left:unset;right:-10000px}.handsontable.hide-tween{-webkit-animation:opacity-hide .3s;animation:opacity-hide .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable.show-tween{-webkit-animation:opacity-show .3s;animation:opacity-show .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable .htAutocompleteArrow{color:#eee;cursor:default;float:right;font-size:10px;text-align:center;width:16px}[dir=rtl].handsontable .htAutocompleteArrow{float:left}.handsontable td .htAutocompleteArrow:hover{color:#777}.handsontable td.area .htAutocompleteArrow{color:#d3d3d3}.handsontable .htCheckboxRendererInput{display:inline-block}.handsontable .htCheckboxRendererInput.noValue{opacity:.5}.handsontable .htCheckboxRendererLabel{cursor:pointer;display:inline-block;font-size:inherit;vertical-align:middle}.handsontable .htCheckboxRendererLabel.fullWidth{width:100%}.handsontable .htCommentCell{position:relative}.handsontable .htCommentCell:after{border-left:6px solid transparent;border-right:none;border-top:6px solid #000;content:"";left:unset;position:absolute;right:0;top:0}[dir=rtl].handsontable .htCommentCell:after{border-left:none;border-right:6px solid transparent;left:0;right:unset}.htCommentsContainer .htComments{display:none;position:absolute;z-index:1059}.htCommentsContainer .htCommentTextArea{-webkit-appearance:none;background-color:#fff;border:none;border-left:3px solid #ccc;box-shadow:0 1px 3px rgba(0,0,0,.118),0 1px 2px rgba(0,0,0,.239);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-size:12px;height:90px;outline:0!important;padding:5px;width:215px}[dir=rtl].htCommentsContainer .htCommentTextArea{border-left:none;border-right:3px solid #ccc}.htCommentsContainer .htCommentTextArea:focus{border-left:3px solid #5292f7;border-right:none;box-shadow:0 1px 3px rgba(0,0,0,.118),0 1px 2px rgba(0,0,0,.239),inset 0 0 0 1px #5292f7}[dir=rtl].htCommentsContainer .htCommentTextArea:focus{border-left:none;border-right:3px solid #5292f7}
31
31
  /*!
32
32
  * Handsontable ContextMenu