handsontable 0.0.0-next-4700084-20230522 → 0.0.0-next-ecc62fd-20230525
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/CHANGELOG.md +25 -0
- 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 +83 -74
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +16 -16
- package/dist/handsontable.js +23 -14
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/package.json +1 -1
- package/pluginHooks.js +8 -4
- package/pluginHooks.mjs +8 -4
package/CHANGELOG.md
CHANGED
@@ -9,6 +9,31 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
10
10
|
<!-- UNVERSIONED -->
|
11
11
|
|
12
|
+
## [12.4.0] - 2023-05-23
|
13
|
+
|
14
|
+
### Added
|
15
|
+
|
16
|
+
- Added two new Handsontable hooks, `afterColumnSequenceChange` and `afterRowSequenceChange`, which are fired after changing the order of columns or rows, respectively. [#10215](https://github.com/handsontable/handsontable/pull/10215)
|
17
|
+
|
18
|
+
### Fixed
|
19
|
+
|
20
|
+
- Fixed numerous issues related to syncing Handsontable with HyperFormula. Now, formulas work properly with all the Handsontable features. [#10215](https://github.com/handsontable/handsontable/pull/10215)
|
21
|
+
- Fixed na issue where formulas didn't recalculate after rows or columns were moved. [#4668](https://github.com/handsontable/handsontable/issues/4668)
|
22
|
+
- Fixed an issue where Handsontable's dates didn't sync correctly with HyperFormula's dates. [#10085](https://github.com/handsontable/handsontable/issues/10085)
|
23
|
+
- Fixed an issue where calling `updateSettings()` would reset HyperFormula's undo/redo actions stack. [#10326](https://github.com/handsontable/handsontable/pull/10326)
|
24
|
+
- Fixed an issue where the `Autofill`, `TrimRows` and `Formulas` plugins didn't work properly together. [#10200](https://github.com/handsontable/handsontable/issues/10200)
|
25
|
+
- Fixed an issue where the `modifySourceData` hook used the wrong type of indexes. [#10215](https://github.com/handsontable/handsontable/pull/10215)
|
26
|
+
- Fixed an issue where text copied from Handsontable to Excel included wrong types of spaces. [#10017](https://github.com/handsontable/handsontable/issues/10017)
|
27
|
+
- Fixed an issue where mousing over the same cell twice didn't trigger the `beforeOnCellMouseOver` and `afterOnCellMouseOver` hooks. [#10321](https://github.com/handsontable/handsontable/pull/10321)
|
28
|
+
- Updated TypeScript definition files related to the `CustomBorders` plugin. [#10360](https://github.com/handsontable/handsontable/pull/10360)
|
29
|
+
- Fixed an issue where moving rows manually to the bottom was difficult due the misalignment between the backlight and guideline elements. [#9556](https://github.com/handsontable/handsontable/issues/9556)
|
30
|
+
|
31
|
+
For more information on Handsontable 12.4.0, see:
|
32
|
+
|
33
|
+
- [Blog post (12.4.0)](https://handsontable.com/blog/handsontable-12-4-0-auto-updating-formulas)
|
34
|
+
- [Documentation (12.4)](https://handsontable.com/docs/12.4)
|
35
|
+
- [Release notes (12.4.0)](https://handsontable.com/docs/release-notes/#_12-4-0)
|
36
|
+
|
12
37
|
## [12.3.3] - 2023-03-28
|
13
38
|
|
14
39
|
### Added
|
package/base.js
CHANGED
@@ -44,8 +44,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
44
44
|
Handsontable.CellCoords = _src.CellCoords;
|
45
45
|
Handsontable.CellRange = _src.CellRange;
|
46
46
|
Handsontable.packageName = 'handsontable';
|
47
|
-
Handsontable.buildDate = "
|
48
|
-
Handsontable.version = "0.0.0-next-
|
47
|
+
Handsontable.buildDate = "25/05/2023 07:34:28";
|
48
|
+
Handsontable.version = "0.0.0-next-ecc62fd-20230525";
|
49
49
|
Handsontable.languages = {
|
50
50
|
dictionaryKeys: _registry.dictionaryKeys,
|
51
51
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
package/base.mjs
CHANGED
@@ -35,8 +35,8 @@ Handsontable.hooks = Hooks.getSingleton();
|
|
35
35
|
Handsontable.CellCoords = CellCoords;
|
36
36
|
Handsontable.CellRange = CellRange;
|
37
37
|
Handsontable.packageName = 'handsontable';
|
38
|
-
Handsontable.buildDate = "
|
39
|
-
Handsontable.version = "0.0.0-next-
|
38
|
+
Handsontable.buildDate = "25/05/2023 07:34:49";
|
39
|
+
Handsontable.version = "0.0.0-next-ecc62fd-20230525";
|
40
40
|
Handsontable.languages = {
|
41
41
|
dictionaryKeys: dictionaryKeys,
|
42
42
|
getLanguageDictionary: getLanguageDictionary,
|
package/dist/handsontable.css
CHANGED
@@ -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: 0.0.0-next-
|
29
|
-
* Release date:
|
28
|
+
* Version: 0.0.0-next-ecc62fd-20230525
|
29
|
+
* Release date: 23/05/2023 (built at 25/05/2023 07:35:07)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -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: 0.0.0-next-
|
29
|
-
* Release date:
|
28
|
+
* Version: 0.0.0-next-ecc62fd-20230525
|
29
|
+
* Release date: 23/05/2023 (built at 25/05/2023 07:35:07)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -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: 0.0.0-next-
|
29
|
-
* Release date:
|
28
|
+
* Version: 0.0.0-next-ecc62fd-20230525
|
29
|
+
* Release date: 23/05/2023 (built at 25/05/2023 07:35:07)
|
30
30
|
*/
|
31
31
|
(function webpackUniversalModuleDefinition(root, factory) {
|
32
32
|
if(typeof exports === 'object' && typeof module === 'object')
|
@@ -296,7 +296,7 @@ defineIterator(String, 'String', function (iterated) {
|
|
296
296
|
/* 6 */
|
297
297
|
/***/ (function(module, exports, __webpack_require__) {
|
298
298
|
|
299
|
-
var global = __webpack_require__(
|
299
|
+
var global = __webpack_require__(44);
|
300
300
|
var DOMIterables = __webpack_require__(402);
|
301
301
|
var DOMTokenListPrototype = __webpack_require__(403);
|
302
302
|
var ArrayIteratorMethods = __webpack_require__(4);
|
@@ -2825,7 +2825,7 @@ $({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
|
|
2825
2825
|
/* 21 */
|
2826
2826
|
/***/ (function(module, exports, __webpack_require__) {
|
2827
2827
|
|
2828
|
-
var global = __webpack_require__(
|
2828
|
+
var global = __webpack_require__(44);
|
2829
2829
|
var DOMIterables = __webpack_require__(402);
|
2830
2830
|
var DOMTokenListPrototype = __webpack_require__(403);
|
2831
2831
|
var forEach = __webpack_require__(721);
|
@@ -2853,7 +2853,7 @@ handlePrototype(DOMTokenListPrototype);
|
|
2853
2853
|
/* 22 */
|
2854
2854
|
/***/ (function(module, exports, __webpack_require__) {
|
2855
2855
|
|
2856
|
-
var global = __webpack_require__(
|
2856
|
+
var global = __webpack_require__(44);
|
2857
2857
|
var getOwnPropertyDescriptor = __webpack_require__(117).f;
|
2858
2858
|
var createNonEnumerableProperty = __webpack_require__(127);
|
2859
2859
|
var defineBuiltIn = __webpack_require__(97);
|
@@ -3103,7 +3103,7 @@ var domMessages = {
|
|
3103
3103
|
function _injectProductInfo(key, element) {
|
3104
3104
|
var hasValidType = !isEmpty(key);
|
3105
3105
|
var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
3106
|
-
var hotVersion = "0.0.0-next-
|
3106
|
+
var hotVersion = "0.0.0-next-ecc62fd-20230525";
|
3107
3107
|
var keyValidityDate;
|
3108
3108
|
var consoleMessageState = 'invalid';
|
3109
3109
|
var domMessageState = 'invalid';
|
@@ -3111,7 +3111,7 @@ function _injectProductInfo(key, element) {
|
|
3111
3111
|
var schemaValidity = _checkKeySchema(key);
|
3112
3112
|
if (hasValidType || isNonCommercial || schemaValidity) {
|
3113
3113
|
if (schemaValidity) {
|
3114
|
-
var releaseDate = (0, _moment.default)("
|
3114
|
+
var releaseDate = (0, _moment.default)("23/05/2023", 'DD/MM/YYYY');
|
3115
3115
|
var releaseDays = Math.floor(releaseDate.toDate().getTime() / 8.64e7);
|
3116
3116
|
var keyValidityDays = _extractTime(key);
|
3117
3117
|
keyValidityDate = (0, _moment.default)((keyValidityDays + 1) * 8.64e7, 'x').format('MMMM DD, YYYY');
|
@@ -4975,6 +4975,26 @@ $({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
|
|
4975
4975
|
|
4976
4976
|
/***/ }),
|
4977
4977
|
/* 44 */
|
4978
|
+
/***/ (function(module, exports) {
|
4979
|
+
|
4980
|
+
var check = function (it) {
|
4981
|
+
return it && it.Math == Math && it;
|
4982
|
+
};
|
4983
|
+
|
4984
|
+
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
4985
|
+
module.exports =
|
4986
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
4987
|
+
check(typeof globalThis == 'object' && globalThis) ||
|
4988
|
+
check(typeof window == 'object' && window) ||
|
4989
|
+
// eslint-disable-next-line no-restricted-globals -- safe
|
4990
|
+
check(typeof self == 'object' && self) ||
|
4991
|
+
check(typeof global == 'object' && global) ||
|
4992
|
+
// eslint-disable-next-line no-new-func -- fallback
|
4993
|
+
(function () { return this; })() || this || Function('return this')();
|
4994
|
+
|
4995
|
+
|
4996
|
+
/***/ }),
|
4997
|
+
/* 45 */
|
4978
4998
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
4979
4999
|
|
4980
5000
|
"use strict";
|
@@ -5253,26 +5273,6 @@ function serializeProduction(node) {
|
|
5253
5273
|
}
|
5254
5274
|
//# sourceMappingURL=gast_public.js.map
|
5255
5275
|
|
5256
|
-
/***/ }),
|
5257
|
-
/* 45 */
|
5258
|
-
/***/ (function(module, exports) {
|
5259
|
-
|
5260
|
-
var check = function (it) {
|
5261
|
-
return it && it.Math == Math && it;
|
5262
|
-
};
|
5263
|
-
|
5264
|
-
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
5265
|
-
module.exports =
|
5266
|
-
// eslint-disable-next-line es/no-global-this -- safe
|
5267
|
-
check(typeof globalThis == 'object' && globalThis) ||
|
5268
|
-
check(typeof window == 'object' && window) ||
|
5269
|
-
// eslint-disable-next-line no-restricted-globals -- safe
|
5270
|
-
check(typeof self == 'object' && self) ||
|
5271
|
-
check(typeof global == 'object' && global) ||
|
5272
|
-
// eslint-disable-next-line no-new-func -- fallback
|
5273
|
-
(function () { return this; })() || Function('return this')();
|
5274
|
-
|
5275
|
-
|
5276
5276
|
/***/ }),
|
5277
5277
|
/* 46 */
|
5278
5278
|
/***/ (function(module, exports, __webpack_require__) {
|
@@ -5364,7 +5364,7 @@ $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
|
|
5364
5364
|
/* 48 */
|
5365
5365
|
/***/ (function(module, exports, __webpack_require__) {
|
5366
5366
|
|
5367
|
-
var global = __webpack_require__(
|
5367
|
+
var global = __webpack_require__(44);
|
5368
5368
|
var shared = __webpack_require__(140);
|
5369
5369
|
var hasOwn = __webpack_require__(54);
|
5370
5370
|
var uid = __webpack_require__(211);
|
@@ -6416,9 +6416,11 @@ var REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-sen
|
|
6416
6416
|
*/
|
6417
6417
|
'beforeCreateCol',
|
6418
6418
|
/**
|
6419
|
-
* Fired after
|
6419
|
+
* Fired after the order of columns has changed.
|
6420
|
+
* This hook is fired by changing column indexes of any type supported by the {@link IndexMapper}.
|
6420
6421
|
*
|
6421
|
-
* @
|
6422
|
+
* @event Hooks#afterColumnSequenceChange
|
6423
|
+
* @param {'init'|'remove'|'insert'|'move'|'update'} [source] A string that indicates what caused the change to the order of columns.
|
6422
6424
|
*/
|
6423
6425
|
'afterColumnSequenceChange',
|
6424
6426
|
/**
|
@@ -6684,9 +6686,11 @@ var REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-sen
|
|
6684
6686
|
*/
|
6685
6687
|
'afterRenderer',
|
6686
6688
|
/**
|
6687
|
-
* Fired after
|
6689
|
+
* Fired after the order of rows has changed.
|
6690
|
+
* This hook is fired by changing row indexes of any type supported by the {@link IndexMapper}.
|
6688
6691
|
*
|
6689
|
-
* @
|
6692
|
+
* @event Hooks#afterRowSequenceChange
|
6693
|
+
* @param {'init'|'remove'|'insert'|'move'|'update'} [source] A string that indicates what caused the change to the order of rows.
|
6690
6694
|
*/
|
6691
6695
|
'afterRowSequenceChange',
|
6692
6696
|
/**
|
@@ -9641,7 +9645,7 @@ $({ target: 'Number', stat: true }, {
|
|
9641
9645
|
var $ = __webpack_require__(22);
|
9642
9646
|
var IS_PURE = __webpack_require__(114);
|
9643
9647
|
var DESCRIPTORS = __webpack_require__(55);
|
9644
|
-
var global = __webpack_require__(
|
9648
|
+
var global = __webpack_require__(44);
|
9645
9649
|
var path = __webpack_require__(413);
|
9646
9650
|
var uncurryThis = __webpack_require__(30);
|
9647
9651
|
var isForced = __webpack_require__(217);
|
@@ -19282,7 +19286,7 @@ class FormulaCellVertex extends FormulaVertex {
|
|
19282
19286
|
/* 106 */
|
19283
19287
|
/***/ (function(module, exports, __webpack_require__) {
|
19284
19288
|
|
19285
|
-
var global = __webpack_require__(
|
19289
|
+
var global = __webpack_require__(44);
|
19286
19290
|
var isCallable = __webpack_require__(49);
|
19287
19291
|
|
19288
19292
|
var aFunction = function (argument) {
|
@@ -19299,7 +19303,7 @@ module.exports = function (namespace, method) {
|
|
19299
19303
|
/***/ (function(module, exports, __webpack_require__) {
|
19300
19304
|
|
19301
19305
|
var NATIVE_WEAK_MAP = __webpack_require__(389);
|
19302
|
-
var global = __webpack_require__(
|
19306
|
+
var global = __webpack_require__(44);
|
19303
19307
|
var isObject = __webpack_require__(63);
|
19304
19308
|
var createNonEnumerableProperty = __webpack_require__(127);
|
19305
19309
|
var hasOwn = __webpack_require__(54);
|
@@ -19967,7 +19971,7 @@ exports.sort = _engine.sort;
|
|
19967
19971
|
"use strict";
|
19968
19972
|
__webpack_require__.r(__webpack_exports__);
|
19969
19973
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GAstVisitor", function() { return GAstVisitor; });
|
19970
|
-
/* harmony import */ var _gast_public__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
19974
|
+
/* harmony import */ var _gast_public__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(45);
|
19971
19975
|
|
19972
19976
|
var GAstVisitor = /** @class */ (function () {
|
19973
19977
|
function GAstVisitor() {
|
@@ -20026,7 +20030,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
20026
20030
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "defaultGrammarValidatorErrorProvider", function() { return defaultGrammarValidatorErrorProvider; });
|
20027
20031
|
/* harmony import */ var _scan_tokens_public__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(87);
|
20028
20032
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(38);
|
20029
|
-
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
20033
|
+
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(45);
|
20030
20034
|
/* harmony import */ var _grammar_gast_gast__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(158);
|
20031
20035
|
/* harmony import */ var _grammar_checks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(201);
|
20032
20036
|
|
@@ -22178,10 +22182,10 @@ var store = __webpack_require__(264);
|
|
22178
22182
|
(module.exports = function (key, value) {
|
22179
22183
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
22180
22184
|
})('versions', []).push({
|
22181
|
-
version: '3.30.
|
22185
|
+
version: '3.30.2',
|
22182
22186
|
mode: IS_PURE ? 'pure' : 'global',
|
22183
22187
|
copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
|
22184
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.30.
|
22188
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.30.2/LICENSE',
|
22185
22189
|
source: 'https://github.com/zloirock/core-js'
|
22186
22190
|
});
|
22187
22191
|
|
@@ -22193,13 +22197,18 @@ var store = __webpack_require__(264);
|
|
22193
22197
|
/* eslint-disable es/no-symbol -- required for testing */
|
22194
22198
|
var V8_VERSION = __webpack_require__(169);
|
22195
22199
|
var fails = __webpack_require__(28);
|
22200
|
+
var global = __webpack_require__(44);
|
22201
|
+
|
22202
|
+
var $String = global.String;
|
22196
22203
|
|
22197
22204
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
22198
22205
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
22199
22206
|
var symbol = Symbol();
|
22200
22207
|
// Chrome 38 Symbol has incorrect toString conversion
|
22201
22208
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
22202
|
-
|
22209
|
+
// nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
|
22210
|
+
// of course, fail.
|
22211
|
+
return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
22203
22212
|
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
22204
22213
|
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
22205
22214
|
});
|
@@ -22308,7 +22317,7 @@ addToUnscopables('fill');
|
|
22308
22317
|
/***/ (function(module, exports, __webpack_require__) {
|
22309
22318
|
|
22310
22319
|
var DESCRIPTORS = __webpack_require__(55);
|
22311
|
-
var global = __webpack_require__(
|
22320
|
+
var global = __webpack_require__(44);
|
22312
22321
|
var uncurryThis = __webpack_require__(30);
|
22313
22322
|
var isForced = __webpack_require__(217);
|
22314
22323
|
var inheritIfRequired = __webpack_require__(280);
|
@@ -24872,7 +24881,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
24872
24881
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DslMethodsCollectorVisitor", function() { return DslMethodsCollectorVisitor; });
|
24873
24882
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "collectMethods", function() { return collectMethods; });
|
24874
24883
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
24875
|
-
/* harmony import */ var _gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
24884
|
+
/* harmony import */ var _gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(45);
|
24876
24885
|
/* harmony import */ var _gast_visitor_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(119);
|
24877
24886
|
var __extends = (undefined && undefined.__extends) || (function () {
|
24878
24887
|
var extendStatics = function (d, b) {
|
@@ -29727,7 +29736,7 @@ module.exports = function (key) {
|
|
29727
29736
|
/* 169 */
|
29728
29737
|
/***/ (function(module, exports, __webpack_require__) {
|
29729
29738
|
|
29730
|
-
var global = __webpack_require__(
|
29739
|
+
var global = __webpack_require__(44);
|
29731
29740
|
var userAgent = __webpack_require__(122);
|
29732
29741
|
|
29733
29742
|
var process = global.process;
|
@@ -30786,7 +30795,7 @@ exports.default = BaseRenderer;
|
|
30786
30795
|
|
30787
30796
|
var $ = __webpack_require__(22);
|
30788
30797
|
var DESCRIPTORS = __webpack_require__(55);
|
30789
|
-
var global = __webpack_require__(
|
30798
|
+
var global = __webpack_require__(44);
|
30790
30799
|
var uncurryThis = __webpack_require__(30);
|
30791
30800
|
var hasOwn = __webpack_require__(54);
|
30792
30801
|
var isCallable = __webpack_require__(49);
|
@@ -31994,7 +32003,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
31994
32003
|
/* harmony import */ var _scan_lexer_errors_public__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(242);
|
31995
32004
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "defaultLexerErrorProvider", function() { return _scan_lexer_errors_public__WEBPACK_IMPORTED_MODULE_6__["defaultLexerErrorProvider"]; });
|
31996
32005
|
|
31997
|
-
/* harmony import */ var _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
32006
|
+
/* harmony import */ var _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(45);
|
31998
32007
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Alternation", function() { return _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_7__["Alternation"]; });
|
31999
32008
|
|
32000
32009
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Flat", function() { return _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_7__["Flat"]; });
|
@@ -32093,7 +32102,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
32093
32102
|
/* harmony import */ var _lookahead__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(202);
|
32094
32103
|
/* harmony import */ var _cst_cst__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(243);
|
32095
32104
|
/* harmony import */ var _interpreter__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(203);
|
32096
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
32105
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(45);
|
32097
32106
|
/* harmony import */ var _gast_gast_visitor_public__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(119);
|
32098
32107
|
var __extends = (undefined && undefined.__extends) || (function () {
|
32099
32108
|
var extendStatics = function (d, b) {
|
@@ -32692,7 +32701,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
32692
32701
|
/* harmony import */ var _interpreter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(203);
|
32693
32702
|
/* harmony import */ var _rest__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(239);
|
32694
32703
|
/* harmony import */ var _scan_tokens__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(157);
|
32695
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
32704
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(45);
|
32696
32705
|
/* harmony import */ var _gast_gast_visitor_public__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(119);
|
32697
32706
|
var __extends = (undefined && undefined.__extends) || (function () {
|
32698
32707
|
var extendStatics = function (d, b) {
|
@@ -33202,7 +33211,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
33202
33211
|
/* harmony import */ var _rest__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(239);
|
33203
33212
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(38);
|
33204
33213
|
/* harmony import */ var _first__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(320);
|
33205
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
33214
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(45);
|
33206
33215
|
var __extends = (undefined && undefined.__extends) || (function () {
|
33207
33216
|
var extendStatics = function (d, b) {
|
33208
33217
|
extendStatics = Object.setPrototypeOf ||
|
@@ -35619,7 +35628,7 @@ module.exports = function (key) {
|
|
35619
35628
|
/* 212 */
|
35620
35629
|
/***/ (function(module, exports, __webpack_require__) {
|
35621
35630
|
|
35622
|
-
var global = __webpack_require__(
|
35631
|
+
var global = __webpack_require__(44);
|
35623
35632
|
var isObject = __webpack_require__(63);
|
35624
35633
|
|
35625
35634
|
var document = global.document;
|
@@ -35777,7 +35786,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
35777
35786
|
"use strict";
|
35778
35787
|
|
35779
35788
|
var $ = __webpack_require__(22);
|
35780
|
-
var global = __webpack_require__(
|
35789
|
+
var global = __webpack_require__(44);
|
35781
35790
|
var uncurryThis = __webpack_require__(30);
|
35782
35791
|
var isForced = __webpack_require__(217);
|
35783
35792
|
var defineBuiltIn = __webpack_require__(97);
|
@@ -37451,7 +37460,7 @@ var VERSION = "6.5.0";
|
|
37451
37460
|
__webpack_require__.r(__webpack_exports__);
|
37452
37461
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RestWalker", function() { return RestWalker; });
|
37453
37462
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
37454
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
37463
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(45);
|
37455
37464
|
|
37456
37465
|
|
37457
37466
|
/**
|
@@ -38599,7 +38608,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
38599
38608
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "expandAllNestedRuleNames", function() { return expandAllNestedRuleNames; });
|
38600
38609
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
38601
38610
|
/* harmony import */ var _grammar_keys__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(159);
|
38602
|
-
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
38611
|
+
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(45);
|
38603
38612
|
/* harmony import */ var _grammar_gast_gast_visitor_public__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(119);
|
38604
38613
|
var __extends = (undefined && undefined.__extends) || (function () {
|
38605
38614
|
var extendStatics = function (d, b) {
|
@@ -42070,7 +42079,7 @@ MathConstantsPlugin.implementedFunctions = {
|
|
42070
42079
|
/* 264 */
|
42071
42080
|
/***/ (function(module, exports, __webpack_require__) {
|
42072
42081
|
|
42073
|
-
var global = __webpack_require__(
|
42082
|
+
var global = __webpack_require__(44);
|
42074
42083
|
var defineGlobalProperty = __webpack_require__(265);
|
42075
42084
|
|
42076
42085
|
var SHARED = '__core-js_shared__';
|
@@ -42083,7 +42092,7 @@ module.exports = store;
|
|
42083
42092
|
/* 265 */
|
42084
42093
|
/***/ (function(module, exports, __webpack_require__) {
|
42085
42094
|
|
42086
|
-
var global = __webpack_require__(
|
42095
|
+
var global = __webpack_require__(44);
|
42087
42096
|
|
42088
42097
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
42089
42098
|
var defineProperty = Object.defineProperty;
|
@@ -42590,7 +42599,7 @@ module.exports = _unsupportedIterableToArray, module.exports.__esModule = true,
|
|
42590
42599
|
/***/ (function(module, exports, __webpack_require__) {
|
42591
42600
|
|
42592
42601
|
var fails = __webpack_require__(28);
|
42593
|
-
var global = __webpack_require__(
|
42602
|
+
var global = __webpack_require__(44);
|
42594
42603
|
|
42595
42604
|
// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
|
42596
42605
|
var $RegExp = global.RegExp;
|
@@ -42642,7 +42651,7 @@ module.exports = function (S, index, unicode) {
|
|
42642
42651
|
|
42643
42652
|
"use strict";
|
42644
42653
|
|
42645
|
-
var global = __webpack_require__(
|
42654
|
+
var global = __webpack_require__(44);
|
42646
42655
|
var apply = __webpack_require__(129);
|
42647
42656
|
var isCallable = __webpack_require__(49);
|
42648
42657
|
var ENGINE_IS_BUN = __webpack_require__(723);
|
@@ -50396,7 +50405,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
50396
50405
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "firstForBranching", function() { return firstForBranching; });
|
50397
50406
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "firstForTerminal", function() { return firstForTerminal; });
|
50398
50407
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
50399
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
50408
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(45);
|
50400
50409
|
/* harmony import */ var _gast_gast__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(158);
|
50401
50410
|
|
50402
50411
|
|
@@ -62149,7 +62158,7 @@ module.exports = getBuiltIn('document', 'documentElement');
|
|
62149
62158
|
/* 389 */
|
62150
62159
|
/***/ (function(module, exports, __webpack_require__) {
|
62151
62160
|
|
62152
|
-
var global = __webpack_require__(
|
62161
|
+
var global = __webpack_require__(44);
|
62153
62162
|
var isCallable = __webpack_require__(49);
|
62154
62163
|
|
62155
62164
|
var WeakMap = global.WeakMap;
|
@@ -67753,7 +67762,7 @@ module.exports = function (it) {
|
|
67753
67762
|
/* 413 */
|
67754
67763
|
/***/ (function(module, exports, __webpack_require__) {
|
67755
67764
|
|
67756
|
-
var global = __webpack_require__(
|
67765
|
+
var global = __webpack_require__(44);
|
67757
67766
|
|
67758
67767
|
module.exports = global;
|
67759
67768
|
|
@@ -67844,7 +67853,7 @@ module.exports = function () {
|
|
67844
67853
|
/***/ (function(module, exports, __webpack_require__) {
|
67845
67854
|
|
67846
67855
|
var fails = __webpack_require__(28);
|
67847
|
-
var global = __webpack_require__(
|
67856
|
+
var global = __webpack_require__(44);
|
67848
67857
|
|
67849
67858
|
// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
67850
67859
|
var $RegExp = global.RegExp;
|
@@ -67860,7 +67869,7 @@ module.exports = fails(function () {
|
|
67860
67869
|
/***/ (function(module, exports, __webpack_require__) {
|
67861
67870
|
|
67862
67871
|
var fails = __webpack_require__(28);
|
67863
|
-
var global = __webpack_require__(
|
67872
|
+
var global = __webpack_require__(44);
|
67864
67873
|
|
67865
67874
|
// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
|
67866
67875
|
var $RegExp = global.RegExp;
|
@@ -67888,7 +67897,7 @@ module.exports = function (passed, required) {
|
|
67888
67897
|
/* 421 */
|
67889
67898
|
/***/ (function(module, exports, __webpack_require__) {
|
67890
67899
|
|
67891
|
-
var global = __webpack_require__(
|
67900
|
+
var global = __webpack_require__(44);
|
67892
67901
|
var apply = __webpack_require__(129);
|
67893
67902
|
var bind = __webpack_require__(178);
|
67894
67903
|
var isCallable = __webpack_require__(49);
|
@@ -83848,7 +83857,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
83848
83857
|
/* harmony import */ var _first__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(320);
|
83849
83858
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(38);
|
83850
83859
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(321);
|
83851
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
83860
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(45);
|
83852
83861
|
var __extends = (undefined && undefined.__extends) || (function () {
|
83853
83862
|
var extendStatics = function (d, b) {
|
83854
83863
|
extendStatics = Object.setPrototypeOf ||
|
@@ -84909,7 +84918,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
84909
84918
|
/* harmony import */ var _parser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(68);
|
84910
84919
|
/* harmony import */ var _errors_public__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(120);
|
84911
84920
|
/* harmony import */ var _grammar_checks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(201);
|
84912
|
-
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
84921
|
+
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(45);
|
84913
84922
|
|
84914
84923
|
|
84915
84924
|
|
@@ -86050,7 +86059,7 @@ var ContentAssist = /** @class */ (function () {
|
|
86050
86059
|
__webpack_require__.r(__webpack_exports__);
|
86051
86060
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GastRecorder", function() { return GastRecorder; });
|
86052
86061
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
86053
|
-
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
86062
|
+
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(45);
|
86054
86063
|
/* harmony import */ var _scan_lexer_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(137);
|
86055
86064
|
/* harmony import */ var _scan_tokens__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(157);
|
86056
86065
|
/* harmony import */ var _scan_tokens_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(87);
|
@@ -86450,7 +86459,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
86450
86459
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "genAlternation", function() { return genAlternation; });
|
86451
86460
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "genSingleAlt", function() { return genSingleAlt; });
|
86452
86461
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
86453
|
-
/* harmony import */ var _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
86462
|
+
/* harmony import */ var _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(45);
|
86454
86463
|
|
86455
86464
|
|
86456
86465
|
/**
|
@@ -91972,7 +91981,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
|
|
91972
91981
|
"use strict";
|
91973
91982
|
|
91974
91983
|
var FREEZING = __webpack_require__(273);
|
91975
|
-
var global = __webpack_require__(
|
91984
|
+
var global = __webpack_require__(44);
|
91976
91985
|
var uncurryThis = __webpack_require__(30);
|
91977
91986
|
var defineBuiltIns = __webpack_require__(274);
|
91978
91987
|
var InternalMetadataModule = __webpack_require__(177);
|
@@ -92220,8 +92229,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
92220
92229
|
Handsontable.CellCoords = _src.CellCoords;
|
92221
92230
|
Handsontable.CellRange = _src.CellRange;
|
92222
92231
|
Handsontable.packageName = 'handsontable';
|
92223
|
-
Handsontable.buildDate = "
|
92224
|
-
Handsontable.version = "0.0.0-next-
|
92232
|
+
Handsontable.buildDate = "25/05/2023 07:35:07";
|
92233
|
+
Handsontable.version = "0.0.0-next-ecc62fd-20230525";
|
92225
92234
|
Handsontable.languages = {
|
92226
92235
|
dictionaryKeys: _registry.dictionaryKeys,
|
92227
92236
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
@@ -92624,7 +92633,7 @@ module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
|
|
92624
92633
|
/***/ (function(module, exports, __webpack_require__) {
|
92625
92634
|
|
92626
92635
|
var $ = __webpack_require__(22);
|
92627
|
-
var global = __webpack_require__(
|
92636
|
+
var global = __webpack_require__(44);
|
92628
92637
|
var schedulersFix = __webpack_require__(285);
|
92629
92638
|
|
92630
92639
|
var setInterval = schedulersFix(global.setInterval, true);
|
@@ -92649,7 +92658,7 @@ module.exports = typeof Bun == 'function' && Bun && typeof Bun.version == 'strin
|
|
92649
92658
|
/***/ (function(module, exports, __webpack_require__) {
|
92650
92659
|
|
92651
92660
|
var $ = __webpack_require__(22);
|
92652
|
-
var global = __webpack_require__(
|
92661
|
+
var global = __webpack_require__(44);
|
92653
92662
|
var schedulersFix = __webpack_require__(285);
|
92654
92663
|
|
92655
92664
|
var setTimeout = schedulersFix(global.setTimeout, true);
|
@@ -92675,7 +92684,7 @@ __webpack_require__(728);
|
|
92675
92684
|
/***/ (function(module, exports, __webpack_require__) {
|
92676
92685
|
|
92677
92686
|
var $ = __webpack_require__(22);
|
92678
|
-
var global = __webpack_require__(
|
92687
|
+
var global = __webpack_require__(44);
|
92679
92688
|
var clearImmediate = __webpack_require__(421).clear;
|
92680
92689
|
|
92681
92690
|
// `clearImmediate` method
|
@@ -92700,7 +92709,7 @@ module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
|
|
92700
92709
|
/***/ (function(module, exports, __webpack_require__) {
|
92701
92710
|
|
92702
92711
|
var $ = __webpack_require__(22);
|
92703
|
-
var global = __webpack_require__(
|
92712
|
+
var global = __webpack_require__(44);
|
92704
92713
|
var setTask = __webpack_require__(421).set;
|
92705
92714
|
var schedulersFix = __webpack_require__(285);
|
92706
92715
|
|
@@ -101934,7 +101943,7 @@ exports.default = _default;
|
|
101934
101943
|
"use strict";
|
101935
101944
|
|
101936
101945
|
var $ = __webpack_require__(22);
|
101937
|
-
var global = __webpack_require__(
|
101946
|
+
var global = __webpack_require__(44);
|
101938
101947
|
var call = __webpack_require__(66);
|
101939
101948
|
var uncurryThis = __webpack_require__(30);
|
101940
101949
|
var IS_PURE = __webpack_require__(114);
|
@@ -26,8 +26,8 @@
|
|
26
26
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
27
27
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
28
28
|
*
|
29
|
-
* Version: 0.0.0-next-
|
30
|
-
* Release date:
|
29
|
+
* Version: 0.0.0-next-ecc62fd-20230525
|
30
|
+
* Release date: 23/05/2023 (built at 25/05/2023 07:35:55)
|
31
31
|
*/.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}.topSelectionHandle-HitArea:not(.ht_master .topSelectionHandle-HitArea),.topSelectionHandle:not(.ht_master .topSelectionHandle){z-index:9999}.handsontable .bottomSelectionHandle,.handsontable .bottomSelectionHandle-HitArea,.handsontable .topSelectionHandle,.handsontable .topSelectionHandle-HitArea{left:-10000px;right:unset;top:-10000px}[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}
|
32
32
|
/*!
|
33
33
|
* Pikaday
|