handsontable 0.0.0-next-0416ebd-20231214 → 0.0.0-next-a7e8ff6-20231215
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/dist/handsontable.css +5 -5
- package/dist/handsontable.full.css +5 -5
- package/dist/handsontable.full.js +275 -42
- package/dist/handsontable.full.min.css +3 -3
- package/dist/handsontable.full.min.js +55 -55
- package/dist/handsontable.js +275 -42
- package/dist/handsontable.min.css +3 -3
- package/dist/handsontable.min.js +18 -18
- package/eventManager.js +2 -1
- package/eventManager.mjs +2 -1
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/customBorders/customBorders.d.ts +17 -8
- package/plugins/formulas/formulas.d.ts +1 -0
- package/plugins/manualColumnResize/manualColumnResize.js +6 -1
- package/plugins/manualColumnResize/manualColumnResize.mjs +6 -1
- package/plugins/manualRowResize/manualRowResize.js +7 -3
- package/plugins/manualRowResize/manualRowResize.mjs +7 -3
- package/plugins/undoRedo/undoRedo.js +38 -31
- package/plugins/undoRedo/undoRedo.mjs +38 -31
package/dist/handsontable.js
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: 30/11/2023 (built at
|
28
|
+
* Version: 0.0.0-next-a7e8ff6-20231215
|
29
|
+
* Release date: 30/11/2023 (built at 15/12/2023 11:49:00)
|
30
30
|
*/
|
31
31
|
(function webpackUniversalModuleDefinition(root, factory) {
|
32
32
|
if(typeof exports === 'object' && typeof module === 'object')
|
@@ -107,8 +107,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
107
107
|
Handsontable.CellCoords = _src.CellCoords;
|
108
108
|
Handsontable.CellRange = _src.CellRange;
|
109
109
|
Handsontable.packageName = 'handsontable';
|
110
|
-
Handsontable.buildDate = "
|
111
|
-
Handsontable.version = "0.0.0-next-
|
110
|
+
Handsontable.buildDate = "15/12/2023 11:49:00";
|
111
|
+
Handsontable.version = "0.0.0-next-a7e8ff6-20231215";
|
112
112
|
Handsontable.languages = {
|
113
113
|
dictionaryKeys: _registry.dictionaryKeys,
|
114
114
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
@@ -8515,7 +8515,7 @@ const domMessages = {
|
|
8515
8515
|
function _injectProductInfo(key, element) {
|
8516
8516
|
const hasValidType = !isEmpty(key);
|
8517
8517
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
8518
|
-
const hotVersion = "0.0.0-next-
|
8518
|
+
const hotVersion = "0.0.0-next-a7e8ff6-20231215";
|
8519
8519
|
let keyValidityDate;
|
8520
8520
|
let consoleMessageState = 'invalid';
|
8521
8521
|
let domMessageState = 'invalid';
|
@@ -13979,7 +13979,6 @@ let listenersCounter = 0;
|
|
13979
13979
|
* Event DOM manager for internal use in Handsontable.
|
13980
13980
|
*
|
13981
13981
|
* @class EventManager
|
13982
|
-
* @util
|
13983
13982
|
*/
|
13984
13983
|
class EventManager {
|
13985
13984
|
/**
|
@@ -14012,6 +14011,7 @@ class EventManager {
|
|
14012
14011
|
addEventListener(element, eventName, callback) {
|
14013
14012
|
let options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
|
14014
14013
|
/**
|
14014
|
+
* @private
|
14015
14015
|
* @param {Event} event The event object.
|
14016
14016
|
*/
|
14017
14017
|
function callbackProxy(event) {
|
@@ -14171,6 +14171,7 @@ function extendEvent(event) {
|
|
14171
14171
|
}
|
14172
14172
|
var _default = exports["default"] = EventManager;
|
14173
14173
|
/**
|
14174
|
+
* @private
|
14174
14175
|
* @returns {number}
|
14175
14176
|
*/
|
14176
14177
|
function getListenersCounter() {
|
@@ -75458,7 +75459,12 @@ class ManualColumnResize extends _base.BasePlugin {
|
|
75458
75459
|
* @returns {boolean}
|
75459
75460
|
*/
|
75460
75461
|
checkIfColumnHeader(element) {
|
75461
|
-
|
75462
|
+
const thead = (0, _element.closest)(element, ['THEAD'], this.hot.rootElement);
|
75463
|
+
const {
|
75464
|
+
topOverlay,
|
75465
|
+
topInlineStartCornerOverlay
|
75466
|
+
} = this.hot.view._wt.wtOverlays;
|
75467
|
+
return [topOverlay.clone.wtTable.THEAD, topInlineStartCornerOverlay.clone.wtTable.THEAD].includes(thead);
|
75462
75468
|
}
|
75463
75469
|
|
75464
75470
|
/**
|
@@ -77083,9 +77089,13 @@ class ManualRowResize extends _base.BasePlugin {
|
|
77083
77089
|
* @returns {boolean}
|
77084
77090
|
*/
|
77085
77091
|
checkIfRowHeader(element) {
|
77086
|
-
|
77087
|
-
const
|
77088
|
-
|
77092
|
+
const tbody = (0, _element.closest)(element, ['TBODY'], this.hot.rootElement);
|
77093
|
+
const {
|
77094
|
+
inlineStartOverlay,
|
77095
|
+
topInlineStartCornerOverlay,
|
77096
|
+
bottomInlineStartCornerOverlay
|
77097
|
+
} = this.hot.view._wt.wtOverlays;
|
77098
|
+
return [inlineStartOverlay.clone.wtTable.TBODY, topInlineStartCornerOverlay.clone.wtTable.TBODY, bottomInlineStartCornerOverlay.clone.wtTable.TBODY].includes(tbody);
|
77089
77099
|
}
|
77090
77100
|
|
77091
77101
|
/**
|
@@ -87354,6 +87364,7 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|
87354
87364
|
var _interopRequireDefault = __webpack_require__(1);
|
87355
87365
|
exports.__esModule = true;
|
87356
87366
|
__webpack_require__(8);
|
87367
|
+
__webpack_require__(670);
|
87357
87368
|
var _pluginHooks = _interopRequireDefault(__webpack_require__(128));
|
87358
87369
|
var _array = __webpack_require__(113);
|
87359
87370
|
var _number = __webpack_require__(141);
|
@@ -87410,11 +87421,30 @@ function UndoRedo(instance) {
|
|
87410
87421
|
instance.addHook('afterCreateRow', (index, amount, source) => {
|
87411
87422
|
plugin.done(() => new UndoRedo.CreateRowAction(index, amount), source);
|
87412
87423
|
});
|
87424
|
+
const getCellMetas = (fromRow, toRow, fromColumn, toColumn) => {
|
87425
|
+
const genericKeys = ['visualRow', 'visualCol', 'row', 'col', 'prop'];
|
87426
|
+
const genericKeysLength = genericKeys.length;
|
87427
|
+
const cellMetas = [];
|
87428
|
+
(0, _number.rangeEach)(fromColumn, toColumn, columnIndex => {
|
87429
|
+
(0, _number.rangeEach)(fromRow, toRow, rowIndex => {
|
87430
|
+
const cellMeta = instance.getCellMeta(rowIndex, columnIndex);
|
87431
|
+
if (Object.keys(cellMeta).length !== genericKeysLength) {
|
87432
|
+
const uniqueMeta = Object.fromEntries(Object.entries(cellMeta).filter(_ref => {
|
87433
|
+
let [key] = _ref;
|
87434
|
+
return genericKeys.includes(key) === false;
|
87435
|
+
}));
|
87436
|
+
cellMetas.push([cellMeta.visualRow, cellMeta.visualCol, uniqueMeta]);
|
87437
|
+
}
|
87438
|
+
});
|
87439
|
+
});
|
87440
|
+
return cellMetas;
|
87441
|
+
};
|
87413
87442
|
instance.addHook('beforeRemoveRow', (index, amount, logicRows, source) => {
|
87414
87443
|
const wrappedAction = () => {
|
87415
87444
|
const physicalRowIndex = instance.toPhysicalRow(index);
|
87445
|
+
const lastRowIndex = physicalRowIndex + amount - 1;
|
87416
87446
|
const removedData = (0, _object.deepClone)(plugin.instance.getSourceData(physicalRowIndex, 0, physicalRowIndex + amount - 1, plugin.instance.countSourceCols() - 1));
|
87417
|
-
return new UndoRedo.RemoveRowAction(physicalRowIndex, removedData, instance.getSettings().fixedRowsBottom, instance.getSettings().fixedRowsTop, instance.rowIndexMapper.getIndexesSequence());
|
87447
|
+
return new UndoRedo.RemoveRowAction(physicalRowIndex, removedData, instance.getSettings().fixedRowsBottom, instance.getSettings().fixedRowsTop, instance.rowIndexMapper.getIndexesSequence(), getCellMetas(physicalRowIndex, lastRowIndex, 0, instance.countCols() - 1));
|
87418
87448
|
};
|
87419
87449
|
plugin.done(wrappedAction, source);
|
87420
87450
|
});
|
@@ -87425,13 +87455,14 @@ function UndoRedo(instance) {
|
|
87425
87455
|
const wrappedAction = () => {
|
87426
87456
|
const originalData = plugin.instance.getSourceDataArray();
|
87427
87457
|
const columnIndex = (plugin.instance.countCols() + index) % plugin.instance.countCols();
|
87458
|
+
const lastColumnIndex = columnIndex + amount - 1;
|
87428
87459
|
const removedData = [];
|
87429
87460
|
const headers = [];
|
87430
87461
|
const indexes = [];
|
87431
87462
|
(0, _number.rangeEach)(originalData.length - 1, i => {
|
87432
87463
|
const column = [];
|
87433
87464
|
const origRow = originalData[i];
|
87434
|
-
(0, _number.rangeEach)(columnIndex,
|
87465
|
+
(0, _number.rangeEach)(columnIndex, lastColumnIndex, j => {
|
87435
87466
|
column.push(origRow[instance.toPhysicalColumn(j)]);
|
87436
87467
|
});
|
87437
87468
|
removedData.push(column);
|
@@ -87446,7 +87477,7 @@ function UndoRedo(instance) {
|
|
87446
87477
|
}
|
87447
87478
|
const columnsMap = instance.columnIndexMapper.getIndexesSequence();
|
87448
87479
|
const rowsMap = instance.rowIndexMapper.getIndexesSequence();
|
87449
|
-
return new UndoRedo.RemoveColumnAction(columnIndex, indexes, removedData, headers, columnsMap, rowsMap, instance.getSettings().fixedColumnsStart);
|
87480
|
+
return new UndoRedo.RemoveColumnAction(columnIndex, indexes, removedData, headers, columnsMap, rowsMap, instance.getSettings().fixedColumnsStart, getCellMetas(0, instance.countRows(), columnIndex, lastColumnIndex));
|
87450
87481
|
};
|
87451
87482
|
plugin.done(wrappedAction, source);
|
87452
87483
|
});
|
@@ -87714,32 +87745,6 @@ UndoRedo.ChangeAction.prototype.undo = function (instance, undoneCallback) {
|
|
87714
87745
|
instance.undoRedo.doneActions.pop();
|
87715
87746
|
}
|
87716
87747
|
}
|
87717
|
-
const selectedLast = instance.getSelectedLast();
|
87718
|
-
if (selectedLast !== undefined) {
|
87719
|
-
const [changedRow, changedColumn] = data[0];
|
87720
|
-
const [selectedRow, selectedColumn] = selectedLast;
|
87721
|
-
const firstFullyVisibleRow = instance.view.getFirstFullyVisibleRow();
|
87722
|
-
const firstFullyVisibleColumn = instance.view.getFirstFullyVisibleColumn();
|
87723
|
-
const isInVerticalViewPort = changedRow >= firstFullyVisibleRow;
|
87724
|
-
const isInHorizontalViewPort = changedColumn >= firstFullyVisibleColumn;
|
87725
|
-
const isInViewport = isInVerticalViewPort && isInHorizontalViewPort;
|
87726
|
-
const isChangedSelection = selectedRow !== changedRow || selectedColumn !== changedColumn;
|
87727
|
-
|
87728
|
-
// Performing scroll only when selection has been changed right after editing a cell.
|
87729
|
-
if (isInViewport === false && isChangedSelection === true) {
|
87730
|
-
const scrollConfig = {
|
87731
|
-
row: changedRow,
|
87732
|
-
col: changedColumn
|
87733
|
-
};
|
87734
|
-
if (isInVerticalViewPort === false) {
|
87735
|
-
scrollConfig.verticalSnap = 'top';
|
87736
|
-
}
|
87737
|
-
if (isInHorizontalViewPort === false) {
|
87738
|
-
scrollConfig.horizontalSnap = 'start';
|
87739
|
-
}
|
87740
|
-
instance.scrollViewportTo(scrollConfig);
|
87741
|
-
}
|
87742
|
-
}
|
87743
87748
|
instance.selectCells(this.selected, false, false);
|
87744
87749
|
};
|
87745
87750
|
UndoRedo.ChangeAction.prototype.redo = function (instance, onFinishCallback) {
|
@@ -87790,14 +87795,16 @@ UndoRedo.CreateRowAction.prototype.redo = function (instance, redoneCallback) {
|
|
87790
87795
|
* @param {number} fixedRowsBottom Number of fixed rows on the bottom. Remove row action change it sometimes.
|
87791
87796
|
* @param {number} fixedRowsTop Number of fixed rows on the top. Remove row action change it sometimes.
|
87792
87797
|
* @param {Array} rowIndexesSequence Row index sequence taken from the row index mapper.
|
87798
|
+
* @param {Array} removedCellMetas List of removed cell metas.
|
87793
87799
|
*/
|
87794
|
-
UndoRedo.RemoveRowAction = function (index, data, fixedRowsBottom, fixedRowsTop, rowIndexesSequence) {
|
87800
|
+
UndoRedo.RemoveRowAction = function (index, data, fixedRowsBottom, fixedRowsTop, rowIndexesSequence, removedCellMetas) {
|
87795
87801
|
this.index = index;
|
87796
87802
|
this.data = data;
|
87797
87803
|
this.actionType = 'remove_row';
|
87798
87804
|
this.fixedRowsBottom = fixedRowsBottom;
|
87799
87805
|
this.fixedRowsTop = fixedRowsTop;
|
87800
87806
|
this.rowIndexesSequence = rowIndexesSequence;
|
87807
|
+
this.removedCellMetas = removedCellMetas;
|
87801
87808
|
};
|
87802
87809
|
(0, _object.inherit)(UndoRedo.RemoveRowAction, UndoRedo.Action);
|
87803
87810
|
UndoRedo.RemoveRowAction.prototype.undo = function (instance, undoneCallback) {
|
@@ -87816,6 +87823,10 @@ UndoRedo.RemoveRowAction.prototype.undo = function (instance, undoneCallback) {
|
|
87816
87823
|
});
|
87817
87824
|
});
|
87818
87825
|
instance.alter('insert_row_above', this.index, this.data.length, 'UndoRedo.undo');
|
87826
|
+
this.removedCellMetas.forEach(_ref2 => {
|
87827
|
+
let [rowIndex, columnIndex, cellMeta] = _ref2;
|
87828
|
+
instance.setCellMetaObject(rowIndex, columnIndex, cellMeta);
|
87829
|
+
});
|
87819
87830
|
instance.addHookOnce('afterViewRender', undoneCallback);
|
87820
87831
|
instance.setSourceDataAtCell(changes, null, null, 'UndoRedo.undo');
|
87821
87832
|
instance.rowIndexMapper.setIndexesSequence(this.rowIndexesSequence);
|
@@ -87858,8 +87869,9 @@ UndoRedo.CreateColumnAction.prototype.redo = function (instance, redoneCallback)
|
|
87858
87869
|
* @param {number[]} columnPositions The column position.
|
87859
87870
|
* @param {number[]} rowPositions The row position.
|
87860
87871
|
* @param {number} fixedColumnsStart Number of fixed columns on the left. Remove column action change it sometimes.
|
87872
|
+
* @param {Array} removedCellMetas List of removed cell metas.
|
87861
87873
|
*/
|
87862
|
-
UndoRedo.RemoveColumnAction = function (index, indexes, data, headers, columnPositions, rowPositions, fixedColumnsStart) {
|
87874
|
+
UndoRedo.RemoveColumnAction = function (index, indexes, data, headers, columnPositions, rowPositions, fixedColumnsStart, removedCellMetas) {
|
87863
87875
|
// eslint-disable-line max-len
|
87864
87876
|
this.index = index;
|
87865
87877
|
this.indexes = indexes;
|
@@ -87870,6 +87882,7 @@ UndoRedo.RemoveColumnAction = function (index, indexes, data, headers, columnPos
|
|
87870
87882
|
this.rowPositions = rowPositions.slice(0);
|
87871
87883
|
this.actionType = 'remove_col';
|
87872
87884
|
this.fixedColumnsStart = fixedColumnsStart;
|
87885
|
+
this.removedCellMetas = removedCellMetas;
|
87873
87886
|
};
|
87874
87887
|
(0, _object.inherit)(UndoRedo.RemoveColumnAction, UndoRedo.Action);
|
87875
87888
|
UndoRedo.RemoveColumnAction.prototype.undo = function (instance, undoneCallback) {
|
@@ -87899,6 +87912,10 @@ UndoRedo.RemoveColumnAction.prototype.undo = function (instance, undoneCallback)
|
|
87899
87912
|
instance.getSettings().colHeaders[ascendingIndexes[columnIndex]] = headerData;
|
87900
87913
|
});
|
87901
87914
|
}
|
87915
|
+
this.removedCellMetas.forEach(_ref3 => {
|
87916
|
+
let [rowIndex, columnIndex, cellMeta] = _ref3;
|
87917
|
+
instance.setCellMetaObject(rowIndex, columnIndex, cellMeta);
|
87918
|
+
});
|
87902
87919
|
instance.batchExecution(() => {
|
87903
87920
|
// Restore row sequence in a case when all columns are removed. the original
|
87904
87921
|
// row sequence is lost in that case.
|
@@ -88217,6 +88234,222 @@ var _default = exports["default"] = UndoRedo;
|
|
88217
88234
|
|
88218
88235
|
/***/ }),
|
88219
88236
|
/* 670 */
|
88237
|
+
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
|
88238
|
+
|
88239
|
+
"use strict";
|
88240
|
+
|
88241
|
+
var $ = __webpack_require__(9);
|
88242
|
+
var iterate = __webpack_require__(671);
|
88243
|
+
var createProperty = __webpack_require__(677);
|
88244
|
+
|
88245
|
+
// `Object.fromEntries` method
|
88246
|
+
// https://github.com/tc39/proposal-object-from-entries
|
88247
|
+
$({ target: 'Object', stat: true }, {
|
88248
|
+
fromEntries: function fromEntries(iterable) {
|
88249
|
+
var obj = {};
|
88250
|
+
iterate(iterable, function (k, v) {
|
88251
|
+
createProperty(obj, k, v);
|
88252
|
+
}, { AS_ENTRIES: true });
|
88253
|
+
return obj;
|
88254
|
+
}
|
88255
|
+
});
|
88256
|
+
|
88257
|
+
|
88258
|
+
/***/ }),
|
88259
|
+
/* 671 */
|
88260
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
88261
|
+
|
88262
|
+
"use strict";
|
88263
|
+
|
88264
|
+
var bind = __webpack_require__(97);
|
88265
|
+
var call = __webpack_require__(14);
|
88266
|
+
var anObject = __webpack_require__(53);
|
88267
|
+
var tryToString = __webpack_require__(38);
|
88268
|
+
var isArrayIteratorMethod = __webpack_require__(672);
|
88269
|
+
var lengthOfArrayLike = __webpack_require__(70);
|
88270
|
+
var isPrototypeOf = __webpack_require__(31);
|
88271
|
+
var getIterator = __webpack_require__(674);
|
88272
|
+
var getIteratorMethod = __webpack_require__(675);
|
88273
|
+
var iteratorClose = __webpack_require__(676);
|
88274
|
+
|
88275
|
+
var $TypeError = TypeError;
|
88276
|
+
|
88277
|
+
var Result = function (stopped, result) {
|
88278
|
+
this.stopped = stopped;
|
88279
|
+
this.result = result;
|
88280
|
+
};
|
88281
|
+
|
88282
|
+
var ResultPrototype = Result.prototype;
|
88283
|
+
|
88284
|
+
module.exports = function (iterable, unboundFunction, options) {
|
88285
|
+
var that = options && options.that;
|
88286
|
+
var AS_ENTRIES = !!(options && options.AS_ENTRIES);
|
88287
|
+
var IS_RECORD = !!(options && options.IS_RECORD);
|
88288
|
+
var IS_ITERATOR = !!(options && options.IS_ITERATOR);
|
88289
|
+
var INTERRUPTED = !!(options && options.INTERRUPTED);
|
88290
|
+
var fn = bind(unboundFunction, that);
|
88291
|
+
var iterator, iterFn, index, length, result, next, step;
|
88292
|
+
|
88293
|
+
var stop = function (condition) {
|
88294
|
+
if (iterator) iteratorClose(iterator, 'normal', condition);
|
88295
|
+
return new Result(true, condition);
|
88296
|
+
};
|
88297
|
+
|
88298
|
+
var callFn = function (value) {
|
88299
|
+
if (AS_ENTRIES) {
|
88300
|
+
anObject(value);
|
88301
|
+
return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
|
88302
|
+
} return INTERRUPTED ? fn(value, stop) : fn(value);
|
88303
|
+
};
|
88304
|
+
|
88305
|
+
if (IS_RECORD) {
|
88306
|
+
iterator = iterable.iterator;
|
88307
|
+
} else if (IS_ITERATOR) {
|
88308
|
+
iterator = iterable;
|
88309
|
+
} else {
|
88310
|
+
iterFn = getIteratorMethod(iterable);
|
88311
|
+
if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
|
88312
|
+
// optimisation for array iterators
|
88313
|
+
if (isArrayIteratorMethod(iterFn)) {
|
88314
|
+
for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
|
88315
|
+
result = callFn(iterable[index]);
|
88316
|
+
if (result && isPrototypeOf(ResultPrototype, result)) return result;
|
88317
|
+
} return new Result(false);
|
88318
|
+
}
|
88319
|
+
iterator = getIterator(iterable, iterFn);
|
88320
|
+
}
|
88321
|
+
|
88322
|
+
next = IS_RECORD ? iterable.next : iterator.next;
|
88323
|
+
while (!(step = call(next, iterator)).done) {
|
88324
|
+
try {
|
88325
|
+
result = callFn(step.value);
|
88326
|
+
} catch (error) {
|
88327
|
+
iteratorClose(iterator, 'throw', error);
|
88328
|
+
}
|
88329
|
+
if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
|
88330
|
+
} return new Result(false);
|
88331
|
+
};
|
88332
|
+
|
88333
|
+
|
88334
|
+
/***/ }),
|
88335
|
+
/* 672 */
|
88336
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
88337
|
+
|
88338
|
+
"use strict";
|
88339
|
+
|
88340
|
+
var wellKnownSymbol = __webpack_require__(40);
|
88341
|
+
var Iterators = __webpack_require__(673);
|
88342
|
+
|
88343
|
+
var ITERATOR = wellKnownSymbol('iterator');
|
88344
|
+
var ArrayPrototype = Array.prototype;
|
88345
|
+
|
88346
|
+
// check on default Array iterator
|
88347
|
+
module.exports = function (it) {
|
88348
|
+
return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
|
88349
|
+
};
|
88350
|
+
|
88351
|
+
|
88352
|
+
/***/ }),
|
88353
|
+
/* 673 */
|
88354
|
+
/***/ ((module) => {
|
88355
|
+
|
88356
|
+
"use strict";
|
88357
|
+
|
88358
|
+
module.exports = {};
|
88359
|
+
|
88360
|
+
|
88361
|
+
/***/ }),
|
88362
|
+
/* 674 */
|
88363
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
88364
|
+
|
88365
|
+
"use strict";
|
88366
|
+
|
88367
|
+
var call = __webpack_require__(14);
|
88368
|
+
var aCallable = __webpack_require__(37);
|
88369
|
+
var anObject = __webpack_require__(53);
|
88370
|
+
var tryToString = __webpack_require__(38);
|
88371
|
+
var getIteratorMethod = __webpack_require__(675);
|
88372
|
+
|
88373
|
+
var $TypeError = TypeError;
|
88374
|
+
|
88375
|
+
module.exports = function (argument, usingIterator) {
|
88376
|
+
var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
|
88377
|
+
if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
|
88378
|
+
throw new $TypeError(tryToString(argument) + ' is not iterable');
|
88379
|
+
};
|
88380
|
+
|
88381
|
+
|
88382
|
+
/***/ }),
|
88383
|
+
/* 675 */
|
88384
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
88385
|
+
|
88386
|
+
"use strict";
|
88387
|
+
|
88388
|
+
var classof = __webpack_require__(88);
|
88389
|
+
var getMethod = __webpack_require__(36);
|
88390
|
+
var isNullOrUndefined = __webpack_require__(23);
|
88391
|
+
var Iterators = __webpack_require__(673);
|
88392
|
+
var wellKnownSymbol = __webpack_require__(40);
|
88393
|
+
|
88394
|
+
var ITERATOR = wellKnownSymbol('iterator');
|
88395
|
+
|
88396
|
+
module.exports = function (it) {
|
88397
|
+
if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
|
88398
|
+
|| getMethod(it, '@@iterator')
|
88399
|
+
|| Iterators[classof(it)];
|
88400
|
+
};
|
88401
|
+
|
88402
|
+
|
88403
|
+
/***/ }),
|
88404
|
+
/* 676 */
|
88405
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
88406
|
+
|
88407
|
+
"use strict";
|
88408
|
+
|
88409
|
+
var call = __webpack_require__(14);
|
88410
|
+
var anObject = __webpack_require__(53);
|
88411
|
+
var getMethod = __webpack_require__(36);
|
88412
|
+
|
88413
|
+
module.exports = function (iterator, kind, value) {
|
88414
|
+
var innerResult, innerError;
|
88415
|
+
anObject(iterator);
|
88416
|
+
try {
|
88417
|
+
innerResult = getMethod(iterator, 'return');
|
88418
|
+
if (!innerResult) {
|
88419
|
+
if (kind === 'throw') throw value;
|
88420
|
+
return value;
|
88421
|
+
}
|
88422
|
+
innerResult = call(innerResult, iterator);
|
88423
|
+
} catch (error) {
|
88424
|
+
innerError = true;
|
88425
|
+
innerResult = error;
|
88426
|
+
}
|
88427
|
+
if (kind === 'throw') throw value;
|
88428
|
+
if (innerError) throw innerResult;
|
88429
|
+
anObject(innerResult);
|
88430
|
+
return value;
|
88431
|
+
};
|
88432
|
+
|
88433
|
+
|
88434
|
+
/***/ }),
|
88435
|
+
/* 677 */
|
88436
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
88437
|
+
|
88438
|
+
"use strict";
|
88439
|
+
|
88440
|
+
var toPropertyKey = __webpack_require__(24);
|
88441
|
+
var definePropertyModule = __webpack_require__(51);
|
88442
|
+
var createPropertyDescriptor = __webpack_require__(17);
|
88443
|
+
|
88444
|
+
module.exports = function (object, key, value) {
|
88445
|
+
var propertyKey = toPropertyKey(key);
|
88446
|
+
if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
|
88447
|
+
else object[propertyKey] = value;
|
88448
|
+
};
|
88449
|
+
|
88450
|
+
|
88451
|
+
/***/ }),
|
88452
|
+
/* 678 */
|
88220
88453
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
88221
88454
|
|
88222
88455
|
"use strict";
|
@@ -88325,7 +88558,7 @@ exports.CellRange = _base.CellRange;
|
|
88325
88558
|
var _registry = __webpack_require__(350);
|
88326
88559
|
var _eventManager = _interopRequireWildcard(__webpack_require__(131));
|
88327
88560
|
var _translations = __webpack_require__(224);
|
88328
|
-
var _jquery = _interopRequireDefault(__webpack_require__(
|
88561
|
+
var _jquery = _interopRequireDefault(__webpack_require__(678));
|
88329
88562
|
var _ghostTable = _interopRequireDefault(__webpack_require__(428));
|
88330
88563
|
var parseTableHelpers = _interopRequireWildcard(__webpack_require__(138));
|
88331
88564
|
var arrayHelpers = _interopRequireWildcard(__webpack_require__(113));
|
@@ -25,9 +25,9 @@
|
|
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: 30/11/2023 (built at
|
30
|
-
*/.handsontable .table td,.handsontable .table th{border-top:none}.handsontable tr{background:#fff}.handsontable td{background-color:inherit}.handsontable .table caption+thead tr:first-child td,.handsontable .table caption+thead tr:first-child th,.handsontable .table colgroup+thead tr:first-child td,.handsontable .table colgroup+thead tr:first-child th,.handsontable .table thead:first-child tr:first-child td,.handsontable .table thead:first-child tr:first-child th{border-top:1px solid #ccc}.handsontable .table-bordered{border:0;border-collapse:separate}.handsontable .table-bordered td,.handsontable .table-bordered th{border-left:none}.handsontable .table-bordered td:first-child,.handsontable .table-bordered th:first-child{border-left:1px solid #ccc}.handsontable .table>tbody>tr>td,.handsontable .table>tbody>tr>th,.handsontable .table>tfoot>tr>td,.handsontable .table>tfoot>tr>th,.handsontable .table>thead>tr>td,.handsontable .table>thead>tr>th{line-height:21px;padding:0}.col-lg-1.handsontable,.col-lg-10.handsontable,.col-lg-11.handsontable,.col-lg-12.handsontable,.col-lg-2.handsontable,.col-lg-3.handsontable,.col-lg-4.handsontable,.col-lg-5.handsontable,.col-lg-6.handsontable,.col-lg-7.handsontable,.col-lg-8.handsontable,.col-lg-9.handsontable,.col-md-1.handsontable,.col-md-10.handsontable,.col-md-11.handsontable,.col-md-12.handsontable,.col-md-2.handsontable,.col-md-3.handsontable,.col-md-4.handsontable,.col-md-5.handsontable,.col-md-6.handsontable,.col-md-7.handsontable,.col-md-8.handsontable,.col-md-9.handsontable .col-sm-1.handsontable,.col-sm-10.handsontable,.col-sm-11.handsontable,.col-sm-12.handsontable,.col-sm-2.handsontable,.col-sm-3.handsontable,.col-sm-4.handsontable,.col-sm-5.handsontable,.col-sm-6.handsontable,.col-sm-7.handsontable,.col-sm-8.handsontable,.col-sm-9.handsontable .col-xs-1.handsontable,.col-xs-10.handsontable,.col-xs-11.handsontable,.col-xs-12.handsontable,.col-xs-2.handsontable,.col-xs-3.handsontable,.col-xs-4.handsontable,.col-xs-5.handsontable,.col-xs-6.handsontable,.col-xs-7.handsontable,.col-xs-8.handsontable,.col-xs-9.handsontable{padding-left:0;padding-right:0}.handsontable .table-striped>tbody>tr:nth-of-type(2n){background-color:#fff}.handsontable{position:relative}.handsontable .hide{display:none}.handsontable .relative{position:relative}.handsontable .wtHider{width:0}.handsontable .wtSpreader{height:auto;position:relative;width:0}.handsontable div,.handsontable input,.handsontable table,.handsontable tbody,.handsontable td,.handsontable textarea,.handsontable th,.handsontable thead{box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box}.handsontable input,.handsontable textarea{min-height:auto}.handsontable table.htCore{border-collapse:separate;border-spacing:0;border-width:0;cursor:default;margin:0;max-height:none;max-width:none;outline-width:0;table-layout:fixed;width:0}.handsontable col,.handsontable col.rowHeader{width:50px}.handsontable td,.handsontable th{background-color:#fff;border-bottom:1px solid #ccc;border-left-width:0;border-right:1px solid #ccc;border-top-width:0;empty-cells:show;height:22px;line-height:21px;outline:none;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:#ffbeba!important}.handsontable td.htNoWrap{white-space:nowrap}.handsontable td.invisibleSelection,.handsontable th.invisibleSelection{outline:none}.handsontable td.invisibleSelection::selection,.handsontable th.invisibleSelection::selection{background:hsla(0,0%,100%,0)}.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 .htFocusCatcher{border:0;height:0;margin:0;opacity:0;padding:0;position:absolute;width:0;z-index:-1}.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):before{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.current,.handsontable thead th.current{box-shadow:inset 0 0 0 2px #4b89ff}.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 3px #eee;color:#222;cursor:pointer;font-size:10px;height:10px;left:unset;line-height:8px;position:absolute;right:5px;text-align:center;top:50%;transform:translateY(-50%);width:10px}[dir=rtl].handsontable .collapsibleIndicator{left:5px;right:unset}.handsontable.mobile,.handsontable.mobile .wtHolder{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-overflow-scrolling:touch;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.handsontable.mobile .handsontableInput:focus{-webkit-appearance:none;-webkit-box-shadow:inset 0 0 0 2px #5292f7;-moz-box-shadow:inset 0 0 0 2px #5292f7;box-shadow:inset 0 0 0 2px #5292f7}.handsontable .bottomSelectionHandle,.handsontable .bottomSelectionHandle-HitArea,.handsontable .topSelectionHandle,.handsontable .topSelectionHandle-HitArea{left:-10000px;right:unset;top:-10000px;z-index:9999}[dir=rtl].handsontable .bottomSelectionHandle,[dir=rtl].handsontable .bottomSelectionHandle-HitArea,[dir=rtl].handsontable .topSelectionHandle,[dir=rtl].handsontable .topSelectionHandle-HitArea{left:unset;right:-10000px}.handsontable.hide-tween{-webkit-animation:opacity-hide .3s;animation:opacity-hide .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable.show-tween{-webkit-animation:opacity-show .3s;animation:opacity-show .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable .htAutocompleteArrow{color:#bbb;cursor:default;float:right;font-size:10px;text-align:center;width:16px}[dir=rtl].handsontable .htAutocompleteArrow{float:left}.handsontable td.htInvalid .htAutocompleteArrow{color:#555}.handsontable td.htInvalid .htAutocompleteArrow:hover{color:#1a1a1a}.handsontable td .htAutocompleteArrow:hover{color:#777}.handsontable td.area .htAutocompleteArrow{color:#d3d3d3}.handsontable .htCheckboxRendererInput{display:inline-block}.handsontable .htCheckboxRendererInput.noValue{opacity:.5}.handsontable .htCheckboxRendererLabel{cursor:pointer;display:inline-block;font-size:inherit;vertical-align:middle}.handsontable .htCheckboxRendererLabel.fullWidth{width:100%}.handsontable .htCommentCell{position:relative}.handsontable .htCommentCell:after{border-left:6px solid transparent;border-right:none;border-top:6px solid #000;content:"";left:unset;position:absolute;right:0;top:0}[dir=rtl].handsontable .htCommentCell:after{border-left:none;border-right:6px solid transparent;left:0;right:unset}.htCommentsContainer .htComments{display:none;position:absolute;z-index:1059}.htCommentsContainer .htCommentTextArea{-webkit-appearance:none;background-color:#fff;border:none;border-left:3px solid #ccc;box-shadow:0 1px 3px rgba(0,0,0,.118),0 1px 2px rgba(0,0,0,.239);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-size:12px;height:90px;outline:0!important;padding:5px;width:215px}[dir=rtl].htCommentsContainer .htCommentTextArea{border-left:none;border-right:3px solid #ccc}.htCommentsContainer .htCommentTextArea:focus{border-left:3px solid #5292f7;border-right:none;box-shadow:0 1px 3px rgba(0,0,0,.118),0 1px 2px rgba(0,0,0,.239),inset 0 0 0 1px #5292f7}[dir=rtl].htCommentsContainer .htCommentTextArea:focus{border-left:none;border-right:3px solid #5292f7}
|
28
|
+
* Version: 0.0.0-next-a7e8ff6-20231215
|
29
|
+
* Release date: 30/11/2023 (built at 15/12/2023 11:49:17)
|
30
|
+
*/.handsontable .table td,.handsontable .table th{border-top:none}.handsontable tr{background:#fff}.handsontable td{background-color:inherit}.handsontable .table caption+thead tr:first-child td,.handsontable .table caption+thead tr:first-child th,.handsontable .table colgroup+thead tr:first-child td,.handsontable .table colgroup+thead tr:first-child th,.handsontable .table thead:first-child tr:first-child td,.handsontable .table thead:first-child tr:first-child th{border-top:1px solid #ccc}.handsontable .table-bordered{border:0;border-collapse:separate}.handsontable .table-bordered td,.handsontable .table-bordered th{border-left:none}.handsontable .table-bordered td:first-child,.handsontable .table-bordered th:first-child{border-left:1px solid #ccc}.handsontable .table>tbody>tr>td,.handsontable .table>tbody>tr>th,.handsontable .table>tfoot>tr>td,.handsontable .table>tfoot>tr>th,.handsontable .table>thead>tr>td,.handsontable .table>thead>tr>th{line-height:21px;padding:0}.col-lg-1.handsontable,.col-lg-10.handsontable,.col-lg-11.handsontable,.col-lg-12.handsontable,.col-lg-2.handsontable,.col-lg-3.handsontable,.col-lg-4.handsontable,.col-lg-5.handsontable,.col-lg-6.handsontable,.col-lg-7.handsontable,.col-lg-8.handsontable,.col-lg-9.handsontable,.col-md-1.handsontable,.col-md-10.handsontable,.col-md-11.handsontable,.col-md-12.handsontable,.col-md-2.handsontable,.col-md-3.handsontable,.col-md-4.handsontable,.col-md-5.handsontable,.col-md-6.handsontable,.col-md-7.handsontable,.col-md-8.handsontable,.col-md-9.handsontable .col-sm-1.handsontable,.col-sm-10.handsontable,.col-sm-11.handsontable,.col-sm-12.handsontable,.col-sm-2.handsontable,.col-sm-3.handsontable,.col-sm-4.handsontable,.col-sm-5.handsontable,.col-sm-6.handsontable,.col-sm-7.handsontable,.col-sm-8.handsontable,.col-sm-9.handsontable .col-xs-1.handsontable,.col-xs-10.handsontable,.col-xs-11.handsontable,.col-xs-12.handsontable,.col-xs-2.handsontable,.col-xs-3.handsontable,.col-xs-4.handsontable,.col-xs-5.handsontable,.col-xs-6.handsontable,.col-xs-7.handsontable,.col-xs-8.handsontable,.col-xs-9.handsontable{padding-left:0;padding-right:0}.handsontable .table-striped>tbody>tr:nth-of-type(2n){background-color:#fff}.handsontable{position:relative}.handsontable .hide{display:none}.handsontable .relative{position:relative}.handsontable .wtHider{width:0}.handsontable .wtSpreader{height:auto;position:relative;width:0}.handsontable div,.handsontable input,.handsontable table,.handsontable tbody,.handsontable td,.handsontable textarea,.handsontable th,.handsontable thead{box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box}.handsontable input,.handsontable textarea{min-height:auto}.handsontable table.htCore{border-collapse:separate;border-spacing:0;border-width:0;cursor:default;margin:0;max-height:none;max-width:none;outline-width:0;table-layout:fixed;width:0}.handsontable col,.handsontable col.rowHeader{width:50px}.handsontable td,.handsontable th{background-color:#fff;border-bottom:1px solid #ccc;border-left-width:0;border-right:1px solid #ccc;border-top-width:0;empty-cells:show;height:22px;line-height:21px;outline:none;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 table.htCore>thead,.handsontable .ht_master table.htCore>tbody>tr>th,.handsontable .ht_master table.htCore>thead{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:#ffbeba!important}.handsontable td.htNoWrap{white-space:nowrap}.handsontable td.invisibleSelection,.handsontable th.invisibleSelection{outline:none}.handsontable td.invisibleSelection::selection,.handsontable th.invisibleSelection::selection{background:hsla(0,0%,100%,0)}.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 .htFocusCatcher{border:0;height:0;margin:0;opacity:0;padding:0;position:absolute;width:0;z-index:-1}.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):before{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.current,.handsontable thead th.current{box-shadow:inset 0 0 0 2px #4b89ff}.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 3px #eee;color:#222;cursor:pointer;font-size:10px;height:10px;left:unset;line-height:8px;position:absolute;right:5px;text-align:center;top:50%;transform:translateY(-50%);width:10px}[dir=rtl].handsontable .collapsibleIndicator{left:5px;right:unset}.handsontable.mobile,.handsontable.mobile .wtHolder{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-overflow-scrolling:touch;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.handsontable.mobile .handsontableInput:focus{-webkit-appearance:none;-webkit-box-shadow:inset 0 0 0 2px #5292f7;-moz-box-shadow:inset 0 0 0 2px #5292f7;box-shadow:inset 0 0 0 2px #5292f7}.handsontable .bottomSelectionHandle,.handsontable .bottomSelectionHandle-HitArea,.handsontable .topSelectionHandle,.handsontable .topSelectionHandle-HitArea{left:-10000px;right:unset;top:-10000px;z-index:9999}[dir=rtl].handsontable .bottomSelectionHandle,[dir=rtl].handsontable .bottomSelectionHandle-HitArea,[dir=rtl].handsontable .topSelectionHandle,[dir=rtl].handsontable .topSelectionHandle-HitArea{left:unset;right:-10000px}.handsontable.hide-tween{-webkit-animation:opacity-hide .3s;animation:opacity-hide .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable.show-tween{-webkit-animation:opacity-show .3s;animation:opacity-show .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable .htAutocompleteArrow{color:#bbb;cursor:default;float:right;font-size:10px;text-align:center;width:16px}[dir=rtl].handsontable .htAutocompleteArrow{float:left}.handsontable td.htInvalid .htAutocompleteArrow{color:#555}.handsontable td.htInvalid .htAutocompleteArrow:hover{color:#1a1a1a}.handsontable td .htAutocompleteArrow:hover{color:#777}.handsontable td.area .htAutocompleteArrow{color:#d3d3d3}.handsontable .htCheckboxRendererInput{display:inline-block}.handsontable .htCheckboxRendererInput.noValue{opacity:.5}.handsontable .htCheckboxRendererLabel{cursor:pointer;display:inline-block;font-size:inherit;vertical-align:middle}.handsontable .htCheckboxRendererLabel.fullWidth{width:100%}.handsontable .htCommentCell{position:relative}.handsontable .htCommentCell:after{border-left:6px solid transparent;border-right:none;border-top:6px solid #000;content:"";left:unset;position:absolute;right:0;top:0}[dir=rtl].handsontable .htCommentCell:after{border-left:none;border-right:6px solid transparent;left:0;right:unset}.htCommentsContainer .htComments{display:none;position:absolute;z-index:1059}.htCommentsContainer .htCommentTextArea{-webkit-appearance:none;background-color:#fff;border:none;border-left:3px solid #ccc;box-shadow:0 1px 3px rgba(0,0,0,.118),0 1px 2px rgba(0,0,0,.239);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-size:12px;height:90px;outline:0!important;padding:5px;width:215px}[dir=rtl].htCommentsContainer .htCommentTextArea{border-left:none;border-right:3px solid #ccc}.htCommentsContainer .htCommentTextArea:focus{border-left:3px solid #5292f7;border-right:none;box-shadow:0 1px 3px rgba(0,0,0,.118),0 1px 2px rgba(0,0,0,.239),inset 0 0 0 1px #5292f7}[dir=rtl].htCommentsContainer .htCommentTextArea:focus{border-left:none;border-right:3px solid #5292f7}
|
31
31
|
/*!
|
32
32
|
* Handsontable ContextMenu
|
33
33
|
*/.htContextMenu:not(.htGhostTable){display:none;position:absolute;z-index:1060}.htContextMenu .ht_clone_bottom,.htContextMenu .ht_clone_bottom_inline_start_corner,.htContextMenu .ht_clone_inline_start,.htContextMenu .ht_clone_top,.htContextMenu .ht_clone_top_inline_start_corner{display:none}.htContextMenu .ht_master table.htCore{border-color:#ccc;border-style:solid;border-width:1px 2px 2px 1px}[dir=rtl].htContextMenu .ht_master table.htCore{border-left-width:2px;border-right-width:1px}.htContextMenu.handsontable:focus{outline:none}.htContextMenu .wtBorder{visibility:hidden}.htContextMenu table tbody tr td{background:#fff;border-width:0;cursor:pointer;overflow:hidden;padding:4px 6px 0;text-overflow:ellipsis;white-space:nowrap}.htContextMenu table tbody tr td:first-child{border-width:0}[dir=rtl].htContextMenu table tbody tr td:first-child{border-left-width:0;border-right-width:0}.htContextMenu table tbody tr td.htDimmed{color:#323232;font-style:normal}.htContextMenu table tbody tr td.current{background:#f3f3f3}.htContextMenu table tbody tr td.htSeparator{border-top:1px solid #e6e6e6;cursor:default;height:0;padding:0}.htContextMenu table tbody tr td.htDisabled{color:#999;cursor:default}.htContextMenu table tbody tr td.htDisabled:hover{background:#fff;color:#999;cursor:default}.htContextMenu table tbody tr.htHidden{display:none}.htContextMenu table tbody tr td .htItemWrapper{margin-left:10px;margin-right:6px}[dir=rtl].htContextMenu table tbody tr td .htItemWrapper{margin-left:6px;margin-right:10px}.htContextMenu table tbody tr td div span.selected{left:4px;margin-top:-2px;position:absolute;right:0}[dir=rtl].htContextMenu table tbody tr td div span.selected{left:0;right:4px}.htContextMenu .ht_master .wtHolder{overflow:hidden}textarea.HandsontableCopyPaste{opacity:0;outline:0 none!important;overflow:hidden;position:fixed!important;right:100%!important;top:0!important}
|