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
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: 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')
|
|
@@ -104,8 +104,8 @@ Handsontable.hooks = _hooks.Hooks.getSingleton();
|
|
|
104
104
|
Handsontable.CellCoords = _src.CellCoords;
|
|
105
105
|
Handsontable.CellRange = _src.CellRange;
|
|
106
106
|
Handsontable.packageName = 'handsontable';
|
|
107
|
-
Handsontable.buildDate = "
|
|
108
|
-
Handsontable.version = "0.0.0-next-
|
|
107
|
+
Handsontable.buildDate = "10/03/2025 13:10:01";
|
|
108
|
+
Handsontable.version = "0.0.0-next-89e4f85-20250310";
|
|
109
109
|
Handsontable.languages = {
|
|
110
110
|
dictionaryKeys: _registry.dictionaryKeys,
|
|
111
111
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
|
@@ -10090,7 +10090,7 @@ const domMessages = {
|
|
|
10090
10090
|
function _injectProductInfo(key, element) {
|
|
10091
10091
|
const hasValidType = !isEmpty(key);
|
|
10092
10092
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
|
10093
|
-
const hotVersion = "0.0.0-next-
|
|
10093
|
+
const hotVersion = "0.0.0-next-89e4f85-20250310";
|
|
10094
10094
|
let keyValidityDate;
|
|
10095
10095
|
let consoleMessageState = 'invalid';
|
|
10096
10096
|
let domMessageState = 'invalid';
|
|
@@ -54663,23 +54663,23 @@ var _mergeCells = __webpack_require__(688);
|
|
|
54663
54663
|
exports.MergeCells = _mergeCells.MergeCells;
|
|
54664
54664
|
var _multiColumnSorting = __webpack_require__(702);
|
|
54665
54665
|
exports.MultiColumnSorting = _multiColumnSorting.MultiColumnSorting;
|
|
54666
|
-
var _multipleSelectionHandles = __webpack_require__(
|
|
54666
|
+
var _multipleSelectionHandles = __webpack_require__(706);
|
|
54667
54667
|
exports.MultipleSelectionHandles = _multipleSelectionHandles.MultipleSelectionHandles;
|
|
54668
|
-
var _nestedHeaders = __webpack_require__(
|
|
54668
|
+
var _nestedHeaders = __webpack_require__(708);
|
|
54669
54669
|
exports.NestedHeaders = _nestedHeaders.NestedHeaders;
|
|
54670
|
-
var _nestedRows = __webpack_require__(
|
|
54670
|
+
var _nestedRows = __webpack_require__(724);
|
|
54671
54671
|
exports.NestedRows = _nestedRows.NestedRows;
|
|
54672
|
-
var _persistentState = __webpack_require__(
|
|
54672
|
+
var _persistentState = __webpack_require__(732);
|
|
54673
54673
|
exports.PersistentState = _persistentState.PersistentState;
|
|
54674
|
-
var _search = __webpack_require__(
|
|
54674
|
+
var _search = __webpack_require__(735);
|
|
54675
54675
|
exports.Search = _search.Search;
|
|
54676
|
-
var _stretchColumns = __webpack_require__(
|
|
54676
|
+
var _stretchColumns = __webpack_require__(737);
|
|
54677
54677
|
exports.StretchColumns = _stretchColumns.StretchColumns;
|
|
54678
|
-
var _touchScroll = __webpack_require__(
|
|
54678
|
+
var _touchScroll = __webpack_require__(743);
|
|
54679
54679
|
exports.TouchScroll = _touchScroll.TouchScroll;
|
|
54680
|
-
var _trimRows = __webpack_require__(
|
|
54680
|
+
var _trimRows = __webpack_require__(745);
|
|
54681
54681
|
exports.TrimRows = _trimRows.TrimRows;
|
|
54682
|
-
var _undoRedo = __webpack_require__(
|
|
54682
|
+
var _undoRedo = __webpack_require__(747);
|
|
54683
54683
|
exports.UndoRedo = _undoRedo.UndoRedo;
|
|
54684
54684
|
var _registry = __webpack_require__(198);
|
|
54685
54685
|
exports.registerPlugin = _registry.registerPlugin;
|
|
@@ -58717,6 +58717,13 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
|
58717
58717
|
_hooks.Hooks.getSingleton().register('beforeColumnSort');
|
|
58718
58718
|
_hooks.Hooks.getSingleton().register('afterColumnSort');
|
|
58719
58719
|
|
|
58720
|
+
/**
|
|
58721
|
+
* Tracks the conflicts between `columnSorting` and `multiColumnSorting` options.
|
|
58722
|
+
* Only one plugin can be enabled for Handsontable instance. Once one of them is enabled,
|
|
58723
|
+
* the other should remain disabled even if it's set to `true`.
|
|
58724
|
+
*/
|
|
58725
|
+
const pluginConflictsState = new WeakMap();
|
|
58726
|
+
|
|
58720
58727
|
// DIFF - MultiColumnSorting & ColumnSorting: changed configuration documentation.
|
|
58721
58728
|
/**
|
|
58722
58729
|
* @plugin ColumnSorting
|
|
@@ -58825,9 +58832,17 @@ class ColumnSorting extends _base.BasePlugin {
|
|
|
58825
58832
|
*/
|
|
58826
58833
|
enablePlugin() {
|
|
58827
58834
|
var _this = this;
|
|
58835
|
+
if (pluginConflictsState.has(this.hot) && pluginConflictsState.get(this.hot) !== this.pluginKey) {
|
|
58836
|
+
this.hot.updateSettings({
|
|
58837
|
+
[this.pluginKey]: false
|
|
58838
|
+
});
|
|
58839
|
+
(0, _utils.warnAboutPluginsConflict)(pluginConflictsState.get(this.hot), this.pluginKey);
|
|
58840
|
+
return;
|
|
58841
|
+
}
|
|
58828
58842
|
if (this.enabled) {
|
|
58829
58843
|
return;
|
|
58830
58844
|
}
|
|
58845
|
+
pluginConflictsState.set(this.hot, this.pluginKey);
|
|
58831
58846
|
this.columnStatesManager = new _columnStatesManager.ColumnStatesManager(this.hot, `${this.pluginKey}.sortingStates`);
|
|
58832
58847
|
this.columnMetaCache = new _translations.PhysicalIndexToValueMap(physicalIndex => {
|
|
58833
58848
|
let visualIndex = this.hot.toVisualColumn(physicalIndex);
|
|
@@ -58872,6 +58887,7 @@ class ColumnSorting extends _base.BasePlugin {
|
|
|
58872
58887
|
}
|
|
58873
58888
|
this.updateHeaderClasses(headerSpanElement);
|
|
58874
58889
|
};
|
|
58890
|
+
pluginConflictsState.delete(this.hot);
|
|
58875
58891
|
|
|
58876
58892
|
// Changing header width and removing indicator.
|
|
58877
58893
|
this.hot.addHook('afterGetColHeader', clearColHeader);
|
|
@@ -59349,7 +59365,7 @@ class ColumnSorting extends _base.BasePlugin {
|
|
|
59349
59365
|
* @param {object} newSettings New settings object.
|
|
59350
59366
|
*/
|
|
59351
59367
|
onUpdateSettings(newSettings) {
|
|
59352
|
-
super.onUpdateSettings();
|
|
59368
|
+
super.onUpdateSettings(newSettings);
|
|
59353
59369
|
if (this.columnMetaCache !== null) {
|
|
59354
59370
|
// Column meta cache base on settings, thus we should re-init the map.
|
|
59355
59371
|
this.columnMetaCache.init(this.hot.columnIndexMapper.getNumberOfIndexes());
|
|
@@ -59708,6 +59724,7 @@ exports.createDateTimeCompareFunction = createDateTimeCompareFunction;
|
|
|
59708
59724
|
exports.getHeaderSpanElement = getHeaderSpanElement;
|
|
59709
59725
|
exports.getNextSortOrder = getNextSortOrder;
|
|
59710
59726
|
exports.isFirstLevelColumnHeader = isFirstLevelColumnHeader;
|
|
59727
|
+
exports.warnAboutPluginsConflict = warnAboutPluginsConflict;
|
|
59711
59728
|
exports.wasHeaderClickedProperly = wasHeaderClickedProperly;
|
|
59712
59729
|
__webpack_require__(91);
|
|
59713
59730
|
__webpack_require__(102);
|
|
@@ -59724,6 +59741,8 @@ var _object = __webpack_require__(165);
|
|
|
59724
59741
|
var _event = __webpack_require__(175);
|
|
59725
59742
|
var _mixed = __webpack_require__(158);
|
|
59726
59743
|
var _sortService = __webpack_require__(526);
|
|
59744
|
+
var _console = __webpack_require__(178);
|
|
59745
|
+
var _templateLiteralTag = __webpack_require__(160);
|
|
59727
59746
|
const ASC_SORT_STATE = exports.ASC_SORT_STATE = 'asc';
|
|
59728
59747
|
const DESC_SORT_STATE = exports.DESC_SORT_STATE = 'desc';
|
|
59729
59748
|
const HEADER_SPAN_CLASS = exports.HEADER_SPAN_CLASS = 'colHeader';
|
|
@@ -59876,6 +59895,17 @@ function createDateTimeCompareFunction(sortOrder, format, columnPluginSettings)
|
|
|
59876
59895
|
};
|
|
59877
59896
|
}
|
|
59878
59897
|
|
|
59898
|
+
/**
|
|
59899
|
+
* Warn users about problems when using `columnSorting` and `multiColumnSorting` plugins simultaneously.
|
|
59900
|
+
*
|
|
59901
|
+
* @param {string} workingPlugin The plugin that will work.
|
|
59902
|
+
* @param {string} disabledPlugin The plugin that will remain disabled.
|
|
59903
|
+
*/
|
|
59904
|
+
function warnAboutPluginsConflict(workingPlugin, disabledPlugin) {
|
|
59905
|
+
(0, _console.warn)((0, _templateLiteralTag.toSingleLine)`Plugins \`columnSorting\` and \`multiColumnSorting\` should not be enabled simultaneously.\x20
|
|
59906
|
+
Only \`${workingPlugin}\` will work. The \`${disabledPlugin}\` plugin will remain disabled.`);
|
|
59907
|
+
}
|
|
59908
|
+
|
|
59879
59909
|
/***/ }),
|
|
59880
59910
|
/* 526 */
|
|
59881
59911
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
@@ -70290,6 +70320,7 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
|
70290
70320
|
*/
|
|
70291
70321
|
var _menuFocusNavigator = /*#__PURE__*/new WeakMap();
|
|
70292
70322
|
var _dropdownMenuTraces = /*#__PURE__*/new WeakMap();
|
|
70323
|
+
var _previousConditionStack = /*#__PURE__*/new WeakMap();
|
|
70293
70324
|
var _Filters_brand = /*#__PURE__*/new WeakSet();
|
|
70294
70325
|
class Filters extends _base.BasePlugin {
|
|
70295
70326
|
static get PLUGIN_KEY() {
|
|
@@ -70361,6 +70392,13 @@ class Filters extends _base.BasePlugin {
|
|
|
70361
70392
|
* @type {WeakSet<Menu>}
|
|
70362
70393
|
*/
|
|
70363
70394
|
_classPrivateFieldInitSpec(this, _dropdownMenuTraces, new WeakSet());
|
|
70395
|
+
/**
|
|
70396
|
+
* Stores the previous state of the condition stack before the latest filter operation.
|
|
70397
|
+
* This is used in the `beforeFilter` plugin to allow performing the undo operation.
|
|
70398
|
+
*
|
|
70399
|
+
* @type {Array}
|
|
70400
|
+
*/
|
|
70401
|
+
_classPrivateFieldInitSpec(this, _previousConditionStack, []);
|
|
70364
70402
|
this.hot.addHook('afterGetColHeader', function () {
|
|
70365
70403
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
70366
70404
|
args[_key] = arguments[_key];
|
|
@@ -70703,6 +70741,51 @@ class Filters extends _base.BasePlugin {
|
|
|
70703
70741
|
}
|
|
70704
70742
|
}
|
|
70705
70743
|
|
|
70744
|
+
/**
|
|
70745
|
+
* Imports filter conditions to all columns to the plugin. The method accepts
|
|
70746
|
+
* the array of conditions with the same structure as the {@link Filters#exportConditions} method returns.
|
|
70747
|
+
* Importing conditions will replace the current conditions. Once replaced, the state of the condition
|
|
70748
|
+
* will be reflected in the UI. To apply the changes and filter the table, call
|
|
70749
|
+
* the {@link Filters#filter} method eventually.
|
|
70750
|
+
*
|
|
70751
|
+
* @param {Array} conditions Array of conditions.
|
|
70752
|
+
*/
|
|
70753
|
+
importConditions(conditions) {
|
|
70754
|
+
this.conditionCollection.importAllConditions(conditions);
|
|
70755
|
+
}
|
|
70756
|
+
|
|
70757
|
+
/* eslint-disable jsdoc/require-description-complete-sentence */
|
|
70758
|
+
/**
|
|
70759
|
+
* Exports filter conditions for all columns from the plugin.
|
|
70760
|
+
* The array represents the filter state for each column. For example:
|
|
70761
|
+
*
|
|
70762
|
+
* ```js
|
|
70763
|
+
* [
|
|
70764
|
+
* {
|
|
70765
|
+
* column: 1,
|
|
70766
|
+
* operation: 'conjunction',
|
|
70767
|
+
* conditions: [
|
|
70768
|
+
* { name: 'gt', args: [95] },
|
|
70769
|
+
* ]
|
|
70770
|
+
* },
|
|
70771
|
+
* {
|
|
70772
|
+
* column: 7,
|
|
70773
|
+
* operation: 'conjunction',
|
|
70774
|
+
* conditions: [
|
|
70775
|
+
* { name: 'contains', args: ['mike'] },
|
|
70776
|
+
* { name: 'begins_with', args: ['m'] },
|
|
70777
|
+
* ]
|
|
70778
|
+
* },
|
|
70779
|
+
* ]
|
|
70780
|
+
* ```
|
|
70781
|
+
*
|
|
70782
|
+
* @returns {Array}
|
|
70783
|
+
*/
|
|
70784
|
+
/* eslint-enable jsdoc/require-description-complete-sentence */
|
|
70785
|
+
exportConditions() {
|
|
70786
|
+
return this.conditionCollection.exportAllConditions();
|
|
70787
|
+
}
|
|
70788
|
+
|
|
70706
70789
|
/**
|
|
70707
70790
|
* Filters data based on added filter conditions.
|
|
70708
70791
|
*
|
|
@@ -70716,8 +70799,8 @@ class Filters extends _base.BasePlugin {
|
|
|
70716
70799
|
const dataFilter = this._createDataFilter();
|
|
70717
70800
|
const needToFilter = !this.conditionCollection.isEmpty();
|
|
70718
70801
|
let visibleVisualRows = [];
|
|
70719
|
-
const conditions = this.
|
|
70720
|
-
const allowFiltering = this.hot.runHooks('beforeFilter', conditions, this
|
|
70802
|
+
const conditions = this.exportConditions();
|
|
70803
|
+
const allowFiltering = this.hot.runHooks('beforeFilter', conditions, _classPrivateFieldGet(_previousConditionStack, this));
|
|
70721
70804
|
if (allowFiltering !== false) {
|
|
70722
70805
|
if (needToFilter) {
|
|
70723
70806
|
const trimmedRows = [];
|
|
@@ -70740,11 +70823,13 @@ class Filters extends _base.BasePlugin {
|
|
|
70740
70823
|
} else {
|
|
70741
70824
|
this.filtersRowsMap.clear();
|
|
70742
70825
|
}
|
|
70826
|
+
_classPrivateFieldSet(_previousConditionStack, this, this.exportConditions());
|
|
70827
|
+
this.hot.runHooks('afterFilter', conditions);
|
|
70828
|
+
this.hot.view.adjustElementsSize();
|
|
70829
|
+
this.hot.render();
|
|
70830
|
+
} else {
|
|
70831
|
+
this.importConditions(_classPrivateFieldGet(_previousConditionStack, this));
|
|
70743
70832
|
}
|
|
70744
|
-
this.hot.runHooks('afterFilter', conditions);
|
|
70745
|
-
this.conditionCollection.setPreviousConditionStack(null);
|
|
70746
|
-
this.hot.view.adjustElementsSize();
|
|
70747
|
-
this.hot.render();
|
|
70748
70833
|
if (this.hot.selection.isSelected()) {
|
|
70749
70834
|
this.hot.selectCell(navigableHeaders ? -1 : 0, this.hot.getSelectedRangeLast().highlight.col);
|
|
70750
70835
|
}
|
|
@@ -71107,7 +71192,6 @@ function _onActionBarSubmit(submitType) {
|
|
|
71107
71192
|
}
|
|
71108
71193
|
this.conditionUpdateObserver.flush();
|
|
71109
71194
|
this.components.forEach(component => component.saveState(physicalIndex));
|
|
71110
|
-
this.filtersRowsMap.clear();
|
|
71111
71195
|
this.filter();
|
|
71112
71196
|
}
|
|
71113
71197
|
(_this$dropdownMenuPlu3 = this.dropdownMenuPlugin) === null || _this$dropdownMenuPlu3 === void 0 || _this$dropdownMenuPlu3.close();
|
|
@@ -71149,8 +71233,23 @@ function _updateComponents(conditionsState) {
|
|
|
71149
71233
|
editedConditionStack: {
|
|
71150
71234
|
conditions,
|
|
71151
71235
|
column
|
|
71152
|
-
}
|
|
71236
|
+
},
|
|
71237
|
+
conditionArgsChange
|
|
71153
71238
|
} = conditionsState;
|
|
71239
|
+
if (Array.isArray(conditionArgsChange)) {
|
|
71240
|
+
// update the previous condition stack (only for 'by_value' condition) on each dataset
|
|
71241
|
+
// change to make the undo/redo work properly
|
|
71242
|
+
_classPrivateFieldSet(_previousConditionStack, this, _classPrivateFieldGet(_previousConditionStack, this).map(stack => {
|
|
71243
|
+
if (stack.column === column && conditions.length > 0) {
|
|
71244
|
+
stack.conditions.forEach(condition => {
|
|
71245
|
+
if (condition.name === 'by_value') {
|
|
71246
|
+
condition.args = [[...conditionArgsChange]];
|
|
71247
|
+
}
|
|
71248
|
+
});
|
|
71249
|
+
}
|
|
71250
|
+
return stack;
|
|
71251
|
+
}));
|
|
71252
|
+
}
|
|
71154
71253
|
const conditionsByValue = conditions.filter(condition => condition.name === _constants2.CONDITION_BY_VALUE);
|
|
71155
71254
|
const conditionsWithoutByValue = conditions.filter(condition => condition.name !== _constants2.CONDITION_BY_VALUE);
|
|
71156
71255
|
if (conditionsByValue.length >= 2 || conditionsWithoutByValue.length >= 3) {
|
|
@@ -74594,13 +74693,6 @@ class ConditionCollection {
|
|
|
74594
74693
|
* @type {LinkedPhysicalIndexToValueMap}
|
|
74595
74694
|
*/
|
|
74596
74695
|
(0, _defineProperty2.default)(this, "filteringStates", new _translations.LinkedPhysicalIndexToValueMap());
|
|
74597
|
-
/**
|
|
74598
|
-
* Stores the previous state of the condition stack before the latest filter operation.
|
|
74599
|
-
* This is used in the `beforeFilter` plugin to allow performing the undo operation.
|
|
74600
|
-
*
|
|
74601
|
-
* @type {null|Array}
|
|
74602
|
-
*/
|
|
74603
|
-
(0, _defineProperty2.default)(this, "previousConditionStack", null);
|
|
74604
74696
|
this.hot = hot;
|
|
74605
74697
|
this.isMapRegistrable = isMapRegistrable;
|
|
74606
74698
|
if (this.isMapRegistrable === true) {
|
|
@@ -74669,13 +74761,6 @@ class ConditionCollection {
|
|
|
74669
74761
|
const localeForColumn = this.hot.getCellMeta(0, column).locale;
|
|
74670
74762
|
const args = conditionDefinition.args.map(v => typeof v === 'string' ? v.toLocaleLowerCase(localeForColumn) : v);
|
|
74671
74763
|
const name = conditionDefinition.name || conditionDefinition.command.key;
|
|
74672
|
-
|
|
74673
|
-
// If there's no previous condition stack defined (which means the condition stack was not cleared after the
|
|
74674
|
-
// previous filter operation or that there was no filter operation performed yet), store the current conditions as
|
|
74675
|
-
// the previous condition stack.
|
|
74676
|
-
if (this.previousConditionStack === null) {
|
|
74677
|
-
this.setPreviousConditionStack(this.exportAllConditions());
|
|
74678
|
-
}
|
|
74679
74764
|
this.runLocalHooks('beforeAdd', column);
|
|
74680
74765
|
const columnType = this.getOperation(column);
|
|
74681
74766
|
if (columnType) {
|
|
@@ -74804,8 +74889,6 @@ class ConditionCollection {
|
|
|
74804
74889
|
* @fires ConditionCollection#afterRemove
|
|
74805
74890
|
*/
|
|
74806
74891
|
removeConditions(column) {
|
|
74807
|
-
// Store the current conditions as the previous condition stack before it's cleared.
|
|
74808
|
-
this.setPreviousConditionStack(this.exportAllConditions());
|
|
74809
74892
|
this.runLocalHooks('beforeRemove', column);
|
|
74810
74893
|
this.filteringStates.clearValue(column);
|
|
74811
74894
|
this.runLocalHooks('afterRemove', column);
|
|
@@ -74839,16 +74922,6 @@ class ConditionCollection {
|
|
|
74839
74922
|
return conditions.length > 0;
|
|
74840
74923
|
}
|
|
74841
74924
|
|
|
74842
|
-
/**
|
|
74843
|
-
* Updates the `previousConditionStack` property with the provided stack.
|
|
74844
|
-
* It is used to store the current conditions before they are modified, allowing for undo operations.
|
|
74845
|
-
*
|
|
74846
|
-
* @param {Array|null} previousConditionStack The stack of previous conditions.
|
|
74847
|
-
*/
|
|
74848
|
-
setPreviousConditionStack(previousConditionStack) {
|
|
74849
|
-
this.previousConditionStack = previousConditionStack;
|
|
74850
|
-
}
|
|
74851
|
-
|
|
74852
74925
|
/**
|
|
74853
74926
|
* Destroy object.
|
|
74854
74927
|
*/
|
|
@@ -84001,12 +84074,11 @@ function _sumCellsHeights(row, rowspan) {
|
|
|
84001
84074
|
} = this.hot;
|
|
84002
84075
|
const stylesHandler = view.getStylesHandler();
|
|
84003
84076
|
const defaultHeight = view.getDefaultRowHeight();
|
|
84004
|
-
const autoRowSizePlugin = this.hot.getPlugin('autoRowSize');
|
|
84005
84077
|
let height = 0;
|
|
84006
84078
|
for (let i = row; i < row + rowspan; i++) {
|
|
84007
84079
|
if (!rowIndexMapper.isHidden(i)) {
|
|
84008
|
-
var
|
|
84009
|
-
height += (
|
|
84080
|
+
var _this$hot$getRowHeigh;
|
|
84081
|
+
height += (_this$hot$getRowHeigh = this.hot.getRowHeight(i)) !== null && _this$hot$getRowHeigh !== void 0 ? _this$hot$getRowHeigh : defaultHeight;
|
|
84010
84082
|
if (i === 0 && !stylesHandler.isClassicTheme()) {
|
|
84011
84083
|
height += 1; // border-top-width
|
|
84012
84084
|
}
|
|
@@ -86306,12 +86378,10 @@ var _sortService = __webpack_require__(526);
|
|
|
86306
86378
|
var _utils = __webpack_require__(525);
|
|
86307
86379
|
var _element = __webpack_require__(155);
|
|
86308
86380
|
var _rootComparator = __webpack_require__(704);
|
|
86309
|
-
var
|
|
86310
|
-
var _domHelpers = __webpack_require__(706);
|
|
86381
|
+
var _domHelpers = __webpack_require__(705);
|
|
86311
86382
|
var _shortcutContexts = __webpack_require__(352);
|
|
86312
86383
|
const PLUGIN_KEY = exports.PLUGIN_KEY = 'multiColumnSorting';
|
|
86313
86384
|
const PLUGIN_PRIORITY = exports.PLUGIN_PRIORITY = 170;
|
|
86314
|
-
const CONFLICTED_PLUGIN_KEY = 'columnSorting';
|
|
86315
86385
|
const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
86316
86386
|
(0, _sortService.registerRootComparator)(PLUGIN_KEY, _rootComparator.rootComparator);
|
|
86317
86387
|
|
|
@@ -86391,17 +86461,13 @@ class MultiColumnSorting extends _columnSorting.ColumnSorting {
|
|
|
86391
86461
|
* @returns {boolean}
|
|
86392
86462
|
*/
|
|
86393
86463
|
isEnabled() {
|
|
86394
|
-
return
|
|
86464
|
+
return !!this.hot.getSettings()[this.pluginKey];
|
|
86395
86465
|
}
|
|
86396
86466
|
|
|
86397
86467
|
/**
|
|
86398
86468
|
* Enables the plugin functionality for this Handsontable instance.
|
|
86399
86469
|
*/
|
|
86400
86470
|
enablePlugin() {
|
|
86401
|
-
if (!this.enabled && this.hot.getSettings()[this.pluginKey] && this.hot.getSettings()[CONFLICTED_PLUGIN_KEY]) {
|
|
86402
|
-
(0, _utils2.warnAboutPluginsConflict)();
|
|
86403
|
-
this.hot.getPlugin(CONFLICTED_PLUGIN_KEY).disablePlugin();
|
|
86404
|
-
}
|
|
86405
86471
|
super.enablePlugin();
|
|
86406
86472
|
}
|
|
86407
86473
|
|
|
@@ -86573,20 +86639,6 @@ class MultiColumnSorting extends _columnSorting.ColumnSorting {
|
|
|
86573
86639
|
}
|
|
86574
86640
|
}
|
|
86575
86641
|
|
|
86576
|
-
/**
|
|
86577
|
-
* Overwriting base plugin's `onUpdateSettings` method. Please keep in mind that `onAfterUpdateSettings` isn't called
|
|
86578
|
-
* for `updateSettings` in specific situations.
|
|
86579
|
-
*
|
|
86580
|
-
* @private
|
|
86581
|
-
* @param {object} newSettings New settings object.
|
|
86582
|
-
*/
|
|
86583
|
-
onUpdateSettings(newSettings) {
|
|
86584
|
-
if (this.hot.getSettings()[this.pluginKey] && this.hot.getSettings()[CONFLICTED_PLUGIN_KEY]) {
|
|
86585
|
-
(0, _utils2.warnAboutPluginsConflict)();
|
|
86586
|
-
}
|
|
86587
|
-
super.onUpdateSettings(newSettings);
|
|
86588
|
-
}
|
|
86589
|
-
|
|
86590
86642
|
/**
|
|
86591
86643
|
* Callback for the `onAfterOnCellMouseDown` hook.
|
|
86592
86644
|
*
|
|
@@ -86660,25 +86712,6 @@ function rootComparator(sortingOrders, columnMetas) {
|
|
|
86660
86712
|
"use strict";
|
|
86661
86713
|
|
|
86662
86714
|
|
|
86663
|
-
exports.__esModule = true;
|
|
86664
|
-
exports.warnAboutPluginsConflict = warnAboutPluginsConflict;
|
|
86665
|
-
var _console = __webpack_require__(178);
|
|
86666
|
-
var _templateLiteralTag = __webpack_require__(160);
|
|
86667
|
-
/**
|
|
86668
|
-
* Warn users about problems when using `columnSorting` and `multiColumnSorting` plugins simultaneously.
|
|
86669
|
-
*/
|
|
86670
|
-
function warnAboutPluginsConflict() {
|
|
86671
|
-
(0, _console.warn)((0, _templateLiteralTag.toSingleLine)`Plugins \`columnSorting\` and \`multiColumnSorting\` should not be enabled simultaneously.
|
|
86672
|
-
Only \`multiColumnSorting\` will work. The \`columnSorting\` plugin will be disabled.`);
|
|
86673
|
-
}
|
|
86674
|
-
|
|
86675
|
-
/***/ }),
|
|
86676
|
-
/* 706 */
|
|
86677
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
86678
|
-
|
|
86679
|
-
"use strict";
|
|
86680
|
-
|
|
86681
|
-
|
|
86682
86715
|
exports.__esModule = true;
|
|
86683
86716
|
exports.getClassesToAdd = getClassesToAdd;
|
|
86684
86717
|
exports.getClassesToRemove = getClassesToRemove;
|
|
@@ -86719,20 +86752,20 @@ function getClassesToRemove(htmlElement) {
|
|
|
86719
86752
|
}
|
|
86720
86753
|
|
|
86721
86754
|
/***/ }),
|
|
86722
|
-
/*
|
|
86755
|
+
/* 706 */
|
|
86723
86756
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
86724
86757
|
|
|
86725
86758
|
"use strict";
|
|
86726
86759
|
|
|
86727
86760
|
|
|
86728
86761
|
exports.__esModule = true;
|
|
86729
|
-
var _multipleSelectionHandles = __webpack_require__(
|
|
86762
|
+
var _multipleSelectionHandles = __webpack_require__(707);
|
|
86730
86763
|
exports.PLUGIN_KEY = _multipleSelectionHandles.PLUGIN_KEY;
|
|
86731
86764
|
exports.PLUGIN_PRIORITY = _multipleSelectionHandles.PLUGIN_PRIORITY;
|
|
86732
86765
|
exports.MultipleSelectionHandles = _multipleSelectionHandles.MultipleSelectionHandles;
|
|
86733
86766
|
|
|
86734
86767
|
/***/ }),
|
|
86735
|
-
/*
|
|
86768
|
+
/* 707 */
|
|
86736
86769
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
86737
86770
|
|
|
86738
86771
|
"use strict";
|
|
@@ -87071,20 +87104,20 @@ class MultipleSelectionHandles extends _base.BasePlugin {
|
|
|
87071
87104
|
exports.MultipleSelectionHandles = MultipleSelectionHandles;
|
|
87072
87105
|
|
|
87073
87106
|
/***/ }),
|
|
87074
|
-
/*
|
|
87107
|
+
/* 708 */
|
|
87075
87108
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
87076
87109
|
|
|
87077
87110
|
"use strict";
|
|
87078
87111
|
|
|
87079
87112
|
|
|
87080
87113
|
exports.__esModule = true;
|
|
87081
|
-
var _nestedHeaders = __webpack_require__(
|
|
87114
|
+
var _nestedHeaders = __webpack_require__(709);
|
|
87082
87115
|
exports.PLUGIN_KEY = _nestedHeaders.PLUGIN_KEY;
|
|
87083
87116
|
exports.PLUGIN_PRIORITY = _nestedHeaders.PLUGIN_PRIORITY;
|
|
87084
87117
|
exports.NestedHeaders = _nestedHeaders.NestedHeaders;
|
|
87085
87118
|
|
|
87086
87119
|
/***/ }),
|
|
87087
|
-
/*
|
|
87120
|
+
/* 709 */
|
|
87088
87121
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
87089
87122
|
|
|
87090
87123
|
"use strict";
|
|
@@ -87104,8 +87137,8 @@ var _event = __webpack_require__(175);
|
|
|
87104
87137
|
var _console = __webpack_require__(178);
|
|
87105
87138
|
var _selection = __webpack_require__(318);
|
|
87106
87139
|
var _base = __webpack_require__(507);
|
|
87107
|
-
var _stateManager2 = _interopRequireDefault(__webpack_require__(
|
|
87108
|
-
var _ghostTable = _interopRequireDefault(__webpack_require__(
|
|
87140
|
+
var _stateManager2 = _interopRequireDefault(__webpack_require__(710));
|
|
87141
|
+
var _ghostTable = _interopRequireDefault(__webpack_require__(723));
|
|
87109
87142
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
87110
87143
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
87111
87144
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
@@ -88093,7 +88126,7 @@ function _onAfterLoadData(sourceData, initialLoad) {
|
|
|
88093
88126
|
}
|
|
88094
88127
|
|
|
88095
88128
|
/***/ }),
|
|
88096
|
-
/*
|
|
88129
|
+
/* 710 */
|
|
88097
88130
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
88098
88131
|
|
|
88099
88132
|
"use strict";
|
|
@@ -88106,11 +88139,11 @@ __webpack_require__(87);
|
|
|
88106
88139
|
__webpack_require__(115);
|
|
88107
88140
|
__webpack_require__(142);
|
|
88108
88141
|
var _array = __webpack_require__(161);
|
|
88109
|
-
var _sourceSettings2 = _interopRequireDefault(__webpack_require__(
|
|
88110
|
-
var _headersTree2 = _interopRequireDefault(__webpack_require__(
|
|
88111
|
-
var _nodeModifiers = __webpack_require__(
|
|
88112
|
-
var _matrixGenerator = __webpack_require__(
|
|
88113
|
-
var _tree = __webpack_require__(
|
|
88142
|
+
var _sourceSettings2 = _interopRequireDefault(__webpack_require__(711));
|
|
88143
|
+
var _headersTree2 = _interopRequireDefault(__webpack_require__(714));
|
|
88144
|
+
var _nodeModifiers = __webpack_require__(716);
|
|
88145
|
+
var _matrixGenerator = __webpack_require__(722);
|
|
88146
|
+
var _tree = __webpack_require__(715);
|
|
88114
88147
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
88115
88148
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
88116
88149
|
function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
|
|
@@ -88585,7 +88618,7 @@ class StateManager {
|
|
|
88585
88618
|
exports["default"] = StateManager;
|
|
88586
88619
|
|
|
88587
88620
|
/***/ }),
|
|
88588
|
-
/*
|
|
88621
|
+
/* 711 */
|
|
88589
88622
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
88590
88623
|
|
|
88591
88624
|
"use strict";
|
|
@@ -88596,7 +88629,7 @@ __webpack_require__(5);
|
|
|
88596
88629
|
__webpack_require__(87);
|
|
88597
88630
|
var _object = __webpack_require__(165);
|
|
88598
88631
|
var _array = __webpack_require__(161);
|
|
88599
|
-
var _settingsNormalizer = __webpack_require__(
|
|
88632
|
+
var _settingsNormalizer = __webpack_require__(712);
|
|
88600
88633
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
88601
88634
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
88602
88635
|
function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
|
|
@@ -88807,7 +88840,7 @@ class SourceSettings {
|
|
|
88807
88840
|
exports["default"] = SourceSettings;
|
|
88808
88841
|
|
|
88809
88842
|
/***/ }),
|
|
88810
|
-
/*
|
|
88843
|
+
/* 712 */
|
|
88811
88844
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
88812
88845
|
|
|
88813
88846
|
"use strict";
|
|
@@ -88819,7 +88852,7 @@ __webpack_require__(87);
|
|
|
88819
88852
|
var _array = __webpack_require__(161);
|
|
88820
88853
|
var _object = __webpack_require__(165);
|
|
88821
88854
|
var _mixed = __webpack_require__(158);
|
|
88822
|
-
var _utils = __webpack_require__(
|
|
88855
|
+
var _utils = __webpack_require__(713);
|
|
88823
88856
|
/* eslint-disable jsdoc/require-description-complete-sentence */
|
|
88824
88857
|
|
|
88825
88858
|
/**
|
|
@@ -88921,7 +88954,7 @@ function normalizeSettings(sourceSettings) {
|
|
|
88921
88954
|
}
|
|
88922
88955
|
|
|
88923
88956
|
/***/ }),
|
|
88924
|
-
/*
|
|
88957
|
+
/* 713 */
|
|
88925
88958
|
/***/ ((__unused_webpack_module, exports) => {
|
|
88926
88959
|
|
|
88927
88960
|
"use strict";
|
|
@@ -88998,7 +89031,7 @@ function createPlaceholderHeaderSettings() {
|
|
|
88998
89031
|
}
|
|
88999
89032
|
|
|
89000
89033
|
/***/ }),
|
|
89001
|
-
/*
|
|
89034
|
+
/* 714 */
|
|
89002
89035
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89003
89036
|
|
|
89004
89037
|
"use strict";
|
|
@@ -89008,7 +89041,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
|
89008
89041
|
exports.__esModule = true;
|
|
89009
89042
|
__webpack_require__(5);
|
|
89010
89043
|
var _array = __webpack_require__(161);
|
|
89011
|
-
var _tree = _interopRequireDefault(__webpack_require__(
|
|
89044
|
+
var _tree = _interopRequireDefault(__webpack_require__(715));
|
|
89012
89045
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
89013
89046
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
89014
89047
|
function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
|
|
@@ -89236,7 +89269,7 @@ class HeadersTree {
|
|
|
89236
89269
|
exports["default"] = HeadersTree;
|
|
89237
89270
|
|
|
89238
89271
|
/***/ }),
|
|
89239
|
-
/*
|
|
89272
|
+
/* 715 */
|
|
89240
89273
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89241
89274
|
|
|
89242
89275
|
"use strict";
|
|
@@ -89455,7 +89488,7 @@ class TreeNode {
|
|
|
89455
89488
|
exports["default"] = TreeNode;
|
|
89456
89489
|
|
|
89457
89490
|
/***/ }),
|
|
89458
|
-
/*
|
|
89491
|
+
/* 716 */
|
|
89459
89492
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89460
89493
|
|
|
89461
89494
|
"use strict";
|
|
@@ -89464,10 +89497,10 @@ exports["default"] = TreeNode;
|
|
|
89464
89497
|
exports.__esModule = true;
|
|
89465
89498
|
exports.triggerNodeModification = triggerNodeModification;
|
|
89466
89499
|
__webpack_require__(5);
|
|
89467
|
-
var _collapse = __webpack_require__(
|
|
89468
|
-
var _expand = __webpack_require__(
|
|
89469
|
-
var _hideColumn = __webpack_require__(
|
|
89470
|
-
var _showColumn = __webpack_require__(
|
|
89500
|
+
var _collapse = __webpack_require__(717);
|
|
89501
|
+
var _expand = __webpack_require__(718);
|
|
89502
|
+
var _hideColumn = __webpack_require__(720);
|
|
89503
|
+
var _showColumn = __webpack_require__(721);
|
|
89471
89504
|
/**
|
|
89472
89505
|
* The NodeModifiers module is responsible for the modification of a tree structure
|
|
89473
89506
|
* in a way to achieve new column headers state.
|
|
@@ -89497,7 +89530,7 @@ function triggerNodeModification(actionName, nodeToProcess, gridColumnIndex) {
|
|
|
89497
89530
|
}
|
|
89498
89531
|
|
|
89499
89532
|
/***/ }),
|
|
89500
|
-
/*
|
|
89533
|
+
/* 717 */
|
|
89501
89534
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89502
89535
|
|
|
89503
89536
|
"use strict";
|
|
@@ -89513,8 +89546,8 @@ __webpack_require__(109);
|
|
|
89513
89546
|
__webpack_require__(111);
|
|
89514
89547
|
__webpack_require__(113);
|
|
89515
89548
|
var _array = __webpack_require__(161);
|
|
89516
|
-
var _expand = __webpack_require__(
|
|
89517
|
-
var _tree = __webpack_require__(
|
|
89549
|
+
var _expand = __webpack_require__(718);
|
|
89550
|
+
var _tree = __webpack_require__(719);
|
|
89518
89551
|
/**
|
|
89519
89552
|
* Collapsing a node is a process where the processing node is collapsed
|
|
89520
89553
|
* to the colspan width of the first child. All node children, except the
|
|
@@ -89607,7 +89640,7 @@ function collapseNode(nodeToProcess) {
|
|
|
89607
89640
|
}
|
|
89608
89641
|
|
|
89609
89642
|
/***/ }),
|
|
89610
|
-
/*
|
|
89643
|
+
/* 718 */
|
|
89611
89644
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89612
89645
|
|
|
89613
89646
|
"use strict";
|
|
@@ -89623,8 +89656,8 @@ __webpack_require__(109);
|
|
|
89623
89656
|
__webpack_require__(111);
|
|
89624
89657
|
__webpack_require__(113);
|
|
89625
89658
|
var _array = __webpack_require__(161);
|
|
89626
|
-
var _collapse = __webpack_require__(
|
|
89627
|
-
var _tree = __webpack_require__(
|
|
89659
|
+
var _collapse = __webpack_require__(717);
|
|
89660
|
+
var _tree = __webpack_require__(719);
|
|
89628
89661
|
/**
|
|
89629
89662
|
* Expanding a node is a process where the processing node is expanded to
|
|
89630
89663
|
* its original colspan width. To restore an original state of all node
|
|
@@ -89712,7 +89745,7 @@ function expandNode(nodeToProcess) {
|
|
|
89712
89745
|
}
|
|
89713
89746
|
|
|
89714
89747
|
/***/ }),
|
|
89715
|
-
/*
|
|
89748
|
+
/* 719 */
|
|
89716
89749
|
/***/ ((__unused_webpack_module, exports) => {
|
|
89717
89750
|
|
|
89718
89751
|
"use strict";
|
|
@@ -89783,7 +89816,7 @@ function isNodeReflectsFirstChildColspan(node) {
|
|
|
89783
89816
|
}
|
|
89784
89817
|
|
|
89785
89818
|
/***/ }),
|
|
89786
|
-
/*
|
|
89819
|
+
/* 720 */
|
|
89787
89820
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89788
89821
|
|
|
89789
89822
|
"use strict";
|
|
@@ -89846,7 +89879,7 @@ the last node, the hide column modification can be applied.`);
|
|
|
89846
89879
|
}
|
|
89847
89880
|
|
|
89848
89881
|
/***/ }),
|
|
89849
|
-
/*
|
|
89882
|
+
/* 721 */
|
|
89850
89883
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89851
89884
|
|
|
89852
89885
|
"use strict";
|
|
@@ -89907,7 +89940,7 @@ the last node, the show column modification can be applied.`);
|
|
|
89907
89940
|
}
|
|
89908
89941
|
|
|
89909
89942
|
/***/ }),
|
|
89910
|
-
/*
|
|
89943
|
+
/* 722 */
|
|
89911
89944
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89912
89945
|
|
|
89913
89946
|
"use strict";
|
|
@@ -89917,7 +89950,7 @@ exports.__esModule = true;
|
|
|
89917
89950
|
exports.generateMatrix = generateMatrix;
|
|
89918
89951
|
__webpack_require__(87);
|
|
89919
89952
|
var _array = __webpack_require__(161);
|
|
89920
|
-
var _utils = __webpack_require__(
|
|
89953
|
+
var _utils = __webpack_require__(713);
|
|
89921
89954
|
/* eslint-disable jsdoc/require-description-complete-sentence */
|
|
89922
89955
|
|
|
89923
89956
|
/**
|
|
@@ -90013,7 +90046,7 @@ function createNestedArrayIfNecessary(array, index) {
|
|
|
90013
90046
|
}
|
|
90014
90047
|
|
|
90015
90048
|
/***/ }),
|
|
90016
|
-
/*
|
|
90049
|
+
/* 723 */
|
|
90017
90050
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
90018
90051
|
|
|
90019
90052
|
"use strict";
|
|
@@ -90169,20 +90202,20 @@ class GhostTable {
|
|
|
90169
90202
|
var _default = exports["default"] = GhostTable;
|
|
90170
90203
|
|
|
90171
90204
|
/***/ }),
|
|
90172
|
-
/*
|
|
90205
|
+
/* 724 */
|
|
90173
90206
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
90174
90207
|
|
|
90175
90208
|
"use strict";
|
|
90176
90209
|
|
|
90177
90210
|
|
|
90178
90211
|
exports.__esModule = true;
|
|
90179
|
-
var _nestedRows = __webpack_require__(
|
|
90212
|
+
var _nestedRows = __webpack_require__(725);
|
|
90180
90213
|
exports.PLUGIN_KEY = _nestedRows.PLUGIN_KEY;
|
|
90181
90214
|
exports.PLUGIN_PRIORITY = _nestedRows.PLUGIN_PRIORITY;
|
|
90182
90215
|
exports.NestedRows = _nestedRows.NestedRows;
|
|
90183
90216
|
|
|
90184
90217
|
/***/ }),
|
|
90185
|
-
/*
|
|
90218
|
+
/* 725 */
|
|
90186
90219
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
90187
90220
|
|
|
90188
90221
|
"use strict";
|
|
@@ -90204,15 +90237,15 @@ __webpack_require__(133);
|
|
|
90204
90237
|
__webpack_require__(196);
|
|
90205
90238
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
90206
90239
|
var _base = __webpack_require__(507);
|
|
90207
|
-
var _dataManager = _interopRequireDefault(__webpack_require__(
|
|
90208
|
-
var _collapsing = _interopRequireDefault(__webpack_require__(
|
|
90209
|
-
var _headers = _interopRequireDefault(__webpack_require__(
|
|
90210
|
-
var _contextMenu = _interopRequireDefault(__webpack_require__(
|
|
90240
|
+
var _dataManager = _interopRequireDefault(__webpack_require__(726));
|
|
90241
|
+
var _collapsing = _interopRequireDefault(__webpack_require__(727));
|
|
90242
|
+
var _headers = _interopRequireDefault(__webpack_require__(729));
|
|
90243
|
+
var _contextMenu = _interopRequireDefault(__webpack_require__(730));
|
|
90211
90244
|
var _console = __webpack_require__(178);
|
|
90212
90245
|
var _data = __webpack_require__(288);
|
|
90213
90246
|
var _translations = __webpack_require__(291);
|
|
90214
90247
|
var _shortcutContexts = __webpack_require__(352);
|
|
90215
|
-
var _rowMoveController = _interopRequireDefault(__webpack_require__(
|
|
90248
|
+
var _rowMoveController = _interopRequireDefault(__webpack_require__(731));
|
|
90216
90249
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
90217
90250
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
90218
90251
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
@@ -90744,7 +90777,7 @@ function _onBeforeLoadData(data) {
|
|
|
90744
90777
|
}
|
|
90745
90778
|
|
|
90746
90779
|
/***/ }),
|
|
90747
|
-
/*
|
|
90780
|
+
/* 726 */
|
|
90748
90781
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
90749
90782
|
|
|
90750
90783
|
"use strict";
|
|
@@ -91460,7 +91493,7 @@ class DataManager {
|
|
|
91460
91493
|
var _default = exports["default"] = DataManager;
|
|
91461
91494
|
|
|
91462
91495
|
/***/ }),
|
|
91463
|
-
/*
|
|
91496
|
+
/* 727 */
|
|
91464
91497
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
91465
91498
|
|
|
91466
91499
|
"use strict";
|
|
@@ -91473,8 +91506,8 @@ var _event = __webpack_require__(175);
|
|
|
91473
91506
|
var _array = __webpack_require__(161);
|
|
91474
91507
|
var _number = __webpack_require__(200);
|
|
91475
91508
|
var _element = __webpack_require__(155);
|
|
91476
|
-
var _base = _interopRequireDefault(__webpack_require__(
|
|
91477
|
-
var _headers = _interopRequireDefault(__webpack_require__(
|
|
91509
|
+
var _base = _interopRequireDefault(__webpack_require__(728));
|
|
91510
|
+
var _headers = _interopRequireDefault(__webpack_require__(729));
|
|
91478
91511
|
/**
|
|
91479
91512
|
* Class responsible for the UI for collapsing and expanding groups.
|
|
91480
91513
|
*
|
|
@@ -91935,7 +91968,7 @@ class CollapsingUI extends _base.default {
|
|
|
91935
91968
|
var _default = exports["default"] = CollapsingUI;
|
|
91936
91969
|
|
|
91937
91970
|
/***/ }),
|
|
91938
|
-
/*
|
|
91971
|
+
/* 728 */
|
|
91939
91972
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
91940
91973
|
|
|
91941
91974
|
"use strict";
|
|
@@ -91969,7 +92002,7 @@ class BaseUI {
|
|
|
91969
92002
|
var _default = exports["default"] = BaseUI;
|
|
91970
92003
|
|
|
91971
92004
|
/***/ }),
|
|
91972
|
-
/*
|
|
92005
|
+
/* 729 */
|
|
91973
92006
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
91974
92007
|
|
|
91975
92008
|
"use strict";
|
|
@@ -91980,7 +92013,7 @@ exports.__esModule = true;
|
|
|
91980
92013
|
var _array = __webpack_require__(161);
|
|
91981
92014
|
var _number = __webpack_require__(200);
|
|
91982
92015
|
var _element = __webpack_require__(155);
|
|
91983
|
-
var _base = _interopRequireDefault(__webpack_require__(
|
|
92016
|
+
var _base = _interopRequireDefault(__webpack_require__(728));
|
|
91984
92017
|
var _a11y = __webpack_require__(162);
|
|
91985
92018
|
/**
|
|
91986
92019
|
* Class responsible for the UI in the Nested Rows' row headers.
|
|
@@ -92113,7 +92146,7 @@ class HeadersUI extends _base.default {
|
|
|
92113
92146
|
var _default = exports["default"] = HeadersUI;
|
|
92114
92147
|
|
|
92115
92148
|
/***/ }),
|
|
92116
|
-
/*
|
|
92149
|
+
/* 730 */
|
|
92117
92150
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
92118
92151
|
|
|
92119
92152
|
"use strict";
|
|
@@ -92126,7 +92159,7 @@ var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
|
92126
92159
|
var _number = __webpack_require__(200);
|
|
92127
92160
|
var _array = __webpack_require__(161);
|
|
92128
92161
|
var C = _interopRequireWildcard(__webpack_require__(317));
|
|
92129
|
-
var _base = _interopRequireDefault(__webpack_require__(
|
|
92162
|
+
var _base = _interopRequireDefault(__webpack_require__(728));
|
|
92130
92163
|
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); }
|
|
92131
92164
|
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; }
|
|
92132
92165
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
@@ -92232,7 +92265,7 @@ class ContextMenuUI extends _base.default {
|
|
|
92232
92265
|
var _default = exports["default"] = ContextMenuUI;
|
|
92233
92266
|
|
|
92234
92267
|
/***/ }),
|
|
92235
|
-
/*
|
|
92268
|
+
/* 731 */
|
|
92236
92269
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
92237
92270
|
|
|
92238
92271
|
"use strict";
|
|
@@ -92521,20 +92554,20 @@ class RowMoveController {
|
|
|
92521
92554
|
exports["default"] = RowMoveController;
|
|
92522
92555
|
|
|
92523
92556
|
/***/ }),
|
|
92524
|
-
/*
|
|
92557
|
+
/* 732 */
|
|
92525
92558
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
92526
92559
|
|
|
92527
92560
|
"use strict";
|
|
92528
92561
|
|
|
92529
92562
|
|
|
92530
92563
|
exports.__esModule = true;
|
|
92531
|
-
var _persistentState = __webpack_require__(
|
|
92564
|
+
var _persistentState = __webpack_require__(733);
|
|
92532
92565
|
exports.PLUGIN_KEY = _persistentState.PLUGIN_KEY;
|
|
92533
92566
|
exports.PLUGIN_PRIORITY = _persistentState.PLUGIN_PRIORITY;
|
|
92534
92567
|
exports.PersistentState = _persistentState.PersistentState;
|
|
92535
92568
|
|
|
92536
92569
|
/***/ }),
|
|
92537
|
-
/*
|
|
92570
|
+
/* 733 */
|
|
92538
92571
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
92539
92572
|
|
|
92540
92573
|
"use strict";
|
|
@@ -92544,7 +92577,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
|
92544
92577
|
exports.__esModule = true;
|
|
92545
92578
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
92546
92579
|
var _base = __webpack_require__(507);
|
|
92547
|
-
var _storage = _interopRequireDefault(__webpack_require__(
|
|
92580
|
+
var _storage = _interopRequireDefault(__webpack_require__(734));
|
|
92548
92581
|
var _hooks = __webpack_require__(177);
|
|
92549
92582
|
_hooks.Hooks.getSingleton().register('persistentStateSave');
|
|
92550
92583
|
_hooks.Hooks.getSingleton().register('persistentStateLoad');
|
|
@@ -92685,7 +92718,7 @@ class PersistentState extends _base.BasePlugin {
|
|
|
92685
92718
|
exports.PersistentState = PersistentState;
|
|
92686
92719
|
|
|
92687
92720
|
/***/ }),
|
|
92688
|
-
/*
|
|
92721
|
+
/* 734 */
|
|
92689
92722
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
92690
92723
|
|
|
92691
92724
|
"use strict";
|
|
@@ -92809,20 +92842,20 @@ class Storage {
|
|
|
92809
92842
|
var _default = exports["default"] = Storage;
|
|
92810
92843
|
|
|
92811
92844
|
/***/ }),
|
|
92812
|
-
/*
|
|
92845
|
+
/* 735 */
|
|
92813
92846
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
92814
92847
|
|
|
92815
92848
|
"use strict";
|
|
92816
92849
|
|
|
92817
92850
|
|
|
92818
92851
|
exports.__esModule = true;
|
|
92819
|
-
var _search = __webpack_require__(
|
|
92852
|
+
var _search = __webpack_require__(736);
|
|
92820
92853
|
exports.PLUGIN_KEY = _search.PLUGIN_KEY;
|
|
92821
92854
|
exports.PLUGIN_PRIORITY = _search.PLUGIN_PRIORITY;
|
|
92822
92855
|
exports.Search = _search.Search;
|
|
92823
92856
|
|
|
92824
92857
|
/***/ }),
|
|
92825
|
-
/*
|
|
92858
|
+
/* 736 */
|
|
92826
92859
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
92827
92860
|
|
|
92828
92861
|
"use strict";
|
|
@@ -93130,20 +93163,20 @@ function _onBeforeRenderer(TD, row, col, prop, value, cellProperties) {
|
|
|
93130
93163
|
}
|
|
93131
93164
|
|
|
93132
93165
|
/***/ }),
|
|
93133
|
-
/*
|
|
93166
|
+
/* 737 */
|
|
93134
93167
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
93135
93168
|
|
|
93136
93169
|
"use strict";
|
|
93137
93170
|
|
|
93138
93171
|
|
|
93139
93172
|
exports.__esModule = true;
|
|
93140
|
-
var _stretchColumns = __webpack_require__(
|
|
93173
|
+
var _stretchColumns = __webpack_require__(738);
|
|
93141
93174
|
exports.PLUGIN_KEY = _stretchColumns.PLUGIN_KEY;
|
|
93142
93175
|
exports.PLUGIN_PRIORITY = _stretchColumns.PLUGIN_PRIORITY;
|
|
93143
93176
|
exports.StretchColumns = _stretchColumns.StretchColumns;
|
|
93144
93177
|
|
|
93145
93178
|
/***/ }),
|
|
93146
|
-
/*
|
|
93179
|
+
/* 738 */
|
|
93147
93180
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
93148
93181
|
|
|
93149
93182
|
"use strict";
|
|
@@ -93154,7 +93187,7 @@ __webpack_require__(5);
|
|
|
93154
93187
|
__webpack_require__(115);
|
|
93155
93188
|
__webpack_require__(133);
|
|
93156
93189
|
var _base = __webpack_require__(507);
|
|
93157
|
-
var _calculator = __webpack_require__(
|
|
93190
|
+
var _calculator = __webpack_require__(739);
|
|
93158
93191
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
93159
93192
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
93160
93193
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
@@ -93371,7 +93404,7 @@ function _onBeforeRender(fullRender) {
|
|
|
93371
93404
|
}
|
|
93372
93405
|
|
|
93373
93406
|
/***/ }),
|
|
93374
|
-
/*
|
|
93407
|
+
/* 739 */
|
|
93375
93408
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
93376
93409
|
|
|
93377
93410
|
"use strict";
|
|
@@ -93383,8 +93416,8 @@ __webpack_require__(115);
|
|
|
93383
93416
|
__webpack_require__(133);
|
|
93384
93417
|
var _src = __webpack_require__(206);
|
|
93385
93418
|
var _element = __webpack_require__(155);
|
|
93386
|
-
var _all = __webpack_require__(
|
|
93387
|
-
var _last = __webpack_require__(
|
|
93419
|
+
var _all = __webpack_require__(740);
|
|
93420
|
+
var _last = __webpack_require__(742);
|
|
93388
93421
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
93389
93422
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
93390
93423
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
@@ -93539,7 +93572,7 @@ function _overwriteColumnWidthFn(columnWidth, columnVisualIndex) {
|
|
|
93539
93572
|
}
|
|
93540
93573
|
|
|
93541
93574
|
/***/ }),
|
|
93542
|
-
/*
|
|
93575
|
+
/* 740 */
|
|
93543
93576
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
93544
93577
|
|
|
93545
93578
|
"use strict";
|
|
@@ -93551,7 +93584,7 @@ __webpack_require__(115);
|
|
|
93551
93584
|
__webpack_require__(133);
|
|
93552
93585
|
__webpack_require__(196);
|
|
93553
93586
|
var _src = __webpack_require__(206);
|
|
93554
|
-
var _base = __webpack_require__(
|
|
93587
|
+
var _base = __webpack_require__(741);
|
|
93555
93588
|
/**
|
|
93556
93589
|
* The strategy calculates the column widths by stretching all columns evenly.
|
|
93557
93590
|
*
|
|
@@ -93616,7 +93649,7 @@ class StretchAllStrategy extends _base.StretchStrategy {
|
|
|
93616
93649
|
exports.StretchAllStrategy = StretchAllStrategy;
|
|
93617
93650
|
|
|
93618
93651
|
/***/ }),
|
|
93619
|
-
/*
|
|
93652
|
+
/* 741 */
|
|
93620
93653
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
93621
93654
|
|
|
93622
93655
|
"use strict";
|
|
@@ -93705,7 +93738,7 @@ class StretchStrategy {
|
|
|
93705
93738
|
exports.StretchStrategy = StretchStrategy;
|
|
93706
93739
|
|
|
93707
93740
|
/***/ }),
|
|
93708
|
-
/*
|
|
93741
|
+
/* 742 */
|
|
93709
93742
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
93710
93743
|
|
|
93711
93744
|
"use strict";
|
|
@@ -93715,7 +93748,7 @@ exports.__esModule = true;
|
|
|
93715
93748
|
__webpack_require__(5);
|
|
93716
93749
|
__webpack_require__(115);
|
|
93717
93750
|
__webpack_require__(196);
|
|
93718
|
-
var _base = __webpack_require__(
|
|
93751
|
+
var _base = __webpack_require__(741);
|
|
93719
93752
|
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
93720
93753
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
93721
93754
|
function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
|
|
@@ -93790,20 +93823,20 @@ class StretchLastStrategy extends _base.StretchStrategy {
|
|
|
93790
93823
|
exports.StretchLastStrategy = StretchLastStrategy;
|
|
93791
93824
|
|
|
93792
93825
|
/***/ }),
|
|
93793
|
-
/*
|
|
93826
|
+
/* 743 */
|
|
93794
93827
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
93795
93828
|
|
|
93796
93829
|
"use strict";
|
|
93797
93830
|
|
|
93798
93831
|
|
|
93799
93832
|
exports.__esModule = true;
|
|
93800
|
-
var _touchScroll = __webpack_require__(
|
|
93833
|
+
var _touchScroll = __webpack_require__(744);
|
|
93801
93834
|
exports.PLUGIN_KEY = _touchScroll.PLUGIN_KEY;
|
|
93802
93835
|
exports.PLUGIN_PRIORITY = _touchScroll.PLUGIN_PRIORITY;
|
|
93803
93836
|
exports.TouchScroll = _touchScroll.TouchScroll;
|
|
93804
93837
|
|
|
93805
93838
|
/***/ }),
|
|
93806
|
-
/*
|
|
93839
|
+
/* 744 */
|
|
93807
93840
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
93808
93841
|
|
|
93809
93842
|
"use strict";
|
|
@@ -93992,20 +94025,20 @@ function _onAfterMomentumScroll() {
|
|
|
93992
94025
|
}
|
|
93993
94026
|
|
|
93994
94027
|
/***/ }),
|
|
93995
|
-
/*
|
|
94028
|
+
/* 745 */
|
|
93996
94029
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
93997
94030
|
|
|
93998
94031
|
"use strict";
|
|
93999
94032
|
|
|
94000
94033
|
|
|
94001
94034
|
exports.__esModule = true;
|
|
94002
|
-
var _trimRows = __webpack_require__(
|
|
94035
|
+
var _trimRows = __webpack_require__(746);
|
|
94003
94036
|
exports.PLUGIN_KEY = _trimRows.PLUGIN_KEY;
|
|
94004
94037
|
exports.PLUGIN_PRIORITY = _trimRows.PLUGIN_PRIORITY;
|
|
94005
94038
|
exports.TrimRows = _trimRows.TrimRows;
|
|
94006
94039
|
|
|
94007
94040
|
/***/ }),
|
|
94008
|
-
/*
|
|
94041
|
+
/* 746 */
|
|
94009
94042
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
94010
94043
|
|
|
94011
94044
|
"use strict";
|
|
@@ -94337,20 +94370,20 @@ function _onMapInit() {
|
|
|
94337
94370
|
}
|
|
94338
94371
|
|
|
94339
94372
|
/***/ }),
|
|
94340
|
-
/*
|
|
94373
|
+
/* 747 */
|
|
94341
94374
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
94342
94375
|
|
|
94343
94376
|
"use strict";
|
|
94344
94377
|
|
|
94345
94378
|
|
|
94346
94379
|
exports.__esModule = true;
|
|
94347
|
-
var _undoRedo = __webpack_require__(
|
|
94380
|
+
var _undoRedo = __webpack_require__(748);
|
|
94348
94381
|
exports.PLUGIN_KEY = _undoRedo.PLUGIN_KEY;
|
|
94349
94382
|
exports.PLUGIN_PRIORITY = _undoRedo.PLUGIN_PRIORITY;
|
|
94350
94383
|
exports.UndoRedo = _undoRedo.UndoRedo;
|
|
94351
94384
|
|
|
94352
94385
|
/***/ }),
|
|
94353
|
-
/*
|
|
94386
|
+
/* 748 */
|
|
94354
94387
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
94355
94388
|
|
|
94356
94389
|
"use strict";
|
|
@@ -94373,7 +94406,7 @@ var _hooks = __webpack_require__(177);
|
|
|
94373
94406
|
var _object = __webpack_require__(165);
|
|
94374
94407
|
var _templateLiteralTag = __webpack_require__(160);
|
|
94375
94408
|
var _console = __webpack_require__(178);
|
|
94376
|
-
var _actions = __webpack_require__(
|
|
94409
|
+
var _actions = __webpack_require__(749);
|
|
94377
94410
|
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
94378
94411
|
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
94379
94412
|
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"); }
|
|
@@ -94743,7 +94776,7 @@ function _removeAPIFromCore() {
|
|
|
94743
94776
|
}
|
|
94744
94777
|
|
|
94745
94778
|
/***/ }),
|
|
94746
|
-
/*
|
|
94779
|
+
/* 749 */
|
|
94747
94780
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
94748
94781
|
|
|
94749
94782
|
"use strict";
|
|
@@ -94753,18 +94786,18 @@ exports.__esModule = true;
|
|
|
94753
94786
|
exports.registerActions = registerActions;
|
|
94754
94787
|
__webpack_require__(115);
|
|
94755
94788
|
__webpack_require__(133);
|
|
94756
|
-
var _cellAlignment = __webpack_require__(
|
|
94757
|
-
var _columnMove = __webpack_require__(
|
|
94758
|
-
var _columnSort = __webpack_require__(
|
|
94759
|
-
var _createColumn = __webpack_require__(
|
|
94760
|
-
var _createRow = __webpack_require__(
|
|
94761
|
-
var _dataChange = __webpack_require__(
|
|
94762
|
-
var _filters = __webpack_require__(
|
|
94763
|
-
var _mergeCells = __webpack_require__(
|
|
94764
|
-
var _removeColumn = __webpack_require__(
|
|
94765
|
-
var _removeRow = __webpack_require__(
|
|
94766
|
-
var _rowMove = __webpack_require__(
|
|
94767
|
-
var _unmergeCells = __webpack_require__(
|
|
94789
|
+
var _cellAlignment = __webpack_require__(750);
|
|
94790
|
+
var _columnMove = __webpack_require__(752);
|
|
94791
|
+
var _columnSort = __webpack_require__(753);
|
|
94792
|
+
var _createColumn = __webpack_require__(754);
|
|
94793
|
+
var _createRow = __webpack_require__(755);
|
|
94794
|
+
var _dataChange = __webpack_require__(756);
|
|
94795
|
+
var _filters = __webpack_require__(757);
|
|
94796
|
+
var _mergeCells = __webpack_require__(758);
|
|
94797
|
+
var _removeColumn = __webpack_require__(759);
|
|
94798
|
+
var _removeRow = __webpack_require__(762);
|
|
94799
|
+
var _rowMove = __webpack_require__(763);
|
|
94800
|
+
var _unmergeCells = __webpack_require__(764);
|
|
94768
94801
|
/**
|
|
94769
94802
|
* Register all undo/redo actions.
|
|
94770
94803
|
*
|
|
@@ -94776,7 +94809,7 @@ function registerActions(hot, undoRedoPlugin) {
|
|
|
94776
94809
|
}
|
|
94777
94810
|
|
|
94778
94811
|
/***/ }),
|
|
94779
|
-
/*
|
|
94812
|
+
/* 750 */
|
|
94780
94813
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
94781
94814
|
|
|
94782
94815
|
"use strict";
|
|
@@ -94785,7 +94818,7 @@ function registerActions(hot, undoRedoPlugin) {
|
|
|
94785
94818
|
var _interopRequireDefault = __webpack_require__(1);
|
|
94786
94819
|
exports.__esModule = true;
|
|
94787
94820
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
94788
|
-
var _base = __webpack_require__(
|
|
94821
|
+
var _base = __webpack_require__(751);
|
|
94789
94822
|
var _utils = __webpack_require__(547);
|
|
94790
94823
|
var _array = __webpack_require__(161);
|
|
94791
94824
|
/**
|
|
@@ -94865,7 +94898,7 @@ class CellAlignmentAction extends _base.BaseAction {
|
|
|
94865
94898
|
exports.CellAlignmentAction = CellAlignmentAction;
|
|
94866
94899
|
|
|
94867
94900
|
/***/ }),
|
|
94868
|
-
/*
|
|
94901
|
+
/* 751 */
|
|
94869
94902
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
94870
94903
|
|
|
94871
94904
|
"use strict";
|
|
@@ -94890,7 +94923,7 @@ class BaseAction {
|
|
|
94890
94923
|
exports.BaseAction = BaseAction;
|
|
94891
94924
|
|
|
94892
94925
|
/***/ }),
|
|
94893
|
-
/*
|
|
94926
|
+
/* 752 */
|
|
94894
94927
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
94895
94928
|
|
|
94896
94929
|
"use strict";
|
|
@@ -94901,7 +94934,7 @@ exports.__esModule = true;
|
|
|
94901
94934
|
__webpack_require__(115);
|
|
94902
94935
|
__webpack_require__(133);
|
|
94903
94936
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
94904
|
-
var _base = __webpack_require__(
|
|
94937
|
+
var _base = __webpack_require__(751);
|
|
94905
94938
|
var _moves = __webpack_require__(661);
|
|
94906
94939
|
/**
|
|
94907
94940
|
* Action that tracks column move changes.
|
|
@@ -94978,7 +95011,7 @@ class ColumnMoveAction extends _base.BaseAction {
|
|
|
94978
95011
|
exports.ColumnMoveAction = ColumnMoveAction;
|
|
94979
95012
|
|
|
94980
95013
|
/***/ }),
|
|
94981
|
-
/*
|
|
95014
|
+
/* 753 */
|
|
94982
95015
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
94983
95016
|
|
|
94984
95017
|
"use strict";
|
|
@@ -94987,7 +95020,7 @@ exports.ColumnMoveAction = ColumnMoveAction;
|
|
|
94987
95020
|
var _interopRequireDefault = __webpack_require__(1);
|
|
94988
95021
|
exports.__esModule = true;
|
|
94989
95022
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
94990
|
-
var _base = __webpack_require__(
|
|
95023
|
+
var _base = __webpack_require__(751);
|
|
94991
95024
|
/**
|
|
94992
95025
|
* Action that tracks column sort changes.
|
|
94993
95026
|
*
|
|
@@ -95055,7 +95088,7 @@ class ColumnSortAction extends _base.BaseAction {
|
|
|
95055
95088
|
exports.ColumnSortAction = ColumnSortAction;
|
|
95056
95089
|
|
|
95057
95090
|
/***/ }),
|
|
95058
|
-
/*
|
|
95091
|
+
/* 754 */
|
|
95059
95092
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95060
95093
|
|
|
95061
95094
|
"use strict";
|
|
@@ -95064,7 +95097,7 @@ exports.ColumnSortAction = ColumnSortAction;
|
|
|
95064
95097
|
var _interopRequireDefault = __webpack_require__(1);
|
|
95065
95098
|
exports.__esModule = true;
|
|
95066
95099
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
95067
|
-
var _base = __webpack_require__(
|
|
95100
|
+
var _base = __webpack_require__(751);
|
|
95068
95101
|
/**
|
|
95069
95102
|
* Action that tracks column creation.
|
|
95070
95103
|
*
|
|
@@ -95119,7 +95152,7 @@ class CreateColumnAction extends _base.BaseAction {
|
|
|
95119
95152
|
exports.CreateColumnAction = CreateColumnAction;
|
|
95120
95153
|
|
|
95121
95154
|
/***/ }),
|
|
95122
|
-
/*
|
|
95155
|
+
/* 755 */
|
|
95123
95156
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95124
95157
|
|
|
95125
95158
|
"use strict";
|
|
@@ -95128,7 +95161,7 @@ exports.CreateColumnAction = CreateColumnAction;
|
|
|
95128
95161
|
var _interopRequireDefault = __webpack_require__(1);
|
|
95129
95162
|
exports.__esModule = true;
|
|
95130
95163
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
95131
|
-
var _base = __webpack_require__(
|
|
95164
|
+
var _base = __webpack_require__(751);
|
|
95132
95165
|
/**
|
|
95133
95166
|
* Action that tracks row creation.
|
|
95134
95167
|
*
|
|
@@ -95188,7 +95221,7 @@ class CreateRowAction extends _base.BaseAction {
|
|
|
95188
95221
|
exports.CreateRowAction = CreateRowAction;
|
|
95189
95222
|
|
|
95190
95223
|
/***/ }),
|
|
95191
|
-
/*
|
|
95224
|
+
/* 756 */
|
|
95192
95225
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95193
95226
|
|
|
95194
95227
|
"use strict";
|
|
@@ -95202,7 +95235,7 @@ __webpack_require__(185);
|
|
|
95202
95235
|
__webpack_require__(133);
|
|
95203
95236
|
__webpack_require__(196);
|
|
95204
95237
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
95205
|
-
var _base = __webpack_require__(
|
|
95238
|
+
var _base = __webpack_require__(751);
|
|
95206
95239
|
var _object = __webpack_require__(165);
|
|
95207
95240
|
/**
|
|
95208
95241
|
* Action that tracks data changes.
|
|
@@ -95315,7 +95348,7 @@ class DataChangeAction extends _base.BaseAction {
|
|
|
95315
95348
|
exports.DataChangeAction = DataChangeAction;
|
|
95316
95349
|
|
|
95317
95350
|
/***/ }),
|
|
95318
|
-
/*
|
|
95351
|
+
/* 757 */
|
|
95319
95352
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95320
95353
|
|
|
95321
95354
|
"use strict";
|
|
@@ -95326,7 +95359,7 @@ exports.__esModule = true;
|
|
|
95326
95359
|
__webpack_require__(115);
|
|
95327
95360
|
__webpack_require__(127);
|
|
95328
95361
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
95329
|
-
var _base = __webpack_require__(
|
|
95362
|
+
var _base = __webpack_require__(751);
|
|
95330
95363
|
/**
|
|
95331
95364
|
* Action that tracks filter changes.
|
|
95332
95365
|
*
|
|
@@ -95367,7 +95400,7 @@ class FiltersAction extends _base.BaseAction {
|
|
|
95367
95400
|
undo(hot, undoneCallback) {
|
|
95368
95401
|
const filters = hot.getPlugin('filters');
|
|
95369
95402
|
hot.addHookOnce('afterViewRender', undoneCallback);
|
|
95370
|
-
filters.
|
|
95403
|
+
filters.importConditions(this.previousConditionsStack);
|
|
95371
95404
|
filters.filter();
|
|
95372
95405
|
}
|
|
95373
95406
|
|
|
@@ -95378,14 +95411,14 @@ class FiltersAction extends _base.BaseAction {
|
|
|
95378
95411
|
redo(hot, redoneCallback) {
|
|
95379
95412
|
const filters = hot.getPlugin('filters');
|
|
95380
95413
|
hot.addHookOnce('afterViewRender', redoneCallback);
|
|
95381
|
-
filters.
|
|
95414
|
+
filters.importConditions(this.conditionsStack);
|
|
95382
95415
|
filters.filter();
|
|
95383
95416
|
}
|
|
95384
95417
|
}
|
|
95385
95418
|
exports.FiltersAction = FiltersAction;
|
|
95386
95419
|
|
|
95387
95420
|
/***/ }),
|
|
95388
|
-
/*
|
|
95421
|
+
/* 758 */
|
|
95389
95422
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95390
95423
|
|
|
95391
95424
|
"use strict";
|
|
@@ -95394,7 +95427,7 @@ exports.FiltersAction = FiltersAction;
|
|
|
95394
95427
|
var _interopRequireDefault = __webpack_require__(1);
|
|
95395
95428
|
exports.__esModule = true;
|
|
95396
95429
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
95397
|
-
var _base = __webpack_require__(
|
|
95430
|
+
var _base = __webpack_require__(751);
|
|
95398
95431
|
/**
|
|
95399
95432
|
* Action that tracks changes in merged cells.
|
|
95400
95433
|
*
|
|
@@ -95452,7 +95485,7 @@ class MergeCellsAction extends _base.BaseAction {
|
|
|
95452
95485
|
exports.MergeCellsAction = MergeCellsAction;
|
|
95453
95486
|
|
|
95454
95487
|
/***/ }),
|
|
95455
|
-
/*
|
|
95488
|
+
/* 759 */
|
|
95456
95489
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95457
95490
|
|
|
95458
95491
|
"use strict";
|
|
@@ -95464,8 +95497,8 @@ __webpack_require__(87);
|
|
|
95464
95497
|
__webpack_require__(115);
|
|
95465
95498
|
__webpack_require__(133);
|
|
95466
95499
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
95467
|
-
var _base = __webpack_require__(
|
|
95468
|
-
var _utils = __webpack_require__(
|
|
95500
|
+
var _base = __webpack_require__(751);
|
|
95501
|
+
var _utils = __webpack_require__(760);
|
|
95469
95502
|
var _number = __webpack_require__(200);
|
|
95470
95503
|
var _array = __webpack_require__(161);
|
|
95471
95504
|
/**
|
|
@@ -95634,7 +95667,7 @@ class RemoveColumnAction extends _base.BaseAction {
|
|
|
95634
95667
|
exports.RemoveColumnAction = RemoveColumnAction;
|
|
95635
95668
|
|
|
95636
95669
|
/***/ }),
|
|
95637
|
-
/*
|
|
95670
|
+
/* 760 */
|
|
95638
95671
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95639
95672
|
|
|
95640
95673
|
"use strict";
|
|
@@ -95643,7 +95676,7 @@ exports.RemoveColumnAction = RemoveColumnAction;
|
|
|
95643
95676
|
exports.__esModule = true;
|
|
95644
95677
|
exports.getCellMetas = getCellMetas;
|
|
95645
95678
|
__webpack_require__(87);
|
|
95646
|
-
__webpack_require__(
|
|
95679
|
+
__webpack_require__(761);
|
|
95647
95680
|
__webpack_require__(115);
|
|
95648
95681
|
__webpack_require__(127);
|
|
95649
95682
|
var _number = __webpack_require__(200);
|
|
@@ -95677,7 +95710,7 @@ function getCellMetas(hot, fromRow, toRow, fromColumn, toColumn) {
|
|
|
95677
95710
|
}
|
|
95678
95711
|
|
|
95679
95712
|
/***/ }),
|
|
95680
|
-
/*
|
|
95713
|
+
/* 761 */
|
|
95681
95714
|
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
|
|
95682
95715
|
|
|
95683
95716
|
"use strict";
|
|
@@ -95700,7 +95733,7 @@ $({ target: 'Object', stat: true }, {
|
|
|
95700
95733
|
|
|
95701
95734
|
|
|
95702
95735
|
/***/ }),
|
|
95703
|
-
/*
|
|
95736
|
+
/* 762 */
|
|
95704
95737
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95705
95738
|
|
|
95706
95739
|
"use strict";
|
|
@@ -95712,8 +95745,8 @@ __webpack_require__(87);
|
|
|
95712
95745
|
__webpack_require__(115);
|
|
95713
95746
|
__webpack_require__(133);
|
|
95714
95747
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
95715
|
-
var _base = __webpack_require__(
|
|
95716
|
-
var _utils = __webpack_require__(
|
|
95748
|
+
var _base = __webpack_require__(751);
|
|
95749
|
+
var _utils = __webpack_require__(760);
|
|
95717
95750
|
var _object = __webpack_require__(165);
|
|
95718
95751
|
/**
|
|
95719
95752
|
* Action that tracks changes in row removal.
|
|
@@ -95823,7 +95856,7 @@ class RemoveRowAction extends _base.BaseAction {
|
|
|
95823
95856
|
exports.RemoveRowAction = RemoveRowAction;
|
|
95824
95857
|
|
|
95825
95858
|
/***/ }),
|
|
95826
|
-
/*
|
|
95859
|
+
/* 763 */
|
|
95827
95860
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95828
95861
|
|
|
95829
95862
|
"use strict";
|
|
@@ -95834,7 +95867,7 @@ exports.__esModule = true;
|
|
|
95834
95867
|
__webpack_require__(115);
|
|
95835
95868
|
__webpack_require__(133);
|
|
95836
95869
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
95837
|
-
var _base = __webpack_require__(
|
|
95870
|
+
var _base = __webpack_require__(751);
|
|
95838
95871
|
var _moves = __webpack_require__(661);
|
|
95839
95872
|
/**
|
|
95840
95873
|
* Action that tracks row move changes.
|
|
@@ -95911,7 +95944,7 @@ class RowMoveAction extends _base.BaseAction {
|
|
|
95911
95944
|
exports.RowMoveAction = RowMoveAction;
|
|
95912
95945
|
|
|
95913
95946
|
/***/ }),
|
|
95914
|
-
/*
|
|
95947
|
+
/* 764 */
|
|
95915
95948
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95916
95949
|
|
|
95917
95950
|
"use strict";
|
|
@@ -95920,7 +95953,7 @@ exports.RowMoveAction = RowMoveAction;
|
|
|
95920
95953
|
var _interopRequireDefault = __webpack_require__(1);
|
|
95921
95954
|
exports.__esModule = true;
|
|
95922
95955
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(170));
|
|
95923
|
-
var _base = __webpack_require__(
|
|
95956
|
+
var _base = __webpack_require__(751);
|
|
95924
95957
|
/**
|
|
95925
95958
|
* Action that tracks changes in merged cells.
|
|
95926
95959
|
*
|
|
@@ -95971,7 +96004,7 @@ class UnmergeCellsAction extends _base.BaseAction {
|
|
|
95971
96004
|
exports.UnmergeCellsAction = UnmergeCellsAction;
|
|
95972
96005
|
|
|
95973
96006
|
/***/ }),
|
|
95974
|
-
/*
|
|
96007
|
+
/* 765 */
|
|
95975
96008
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
95976
96009
|
|
|
95977
96010
|
"use strict";
|
|
@@ -96080,7 +96113,7 @@ exports.CellRange = _base.CellRange;
|
|
|
96080
96113
|
var _registry = __webpack_require__(430);
|
|
96081
96114
|
var _eventManager = _interopRequireWildcard(__webpack_require__(188));
|
|
96082
96115
|
var _translations = __webpack_require__(291);
|
|
96083
|
-
var _jquery = _interopRequireDefault(__webpack_require__(
|
|
96116
|
+
var _jquery = _interopRequireDefault(__webpack_require__(765));
|
|
96084
96117
|
var _ghostTable = _interopRequireDefault(__webpack_require__(509));
|
|
96085
96118
|
var parseTableHelpers = _interopRequireWildcard(__webpack_require__(190));
|
|
96086
96119
|
var arrayHelpers = _interopRequireWildcard(__webpack_require__(161));
|