handsontable 0.0.0-next-834f47e-20230509 → 0.0.0-next-c73b24c-20230510
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +5 -0
- package/core.mjs +5 -0
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +74 -74
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +16 -16
- package/dist/handsontable.js +14 -14
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
package/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 = "10/05/2023 12:06:48";
|
48
|
+
Handsontable.version = "0.0.0-next-c73b24c-20230510";
|
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 = "10/05/2023 12:07:05";
|
39
|
+
Handsontable.version = "0.0.0-next-c73b24c-20230510";
|
40
40
|
Handsontable.languages = {
|
41
41
|
dictionaryKeys: dictionaryKeys,
|
42
42
|
getLanguageDictionary: getLanguageDictionary,
|
package/core.js
CHANGED
@@ -2797,6 +2797,11 @@ function Core(rootElement, userSettings) {
|
|
2797
2797
|
* __Note__: This method does not participate in data transformation. If the visual data of the table is reordered,
|
2798
2798
|
* sorted or trimmed only physical indexes are correct.
|
2799
2799
|
*
|
2800
|
+
* __Note__: This method may return incorrect values for cells that contain
|
2801
|
+
* [formulas](@/guides/formulas/formula-calculation.md). This is because `getSourceData()`
|
2802
|
+
* operates on source data ([physical indexes](@/api/indexMapper.md)),
|
2803
|
+
* whereas formulas operate on visual data (visual indexes).
|
2804
|
+
*
|
2800
2805
|
* @memberof Core#
|
2801
2806
|
* @function getSourceData
|
2802
2807
|
* @param {number} [row] From physical row index.
|
package/core.mjs
CHANGED
@@ -2792,6 +2792,11 @@ export default function Core(rootElement, userSettings) {
|
|
2792
2792
|
* __Note__: This method does not participate in data transformation. If the visual data of the table is reordered,
|
2793
2793
|
* sorted or trimmed only physical indexes are correct.
|
2794
2794
|
*
|
2795
|
+
* __Note__: This method may return incorrect values for cells that contain
|
2796
|
+
* [formulas](@/guides/formulas/formula-calculation.md). This is because `getSourceData()`
|
2797
|
+
* operates on source data ([physical indexes](@/api/indexMapper.md)),
|
2798
|
+
* whereas formulas operate on visual data (visual indexes).
|
2799
|
+
*
|
2795
2800
|
* @memberof Core#
|
2796
2801
|
* @function getSourceData
|
2797
2802
|
* @param {number} [row] From physical row index.
|
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/03/2023 (built at
|
28
|
+
* Version: 0.0.0-next-c73b24c-20230510
|
29
|
+
* Release date: 28/03/2023 (built at 10/05/2023 12:07:19)
|
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/03/2023 (built at
|
28
|
+
* Version: 0.0.0-next-c73b24c-20230510
|
29
|
+
* Release date: 28/03/2023 (built at 10/05/2023 12:07:19)
|
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/03/2023 (built at
|
28
|
+
* Version: 0.0.0-next-c73b24c-20230510
|
29
|
+
* Release date: 28/03/2023 (built at 10/05/2023 12:07:19)
|
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__(45);
|
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__(45);
|
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__(45);
|
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-c73b24c-20230510";
|
3107
3107
|
var keyValidityDate;
|
3108
3108
|
var consoleMessageState = 'invalid';
|
3109
3109
|
var domMessageState = 'invalid';
|
@@ -4975,26 +4975,6 @@ $({ 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 */
|
4998
4978
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
4999
4979
|
|
5000
4980
|
"use strict";
|
@@ -5273,6 +5253,26 @@ function serializeProduction(node) {
|
|
5273
5253
|
}
|
5274
5254
|
//# sourceMappingURL=gast_public.js.map
|
5275
5255
|
|
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__(45);
|
5368
5368
|
var shared = __webpack_require__(140);
|
5369
5369
|
var hasOwn = __webpack_require__(54);
|
5370
5370
|
var uid = __webpack_require__(211);
|
@@ -9641,7 +9641,7 @@ $({ target: 'Number', stat: true }, {
|
|
9641
9641
|
var $ = __webpack_require__(22);
|
9642
9642
|
var IS_PURE = __webpack_require__(114);
|
9643
9643
|
var DESCRIPTORS = __webpack_require__(55);
|
9644
|
-
var global = __webpack_require__(
|
9644
|
+
var global = __webpack_require__(45);
|
9645
9645
|
var path = __webpack_require__(413);
|
9646
9646
|
var uncurryThis = __webpack_require__(30);
|
9647
9647
|
var isForced = __webpack_require__(217);
|
@@ -19282,7 +19282,7 @@ class FormulaCellVertex extends FormulaVertex {
|
|
19282
19282
|
/* 106 */
|
19283
19283
|
/***/ (function(module, exports, __webpack_require__) {
|
19284
19284
|
|
19285
|
-
var global = __webpack_require__(
|
19285
|
+
var global = __webpack_require__(45);
|
19286
19286
|
var isCallable = __webpack_require__(49);
|
19287
19287
|
|
19288
19288
|
var aFunction = function (argument) {
|
@@ -19299,7 +19299,7 @@ module.exports = function (namespace, method) {
|
|
19299
19299
|
/***/ (function(module, exports, __webpack_require__) {
|
19300
19300
|
|
19301
19301
|
var NATIVE_WEAK_MAP = __webpack_require__(389);
|
19302
|
-
var global = __webpack_require__(
|
19302
|
+
var global = __webpack_require__(45);
|
19303
19303
|
var isObject = __webpack_require__(63);
|
19304
19304
|
var createNonEnumerableProperty = __webpack_require__(127);
|
19305
19305
|
var hasOwn = __webpack_require__(54);
|
@@ -19967,7 +19967,7 @@ exports.sort = _engine.sort;
|
|
19967
19967
|
"use strict";
|
19968
19968
|
__webpack_require__.r(__webpack_exports__);
|
19969
19969
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GAstVisitor", function() { return GAstVisitor; });
|
19970
|
-
/* harmony import */ var _gast_public__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
19970
|
+
/* harmony import */ var _gast_public__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(44);
|
19971
19971
|
|
19972
19972
|
var GAstVisitor = /** @class */ (function () {
|
19973
19973
|
function GAstVisitor() {
|
@@ -20026,7 +20026,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
20026
20026
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "defaultGrammarValidatorErrorProvider", function() { return defaultGrammarValidatorErrorProvider; });
|
20027
20027
|
/* harmony import */ var _scan_tokens_public__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(87);
|
20028
20028
|
/* 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__(
|
20029
|
+
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(44);
|
20030
20030
|
/* harmony import */ var _grammar_gast_gast__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(158);
|
20031
20031
|
/* harmony import */ var _grammar_checks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(201);
|
20032
20032
|
|
@@ -22178,10 +22178,10 @@ var store = __webpack_require__(264);
|
|
22178
22178
|
(module.exports = function (key, value) {
|
22179
22179
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
22180
22180
|
})('versions', []).push({
|
22181
|
-
version: '3.30.
|
22181
|
+
version: '3.30.1',
|
22182
22182
|
mode: IS_PURE ? 'pure' : 'global',
|
22183
22183
|
copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
|
22184
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.30.
|
22184
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.30.1/LICENSE',
|
22185
22185
|
source: 'https://github.com/zloirock/core-js'
|
22186
22186
|
});
|
22187
22187
|
|
@@ -22193,18 +22193,13 @@ var store = __webpack_require__(264);
|
|
22193
22193
|
/* eslint-disable es/no-symbol -- required for testing */
|
22194
22194
|
var V8_VERSION = __webpack_require__(169);
|
22195
22195
|
var fails = __webpack_require__(28);
|
22196
|
-
var global = __webpack_require__(44);
|
22197
|
-
|
22198
|
-
var $String = global.String;
|
22199
22196
|
|
22200
22197
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
22201
22198
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
22202
22199
|
var symbol = Symbol();
|
22203
22200
|
// Chrome 38 Symbol has incorrect toString conversion
|
22204
22201
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
22205
|
-
|
22206
|
-
// of course, fail.
|
22207
|
-
return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
22202
|
+
return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
22208
22203
|
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
22209
22204
|
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
22210
22205
|
});
|
@@ -22313,7 +22308,7 @@ addToUnscopables('fill');
|
|
22313
22308
|
/***/ (function(module, exports, __webpack_require__) {
|
22314
22309
|
|
22315
22310
|
var DESCRIPTORS = __webpack_require__(55);
|
22316
|
-
var global = __webpack_require__(
|
22311
|
+
var global = __webpack_require__(45);
|
22317
22312
|
var uncurryThis = __webpack_require__(30);
|
22318
22313
|
var isForced = __webpack_require__(217);
|
22319
22314
|
var inheritIfRequired = __webpack_require__(280);
|
@@ -24877,7 +24872,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
24877
24872
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DslMethodsCollectorVisitor", function() { return DslMethodsCollectorVisitor; });
|
24878
24873
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "collectMethods", function() { return collectMethods; });
|
24879
24874
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
24880
|
-
/* harmony import */ var _gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
24875
|
+
/* harmony import */ var _gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44);
|
24881
24876
|
/* harmony import */ var _gast_visitor_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(119);
|
24882
24877
|
var __extends = (undefined && undefined.__extends) || (function () {
|
24883
24878
|
var extendStatics = function (d, b) {
|
@@ -29732,7 +29727,7 @@ module.exports = function (key) {
|
|
29732
29727
|
/* 169 */
|
29733
29728
|
/***/ (function(module, exports, __webpack_require__) {
|
29734
29729
|
|
29735
|
-
var global = __webpack_require__(
|
29730
|
+
var global = __webpack_require__(45);
|
29736
29731
|
var userAgent = __webpack_require__(122);
|
29737
29732
|
|
29738
29733
|
var process = global.process;
|
@@ -30791,7 +30786,7 @@ exports.default = BaseRenderer;
|
|
30791
30786
|
|
30792
30787
|
var $ = __webpack_require__(22);
|
30793
30788
|
var DESCRIPTORS = __webpack_require__(55);
|
30794
|
-
var global = __webpack_require__(
|
30789
|
+
var global = __webpack_require__(45);
|
30795
30790
|
var uncurryThis = __webpack_require__(30);
|
30796
30791
|
var hasOwn = __webpack_require__(54);
|
30797
30792
|
var isCallable = __webpack_require__(49);
|
@@ -31999,7 +31994,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
31999
31994
|
/* harmony import */ var _scan_lexer_errors_public__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(242);
|
32000
31995
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "defaultLexerErrorProvider", function() { return _scan_lexer_errors_public__WEBPACK_IMPORTED_MODULE_6__["defaultLexerErrorProvider"]; });
|
32001
31996
|
|
32002
|
-
/* harmony import */ var _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
31997
|
+
/* harmony import */ var _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(44);
|
32003
31998
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Alternation", function() { return _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_7__["Alternation"]; });
|
32004
31999
|
|
32005
32000
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Flat", function() { return _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_7__["Flat"]; });
|
@@ -32098,7 +32093,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
32098
32093
|
/* harmony import */ var _lookahead__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(202);
|
32099
32094
|
/* harmony import */ var _cst_cst__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(243);
|
32100
32095
|
/* harmony import */ var _interpreter__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(203);
|
32101
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
32096
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(44);
|
32102
32097
|
/* harmony import */ var _gast_gast_visitor_public__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(119);
|
32103
32098
|
var __extends = (undefined && undefined.__extends) || (function () {
|
32104
32099
|
var extendStatics = function (d, b) {
|
@@ -32697,7 +32692,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
32697
32692
|
/* harmony import */ var _interpreter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(203);
|
32698
32693
|
/* harmony import */ var _rest__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(239);
|
32699
32694
|
/* harmony import */ var _scan_tokens__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(157);
|
32700
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
32695
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(44);
|
32701
32696
|
/* harmony import */ var _gast_gast_visitor_public__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(119);
|
32702
32697
|
var __extends = (undefined && undefined.__extends) || (function () {
|
32703
32698
|
var extendStatics = function (d, b) {
|
@@ -33207,7 +33202,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
33207
33202
|
/* harmony import */ var _rest__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(239);
|
33208
33203
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(38);
|
33209
33204
|
/* harmony import */ var _first__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(320);
|
33210
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
33205
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(44);
|
33211
33206
|
var __extends = (undefined && undefined.__extends) || (function () {
|
33212
33207
|
var extendStatics = function (d, b) {
|
33213
33208
|
extendStatics = Object.setPrototypeOf ||
|
@@ -35624,7 +35619,7 @@ module.exports = function (key) {
|
|
35624
35619
|
/* 212 */
|
35625
35620
|
/***/ (function(module, exports, __webpack_require__) {
|
35626
35621
|
|
35627
|
-
var global = __webpack_require__(
|
35622
|
+
var global = __webpack_require__(45);
|
35628
35623
|
var isObject = __webpack_require__(63);
|
35629
35624
|
|
35630
35625
|
var document = global.document;
|
@@ -35782,7 +35777,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
35782
35777
|
"use strict";
|
35783
35778
|
|
35784
35779
|
var $ = __webpack_require__(22);
|
35785
|
-
var global = __webpack_require__(
|
35780
|
+
var global = __webpack_require__(45);
|
35786
35781
|
var uncurryThis = __webpack_require__(30);
|
35787
35782
|
var isForced = __webpack_require__(217);
|
35788
35783
|
var defineBuiltIn = __webpack_require__(97);
|
@@ -37456,7 +37451,7 @@ var VERSION = "6.5.0";
|
|
37456
37451
|
__webpack_require__.r(__webpack_exports__);
|
37457
37452
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RestWalker", function() { return RestWalker; });
|
37458
37453
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
37459
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
37454
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44);
|
37460
37455
|
|
37461
37456
|
|
37462
37457
|
/**
|
@@ -38604,7 +38599,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
38604
38599
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "expandAllNestedRuleNames", function() { return expandAllNestedRuleNames; });
|
38605
38600
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
38606
38601
|
/* harmony import */ var _grammar_keys__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(159);
|
38607
|
-
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
38602
|
+
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(44);
|
38608
38603
|
/* harmony import */ var _grammar_gast_gast_visitor_public__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(119);
|
38609
38604
|
var __extends = (undefined && undefined.__extends) || (function () {
|
38610
38605
|
var extendStatics = function (d, b) {
|
@@ -42075,7 +42070,7 @@ MathConstantsPlugin.implementedFunctions = {
|
|
42075
42070
|
/* 264 */
|
42076
42071
|
/***/ (function(module, exports, __webpack_require__) {
|
42077
42072
|
|
42078
|
-
var global = __webpack_require__(
|
42073
|
+
var global = __webpack_require__(45);
|
42079
42074
|
var defineGlobalProperty = __webpack_require__(265);
|
42080
42075
|
|
42081
42076
|
var SHARED = '__core-js_shared__';
|
@@ -42088,7 +42083,7 @@ module.exports = store;
|
|
42088
42083
|
/* 265 */
|
42089
42084
|
/***/ (function(module, exports, __webpack_require__) {
|
42090
42085
|
|
42091
|
-
var global = __webpack_require__(
|
42086
|
+
var global = __webpack_require__(45);
|
42092
42087
|
|
42093
42088
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
42094
42089
|
var defineProperty = Object.defineProperty;
|
@@ -42595,7 +42590,7 @@ module.exports = _unsupportedIterableToArray, module.exports.__esModule = true,
|
|
42595
42590
|
/***/ (function(module, exports, __webpack_require__) {
|
42596
42591
|
|
42597
42592
|
var fails = __webpack_require__(28);
|
42598
|
-
var global = __webpack_require__(
|
42593
|
+
var global = __webpack_require__(45);
|
42599
42594
|
|
42600
42595
|
// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
|
42601
42596
|
var $RegExp = global.RegExp;
|
@@ -42647,7 +42642,7 @@ module.exports = function (S, index, unicode) {
|
|
42647
42642
|
|
42648
42643
|
"use strict";
|
42649
42644
|
|
42650
|
-
var global = __webpack_require__(
|
42645
|
+
var global = __webpack_require__(45);
|
42651
42646
|
var apply = __webpack_require__(129);
|
42652
42647
|
var isCallable = __webpack_require__(49);
|
42653
42648
|
var ENGINE_IS_BUN = __webpack_require__(723);
|
@@ -50401,7 +50396,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
50401
50396
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "firstForBranching", function() { return firstForBranching; });
|
50402
50397
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "firstForTerminal", function() { return firstForTerminal; });
|
50403
50398
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
50404
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
50399
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44);
|
50405
50400
|
/* harmony import */ var _gast_gast__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(158);
|
50406
50401
|
|
50407
50402
|
|
@@ -62154,7 +62149,7 @@ module.exports = getBuiltIn('document', 'documentElement');
|
|
62154
62149
|
/* 389 */
|
62155
62150
|
/***/ (function(module, exports, __webpack_require__) {
|
62156
62151
|
|
62157
|
-
var global = __webpack_require__(
|
62152
|
+
var global = __webpack_require__(45);
|
62158
62153
|
var isCallable = __webpack_require__(49);
|
62159
62154
|
|
62160
62155
|
var WeakMap = global.WeakMap;
|
@@ -65477,6 +65472,11 @@ function Core(rootElement, userSettings) {
|
|
65477
65472
|
* __Note__: This method does not participate in data transformation. If the visual data of the table is reordered,
|
65478
65473
|
* sorted or trimmed only physical indexes are correct.
|
65479
65474
|
*
|
65475
|
+
* __Note__: This method may return incorrect values for cells that contain
|
65476
|
+
* [formulas](@/guides/formulas/formula-calculation.md). This is because `getSourceData()`
|
65477
|
+
* operates on source data ([physical indexes](@/api/indexMapper.md)),
|
65478
|
+
* whereas formulas operate on visual data (visual indexes).
|
65479
|
+
*
|
65480
65480
|
* @memberof Core#
|
65481
65481
|
* @function getSourceData
|
65482
65482
|
* @param {number} [row] From physical row index.
|
@@ -67744,7 +67744,7 @@ module.exports = function (it) {
|
|
67744
67744
|
/* 413 */
|
67745
67745
|
/***/ (function(module, exports, __webpack_require__) {
|
67746
67746
|
|
67747
|
-
var global = __webpack_require__(
|
67747
|
+
var global = __webpack_require__(45);
|
67748
67748
|
|
67749
67749
|
module.exports = global;
|
67750
67750
|
|
@@ -67835,7 +67835,7 @@ module.exports = function () {
|
|
67835
67835
|
/***/ (function(module, exports, __webpack_require__) {
|
67836
67836
|
|
67837
67837
|
var fails = __webpack_require__(28);
|
67838
|
-
var global = __webpack_require__(
|
67838
|
+
var global = __webpack_require__(45);
|
67839
67839
|
|
67840
67840
|
// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
67841
67841
|
var $RegExp = global.RegExp;
|
@@ -67851,7 +67851,7 @@ module.exports = fails(function () {
|
|
67851
67851
|
/***/ (function(module, exports, __webpack_require__) {
|
67852
67852
|
|
67853
67853
|
var fails = __webpack_require__(28);
|
67854
|
-
var global = __webpack_require__(
|
67854
|
+
var global = __webpack_require__(45);
|
67855
67855
|
|
67856
67856
|
// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
|
67857
67857
|
var $RegExp = global.RegExp;
|
@@ -67879,7 +67879,7 @@ module.exports = function (passed, required) {
|
|
67879
67879
|
/* 421 */
|
67880
67880
|
/***/ (function(module, exports, __webpack_require__) {
|
67881
67881
|
|
67882
|
-
var global = __webpack_require__(
|
67882
|
+
var global = __webpack_require__(45);
|
67883
67883
|
var apply = __webpack_require__(129);
|
67884
67884
|
var bind = __webpack_require__(178);
|
67885
67885
|
var isCallable = __webpack_require__(49);
|
@@ -83837,7 +83837,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
83837
83837
|
/* harmony import */ var _first__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(320);
|
83838
83838
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(38);
|
83839
83839
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(321);
|
83840
|
-
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
83840
|
+
/* harmony import */ var _gast_gast_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(44);
|
83841
83841
|
var __extends = (undefined && undefined.__extends) || (function () {
|
83842
83842
|
var extendStatics = function (d, b) {
|
83843
83843
|
extendStatics = Object.setPrototypeOf ||
|
@@ -84898,7 +84898,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
84898
84898
|
/* harmony import */ var _parser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(68);
|
84899
84899
|
/* harmony import */ var _errors_public__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(120);
|
84900
84900
|
/* harmony import */ var _grammar_checks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(201);
|
84901
|
-
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
84901
|
+
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(44);
|
84902
84902
|
|
84903
84903
|
|
84904
84904
|
|
@@ -86039,7 +86039,7 @@ var ContentAssist = /** @class */ (function () {
|
|
86039
86039
|
__webpack_require__.r(__webpack_exports__);
|
86040
86040
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GastRecorder", function() { return GastRecorder; });
|
86041
86041
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
86042
|
-
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
86042
|
+
/* harmony import */ var _grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44);
|
86043
86043
|
/* harmony import */ var _scan_lexer_public__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(137);
|
86044
86044
|
/* harmony import */ var _scan_tokens__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(157);
|
86045
86045
|
/* harmony import */ var _scan_tokens_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(87);
|
@@ -86439,7 +86439,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
86439
86439
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "genAlternation", function() { return genAlternation; });
|
86440
86440
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "genSingleAlt", function() { return genSingleAlt; });
|
86441
86441
|
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(38);
|
86442
|
-
/* harmony import */ var _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
86442
|
+
/* harmony import */ var _parse_grammar_gast_gast_public__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44);
|
86443
86443
|
|
86444
86444
|
|
86445
86445
|
/**
|
@@ -91961,7 +91961,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
|
|
91961
91961
|
"use strict";
|
91962
91962
|
|
91963
91963
|
var FREEZING = __webpack_require__(273);
|
91964
|
-
var global = __webpack_require__(
|
91964
|
+
var global = __webpack_require__(45);
|
91965
91965
|
var uncurryThis = __webpack_require__(30);
|
91966
91966
|
var defineBuiltIns = __webpack_require__(274);
|
91967
91967
|
var InternalMetadataModule = __webpack_require__(177);
|
@@ -92209,8 +92209,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
92209
92209
|
Handsontable.CellCoords = _src.CellCoords;
|
92210
92210
|
Handsontable.CellRange = _src.CellRange;
|
92211
92211
|
Handsontable.packageName = 'handsontable';
|
92212
|
-
Handsontable.buildDate = "
|
92213
|
-
Handsontable.version = "0.0.0-next-
|
92212
|
+
Handsontable.buildDate = "10/05/2023 12:07:19";
|
92213
|
+
Handsontable.version = "0.0.0-next-c73b24c-20230510";
|
92214
92214
|
Handsontable.languages = {
|
92215
92215
|
dictionaryKeys: _registry.dictionaryKeys,
|
92216
92216
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
@@ -92613,7 +92613,7 @@ module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
|
|
92613
92613
|
/***/ (function(module, exports, __webpack_require__) {
|
92614
92614
|
|
92615
92615
|
var $ = __webpack_require__(22);
|
92616
|
-
var global = __webpack_require__(
|
92616
|
+
var global = __webpack_require__(45);
|
92617
92617
|
var schedulersFix = __webpack_require__(285);
|
92618
92618
|
|
92619
92619
|
var setInterval = schedulersFix(global.setInterval, true);
|
@@ -92638,7 +92638,7 @@ module.exports = typeof Bun == 'function' && Bun && typeof Bun.version == 'strin
|
|
92638
92638
|
/***/ (function(module, exports, __webpack_require__) {
|
92639
92639
|
|
92640
92640
|
var $ = __webpack_require__(22);
|
92641
|
-
var global = __webpack_require__(
|
92641
|
+
var global = __webpack_require__(45);
|
92642
92642
|
var schedulersFix = __webpack_require__(285);
|
92643
92643
|
|
92644
92644
|
var setTimeout = schedulersFix(global.setTimeout, true);
|
@@ -92664,7 +92664,7 @@ __webpack_require__(728);
|
|
92664
92664
|
/***/ (function(module, exports, __webpack_require__) {
|
92665
92665
|
|
92666
92666
|
var $ = __webpack_require__(22);
|
92667
|
-
var global = __webpack_require__(
|
92667
|
+
var global = __webpack_require__(45);
|
92668
92668
|
var clearImmediate = __webpack_require__(421).clear;
|
92669
92669
|
|
92670
92670
|
// `clearImmediate` method
|
@@ -92689,7 +92689,7 @@ module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
|
|
92689
92689
|
/***/ (function(module, exports, __webpack_require__) {
|
92690
92690
|
|
92691
92691
|
var $ = __webpack_require__(22);
|
92692
|
-
var global = __webpack_require__(
|
92692
|
+
var global = __webpack_require__(45);
|
92693
92693
|
var setTask = __webpack_require__(421).set;
|
92694
92694
|
var schedulersFix = __webpack_require__(285);
|
92695
92695
|
|
@@ -101923,7 +101923,7 @@ exports.default = _default;
|
|
101923
101923
|
"use strict";
|
101924
101924
|
|
101925
101925
|
var $ = __webpack_require__(22);
|
101926
|
-
var global = __webpack_require__(
|
101926
|
+
var global = __webpack_require__(45);
|
101927
101927
|
var call = __webpack_require__(66);
|
101928
101928
|
var uncurryThis = __webpack_require__(30);
|
101929
101929
|
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: 28/03/2023 (built at
|
29
|
+
* Version: 0.0.0-next-c73b24c-20230510
|
30
|
+
* Release date: 28/03/2023 (built at 10/05/2023 12:07:58)
|
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
|