handsontable 0.0.0-next-a4bd0c0-20250307 → 0.0.0-next-89e4f85-20250310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +260 -227
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +13 -13
- package/dist/handsontable.js +260 -227
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +11 -11
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/columnSorting/columnSorting.js +17 -1
- package/plugins/columnSorting/columnSorting.mjs +18 -2
- package/plugins/columnSorting/utils.js +14 -0
- package/plugins/columnSorting/utils.mjs +13 -0
- package/plugins/filters/conditionCollection.js +0 -26
- package/plugins/filters/conditionCollection.mjs +0 -26
- package/plugins/filters/filters.d.ts +2 -0
- package/plugins/filters/filters.js +77 -8
- package/plugins/filters/filters.mjs +77 -8
- package/plugins/mergeCells/mergeCells.js +2 -3
- package/plugins/mergeCells/mergeCells.mjs +2 -3
- package/plugins/multiColumnSorting/multiColumnSorting.js +1 -21
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +1 -21
- package/plugins/undoRedo/actions/filters.js +2 -2
- package/plugins/undoRedo/actions/filters.mjs +2 -2
- package/styles/handsontable.css +2 -2
- package/styles/handsontable.min.css +2 -2
- package/styles/ht-theme-horizon.css +2 -2
- package/styles/ht-theme-horizon.min.css +2 -2
- package/styles/ht-theme-main.css +2 -2
- package/styles/ht-theme-main.min.css +2 -2
- package/plugins/multiColumnSorting/utils.js +0 -13
- package/plugins/multiColumnSorting/utils.mjs +0 -9
|
@@ -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: 20/02/2025 (built at
|
|
28
|
+
* Version: 0.0.0-next-89e4f85-20250310
|
|
29
|
+
* Release date: 20/02/2025 (built at 10/03/2025 13:10:01)
|
|
30
30
|
*/
|
|
31
31
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
32
32
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
@@ -42681,7 +42681,7 @@ exports.CellRange = _base.CellRange;
|
|
|
42681
42681
|
var _registry = __webpack_require__(764);
|
|
42682
42682
|
var _eventManager = _interopRequireWildcard(__webpack_require__(522));
|
|
42683
42683
|
var _translations = __webpack_require__(625);
|
|
42684
|
-
var _jquery = _interopRequireDefault(__webpack_require__(
|
|
42684
|
+
var _jquery = _interopRequireDefault(__webpack_require__(1099));
|
|
42685
42685
|
var _ghostTable = _interopRequireDefault(__webpack_require__(843));
|
|
42686
42686
|
var parseTableHelpers = _interopRequireWildcard(__webpack_require__(524));
|
|
42687
42687
|
var arrayHelpers = _interopRequireWildcard(__webpack_require__(495));
|
|
@@ -42855,8 +42855,8 @@ Handsontable.hooks = _hooks.Hooks.getSingleton();
|
|
|
42855
42855
|
Handsontable.CellCoords = _src.CellCoords;
|
|
42856
42856
|
Handsontable.CellRange = _src.CellRange;
|
|
42857
42857
|
Handsontable.packageName = 'handsontable';
|
|
42858
|
-
Handsontable.buildDate = "
|
|
42859
|
-
Handsontable.version = "0.0.0-next-
|
|
42858
|
+
Handsontable.buildDate = "10/03/2025 13:10:01";
|
|
42859
|
+
Handsontable.version = "0.0.0-next-89e4f85-20250310";
|
|
42860
42860
|
Handsontable.languages = {
|
|
42861
42861
|
dictionaryKeys: _registry.dictionaryKeys,
|
|
42862
42862
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
|
@@ -54181,7 +54181,7 @@ const domMessages = {
|
|
|
54181
54181
|
function _injectProductInfo(key, element) {
|
|
54182
54182
|
const hasValidType = !isEmpty(key);
|
|
54183
54183
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
|
54184
|
-
const hotVersion = "0.0.0-next-
|
|
54184
|
+
const hotVersion = "0.0.0-next-89e4f85-20250310";
|
|
54185
54185
|
let keyValidityDate;
|
|
54186
54186
|
let consoleMessageState = 'invalid';
|
|
54187
54187
|
let domMessageState = 'invalid';
|
|
@@ -111973,23 +111973,23 @@ var _mergeCells = __webpack_require__(1022);
|
|
|
111973
111973
|
exports.MergeCells = _mergeCells.MergeCells;
|
|
111974
111974
|
var _multiColumnSorting = __webpack_require__(1036);
|
|
111975
111975
|
exports.MultiColumnSorting = _multiColumnSorting.MultiColumnSorting;
|
|
111976
|
-
var _multipleSelectionHandles = __webpack_require__(
|
|
111976
|
+
var _multipleSelectionHandles = __webpack_require__(1040);
|
|
111977
111977
|
exports.MultipleSelectionHandles = _multipleSelectionHandles.MultipleSelectionHandles;
|
|
111978
|
-
var _nestedHeaders = __webpack_require__(
|
|
111978
|
+
var _nestedHeaders = __webpack_require__(1042);
|
|
111979
111979
|
exports.NestedHeaders = _nestedHeaders.NestedHeaders;
|
|
111980
|
-
var _nestedRows = __webpack_require__(
|
|
111980
|
+
var _nestedRows = __webpack_require__(1058);
|
|
111981
111981
|
exports.NestedRows = _nestedRows.NestedRows;
|
|
111982
|
-
var _persistentState = __webpack_require__(
|
|
111982
|
+
var _persistentState = __webpack_require__(1066);
|
|
111983
111983
|
exports.PersistentState = _persistentState.PersistentState;
|
|
111984
|
-
var _search = __webpack_require__(
|
|
111984
|
+
var _search = __webpack_require__(1069);
|
|
111985
111985
|
exports.Search = _search.Search;
|
|
111986
|
-
var _stretchColumns = __webpack_require__(
|
|
111986
|
+
var _stretchColumns = __webpack_require__(1071);
|
|
111987
111987
|
exports.StretchColumns = _stretchColumns.StretchColumns;
|
|
111988
|
-
var _touchScroll = __webpack_require__(
|
|
111988
|
+
var _touchScroll = __webpack_require__(1077);
|
|
111989
111989
|
exports.TouchScroll = _touchScroll.TouchScroll;
|
|
111990
|
-
var _trimRows = __webpack_require__(
|
|
111990
|
+
var _trimRows = __webpack_require__(1079);
|
|
111991
111991
|
exports.TrimRows = _trimRows.TrimRows;
|
|
111992
|
-
var _undoRedo = __webpack_require__(
|
|
111992
|
+
var _undoRedo = __webpack_require__(1081);
|
|
111993
111993
|
exports.UndoRedo = _undoRedo.UndoRedo;
|
|
111994
111994
|
var _registry = __webpack_require__(532);
|
|
111995
111995
|
exports.registerPlugin = _registry.registerPlugin;
|
|
@@ -116027,6 +116027,13 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
|
116027
116027
|
_hooks.Hooks.getSingleton().register('beforeColumnSort');
|
|
116028
116028
|
_hooks.Hooks.getSingleton().register('afterColumnSort');
|
|
116029
116029
|
|
|
116030
|
+
/**
|
|
116031
|
+
* Tracks the conflicts between `columnSorting` and `multiColumnSorting` options.
|
|
116032
|
+
* Only one plugin can be enabled for Handsontable instance. Once one of them is enabled,
|
|
116033
|
+
* the other should remain disabled even if it's set to `true`.
|
|
116034
|
+
*/
|
|
116035
|
+
const pluginConflictsState = new WeakMap();
|
|
116036
|
+
|
|
116030
116037
|
// DIFF - MultiColumnSorting & ColumnSorting: changed configuration documentation.
|
|
116031
116038
|
/**
|
|
116032
116039
|
* @plugin ColumnSorting
|
|
@@ -116135,9 +116142,17 @@ class ColumnSorting extends _base.BasePlugin {
|
|
|
116135
116142
|
*/
|
|
116136
116143
|
enablePlugin() {
|
|
116137
116144
|
var _this = this;
|
|
116145
|
+
if (pluginConflictsState.has(this.hot) && pluginConflictsState.get(this.hot) !== this.pluginKey) {
|
|
116146
|
+
this.hot.updateSettings({
|
|
116147
|
+
[this.pluginKey]: false
|
|
116148
|
+
});
|
|
116149
|
+
(0, _utils.warnAboutPluginsConflict)(pluginConflictsState.get(this.hot), this.pluginKey);
|
|
116150
|
+
return;
|
|
116151
|
+
}
|
|
116138
116152
|
if (this.enabled) {
|
|
116139
116153
|
return;
|
|
116140
116154
|
}
|
|
116155
|
+
pluginConflictsState.set(this.hot, this.pluginKey);
|
|
116141
116156
|
this.columnStatesManager = new _columnStatesManager.ColumnStatesManager(this.hot, `${this.pluginKey}.sortingStates`);
|
|
116142
116157
|
this.columnMetaCache = new _translations.PhysicalIndexToValueMap(physicalIndex => {
|
|
116143
116158
|
let visualIndex = this.hot.toVisualColumn(physicalIndex);
|
|
@@ -116182,6 +116197,7 @@ class ColumnSorting extends _base.BasePlugin {
|
|
|
116182
116197
|
}
|
|
116183
116198
|
this.updateHeaderClasses(headerSpanElement);
|
|
116184
116199
|
};
|
|
116200
|
+
pluginConflictsState.delete(this.hot);
|
|
116185
116201
|
|
|
116186
116202
|
// Changing header width and removing indicator.
|
|
116187
116203
|
this.hot.addHook('afterGetColHeader', clearColHeader);
|
|
@@ -116659,7 +116675,7 @@ class ColumnSorting extends _base.BasePlugin {
|
|
|
116659
116675
|
* @param {object} newSettings New settings object.
|
|
116660
116676
|
*/
|
|
116661
116677
|
onUpdateSettings(newSettings) {
|
|
116662
|
-
super.onUpdateSettings();
|
|
116678
|
+
super.onUpdateSettings(newSettings);
|
|
116663
116679
|
if (this.columnMetaCache !== null) {
|
|
116664
116680
|
// Column meta cache base on settings, thus we should re-init the map.
|
|
116665
116681
|
this.columnMetaCache.init(this.hot.columnIndexMapper.getNumberOfIndexes());
|
|
@@ -117018,6 +117034,7 @@ exports.createDateTimeCompareFunction = createDateTimeCompareFunction;
|
|
|
117018
117034
|
exports.getHeaderSpanElement = getHeaderSpanElement;
|
|
117019
117035
|
exports.getNextSortOrder = getNextSortOrder;
|
|
117020
117036
|
exports.isFirstLevelColumnHeader = isFirstLevelColumnHeader;
|
|
117037
|
+
exports.warnAboutPluginsConflict = warnAboutPluginsConflict;
|
|
117021
117038
|
exports.wasHeaderClickedProperly = wasHeaderClickedProperly;
|
|
117022
117039
|
__webpack_require__(287);
|
|
117023
117040
|
__webpack_require__(298);
|
|
@@ -117034,6 +117051,8 @@ var _object = __webpack_require__(499);
|
|
|
117034
117051
|
var _event = __webpack_require__(509);
|
|
117035
117052
|
var _mixed = __webpack_require__(354);
|
|
117036
117053
|
var _sortService = __webpack_require__(860);
|
|
117054
|
+
var _console = __webpack_require__(512);
|
|
117055
|
+
var _templateLiteralTag = __webpack_require__(494);
|
|
117037
117056
|
const ASC_SORT_STATE = exports.ASC_SORT_STATE = 'asc';
|
|
117038
117057
|
const DESC_SORT_STATE = exports.DESC_SORT_STATE = 'desc';
|
|
117039
117058
|
const HEADER_SPAN_CLASS = exports.HEADER_SPAN_CLASS = 'colHeader';
|
|
@@ -117186,6 +117205,17 @@ function createDateTimeCompareFunction(sortOrder, format, columnPluginSettings)
|
|
|
117186
117205
|
};
|
|
117187
117206
|
}
|
|
117188
117207
|
|
|
117208
|
+
/**
|
|
117209
|
+
* Warn users about problems when using `columnSorting` and `multiColumnSorting` plugins simultaneously.
|
|
117210
|
+
*
|
|
117211
|
+
* @param {string} workingPlugin The plugin that will work.
|
|
117212
|
+
* @param {string} disabledPlugin The plugin that will remain disabled.
|
|
117213
|
+
*/
|
|
117214
|
+
function warnAboutPluginsConflict(workingPlugin, disabledPlugin) {
|
|
117215
|
+
(0, _console.warn)((0, _templateLiteralTag.toSingleLine)`Plugins \`columnSorting\` and \`multiColumnSorting\` should not be enabled simultaneously.\x20
|
|
117216
|
+
Only \`${workingPlugin}\` will work. The \`${disabledPlugin}\` plugin will remain disabled.`);
|
|
117217
|
+
}
|
|
117218
|
+
|
|
117189
117219
|
/***/ }),
|
|
117190
117220
|
/* 860 */
|
|
117191
117221
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
@@ -127600,6 +127630,7 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
|
127600
127630
|
*/
|
|
127601
127631
|
var _menuFocusNavigator = /*#__PURE__*/new WeakMap();
|
|
127602
127632
|
var _dropdownMenuTraces = /*#__PURE__*/new WeakMap();
|
|
127633
|
+
var _previousConditionStack = /*#__PURE__*/new WeakMap();
|
|
127603
127634
|
var _Filters_brand = /*#__PURE__*/new WeakSet();
|
|
127604
127635
|
class Filters extends _base.BasePlugin {
|
|
127605
127636
|
static get PLUGIN_KEY() {
|
|
@@ -127671,6 +127702,13 @@ class Filters extends _base.BasePlugin {
|
|
|
127671
127702
|
* @type {WeakSet<Menu>}
|
|
127672
127703
|
*/
|
|
127673
127704
|
_classPrivateFieldInitSpec(this, _dropdownMenuTraces, new WeakSet());
|
|
127705
|
+
/**
|
|
127706
|
+
* Stores the previous state of the condition stack before the latest filter operation.
|
|
127707
|
+
* This is used in the `beforeFilter` plugin to allow performing the undo operation.
|
|
127708
|
+
*
|
|
127709
|
+
* @type {Array}
|
|
127710
|
+
*/
|
|
127711
|
+
_classPrivateFieldInitSpec(this, _previousConditionStack, []);
|
|
127674
127712
|
this.hot.addHook('afterGetColHeader', function () {
|
|
127675
127713
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
127676
127714
|
args[_key] = arguments[_key];
|
|
@@ -128013,6 +128051,51 @@ class Filters extends _base.BasePlugin {
|
|
|
128013
128051
|
}
|
|
128014
128052
|
}
|
|
128015
128053
|
|
|
128054
|
+
/**
|
|
128055
|
+
* Imports filter conditions to all columns to the plugin. The method accepts
|
|
128056
|
+
* the array of conditions with the same structure as the {@link Filters#exportConditions} method returns.
|
|
128057
|
+
* Importing conditions will replace the current conditions. Once replaced, the state of the condition
|
|
128058
|
+
* will be reflected in the UI. To apply the changes and filter the table, call
|
|
128059
|
+
* the {@link Filters#filter} method eventually.
|
|
128060
|
+
*
|
|
128061
|
+
* @param {Array} conditions Array of conditions.
|
|
128062
|
+
*/
|
|
128063
|
+
importConditions(conditions) {
|
|
128064
|
+
this.conditionCollection.importAllConditions(conditions);
|
|
128065
|
+
}
|
|
128066
|
+
|
|
128067
|
+
/* eslint-disable jsdoc/require-description-complete-sentence */
|
|
128068
|
+
/**
|
|
128069
|
+
* Exports filter conditions for all columns from the plugin.
|
|
128070
|
+
* The array represents the filter state for each column. For example:
|
|
128071
|
+
*
|
|
128072
|
+
* ```js
|
|
128073
|
+
* [
|
|
128074
|
+
* {
|
|
128075
|
+
* column: 1,
|
|
128076
|
+
* operation: 'conjunction',
|
|
128077
|
+
* conditions: [
|
|
128078
|
+
* { name: 'gt', args: [95] },
|
|
128079
|
+
* ]
|
|
128080
|
+
* },
|
|
128081
|
+
* {
|
|
128082
|
+
* column: 7,
|
|
128083
|
+
* operation: 'conjunction',
|
|
128084
|
+
* conditions: [
|
|
128085
|
+
* { name: 'contains', args: ['mike'] },
|
|
128086
|
+
* { name: 'begins_with', args: ['m'] },
|
|
128087
|
+
* ]
|
|
128088
|
+
* },
|
|
128089
|
+
* ]
|
|
128090
|
+
* ```
|
|
128091
|
+
*
|
|
128092
|
+
* @returns {Array}
|
|
128093
|
+
*/
|
|
128094
|
+
/* eslint-enable jsdoc/require-description-complete-sentence */
|
|
128095
|
+
exportConditions() {
|
|
128096
|
+
return this.conditionCollection.exportAllConditions();
|
|
128097
|
+
}
|
|
128098
|
+
|
|
128016
128099
|
/**
|
|
128017
128100
|
* Filters data based on added filter conditions.
|
|
128018
128101
|
*
|
|
@@ -128026,8 +128109,8 @@ class Filters extends _base.BasePlugin {
|
|
|
128026
128109
|
const dataFilter = this._createDataFilter();
|
|
128027
128110
|
const needToFilter = !this.conditionCollection.isEmpty();
|
|
128028
128111
|
let visibleVisualRows = [];
|
|
128029
|
-
const conditions = this.
|
|
128030
|
-
const allowFiltering = this.hot.runHooks('beforeFilter', conditions, this
|
|
128112
|
+
const conditions = this.exportConditions();
|
|
128113
|
+
const allowFiltering = this.hot.runHooks('beforeFilter', conditions, _classPrivateFieldGet(_previousConditionStack, this));
|
|
128031
128114
|
if (allowFiltering !== false) {
|
|
128032
128115
|
if (needToFilter) {
|
|
128033
128116
|
const trimmedRows = [];
|
|
@@ -128050,11 +128133,13 @@ class Filters extends _base.BasePlugin {
|
|
|
128050
128133
|
} else {
|
|
128051
128134
|
this.filtersRowsMap.clear();
|
|
128052
128135
|
}
|
|
128136
|
+
_classPrivateFieldSet(_previousConditionStack, this, this.exportConditions());
|
|
128137
|
+
this.hot.runHooks('afterFilter', conditions);
|
|
128138
|
+
this.hot.view.adjustElementsSize();
|
|
128139
|
+
this.hot.render();
|
|
128140
|
+
} else {
|
|
128141
|
+
this.importConditions(_classPrivateFieldGet(_previousConditionStack, this));
|
|
128053
128142
|
}
|
|
128054
|
-
this.hot.runHooks('afterFilter', conditions);
|
|
128055
|
-
this.conditionCollection.setPreviousConditionStack(null);
|
|
128056
|
-
this.hot.view.adjustElementsSize();
|
|
128057
|
-
this.hot.render();
|
|
128058
128143
|
if (this.hot.selection.isSelected()) {
|
|
128059
128144
|
this.hot.selectCell(navigableHeaders ? -1 : 0, this.hot.getSelectedRangeLast().highlight.col);
|
|
128060
128145
|
}
|
|
@@ -128417,7 +128502,6 @@ function _onActionBarSubmit(submitType) {
|
|
|
128417
128502
|
}
|
|
128418
128503
|
this.conditionUpdateObserver.flush();
|
|
128419
128504
|
this.components.forEach(component => component.saveState(physicalIndex));
|
|
128420
|
-
this.filtersRowsMap.clear();
|
|
128421
128505
|
this.filter();
|
|
128422
128506
|
}
|
|
128423
128507
|
(_this$dropdownMenuPlu3 = this.dropdownMenuPlugin) === null || _this$dropdownMenuPlu3 === void 0 || _this$dropdownMenuPlu3.close();
|
|
@@ -128459,8 +128543,23 @@ function _updateComponents(conditionsState) {
|
|
|
128459
128543
|
editedConditionStack: {
|
|
128460
128544
|
conditions,
|
|
128461
128545
|
column
|
|
128462
|
-
}
|
|
128546
|
+
},
|
|
128547
|
+
conditionArgsChange
|
|
128463
128548
|
} = conditionsState;
|
|
128549
|
+
if (Array.isArray(conditionArgsChange)) {
|
|
128550
|
+
// update the previous condition stack (only for 'by_value' condition) on each dataset
|
|
128551
|
+
// change to make the undo/redo work properly
|
|
128552
|
+
_classPrivateFieldSet(_previousConditionStack, this, _classPrivateFieldGet(_previousConditionStack, this).map(stack => {
|
|
128553
|
+
if (stack.column === column && conditions.length > 0) {
|
|
128554
|
+
stack.conditions.forEach(condition => {
|
|
128555
|
+
if (condition.name === 'by_value') {
|
|
128556
|
+
condition.args = [[...conditionArgsChange]];
|
|
128557
|
+
}
|
|
128558
|
+
});
|
|
128559
|
+
}
|
|
128560
|
+
return stack;
|
|
128561
|
+
}));
|
|
128562
|
+
}
|
|
128464
128563
|
const conditionsByValue = conditions.filter(condition => condition.name === _constants2.CONDITION_BY_VALUE);
|
|
128465
128564
|
const conditionsWithoutByValue = conditions.filter(condition => condition.name !== _constants2.CONDITION_BY_VALUE);
|
|
128466
128565
|
if (conditionsByValue.length >= 2 || conditionsWithoutByValue.length >= 3) {
|
|
@@ -131904,13 +132003,6 @@ class ConditionCollection {
|
|
|
131904
132003
|
* @type {LinkedPhysicalIndexToValueMap}
|
|
131905
132004
|
*/
|
|
131906
132005
|
(0, _defineProperty2.default)(this, "filteringStates", new _translations.LinkedPhysicalIndexToValueMap());
|
|
131907
|
-
/**
|
|
131908
|
-
* Stores the previous state of the condition stack before the latest filter operation.
|
|
131909
|
-
* This is used in the `beforeFilter` plugin to allow performing the undo operation.
|
|
131910
|
-
*
|
|
131911
|
-
* @type {null|Array}
|
|
131912
|
-
*/
|
|
131913
|
-
(0, _defineProperty2.default)(this, "previousConditionStack", null);
|
|
131914
132006
|
this.hot = hot;
|
|
131915
132007
|
this.isMapRegistrable = isMapRegistrable;
|
|
131916
132008
|
if (this.isMapRegistrable === true) {
|
|
@@ -131979,13 +132071,6 @@ class ConditionCollection {
|
|
|
131979
132071
|
const localeForColumn = this.hot.getCellMeta(0, column).locale;
|
|
131980
132072
|
const args = conditionDefinition.args.map(v => typeof v === 'string' ? v.toLocaleLowerCase(localeForColumn) : v);
|
|
131981
132073
|
const name = conditionDefinition.name || conditionDefinition.command.key;
|
|
131982
|
-
|
|
131983
|
-
// If there's no previous condition stack defined (which means the condition stack was not cleared after the
|
|
131984
|
-
// previous filter operation or that there was no filter operation performed yet), store the current conditions as
|
|
131985
|
-
// the previous condition stack.
|
|
131986
|
-
if (this.previousConditionStack === null) {
|
|
131987
|
-
this.setPreviousConditionStack(this.exportAllConditions());
|
|
131988
|
-
}
|
|
131989
132074
|
this.runLocalHooks('beforeAdd', column);
|
|
131990
132075
|
const columnType = this.getOperation(column);
|
|
131991
132076
|
if (columnType) {
|
|
@@ -132114,8 +132199,6 @@ class ConditionCollection {
|
|
|
132114
132199
|
* @fires ConditionCollection#afterRemove
|
|
132115
132200
|
*/
|
|
132116
132201
|
removeConditions(column) {
|
|
132117
|
-
// Store the current conditions as the previous condition stack before it's cleared.
|
|
132118
|
-
this.setPreviousConditionStack(this.exportAllConditions());
|
|
132119
132202
|
this.runLocalHooks('beforeRemove', column);
|
|
132120
132203
|
this.filteringStates.clearValue(column);
|
|
132121
132204
|
this.runLocalHooks('afterRemove', column);
|
|
@@ -132149,16 +132232,6 @@ class ConditionCollection {
|
|
|
132149
132232
|
return conditions.length > 0;
|
|
132150
132233
|
}
|
|
132151
132234
|
|
|
132152
|
-
/**
|
|
132153
|
-
* Updates the `previousConditionStack` property with the provided stack.
|
|
132154
|
-
* It is used to store the current conditions before they are modified, allowing for undo operations.
|
|
132155
|
-
*
|
|
132156
|
-
* @param {Array|null} previousConditionStack The stack of previous conditions.
|
|
132157
|
-
*/
|
|
132158
|
-
setPreviousConditionStack(previousConditionStack) {
|
|
132159
|
-
this.previousConditionStack = previousConditionStack;
|
|
132160
|
-
}
|
|
132161
|
-
|
|
132162
132235
|
/**
|
|
132163
132236
|
* Destroy object.
|
|
132164
132237
|
*/
|
|
@@ -141311,12 +141384,11 @@ function _sumCellsHeights(row, rowspan) {
|
|
|
141311
141384
|
} = this.hot;
|
|
141312
141385
|
const stylesHandler = view.getStylesHandler();
|
|
141313
141386
|
const defaultHeight = view.getDefaultRowHeight();
|
|
141314
|
-
const autoRowSizePlugin = this.hot.getPlugin('autoRowSize');
|
|
141315
141387
|
let height = 0;
|
|
141316
141388
|
for (let i = row; i < row + rowspan; i++) {
|
|
141317
141389
|
if (!rowIndexMapper.isHidden(i)) {
|
|
141318
|
-
var
|
|
141319
|
-
height += (
|
|
141390
|
+
var _this$hot$getRowHeigh;
|
|
141391
|
+
height += (_this$hot$getRowHeigh = this.hot.getRowHeight(i)) !== null && _this$hot$getRowHeigh !== void 0 ? _this$hot$getRowHeigh : defaultHeight;
|
|
141320
141392
|
if (i === 0 && !stylesHandler.isClassicTheme()) {
|
|
141321
141393
|
height += 1; // border-top-width
|
|
141322
141394
|
}
|
|
@@ -143616,12 +143688,10 @@ var _sortService = __webpack_require__(860);
|
|
|
143616
143688
|
var _utils = __webpack_require__(859);
|
|
143617
143689
|
var _element = __webpack_require__(351);
|
|
143618
143690
|
var _rootComparator = __webpack_require__(1038);
|
|
143619
|
-
var
|
|
143620
|
-
var _domHelpers = __webpack_require__(1040);
|
|
143691
|
+
var _domHelpers = __webpack_require__(1039);
|
|
143621
143692
|
var _shortcutContexts = __webpack_require__(686);
|
|
143622
143693
|
const PLUGIN_KEY = exports.PLUGIN_KEY = 'multiColumnSorting';
|
|
143623
143694
|
const PLUGIN_PRIORITY = exports.PLUGIN_PRIORITY = 170;
|
|
143624
|
-
const CONFLICTED_PLUGIN_KEY = 'columnSorting';
|
|
143625
143695
|
const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
143626
143696
|
(0, _sortService.registerRootComparator)(PLUGIN_KEY, _rootComparator.rootComparator);
|
|
143627
143697
|
|
|
@@ -143701,17 +143771,13 @@ class MultiColumnSorting extends _columnSorting.ColumnSorting {
|
|
|
143701
143771
|
* @returns {boolean}
|
|
143702
143772
|
*/
|
|
143703
143773
|
isEnabled() {
|
|
143704
|
-
return
|
|
143774
|
+
return !!this.hot.getSettings()[this.pluginKey];
|
|
143705
143775
|
}
|
|
143706
143776
|
|
|
143707
143777
|
/**
|
|
143708
143778
|
* Enables the plugin functionality for this Handsontable instance.
|
|
143709
143779
|
*/
|
|
143710
143780
|
enablePlugin() {
|
|
143711
|
-
if (!this.enabled && this.hot.getSettings()[this.pluginKey] && this.hot.getSettings()[CONFLICTED_PLUGIN_KEY]) {
|
|
143712
|
-
(0, _utils2.warnAboutPluginsConflict)();
|
|
143713
|
-
this.hot.getPlugin(CONFLICTED_PLUGIN_KEY).disablePlugin();
|
|
143714
|
-
}
|
|
143715
143781
|
super.enablePlugin();
|
|
143716
143782
|
}
|
|
143717
143783
|
|
|
@@ -143883,20 +143949,6 @@ class MultiColumnSorting extends _columnSorting.ColumnSorting {
|
|
|
143883
143949
|
}
|
|
143884
143950
|
}
|
|
143885
143951
|
|
|
143886
|
-
/**
|
|
143887
|
-
* Overwriting base plugin's `onUpdateSettings` method. Please keep in mind that `onAfterUpdateSettings` isn't called
|
|
143888
|
-
* for `updateSettings` in specific situations.
|
|
143889
|
-
*
|
|
143890
|
-
* @private
|
|
143891
|
-
* @param {object} newSettings New settings object.
|
|
143892
|
-
*/
|
|
143893
|
-
onUpdateSettings(newSettings) {
|
|
143894
|
-
if (this.hot.getSettings()[this.pluginKey] && this.hot.getSettings()[CONFLICTED_PLUGIN_KEY]) {
|
|
143895
|
-
(0, _utils2.warnAboutPluginsConflict)();
|
|
143896
|
-
}
|
|
143897
|
-
super.onUpdateSettings(newSettings);
|
|
143898
|
-
}
|
|
143899
|
-
|
|
143900
143952
|
/**
|
|
143901
143953
|
* Callback for the `onAfterOnCellMouseDown` hook.
|
|
143902
143954
|
*
|
|
@@ -143970,25 +144022,6 @@ function rootComparator(sortingOrders, columnMetas) {
|
|
|
143970
144022
|
"use strict";
|
|
143971
144023
|
|
|
143972
144024
|
|
|
143973
|
-
exports.__esModule = true;
|
|
143974
|
-
exports.warnAboutPluginsConflict = warnAboutPluginsConflict;
|
|
143975
|
-
var _console = __webpack_require__(512);
|
|
143976
|
-
var _templateLiteralTag = __webpack_require__(494);
|
|
143977
|
-
/**
|
|
143978
|
-
* Warn users about problems when using `columnSorting` and `multiColumnSorting` plugins simultaneously.
|
|
143979
|
-
*/
|
|
143980
|
-
function warnAboutPluginsConflict() {
|
|
143981
|
-
(0, _console.warn)((0, _templateLiteralTag.toSingleLine)`Plugins \`columnSorting\` and \`multiColumnSorting\` should not be enabled simultaneously.
|
|
143982
|
-
Only \`multiColumnSorting\` will work. The \`columnSorting\` plugin will be disabled.`);
|
|
143983
|
-
}
|
|
143984
|
-
|
|
143985
|
-
/***/ }),
|
|
143986
|
-
/* 1040 */
|
|
143987
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
143988
|
-
|
|
143989
|
-
"use strict";
|
|
143990
|
-
|
|
143991
|
-
|
|
143992
144025
|
exports.__esModule = true;
|
|
143993
144026
|
exports.getClassesToAdd = getClassesToAdd;
|
|
143994
144027
|
exports.getClassesToRemove = getClassesToRemove;
|
|
@@ -144029,20 +144062,20 @@ function getClassesToRemove(htmlElement) {
|
|
|
144029
144062
|
}
|
|
144030
144063
|
|
|
144031
144064
|
/***/ }),
|
|
144032
|
-
/*
|
|
144065
|
+
/* 1040 */
|
|
144033
144066
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
144034
144067
|
|
|
144035
144068
|
"use strict";
|
|
144036
144069
|
|
|
144037
144070
|
|
|
144038
144071
|
exports.__esModule = true;
|
|
144039
|
-
var _multipleSelectionHandles = __webpack_require__(
|
|
144072
|
+
var _multipleSelectionHandles = __webpack_require__(1041);
|
|
144040
144073
|
exports.PLUGIN_KEY = _multipleSelectionHandles.PLUGIN_KEY;
|
|
144041
144074
|
exports.PLUGIN_PRIORITY = _multipleSelectionHandles.PLUGIN_PRIORITY;
|
|
144042
144075
|
exports.MultipleSelectionHandles = _multipleSelectionHandles.MultipleSelectionHandles;
|
|
144043
144076
|
|
|
144044
144077
|
/***/ }),
|
|
144045
|
-
/*
|
|
144078
|
+
/* 1041 */
|
|
144046
144079
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
144047
144080
|
|
|
144048
144081
|
"use strict";
|
|
@@ -144381,20 +144414,20 @@ class MultipleSelectionHandles extends _base.BasePlugin {
|
|
|
144381
144414
|
exports.MultipleSelectionHandles = MultipleSelectionHandles;
|
|
144382
144415
|
|
|
144383
144416
|
/***/ }),
|
|
144384
|
-
/*
|
|
144417
|
+
/* 1042 */
|
|
144385
144418
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
144386
144419
|
|
|
144387
144420
|
"use strict";
|
|
144388
144421
|
|
|
144389
144422
|
|
|
144390
144423
|
exports.__esModule = true;
|
|
144391
|
-
var _nestedHeaders = __webpack_require__(
|
|
144424
|
+
var _nestedHeaders = __webpack_require__(1043);
|
|
144392
144425
|
exports.PLUGIN_KEY = _nestedHeaders.PLUGIN_KEY;
|
|
144393
144426
|
exports.PLUGIN_PRIORITY = _nestedHeaders.PLUGIN_PRIORITY;
|
|
144394
144427
|
exports.NestedHeaders = _nestedHeaders.NestedHeaders;
|
|
144395
144428
|
|
|
144396
144429
|
/***/ }),
|
|
144397
|
-
/*
|
|
144430
|
+
/* 1043 */
|
|
144398
144431
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
144399
144432
|
|
|
144400
144433
|
"use strict";
|
|
@@ -144414,8 +144447,8 @@ var _event = __webpack_require__(509);
|
|
|
144414
144447
|
var _console = __webpack_require__(512);
|
|
144415
144448
|
var _selection = __webpack_require__(652);
|
|
144416
144449
|
var _base = __webpack_require__(841);
|
|
144417
|
-
var _stateManager2 = _interopRequireDefault(__webpack_require__(
|
|
144418
|
-
var _ghostTable = _interopRequireDefault(__webpack_require__(
|
|
144450
|
+
var _stateManager2 = _interopRequireDefault(__webpack_require__(1044));
|
|
144451
|
+
var _ghostTable = _interopRequireDefault(__webpack_require__(1057));
|
|
144419
144452
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
144420
144453
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
144421
144454
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
@@ -145403,7 +145436,7 @@ function _onAfterLoadData(sourceData, initialLoad) {
|
|
|
145403
145436
|
}
|
|
145404
145437
|
|
|
145405
145438
|
/***/ }),
|
|
145406
|
-
/*
|
|
145439
|
+
/* 1044 */
|
|
145407
145440
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
145408
145441
|
|
|
145409
145442
|
"use strict";
|
|
@@ -145416,11 +145449,11 @@ __webpack_require__(283);
|
|
|
145416
145449
|
__webpack_require__(311);
|
|
145417
145450
|
__webpack_require__(338);
|
|
145418
145451
|
var _array = __webpack_require__(495);
|
|
145419
|
-
var _sourceSettings2 = _interopRequireDefault(__webpack_require__(
|
|
145420
|
-
var _headersTree2 = _interopRequireDefault(__webpack_require__(
|
|
145421
|
-
var _nodeModifiers = __webpack_require__(
|
|
145422
|
-
var _matrixGenerator = __webpack_require__(
|
|
145423
|
-
var _tree = __webpack_require__(
|
|
145452
|
+
var _sourceSettings2 = _interopRequireDefault(__webpack_require__(1045));
|
|
145453
|
+
var _headersTree2 = _interopRequireDefault(__webpack_require__(1048));
|
|
145454
|
+
var _nodeModifiers = __webpack_require__(1050);
|
|
145455
|
+
var _matrixGenerator = __webpack_require__(1056);
|
|
145456
|
+
var _tree = __webpack_require__(1049);
|
|
145424
145457
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
145425
145458
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
145426
145459
|
function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
|
|
@@ -145895,7 +145928,7 @@ class StateManager {
|
|
|
145895
145928
|
exports["default"] = StateManager;
|
|
145896
145929
|
|
|
145897
145930
|
/***/ }),
|
|
145898
|
-
/*
|
|
145931
|
+
/* 1045 */
|
|
145899
145932
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
145900
145933
|
|
|
145901
145934
|
"use strict";
|
|
@@ -145906,7 +145939,7 @@ __webpack_require__(201);
|
|
|
145906
145939
|
__webpack_require__(283);
|
|
145907
145940
|
var _object = __webpack_require__(499);
|
|
145908
145941
|
var _array = __webpack_require__(495);
|
|
145909
|
-
var _settingsNormalizer = __webpack_require__(
|
|
145942
|
+
var _settingsNormalizer = __webpack_require__(1046);
|
|
145910
145943
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
145911
145944
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
145912
145945
|
function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
|
|
@@ -146117,7 +146150,7 @@ class SourceSettings {
|
|
|
146117
146150
|
exports["default"] = SourceSettings;
|
|
146118
146151
|
|
|
146119
146152
|
/***/ }),
|
|
146120
|
-
/*
|
|
146153
|
+
/* 1046 */
|
|
146121
146154
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
146122
146155
|
|
|
146123
146156
|
"use strict";
|
|
@@ -146129,7 +146162,7 @@ __webpack_require__(283);
|
|
|
146129
146162
|
var _array = __webpack_require__(495);
|
|
146130
146163
|
var _object = __webpack_require__(499);
|
|
146131
146164
|
var _mixed = __webpack_require__(354);
|
|
146132
|
-
var _utils = __webpack_require__(
|
|
146165
|
+
var _utils = __webpack_require__(1047);
|
|
146133
146166
|
/* eslint-disable jsdoc/require-description-complete-sentence */
|
|
146134
146167
|
|
|
146135
146168
|
/**
|
|
@@ -146231,7 +146264,7 @@ function normalizeSettings(sourceSettings) {
|
|
|
146231
146264
|
}
|
|
146232
146265
|
|
|
146233
146266
|
/***/ }),
|
|
146234
|
-
/*
|
|
146267
|
+
/* 1047 */
|
|
146235
146268
|
/***/ ((__unused_webpack_module, exports) => {
|
|
146236
146269
|
|
|
146237
146270
|
"use strict";
|
|
@@ -146308,7 +146341,7 @@ function createPlaceholderHeaderSettings() {
|
|
|
146308
146341
|
}
|
|
146309
146342
|
|
|
146310
146343
|
/***/ }),
|
|
146311
|
-
/*
|
|
146344
|
+
/* 1048 */
|
|
146312
146345
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
146313
146346
|
|
|
146314
146347
|
"use strict";
|
|
@@ -146318,7 +146351,7 @@ var _interopRequireDefault = __webpack_require__(197);
|
|
|
146318
146351
|
exports.__esModule = true;
|
|
146319
146352
|
__webpack_require__(201);
|
|
146320
146353
|
var _array = __webpack_require__(495);
|
|
146321
|
-
var _tree = _interopRequireDefault(__webpack_require__(
|
|
146354
|
+
var _tree = _interopRequireDefault(__webpack_require__(1049));
|
|
146322
146355
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
146323
146356
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
146324
146357
|
function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
|
|
@@ -146546,7 +146579,7 @@ class HeadersTree {
|
|
|
146546
146579
|
exports["default"] = HeadersTree;
|
|
146547
146580
|
|
|
146548
146581
|
/***/ }),
|
|
146549
|
-
/*
|
|
146582
|
+
/* 1049 */
|
|
146550
146583
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
146551
146584
|
|
|
146552
146585
|
"use strict";
|
|
@@ -146765,7 +146798,7 @@ class TreeNode {
|
|
|
146765
146798
|
exports["default"] = TreeNode;
|
|
146766
146799
|
|
|
146767
146800
|
/***/ }),
|
|
146768
|
-
/*
|
|
146801
|
+
/* 1050 */
|
|
146769
146802
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
146770
146803
|
|
|
146771
146804
|
"use strict";
|
|
@@ -146774,10 +146807,10 @@ exports["default"] = TreeNode;
|
|
|
146774
146807
|
exports.__esModule = true;
|
|
146775
146808
|
exports.triggerNodeModification = triggerNodeModification;
|
|
146776
146809
|
__webpack_require__(201);
|
|
146777
|
-
var _collapse = __webpack_require__(
|
|
146778
|
-
var _expand = __webpack_require__(
|
|
146779
|
-
var _hideColumn = __webpack_require__(
|
|
146780
|
-
var _showColumn = __webpack_require__(
|
|
146810
|
+
var _collapse = __webpack_require__(1051);
|
|
146811
|
+
var _expand = __webpack_require__(1052);
|
|
146812
|
+
var _hideColumn = __webpack_require__(1054);
|
|
146813
|
+
var _showColumn = __webpack_require__(1055);
|
|
146781
146814
|
/**
|
|
146782
146815
|
* The NodeModifiers module is responsible for the modification of a tree structure
|
|
146783
146816
|
* in a way to achieve new column headers state.
|
|
@@ -146807,7 +146840,7 @@ function triggerNodeModification(actionName, nodeToProcess, gridColumnIndex) {
|
|
|
146807
146840
|
}
|
|
146808
146841
|
|
|
146809
146842
|
/***/ }),
|
|
146810
|
-
/*
|
|
146843
|
+
/* 1051 */
|
|
146811
146844
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
146812
146845
|
|
|
146813
146846
|
"use strict";
|
|
@@ -146823,8 +146856,8 @@ __webpack_require__(305);
|
|
|
146823
146856
|
__webpack_require__(307);
|
|
146824
146857
|
__webpack_require__(309);
|
|
146825
146858
|
var _array = __webpack_require__(495);
|
|
146826
|
-
var _expand = __webpack_require__(
|
|
146827
|
-
var _tree = __webpack_require__(
|
|
146859
|
+
var _expand = __webpack_require__(1052);
|
|
146860
|
+
var _tree = __webpack_require__(1053);
|
|
146828
146861
|
/**
|
|
146829
146862
|
* Collapsing a node is a process where the processing node is collapsed
|
|
146830
146863
|
* to the colspan width of the first child. All node children, except the
|
|
@@ -146917,7 +146950,7 @@ function collapseNode(nodeToProcess) {
|
|
|
146917
146950
|
}
|
|
146918
146951
|
|
|
146919
146952
|
/***/ }),
|
|
146920
|
-
/*
|
|
146953
|
+
/* 1052 */
|
|
146921
146954
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
146922
146955
|
|
|
146923
146956
|
"use strict";
|
|
@@ -146933,8 +146966,8 @@ __webpack_require__(305);
|
|
|
146933
146966
|
__webpack_require__(307);
|
|
146934
146967
|
__webpack_require__(309);
|
|
146935
146968
|
var _array = __webpack_require__(495);
|
|
146936
|
-
var _collapse = __webpack_require__(
|
|
146937
|
-
var _tree = __webpack_require__(
|
|
146969
|
+
var _collapse = __webpack_require__(1051);
|
|
146970
|
+
var _tree = __webpack_require__(1053);
|
|
146938
146971
|
/**
|
|
146939
146972
|
* Expanding a node is a process where the processing node is expanded to
|
|
146940
146973
|
* its original colspan width. To restore an original state of all node
|
|
@@ -147022,7 +147055,7 @@ function expandNode(nodeToProcess) {
|
|
|
147022
147055
|
}
|
|
147023
147056
|
|
|
147024
147057
|
/***/ }),
|
|
147025
|
-
/*
|
|
147058
|
+
/* 1053 */
|
|
147026
147059
|
/***/ ((__unused_webpack_module, exports) => {
|
|
147027
147060
|
|
|
147028
147061
|
"use strict";
|
|
@@ -147093,7 +147126,7 @@ function isNodeReflectsFirstChildColspan(node) {
|
|
|
147093
147126
|
}
|
|
147094
147127
|
|
|
147095
147128
|
/***/ }),
|
|
147096
|
-
/*
|
|
147129
|
+
/* 1054 */
|
|
147097
147130
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
147098
147131
|
|
|
147099
147132
|
"use strict";
|
|
@@ -147156,7 +147189,7 @@ the last node, the hide column modification can be applied.`);
|
|
|
147156
147189
|
}
|
|
147157
147190
|
|
|
147158
147191
|
/***/ }),
|
|
147159
|
-
/*
|
|
147192
|
+
/* 1055 */
|
|
147160
147193
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
147161
147194
|
|
|
147162
147195
|
"use strict";
|
|
@@ -147217,7 +147250,7 @@ the last node, the show column modification can be applied.`);
|
|
|
147217
147250
|
}
|
|
147218
147251
|
|
|
147219
147252
|
/***/ }),
|
|
147220
|
-
/*
|
|
147253
|
+
/* 1056 */
|
|
147221
147254
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
147222
147255
|
|
|
147223
147256
|
"use strict";
|
|
@@ -147227,7 +147260,7 @@ exports.__esModule = true;
|
|
|
147227
147260
|
exports.generateMatrix = generateMatrix;
|
|
147228
147261
|
__webpack_require__(283);
|
|
147229
147262
|
var _array = __webpack_require__(495);
|
|
147230
|
-
var _utils = __webpack_require__(
|
|
147263
|
+
var _utils = __webpack_require__(1047);
|
|
147231
147264
|
/* eslint-disable jsdoc/require-description-complete-sentence */
|
|
147232
147265
|
|
|
147233
147266
|
/**
|
|
@@ -147323,7 +147356,7 @@ function createNestedArrayIfNecessary(array, index) {
|
|
|
147323
147356
|
}
|
|
147324
147357
|
|
|
147325
147358
|
/***/ }),
|
|
147326
|
-
/*
|
|
147359
|
+
/* 1057 */
|
|
147327
147360
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
147328
147361
|
|
|
147329
147362
|
"use strict";
|
|
@@ -147479,20 +147512,20 @@ class GhostTable {
|
|
|
147479
147512
|
var _default = exports["default"] = GhostTable;
|
|
147480
147513
|
|
|
147481
147514
|
/***/ }),
|
|
147482
|
-
/*
|
|
147515
|
+
/* 1058 */
|
|
147483
147516
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
147484
147517
|
|
|
147485
147518
|
"use strict";
|
|
147486
147519
|
|
|
147487
147520
|
|
|
147488
147521
|
exports.__esModule = true;
|
|
147489
|
-
var _nestedRows = __webpack_require__(
|
|
147522
|
+
var _nestedRows = __webpack_require__(1059);
|
|
147490
147523
|
exports.PLUGIN_KEY = _nestedRows.PLUGIN_KEY;
|
|
147491
147524
|
exports.PLUGIN_PRIORITY = _nestedRows.PLUGIN_PRIORITY;
|
|
147492
147525
|
exports.NestedRows = _nestedRows.NestedRows;
|
|
147493
147526
|
|
|
147494
147527
|
/***/ }),
|
|
147495
|
-
/*
|
|
147528
|
+
/* 1059 */
|
|
147496
147529
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
147497
147530
|
|
|
147498
147531
|
"use strict";
|
|
@@ -147514,15 +147547,15 @@ __webpack_require__(329);
|
|
|
147514
147547
|
__webpack_require__(530);
|
|
147515
147548
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
147516
147549
|
var _base = __webpack_require__(841);
|
|
147517
|
-
var _dataManager = _interopRequireDefault(__webpack_require__(
|
|
147518
|
-
var _collapsing = _interopRequireDefault(__webpack_require__(
|
|
147519
|
-
var _headers = _interopRequireDefault(__webpack_require__(
|
|
147520
|
-
var _contextMenu = _interopRequireDefault(__webpack_require__(
|
|
147550
|
+
var _dataManager = _interopRequireDefault(__webpack_require__(1060));
|
|
147551
|
+
var _collapsing = _interopRequireDefault(__webpack_require__(1061));
|
|
147552
|
+
var _headers = _interopRequireDefault(__webpack_require__(1063));
|
|
147553
|
+
var _contextMenu = _interopRequireDefault(__webpack_require__(1064));
|
|
147521
147554
|
var _console = __webpack_require__(512);
|
|
147522
147555
|
var _data = __webpack_require__(622);
|
|
147523
147556
|
var _translations = __webpack_require__(625);
|
|
147524
147557
|
var _shortcutContexts = __webpack_require__(686);
|
|
147525
|
-
var _rowMoveController = _interopRequireDefault(__webpack_require__(
|
|
147558
|
+
var _rowMoveController = _interopRequireDefault(__webpack_require__(1065));
|
|
147526
147559
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
147527
147560
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
147528
147561
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
@@ -148054,7 +148087,7 @@ function _onBeforeLoadData(data) {
|
|
|
148054
148087
|
}
|
|
148055
148088
|
|
|
148056
148089
|
/***/ }),
|
|
148057
|
-
/*
|
|
148090
|
+
/* 1060 */
|
|
148058
148091
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
148059
148092
|
|
|
148060
148093
|
"use strict";
|
|
@@ -148770,7 +148803,7 @@ class DataManager {
|
|
|
148770
148803
|
var _default = exports["default"] = DataManager;
|
|
148771
148804
|
|
|
148772
148805
|
/***/ }),
|
|
148773
|
-
/*
|
|
148806
|
+
/* 1061 */
|
|
148774
148807
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
148775
148808
|
|
|
148776
148809
|
"use strict";
|
|
@@ -148783,8 +148816,8 @@ var _event = __webpack_require__(509);
|
|
|
148783
148816
|
var _array = __webpack_require__(495);
|
|
148784
148817
|
var _number = __webpack_require__(534);
|
|
148785
148818
|
var _element = __webpack_require__(351);
|
|
148786
|
-
var _base = _interopRequireDefault(__webpack_require__(
|
|
148787
|
-
var _headers = _interopRequireDefault(__webpack_require__(
|
|
148819
|
+
var _base = _interopRequireDefault(__webpack_require__(1062));
|
|
148820
|
+
var _headers = _interopRequireDefault(__webpack_require__(1063));
|
|
148788
148821
|
/**
|
|
148789
148822
|
* Class responsible for the UI for collapsing and expanding groups.
|
|
148790
148823
|
*
|
|
@@ -149245,7 +149278,7 @@ class CollapsingUI extends _base.default {
|
|
|
149245
149278
|
var _default = exports["default"] = CollapsingUI;
|
|
149246
149279
|
|
|
149247
149280
|
/***/ }),
|
|
149248
|
-
/*
|
|
149281
|
+
/* 1062 */
|
|
149249
149282
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
149250
149283
|
|
|
149251
149284
|
"use strict";
|
|
@@ -149279,7 +149312,7 @@ class BaseUI {
|
|
|
149279
149312
|
var _default = exports["default"] = BaseUI;
|
|
149280
149313
|
|
|
149281
149314
|
/***/ }),
|
|
149282
|
-
/*
|
|
149315
|
+
/* 1063 */
|
|
149283
149316
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
149284
149317
|
|
|
149285
149318
|
"use strict";
|
|
@@ -149290,7 +149323,7 @@ exports.__esModule = true;
|
|
|
149290
149323
|
var _array = __webpack_require__(495);
|
|
149291
149324
|
var _number = __webpack_require__(534);
|
|
149292
149325
|
var _element = __webpack_require__(351);
|
|
149293
|
-
var _base = _interopRequireDefault(__webpack_require__(
|
|
149326
|
+
var _base = _interopRequireDefault(__webpack_require__(1062));
|
|
149294
149327
|
var _a11y = __webpack_require__(496);
|
|
149295
149328
|
/**
|
|
149296
149329
|
* Class responsible for the UI in the Nested Rows' row headers.
|
|
@@ -149423,7 +149456,7 @@ class HeadersUI extends _base.default {
|
|
|
149423
149456
|
var _default = exports["default"] = HeadersUI;
|
|
149424
149457
|
|
|
149425
149458
|
/***/ }),
|
|
149426
|
-
/*
|
|
149459
|
+
/* 1064 */
|
|
149427
149460
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
149428
149461
|
|
|
149429
149462
|
"use strict";
|
|
@@ -149436,7 +149469,7 @@ var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
|
149436
149469
|
var _number = __webpack_require__(534);
|
|
149437
149470
|
var _array = __webpack_require__(495);
|
|
149438
149471
|
var C = _interopRequireWildcard(__webpack_require__(651));
|
|
149439
|
-
var _base = _interopRequireDefault(__webpack_require__(
|
|
149472
|
+
var _base = _interopRequireDefault(__webpack_require__(1062));
|
|
149440
149473
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
149441
149474
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
149442
149475
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
@@ -149542,7 +149575,7 @@ class ContextMenuUI extends _base.default {
|
|
|
149542
149575
|
var _default = exports["default"] = ContextMenuUI;
|
|
149543
149576
|
|
|
149544
149577
|
/***/ }),
|
|
149545
|
-
/*
|
|
149578
|
+
/* 1065 */
|
|
149546
149579
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
149547
149580
|
|
|
149548
149581
|
"use strict";
|
|
@@ -149831,20 +149864,20 @@ class RowMoveController {
|
|
|
149831
149864
|
exports["default"] = RowMoveController;
|
|
149832
149865
|
|
|
149833
149866
|
/***/ }),
|
|
149834
|
-
/*
|
|
149867
|
+
/* 1066 */
|
|
149835
149868
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
149836
149869
|
|
|
149837
149870
|
"use strict";
|
|
149838
149871
|
|
|
149839
149872
|
|
|
149840
149873
|
exports.__esModule = true;
|
|
149841
|
-
var _persistentState = __webpack_require__(
|
|
149874
|
+
var _persistentState = __webpack_require__(1067);
|
|
149842
149875
|
exports.PLUGIN_KEY = _persistentState.PLUGIN_KEY;
|
|
149843
149876
|
exports.PLUGIN_PRIORITY = _persistentState.PLUGIN_PRIORITY;
|
|
149844
149877
|
exports.PersistentState = _persistentState.PersistentState;
|
|
149845
149878
|
|
|
149846
149879
|
/***/ }),
|
|
149847
|
-
/*
|
|
149880
|
+
/* 1067 */
|
|
149848
149881
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
149849
149882
|
|
|
149850
149883
|
"use strict";
|
|
@@ -149854,7 +149887,7 @@ var _interopRequireDefault = __webpack_require__(197);
|
|
|
149854
149887
|
exports.__esModule = true;
|
|
149855
149888
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
149856
149889
|
var _base = __webpack_require__(841);
|
|
149857
|
-
var _storage = _interopRequireDefault(__webpack_require__(
|
|
149890
|
+
var _storage = _interopRequireDefault(__webpack_require__(1068));
|
|
149858
149891
|
var _hooks = __webpack_require__(511);
|
|
149859
149892
|
_hooks.Hooks.getSingleton().register('persistentStateSave');
|
|
149860
149893
|
_hooks.Hooks.getSingleton().register('persistentStateLoad');
|
|
@@ -149995,7 +150028,7 @@ class PersistentState extends _base.BasePlugin {
|
|
|
149995
150028
|
exports.PersistentState = PersistentState;
|
|
149996
150029
|
|
|
149997
150030
|
/***/ }),
|
|
149998
|
-
/*
|
|
150031
|
+
/* 1068 */
|
|
149999
150032
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
150000
150033
|
|
|
150001
150034
|
"use strict";
|
|
@@ -150119,20 +150152,20 @@ class Storage {
|
|
|
150119
150152
|
var _default = exports["default"] = Storage;
|
|
150120
150153
|
|
|
150121
150154
|
/***/ }),
|
|
150122
|
-
/*
|
|
150155
|
+
/* 1069 */
|
|
150123
150156
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
150124
150157
|
|
|
150125
150158
|
"use strict";
|
|
150126
150159
|
|
|
150127
150160
|
|
|
150128
150161
|
exports.__esModule = true;
|
|
150129
|
-
var _search = __webpack_require__(
|
|
150162
|
+
var _search = __webpack_require__(1070);
|
|
150130
150163
|
exports.PLUGIN_KEY = _search.PLUGIN_KEY;
|
|
150131
150164
|
exports.PLUGIN_PRIORITY = _search.PLUGIN_PRIORITY;
|
|
150132
150165
|
exports.Search = _search.Search;
|
|
150133
150166
|
|
|
150134
150167
|
/***/ }),
|
|
150135
|
-
/*
|
|
150168
|
+
/* 1070 */
|
|
150136
150169
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
150137
150170
|
|
|
150138
150171
|
"use strict";
|
|
@@ -150440,20 +150473,20 @@ function _onBeforeRenderer(TD, row, col, prop, value, cellProperties) {
|
|
|
150440
150473
|
}
|
|
150441
150474
|
|
|
150442
150475
|
/***/ }),
|
|
150443
|
-
/*
|
|
150476
|
+
/* 1071 */
|
|
150444
150477
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
150445
150478
|
|
|
150446
150479
|
"use strict";
|
|
150447
150480
|
|
|
150448
150481
|
|
|
150449
150482
|
exports.__esModule = true;
|
|
150450
|
-
var _stretchColumns = __webpack_require__(
|
|
150483
|
+
var _stretchColumns = __webpack_require__(1072);
|
|
150451
150484
|
exports.PLUGIN_KEY = _stretchColumns.PLUGIN_KEY;
|
|
150452
150485
|
exports.PLUGIN_PRIORITY = _stretchColumns.PLUGIN_PRIORITY;
|
|
150453
150486
|
exports.StretchColumns = _stretchColumns.StretchColumns;
|
|
150454
150487
|
|
|
150455
150488
|
/***/ }),
|
|
150456
|
-
/*
|
|
150489
|
+
/* 1072 */
|
|
150457
150490
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
150458
150491
|
|
|
150459
150492
|
"use strict";
|
|
@@ -150464,7 +150497,7 @@ __webpack_require__(201);
|
|
|
150464
150497
|
__webpack_require__(311);
|
|
150465
150498
|
__webpack_require__(329);
|
|
150466
150499
|
var _base = __webpack_require__(841);
|
|
150467
|
-
var _calculator = __webpack_require__(
|
|
150500
|
+
var _calculator = __webpack_require__(1073);
|
|
150468
150501
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
150469
150502
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
150470
150503
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
@@ -150681,7 +150714,7 @@ function _onBeforeRender(fullRender) {
|
|
|
150681
150714
|
}
|
|
150682
150715
|
|
|
150683
150716
|
/***/ }),
|
|
150684
|
-
/*
|
|
150717
|
+
/* 1073 */
|
|
150685
150718
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
150686
150719
|
|
|
150687
150720
|
"use strict";
|
|
@@ -150693,8 +150726,8 @@ __webpack_require__(311);
|
|
|
150693
150726
|
__webpack_require__(329);
|
|
150694
150727
|
var _src = __webpack_require__(540);
|
|
150695
150728
|
var _element = __webpack_require__(351);
|
|
150696
|
-
var _all = __webpack_require__(
|
|
150697
|
-
var _last = __webpack_require__(
|
|
150729
|
+
var _all = __webpack_require__(1074);
|
|
150730
|
+
var _last = __webpack_require__(1076);
|
|
150698
150731
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
150699
150732
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
150700
150733
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
@@ -150849,7 +150882,7 @@ function _overwriteColumnWidthFn(columnWidth, columnVisualIndex) {
|
|
|
150849
150882
|
}
|
|
150850
150883
|
|
|
150851
150884
|
/***/ }),
|
|
150852
|
-
/*
|
|
150885
|
+
/* 1074 */
|
|
150853
150886
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
150854
150887
|
|
|
150855
150888
|
"use strict";
|
|
@@ -150861,7 +150894,7 @@ __webpack_require__(311);
|
|
|
150861
150894
|
__webpack_require__(329);
|
|
150862
150895
|
__webpack_require__(530);
|
|
150863
150896
|
var _src = __webpack_require__(540);
|
|
150864
|
-
var _base = __webpack_require__(
|
|
150897
|
+
var _base = __webpack_require__(1075);
|
|
150865
150898
|
/**
|
|
150866
150899
|
* The strategy calculates the column widths by stretching all columns evenly.
|
|
150867
150900
|
*
|
|
@@ -150926,7 +150959,7 @@ class StretchAllStrategy extends _base.StretchStrategy {
|
|
|
150926
150959
|
exports.StretchAllStrategy = StretchAllStrategy;
|
|
150927
150960
|
|
|
150928
150961
|
/***/ }),
|
|
150929
|
-
/*
|
|
150962
|
+
/* 1075 */
|
|
150930
150963
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
150931
150964
|
|
|
150932
150965
|
"use strict";
|
|
@@ -151015,7 +151048,7 @@ class StretchStrategy {
|
|
|
151015
151048
|
exports.StretchStrategy = StretchStrategy;
|
|
151016
151049
|
|
|
151017
151050
|
/***/ }),
|
|
151018
|
-
/*
|
|
151051
|
+
/* 1076 */
|
|
151019
151052
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
151020
151053
|
|
|
151021
151054
|
"use strict";
|
|
@@ -151025,7 +151058,7 @@ exports.__esModule = true;
|
|
|
151025
151058
|
__webpack_require__(201);
|
|
151026
151059
|
__webpack_require__(311);
|
|
151027
151060
|
__webpack_require__(530);
|
|
151028
|
-
var _base = __webpack_require__(
|
|
151061
|
+
var _base = __webpack_require__(1075);
|
|
151029
151062
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
151030
151063
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
151031
151064
|
function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
|
|
@@ -151100,20 +151133,20 @@ class StretchLastStrategy extends _base.StretchStrategy {
|
|
|
151100
151133
|
exports.StretchLastStrategy = StretchLastStrategy;
|
|
151101
151134
|
|
|
151102
151135
|
/***/ }),
|
|
151103
|
-
/*
|
|
151136
|
+
/* 1077 */
|
|
151104
151137
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
151105
151138
|
|
|
151106
151139
|
"use strict";
|
|
151107
151140
|
|
|
151108
151141
|
|
|
151109
151142
|
exports.__esModule = true;
|
|
151110
|
-
var _touchScroll = __webpack_require__(
|
|
151143
|
+
var _touchScroll = __webpack_require__(1078);
|
|
151111
151144
|
exports.PLUGIN_KEY = _touchScroll.PLUGIN_KEY;
|
|
151112
151145
|
exports.PLUGIN_PRIORITY = _touchScroll.PLUGIN_PRIORITY;
|
|
151113
151146
|
exports.TouchScroll = _touchScroll.TouchScroll;
|
|
151114
151147
|
|
|
151115
151148
|
/***/ }),
|
|
151116
|
-
/*
|
|
151149
|
+
/* 1078 */
|
|
151117
151150
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
151118
151151
|
|
|
151119
151152
|
"use strict";
|
|
@@ -151302,20 +151335,20 @@ function _onAfterMomentumScroll() {
|
|
|
151302
151335
|
}
|
|
151303
151336
|
|
|
151304
151337
|
/***/ }),
|
|
151305
|
-
/*
|
|
151338
|
+
/* 1079 */
|
|
151306
151339
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
151307
151340
|
|
|
151308
151341
|
"use strict";
|
|
151309
151342
|
|
|
151310
151343
|
|
|
151311
151344
|
exports.__esModule = true;
|
|
151312
|
-
var _trimRows = __webpack_require__(
|
|
151345
|
+
var _trimRows = __webpack_require__(1080);
|
|
151313
151346
|
exports.PLUGIN_KEY = _trimRows.PLUGIN_KEY;
|
|
151314
151347
|
exports.PLUGIN_PRIORITY = _trimRows.PLUGIN_PRIORITY;
|
|
151315
151348
|
exports.TrimRows = _trimRows.TrimRows;
|
|
151316
151349
|
|
|
151317
151350
|
/***/ }),
|
|
151318
|
-
/*
|
|
151351
|
+
/* 1080 */
|
|
151319
151352
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
151320
151353
|
|
|
151321
151354
|
"use strict";
|
|
@@ -151647,20 +151680,20 @@ function _onMapInit() {
|
|
|
151647
151680
|
}
|
|
151648
151681
|
|
|
151649
151682
|
/***/ }),
|
|
151650
|
-
/*
|
|
151683
|
+
/* 1081 */
|
|
151651
151684
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
151652
151685
|
|
|
151653
151686
|
"use strict";
|
|
151654
151687
|
|
|
151655
151688
|
|
|
151656
151689
|
exports.__esModule = true;
|
|
151657
|
-
var _undoRedo = __webpack_require__(
|
|
151690
|
+
var _undoRedo = __webpack_require__(1082);
|
|
151658
151691
|
exports.PLUGIN_KEY = _undoRedo.PLUGIN_KEY;
|
|
151659
151692
|
exports.PLUGIN_PRIORITY = _undoRedo.PLUGIN_PRIORITY;
|
|
151660
151693
|
exports.UndoRedo = _undoRedo.UndoRedo;
|
|
151661
151694
|
|
|
151662
151695
|
/***/ }),
|
|
151663
|
-
/*
|
|
151696
|
+
/* 1082 */
|
|
151664
151697
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
151665
151698
|
|
|
151666
151699
|
"use strict";
|
|
@@ -151683,7 +151716,7 @@ var _hooks = __webpack_require__(511);
|
|
|
151683
151716
|
var _object = __webpack_require__(499);
|
|
151684
151717
|
var _templateLiteralTag = __webpack_require__(494);
|
|
151685
151718
|
var _console = __webpack_require__(512);
|
|
151686
|
-
var _actions = __webpack_require__(
|
|
151719
|
+
var _actions = __webpack_require__(1083);
|
|
151687
151720
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
151688
151721
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
151689
151722
|
function _assertClassBrand(e, t, n) { if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n; throw new TypeError("Private element is not present on this object"); }
|
|
@@ -152053,7 +152086,7 @@ function _removeAPIFromCore() {
|
|
|
152053
152086
|
}
|
|
152054
152087
|
|
|
152055
152088
|
/***/ }),
|
|
152056
|
-
/*
|
|
152089
|
+
/* 1083 */
|
|
152057
152090
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152058
152091
|
|
|
152059
152092
|
"use strict";
|
|
@@ -152063,18 +152096,18 @@ exports.__esModule = true;
|
|
|
152063
152096
|
exports.registerActions = registerActions;
|
|
152064
152097
|
__webpack_require__(311);
|
|
152065
152098
|
__webpack_require__(329);
|
|
152066
|
-
var _cellAlignment = __webpack_require__(
|
|
152067
|
-
var _columnMove = __webpack_require__(
|
|
152068
|
-
var _columnSort = __webpack_require__(
|
|
152069
|
-
var _createColumn = __webpack_require__(
|
|
152070
|
-
var _createRow = __webpack_require__(
|
|
152071
|
-
var _dataChange = __webpack_require__(
|
|
152072
|
-
var _filters = __webpack_require__(
|
|
152073
|
-
var _mergeCells = __webpack_require__(
|
|
152074
|
-
var _removeColumn = __webpack_require__(
|
|
152075
|
-
var _removeRow = __webpack_require__(
|
|
152076
|
-
var _rowMove = __webpack_require__(
|
|
152077
|
-
var _unmergeCells = __webpack_require__(
|
|
152099
|
+
var _cellAlignment = __webpack_require__(1084);
|
|
152100
|
+
var _columnMove = __webpack_require__(1086);
|
|
152101
|
+
var _columnSort = __webpack_require__(1087);
|
|
152102
|
+
var _createColumn = __webpack_require__(1088);
|
|
152103
|
+
var _createRow = __webpack_require__(1089);
|
|
152104
|
+
var _dataChange = __webpack_require__(1090);
|
|
152105
|
+
var _filters = __webpack_require__(1091);
|
|
152106
|
+
var _mergeCells = __webpack_require__(1092);
|
|
152107
|
+
var _removeColumn = __webpack_require__(1093);
|
|
152108
|
+
var _removeRow = __webpack_require__(1096);
|
|
152109
|
+
var _rowMove = __webpack_require__(1097);
|
|
152110
|
+
var _unmergeCells = __webpack_require__(1098);
|
|
152078
152111
|
/**
|
|
152079
152112
|
* Register all undo/redo actions.
|
|
152080
152113
|
*
|
|
@@ -152086,7 +152119,7 @@ function registerActions(hot, undoRedoPlugin) {
|
|
|
152086
152119
|
}
|
|
152087
152120
|
|
|
152088
152121
|
/***/ }),
|
|
152089
|
-
/*
|
|
152122
|
+
/* 1084 */
|
|
152090
152123
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152091
152124
|
|
|
152092
152125
|
"use strict";
|
|
@@ -152095,7 +152128,7 @@ function registerActions(hot, undoRedoPlugin) {
|
|
|
152095
152128
|
var _interopRequireDefault = __webpack_require__(197);
|
|
152096
152129
|
exports.__esModule = true;
|
|
152097
152130
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
152098
|
-
var _base = __webpack_require__(
|
|
152131
|
+
var _base = __webpack_require__(1085);
|
|
152099
152132
|
var _utils = __webpack_require__(881);
|
|
152100
152133
|
var _array = __webpack_require__(495);
|
|
152101
152134
|
/**
|
|
@@ -152175,7 +152208,7 @@ class CellAlignmentAction extends _base.BaseAction {
|
|
|
152175
152208
|
exports.CellAlignmentAction = CellAlignmentAction;
|
|
152176
152209
|
|
|
152177
152210
|
/***/ }),
|
|
152178
|
-
/*
|
|
152211
|
+
/* 1085 */
|
|
152179
152212
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152180
152213
|
|
|
152181
152214
|
"use strict";
|
|
@@ -152200,7 +152233,7 @@ class BaseAction {
|
|
|
152200
152233
|
exports.BaseAction = BaseAction;
|
|
152201
152234
|
|
|
152202
152235
|
/***/ }),
|
|
152203
|
-
/*
|
|
152236
|
+
/* 1086 */
|
|
152204
152237
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152205
152238
|
|
|
152206
152239
|
"use strict";
|
|
@@ -152211,7 +152244,7 @@ exports.__esModule = true;
|
|
|
152211
152244
|
__webpack_require__(311);
|
|
152212
152245
|
__webpack_require__(329);
|
|
152213
152246
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
152214
|
-
var _base = __webpack_require__(
|
|
152247
|
+
var _base = __webpack_require__(1085);
|
|
152215
152248
|
var _moves = __webpack_require__(995);
|
|
152216
152249
|
/**
|
|
152217
152250
|
* Action that tracks column move changes.
|
|
@@ -152288,7 +152321,7 @@ class ColumnMoveAction extends _base.BaseAction {
|
|
|
152288
152321
|
exports.ColumnMoveAction = ColumnMoveAction;
|
|
152289
152322
|
|
|
152290
152323
|
/***/ }),
|
|
152291
|
-
/*
|
|
152324
|
+
/* 1087 */
|
|
152292
152325
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152293
152326
|
|
|
152294
152327
|
"use strict";
|
|
@@ -152297,7 +152330,7 @@ exports.ColumnMoveAction = ColumnMoveAction;
|
|
|
152297
152330
|
var _interopRequireDefault = __webpack_require__(197);
|
|
152298
152331
|
exports.__esModule = true;
|
|
152299
152332
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
152300
|
-
var _base = __webpack_require__(
|
|
152333
|
+
var _base = __webpack_require__(1085);
|
|
152301
152334
|
/**
|
|
152302
152335
|
* Action that tracks column sort changes.
|
|
152303
152336
|
*
|
|
@@ -152365,7 +152398,7 @@ class ColumnSortAction extends _base.BaseAction {
|
|
|
152365
152398
|
exports.ColumnSortAction = ColumnSortAction;
|
|
152366
152399
|
|
|
152367
152400
|
/***/ }),
|
|
152368
|
-
/*
|
|
152401
|
+
/* 1088 */
|
|
152369
152402
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152370
152403
|
|
|
152371
152404
|
"use strict";
|
|
@@ -152374,7 +152407,7 @@ exports.ColumnSortAction = ColumnSortAction;
|
|
|
152374
152407
|
var _interopRequireDefault = __webpack_require__(197);
|
|
152375
152408
|
exports.__esModule = true;
|
|
152376
152409
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
152377
|
-
var _base = __webpack_require__(
|
|
152410
|
+
var _base = __webpack_require__(1085);
|
|
152378
152411
|
/**
|
|
152379
152412
|
* Action that tracks column creation.
|
|
152380
152413
|
*
|
|
@@ -152429,7 +152462,7 @@ class CreateColumnAction extends _base.BaseAction {
|
|
|
152429
152462
|
exports.CreateColumnAction = CreateColumnAction;
|
|
152430
152463
|
|
|
152431
152464
|
/***/ }),
|
|
152432
|
-
/*
|
|
152465
|
+
/* 1089 */
|
|
152433
152466
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152434
152467
|
|
|
152435
152468
|
"use strict";
|
|
@@ -152438,7 +152471,7 @@ exports.CreateColumnAction = CreateColumnAction;
|
|
|
152438
152471
|
var _interopRequireDefault = __webpack_require__(197);
|
|
152439
152472
|
exports.__esModule = true;
|
|
152440
152473
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
152441
|
-
var _base = __webpack_require__(
|
|
152474
|
+
var _base = __webpack_require__(1085);
|
|
152442
152475
|
/**
|
|
152443
152476
|
* Action that tracks row creation.
|
|
152444
152477
|
*
|
|
@@ -152498,7 +152531,7 @@ class CreateRowAction extends _base.BaseAction {
|
|
|
152498
152531
|
exports.CreateRowAction = CreateRowAction;
|
|
152499
152532
|
|
|
152500
152533
|
/***/ }),
|
|
152501
|
-
/*
|
|
152534
|
+
/* 1090 */
|
|
152502
152535
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152503
152536
|
|
|
152504
152537
|
"use strict";
|
|
@@ -152512,7 +152545,7 @@ __webpack_require__(519);
|
|
|
152512
152545
|
__webpack_require__(329);
|
|
152513
152546
|
__webpack_require__(530);
|
|
152514
152547
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
152515
|
-
var _base = __webpack_require__(
|
|
152548
|
+
var _base = __webpack_require__(1085);
|
|
152516
152549
|
var _object = __webpack_require__(499);
|
|
152517
152550
|
/**
|
|
152518
152551
|
* Action that tracks data changes.
|
|
@@ -152625,7 +152658,7 @@ class DataChangeAction extends _base.BaseAction {
|
|
|
152625
152658
|
exports.DataChangeAction = DataChangeAction;
|
|
152626
152659
|
|
|
152627
152660
|
/***/ }),
|
|
152628
|
-
/*
|
|
152661
|
+
/* 1091 */
|
|
152629
152662
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152630
152663
|
|
|
152631
152664
|
"use strict";
|
|
@@ -152636,7 +152669,7 @@ exports.__esModule = true;
|
|
|
152636
152669
|
__webpack_require__(311);
|
|
152637
152670
|
__webpack_require__(323);
|
|
152638
152671
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
152639
|
-
var _base = __webpack_require__(
|
|
152672
|
+
var _base = __webpack_require__(1085);
|
|
152640
152673
|
/**
|
|
152641
152674
|
* Action that tracks filter changes.
|
|
152642
152675
|
*
|
|
@@ -152677,7 +152710,7 @@ class FiltersAction extends _base.BaseAction {
|
|
|
152677
152710
|
undo(hot, undoneCallback) {
|
|
152678
152711
|
const filters = hot.getPlugin('filters');
|
|
152679
152712
|
hot.addHookOnce('afterViewRender', undoneCallback);
|
|
152680
|
-
filters.
|
|
152713
|
+
filters.importConditions(this.previousConditionsStack);
|
|
152681
152714
|
filters.filter();
|
|
152682
152715
|
}
|
|
152683
152716
|
|
|
@@ -152688,14 +152721,14 @@ class FiltersAction extends _base.BaseAction {
|
|
|
152688
152721
|
redo(hot, redoneCallback) {
|
|
152689
152722
|
const filters = hot.getPlugin('filters');
|
|
152690
152723
|
hot.addHookOnce('afterViewRender', redoneCallback);
|
|
152691
|
-
filters.
|
|
152724
|
+
filters.importConditions(this.conditionsStack);
|
|
152692
152725
|
filters.filter();
|
|
152693
152726
|
}
|
|
152694
152727
|
}
|
|
152695
152728
|
exports.FiltersAction = FiltersAction;
|
|
152696
152729
|
|
|
152697
152730
|
/***/ }),
|
|
152698
|
-
/*
|
|
152731
|
+
/* 1092 */
|
|
152699
152732
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152700
152733
|
|
|
152701
152734
|
"use strict";
|
|
@@ -152704,7 +152737,7 @@ exports.FiltersAction = FiltersAction;
|
|
|
152704
152737
|
var _interopRequireDefault = __webpack_require__(197);
|
|
152705
152738
|
exports.__esModule = true;
|
|
152706
152739
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
152707
|
-
var _base = __webpack_require__(
|
|
152740
|
+
var _base = __webpack_require__(1085);
|
|
152708
152741
|
/**
|
|
152709
152742
|
* Action that tracks changes in merged cells.
|
|
152710
152743
|
*
|
|
@@ -152762,7 +152795,7 @@ class MergeCellsAction extends _base.BaseAction {
|
|
|
152762
152795
|
exports.MergeCellsAction = MergeCellsAction;
|
|
152763
152796
|
|
|
152764
152797
|
/***/ }),
|
|
152765
|
-
/*
|
|
152798
|
+
/* 1093 */
|
|
152766
152799
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152767
152800
|
|
|
152768
152801
|
"use strict";
|
|
@@ -152774,8 +152807,8 @@ __webpack_require__(283);
|
|
|
152774
152807
|
__webpack_require__(311);
|
|
152775
152808
|
__webpack_require__(329);
|
|
152776
152809
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
152777
|
-
var _base = __webpack_require__(
|
|
152778
|
-
var _utils = __webpack_require__(
|
|
152810
|
+
var _base = __webpack_require__(1085);
|
|
152811
|
+
var _utils = __webpack_require__(1094);
|
|
152779
152812
|
var _number = __webpack_require__(534);
|
|
152780
152813
|
var _array = __webpack_require__(495);
|
|
152781
152814
|
/**
|
|
@@ -152944,7 +152977,7 @@ class RemoveColumnAction extends _base.BaseAction {
|
|
|
152944
152977
|
exports.RemoveColumnAction = RemoveColumnAction;
|
|
152945
152978
|
|
|
152946
152979
|
/***/ }),
|
|
152947
|
-
/*
|
|
152980
|
+
/* 1094 */
|
|
152948
152981
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
152949
152982
|
|
|
152950
152983
|
"use strict";
|
|
@@ -152953,7 +152986,7 @@ exports.RemoveColumnAction = RemoveColumnAction;
|
|
|
152953
152986
|
exports.__esModule = true;
|
|
152954
152987
|
exports.getCellMetas = getCellMetas;
|
|
152955
152988
|
__webpack_require__(283);
|
|
152956
|
-
__webpack_require__(
|
|
152989
|
+
__webpack_require__(1095);
|
|
152957
152990
|
__webpack_require__(311);
|
|
152958
152991
|
__webpack_require__(323);
|
|
152959
152992
|
var _number = __webpack_require__(534);
|
|
@@ -152987,7 +153020,7 @@ function getCellMetas(hot, fromRow, toRow, fromColumn, toColumn) {
|
|
|
152987
153020
|
}
|
|
152988
153021
|
|
|
152989
153022
|
/***/ }),
|
|
152990
|
-
/*
|
|
153023
|
+
/* 1095 */
|
|
152991
153024
|
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
|
|
152992
153025
|
|
|
152993
153026
|
"use strict";
|
|
@@ -153010,7 +153043,7 @@ $({ target: 'Object', stat: true }, {
|
|
|
153010
153043
|
|
|
153011
153044
|
|
|
153012
153045
|
/***/ }),
|
|
153013
|
-
/*
|
|
153046
|
+
/* 1096 */
|
|
153014
153047
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
153015
153048
|
|
|
153016
153049
|
"use strict";
|
|
@@ -153022,8 +153055,8 @@ __webpack_require__(283);
|
|
|
153022
153055
|
__webpack_require__(311);
|
|
153023
153056
|
__webpack_require__(329);
|
|
153024
153057
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
153025
|
-
var _base = __webpack_require__(
|
|
153026
|
-
var _utils = __webpack_require__(
|
|
153058
|
+
var _base = __webpack_require__(1085);
|
|
153059
|
+
var _utils = __webpack_require__(1094);
|
|
153027
153060
|
var _object = __webpack_require__(499);
|
|
153028
153061
|
/**
|
|
153029
153062
|
* Action that tracks changes in row removal.
|
|
@@ -153133,7 +153166,7 @@ class RemoveRowAction extends _base.BaseAction {
|
|
|
153133
153166
|
exports.RemoveRowAction = RemoveRowAction;
|
|
153134
153167
|
|
|
153135
153168
|
/***/ }),
|
|
153136
|
-
/*
|
|
153169
|
+
/* 1097 */
|
|
153137
153170
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
153138
153171
|
|
|
153139
153172
|
"use strict";
|
|
@@ -153144,7 +153177,7 @@ exports.__esModule = true;
|
|
|
153144
153177
|
__webpack_require__(311);
|
|
153145
153178
|
__webpack_require__(329);
|
|
153146
153179
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
153147
|
-
var _base = __webpack_require__(
|
|
153180
|
+
var _base = __webpack_require__(1085);
|
|
153148
153181
|
var _moves = __webpack_require__(995);
|
|
153149
153182
|
/**
|
|
153150
153183
|
* Action that tracks row move changes.
|
|
@@ -153221,7 +153254,7 @@ class RowMoveAction extends _base.BaseAction {
|
|
|
153221
153254
|
exports.RowMoveAction = RowMoveAction;
|
|
153222
153255
|
|
|
153223
153256
|
/***/ }),
|
|
153224
|
-
/*
|
|
153257
|
+
/* 1098 */
|
|
153225
153258
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
153226
153259
|
|
|
153227
153260
|
"use strict";
|
|
@@ -153230,7 +153263,7 @@ exports.RowMoveAction = RowMoveAction;
|
|
|
153230
153263
|
var _interopRequireDefault = __webpack_require__(197);
|
|
153231
153264
|
exports.__esModule = true;
|
|
153232
153265
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(504));
|
|
153233
|
-
var _base = __webpack_require__(
|
|
153266
|
+
var _base = __webpack_require__(1085);
|
|
153234
153267
|
/**
|
|
153235
153268
|
* Action that tracks changes in merged cells.
|
|
153236
153269
|
*
|
|
@@ -153281,7 +153314,7 @@ class UnmergeCellsAction extends _base.BaseAction {
|
|
|
153281
153314
|
exports.UnmergeCellsAction = UnmergeCellsAction;
|
|
153282
153315
|
|
|
153283
153316
|
/***/ }),
|
|
153284
|
-
/*
|
|
153317
|
+
/* 1099 */
|
|
153285
153318
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
153286
153319
|
|
|
153287
153320
|
"use strict";
|