handsontable 14.0.0-next-07c0a60-20231107 → 14.0.0-next-7ee54cb-20231108
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.
- package/3rdparty/SheetClip/SheetClip.js +2 -2
- package/3rdparty/SheetClip/SheetClip.mjs +2 -2
- package/3rdparty/autoResize/autoResize.js +2 -2
- package/3rdparty/autoResize/autoResize.mjs +2 -2
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +108 -85
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +108 -85
- package/3rdparty/walkontable/src/calculator/viewportRows.js +60 -52
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +60 -52
- package/3rdparty/walkontable/src/cell/coords.js +7 -5
- package/3rdparty/walkontable/src/cell/coords.mjs +7 -5
- package/3rdparty/walkontable/src/core/clone.js +6 -0
- package/3rdparty/walkontable/src/core/clone.mjs +6 -0
- package/3rdparty/walkontable/src/event.js +125 -74
- package/3rdparty/walkontable/src/event.mjs +125 -74
- package/3rdparty/walkontable/src/filter/column.js +16 -0
- package/3rdparty/walkontable/src/filter/column.mjs +16 -0
- package/3rdparty/walkontable/src/filter/row.js +16 -0
- package/3rdparty/walkontable/src/filter/row.mjs +16 -0
- package/3rdparty/walkontable/src/overlay/bottom.js +1 -1
- package/3rdparty/walkontable/src/overlay/bottom.mjs +1 -1
- package/3rdparty/walkontable/src/overlay/top.js +1 -1
- package/3rdparty/walkontable/src/overlay/top.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/_base.js +12 -5
- package/3rdparty/walkontable/src/renderer/_base.mjs +12 -5
- package/3rdparty/walkontable/src/renderer/cells.js +6 -2
- package/3rdparty/walkontable/src/renderer/cells.mjs +6 -2
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +6 -2
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +6 -2
- package/3rdparty/walkontable/src/renderer/rows.js +5 -0
- package/3rdparty/walkontable/src/renderer/rows.mjs +5 -0
- package/3rdparty/walkontable/src/renderer/table.js +24 -17
- package/3rdparty/walkontable/src/renderer/table.mjs +24 -17
- package/3rdparty/walkontable/src/scroll.js +2 -2
- package/3rdparty/walkontable/src/scroll.mjs +2 -2
- package/3rdparty/walkontable/src/selection/border/border.js +1 -1
- package/3rdparty/walkontable/src/selection/border/border.mjs +1 -1
- package/3rdparty/walkontable/src/settings.js +10 -10
- package/3rdparty/walkontable/src/settings.mjs +10 -10
- package/3rdparty/walkontable/src/table.js +3 -3
- package/3rdparty/walkontable/src/table.mjs +3 -3
- package/3rdparty/walkontable/src/utils/column.js +19 -4
- package/3rdparty/walkontable/src/utils/column.mjs +19 -4
- package/3rdparty/walkontable/src/utils/nodesPool.js +5 -0
- package/3rdparty/walkontable/src/utils/nodesPool.mjs +5 -0
- package/3rdparty/walkontable/src/utils/orderView/view.js +13 -6
- package/3rdparty/walkontable/src/utils/orderView/view.mjs +13 -6
- package/3rdparty/walkontable/src/utils/orderView/viewSize.js +9 -6
- package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +9 -6
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +7 -4
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +7 -4
- package/3rdparty/walkontable/src/utils/row.js +14 -2
- package/3rdparty/walkontable/src/utils/row.mjs +14 -2
- package/3rdparty/walkontable/src/viewport.js +9 -9
- package/3rdparty/walkontable/src/viewport.mjs +9 -9
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +31 -26
- package/core.mjs +31 -26
- package/dataMap/dataMap.js +99 -90
- package/dataMap/dataMap.mjs +99 -90
- package/dataMap/dataSource.js +14 -8
- package/dataMap/dataSource.mjs +14 -8
- package/dataMap/metaManager/lazyFactoryMap.js +19 -7
- package/dataMap/metaManager/lazyFactoryMap.mjs +19 -7
- package/dataMap/metaManager/metaLayers/cellMeta.js +8 -3
- package/dataMap/metaManager/metaLayers/cellMeta.mjs +8 -3
- package/dataMap/metaManager/metaLayers/columnMeta.js +7 -1
- package/dataMap/metaManager/metaLayers/columnMeta.mjs +7 -1
- package/dataMap/metaManager/metaLayers/globalMeta.js +6 -1
- package/dataMap/metaManager/metaLayers/globalMeta.mjs +6 -1
- package/dataMap/metaManager/metaLayers/tableMeta.js +6 -2
- package/dataMap/metaManager/metaLayers/tableMeta.mjs +6 -2
- package/dataMap/metaManager/metaSchema.js +55 -55
- package/dataMap/metaManager/metaSchema.mjs +55 -55
- package/dataMap/metaManager/mods/dynamicCellMeta.js +7 -2
- package/dataMap/metaManager/mods/dynamicCellMeta.mjs +7 -2
- package/dataMap/metaManager/mods/extendMetaProperties.js +8 -4
- package/dataMap/metaManager/mods/extendMetaProperties.mjs +8 -4
- package/dataMap/metaManager/utils.js +2 -2
- package/dataMap/metaManager/utils.mjs +2 -2
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +7337 -6394
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +154 -154
- package/dist/handsontable.js +7336 -6393
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +28 -28
- package/editorManager.js +105 -95
- package/editorManager.mjs +105 -95
- package/editors/autocompleteEditor/autocompleteEditor.js +47 -46
- package/editors/autocompleteEditor/autocompleteEditor.mjs +46 -45
- package/editors/baseEditor/baseEditor.js +23 -26
- package/editors/baseEditor/baseEditor.mjs +23 -26
- package/editors/dateEditor/dateEditor.js +24 -15
- package/editors/dateEditor/dateEditor.mjs +24 -15
- package/editors/dropdownEditor/dropdownEditor.js +1 -1
- package/editors/dropdownEditor/dropdownEditor.mjs +1 -1
- package/editors/handsontableEditor/handsontableEditor.js +4 -4
- package/editors/handsontableEditor/handsontableEditor.mjs +4 -4
- package/editors/textEditor/textEditor.js +23 -17
- package/editors/textEditor/textEditor.mjs +24 -18
- package/eventManager.js +8 -0
- package/eventManager.mjs +8 -0
- package/helpers/array.js +2 -2
- package/helpers/array.mjs +2 -2
- package/helpers/dom/element.js +7 -7
- package/helpers/dom/element.mjs +7 -7
- package/helpers/function.js +1 -1
- package/helpers/function.mjs +1 -1
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/helpers/object.js +4 -4
- package/helpers/object.mjs +4 -4
- package/helpers/string.js +1 -1
- package/helpers/string.mjs +1 -1
- package/package.json +1 -1
- package/pluginHooks.d.ts +0 -2
- package/pluginHooks.js +12 -3
- package/pluginHooks.mjs +12 -3
- package/plugins/autoColumnSize/autoColumnSize.js +141 -130
- package/plugins/autoColumnSize/autoColumnSize.mjs +140 -129
- package/plugins/autoRowSize/autoRowSize.js +112 -125
- package/plugins/autoRowSize/autoRowSize.mjs +110 -123
- package/plugins/autofill/autofill.js +98 -102
- package/plugins/autofill/autofill.mjs +97 -101
- package/plugins/base/base.js +61 -28
- package/plugins/base/base.mjs +60 -28
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +29 -24
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +28 -23
- package/plugins/collapsibleColumns/collapsibleColumns.js +104 -107
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +102 -104
- package/plugins/columnSorting/columnSorting.js +107 -99
- package/plugins/columnSorting/columnSorting.mjs +106 -98
- package/plugins/columnSorting/columnStatesManager.js +12 -6
- package/plugins/columnSorting/columnStatesManager.mjs +12 -6
- package/plugins/columnSummary/columnSummary.js +71 -58
- package/plugins/columnSummary/columnSummary.mjs +70 -57
- package/plugins/columnSummary/endpoints.js +20 -14
- package/plugins/columnSummary/endpoints.mjs +20 -14
- package/plugins/comments/commentEditor.js +30 -2
- package/plugins/comments/commentEditor.mjs +30 -2
- package/plugins/comments/comments.js +158 -169
- package/plugins/comments/comments.mjs +157 -168
- package/plugins/comments/displaySwitch.js +7 -3
- package/plugins/comments/displaySwitch.mjs +7 -3
- package/plugins/contextMenu/commandExecutor.js +15 -2
- package/plugins/contextMenu/commandExecutor.mjs +15 -2
- package/plugins/contextMenu/contextMenu.js +96 -102
- package/plugins/contextMenu/contextMenu.mjs +95 -101
- package/plugins/contextMenu/itemsFactory.js +19 -4
- package/plugins/contextMenu/itemsFactory.mjs +19 -4
- package/plugins/contextMenu/menu/cursor.js +36 -0
- package/plugins/contextMenu/menu/cursor.mjs +36 -0
- package/plugins/contextMenu/menu/menu.js +57 -5
- package/plugins/contextMenu/menu/menu.mjs +57 -5
- package/plugins/contextMenu/predefinedItems/removeColumn.js +1 -1
- package/plugins/contextMenu/predefinedItems/removeColumn.mjs +1 -1
- package/plugins/contextMenu/predefinedItems/removeRow.js +1 -1
- package/plugins/contextMenu/predefinedItems/removeRow.mjs +1 -1
- package/plugins/copyPaste/copyPaste.js +74 -75
- package/plugins/copyPaste/copyPaste.mjs +74 -75
- package/plugins/customBorders/customBorders.js +57 -50
- package/plugins/customBorders/customBorders.mjs +56 -49
- package/plugins/dragToScroll/dragToScroll.js +50 -54
- package/plugins/dragToScroll/dragToScroll.mjs +49 -52
- package/plugins/dropdownMenu/dropdownMenu.js +136 -131
- package/plugins/dropdownMenu/dropdownMenu.mjs +136 -131
- package/plugins/exportFile/dataProvider.js +7 -2
- package/plugins/exportFile/dataProvider.mjs +7 -2
- package/plugins/exportFile/exportFile.js +1 -1
- package/plugins/exportFile/exportFile.mjs +1 -1
- package/plugins/exportFile/types/_base.js +14 -6
- package/plugins/exportFile/types/_base.mjs +14 -6
- package/plugins/filters/component/actionBar.js +9 -0
- package/plugins/filters/component/actionBar.mjs +9 -0
- package/plugins/filters/component/condition.js +13 -0
- package/plugins/filters/component/condition.mjs +13 -0
- package/plugins/filters/component/operators.js +9 -0
- package/plugins/filters/component/operators.mjs +9 -0
- package/plugins/filters/component/value.js +9 -0
- package/plugins/filters/component/value.mjs +9 -0
- package/plugins/filters/conditionCollection.js +9 -4
- package/plugins/filters/conditionCollection.mjs +9 -4
- package/plugins/filters/conditionUpdateObserver.js +53 -42
- package/plugins/filters/conditionUpdateObserver.mjs +53 -42
- package/plugins/filters/dataFilter.js +9 -3
- package/plugins/filters/dataFilter.mjs +9 -3
- package/plugins/filters/filters.js +184 -189
- package/plugins/filters/filters.mjs +182 -187
- package/plugins/filters/ui/_base.js +1 -1
- package/plugins/filters/ui/_base.mjs +1 -1
- package/plugins/filters/utils.js +1 -1
- package/plugins/filters/utils.mjs +1 -1
- package/plugins/formulas/engine/settings.js +1 -1
- package/plugins/formulas/engine/settings.mjs +1 -1
- package/plugins/formulas/formulas.js +684 -602
- package/plugins/formulas/formulas.mjs +682 -600
- package/plugins/hiddenColumns/hiddenColumns.js +174 -169
- package/plugins/hiddenColumns/hiddenColumns.mjs +173 -168
- package/plugins/hiddenRows/hiddenRows.js +170 -165
- package/plugins/hiddenRows/hiddenRows.mjs +169 -164
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +1 -1
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +66 -53
- package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +64 -51
- package/plugins/manualColumnMove/manualColumnMove.js +287 -232
- package/plugins/manualColumnMove/manualColumnMove.mjs +286 -231
- package/plugins/manualColumnMove/ui/_base.js +9 -3
- package/plugins/manualColumnMove/ui/_base.mjs +9 -3
- package/plugins/manualColumnResize/manualColumnResize.js +291 -246
- package/plugins/manualColumnResize/manualColumnResize.mjs +290 -244
- package/plugins/manualRowMove/manualRowMove.js +223 -208
- package/plugins/manualRowMove/manualRowMove.mjs +222 -207
- package/plugins/manualRowMove/ui/_base.js +10 -5
- package/plugins/manualRowMove/ui/_base.mjs +10 -5
- package/plugins/manualRowResize/manualRowResize.js +254 -209
- package/plugins/manualRowResize/manualRowResize.mjs +253 -207
- package/plugins/mergeCells/calculations/autofill.js +9 -3
- package/plugins/mergeCells/calculations/autofill.mjs +9 -3
- package/plugins/mergeCells/calculations/selection.js +10 -4
- package/plugins/mergeCells/calculations/selection.mjs +10 -4
- package/plugins/mergeCells/cellCoords.js +16 -6
- package/plugins/mergeCells/cellCoords.mjs +16 -6
- package/plugins/mergeCells/cellsCollection.js +10 -4
- package/plugins/mergeCells/cellsCollection.mjs +10 -4
- package/plugins/mergeCells/mergeCells.js +582 -502
- package/plugins/mergeCells/mergeCells.mjs +580 -500
- package/plugins/multiColumnSorting/multiColumnSorting.js +15 -11
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +15 -11
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +16 -28
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +16 -27
- package/plugins/nestedHeaders/nestedHeaders.js +542 -499
- package/plugins/nestedHeaders/nestedHeaders.mjs +554 -511
- package/plugins/nestedHeaders/stateManager/index.js +1 -1
- package/plugins/nestedHeaders/stateManager/index.mjs +1 -1
- package/plugins/nestedRows/data/dataManager.js +21 -15
- package/plugins/nestedRows/data/dataManager.mjs +21 -15
- package/plugins/nestedRows/nestedRows.js +328 -279
- package/plugins/nestedRows/nestedRows.mjs +327 -278
- package/plugins/nestedRows/ui/_base.js +7 -1
- package/plugins/nestedRows/ui/_base.mjs +7 -1
- package/plugins/nestedRows/ui/collapsing.js +2 -2
- package/plugins/nestedRows/ui/collapsing.mjs +2 -2
- package/plugins/nestedRows/ui/contextMenu.js +28 -18
- package/plugins/nestedRows/ui/contextMenu.mjs +28 -18
- package/plugins/nestedRows/utils/rowMoveController.js +12 -4
- package/plugins/nestedRows/utils/rowMoveController.mjs +12 -4
- package/plugins/persistentState/persistentState.js +14 -11
- package/plugins/persistentState/persistentState.mjs +14 -11
- package/plugins/persistentState/storage.js +11 -6
- package/plugins/persistentState/storage.mjs +11 -6
- package/plugins/registry.js +2 -2
- package/plugins/registry.mjs +2 -2
- package/plugins/search/search.js +57 -46
- package/plugins/search/search.mjs +56 -45
- package/plugins/touchScroll/touchScroll.js +102 -100
- package/plugins/touchScroll/touchScroll.mjs +100 -98
- package/plugins/trimRows/trimRows.js +33 -28
- package/plugins/trimRows/trimRows.mjs +32 -27
- package/plugins/undoRedo/undoRedo.js +2 -2
- package/plugins/undoRedo/undoRedo.mjs +2 -2
- package/renderers/autocompleteRenderer/autocompleteRenderer.js +11 -11
- package/renderers/autocompleteRenderer/autocompleteRenderer.mjs +11 -11
- package/renderers/baseRenderer/baseRenderer.js +2 -2
- package/renderers/baseRenderer/baseRenderer.mjs +2 -2
- package/renderers/checkboxRenderer/checkboxRenderer.js +23 -23
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +23 -23
- package/renderers/dateRenderer/dateRenderer.js +4 -4
- package/renderers/dateRenderer/dateRenderer.mjs +4 -4
- package/renderers/handsontableRenderer/handsontableRenderer.js +4 -4
- package/renderers/handsontableRenderer/handsontableRenderer.mjs +4 -4
- package/renderers/htmlRenderer/htmlRenderer.js +4 -4
- package/renderers/htmlRenderer/htmlRenderer.mjs +4 -4
- package/renderers/numericRenderer/numericRenderer.js +3 -3
- package/renderers/numericRenderer/numericRenderer.mjs +3 -3
- package/renderers/passwordRenderer/passwordRenderer.js +3 -3
- package/renderers/passwordRenderer/passwordRenderer.mjs +3 -3
- package/renderers/selectRenderer/selectRenderer.js +4 -4
- package/renderers/selectRenderer/selectRenderer.mjs +4 -4
- package/renderers/textRenderer/textRenderer.js +5 -5
- package/renderers/textRenderer/textRenderer.mjs +5 -5
- package/renderers/timeRenderer/timeRenderer.js +3 -3
- package/renderers/timeRenderer/timeRenderer.mjs +3 -3
- package/selection/highlight/highlight.js +1 -4
- package/selection/highlight/highlight.mjs +1 -4
- package/selection/range.js +12 -2
- package/selection/range.mjs +12 -2
- package/selection/selection.js +28 -10
- package/selection/selection.mjs +28 -10
- package/selection/utils.js +24 -14
- package/selection/utils.mjs +25 -15
- package/shortcuts/manager.js +1 -1
- package/shortcuts/manager.mjs +1 -1
- package/tableView.js +208 -200
- package/tableView.mjs +208 -200
- package/translations/changesObservable/utils.js +2 -2
- package/translations/changesObservable/utils.mjs +2 -2
- package/translations/indexMapper.js +25 -22
- package/translations/indexMapper.mjs +25 -22
- package/translations/mapCollections/aggregatedCollection.js +8 -2
- package/translations/mapCollections/aggregatedCollection.mjs +8 -2
- package/translations/mapCollections/mapCollection.js +5 -2
- package/translations/mapCollections/mapCollection.mjs +5 -2
- package/translations/maps/indexMap.js +6 -1
- package/translations/maps/indexMap.mjs +6 -1
- package/translations/maps/utils/physicallyIndexed.js +2 -2
- package/translations/maps/utils/physicallyIndexed.mjs +2 -2
- package/utils/dataStructures/linkedList.js +10 -6
- package/utils/dataStructures/linkedList.mjs +10 -6
- package/utils/dataStructures/queue.js +1 -1
- package/utils/dataStructures/queue.mjs +1 -1
- package/utils/dataStructures/stack.js +1 -1
- package/utils/dataStructures/stack.mjs +1 -1
- package/utils/ghostTable.js +2 -2
- package/utils/ghostTable.mjs +2 -2
- package/utils/interval.js +73 -36
- package/utils/interval.mjs +73 -36
- package/utils/parseTable.js +1 -1
- package/utils/parseTable.mjs +1 -1
- package/validators/autocompleteValidator/autocompleteValidator.js +1 -1
- package/validators/autocompleteValidator/autocompleteValidator.mjs +1 -1
- package/validators/dateValidator/dateValidator.js +1 -1
- package/validators/dateValidator/dateValidator.mjs +1 -1
- package/validators/numericValidator/numericValidator.js +1 -1
- package/validators/numericValidator/numericValidator.mjs +1 -1
@@ -1,13 +1,15 @@
|
|
1
1
|
import "core-js/modules/es.error.cause.js";
|
2
2
|
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
3
3
|
function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
|
4
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
5
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
6
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
4
7
|
function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
|
5
8
|
import { BasePlugin } from "../base/index.mjs";
|
6
9
|
import { arrayEach } from "../../helpers/array.mjs";
|
7
10
|
import { objectEach } from "../../helpers/object.mjs";
|
8
11
|
import { CommandExecutor } from "../contextMenu/commandExecutor.mjs";
|
9
12
|
import { getDocumentOffsetByElement } from "../contextMenu/utils.mjs";
|
10
|
-
import EventManager from "../../eventManager.mjs";
|
11
13
|
import { hasClass, setAttribute } from "../../helpers/dom/element.mjs";
|
12
14
|
import { ItemsFactory } from "../contextMenu/itemsFactory.mjs";
|
13
15
|
import { Menu } from "../contextMenu/menu/index.mjs";
|
@@ -76,6 +78,12 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
76
78
|
* :::
|
77
79
|
*/
|
78
80
|
var _addCustomShortcuts = /*#__PURE__*/new WeakSet();
|
81
|
+
var _onTableClick = /*#__PURE__*/new WeakSet();
|
82
|
+
var _onAfterGetColHeader = /*#__PURE__*/new WeakSet();
|
83
|
+
var _onMenuBeforeOpen = /*#__PURE__*/new WeakSet();
|
84
|
+
var _onMenuAfterOpen = /*#__PURE__*/new WeakSet();
|
85
|
+
var _onSubMenuAfterOpen = /*#__PURE__*/new WeakSet();
|
86
|
+
var _onMenuAfterClose = /*#__PURE__*/new WeakSet();
|
79
87
|
export class DropdownMenu extends BasePlugin {
|
80
88
|
static get PLUGIN_KEY() {
|
81
89
|
return PLUGIN_KEY;
|
@@ -95,45 +103,83 @@ export class DropdownMenu extends BasePlugin {
|
|
95
103
|
static get DEFAULT_ITEMS() {
|
96
104
|
return [COLUMN_LEFT, COLUMN_RIGHT, SEPARATOR, REMOVE_COLUMN, SEPARATOR, CLEAR_COLUMN, SEPARATOR, READ_ONLY, SEPARATOR, ALIGNMENT];
|
97
105
|
}
|
106
|
+
|
107
|
+
/**
|
108
|
+
* Instance of {@link CommandExecutor}.
|
109
|
+
*
|
110
|
+
* @private
|
111
|
+
* @type {CommandExecutor}
|
112
|
+
*/
|
113
|
+
|
98
114
|
constructor(hotInstance) {
|
99
115
|
super(hotInstance);
|
116
|
+
|
117
|
+
// One listener for enable/disable functionality
|
100
118
|
/**
|
101
|
-
*
|
119
|
+
* On menu after close listener.
|
102
120
|
*
|
103
121
|
* @private
|
104
|
-
* @
|
122
|
+
* @fires Hooks#afterDropdownMenuHide
|
105
123
|
*/
|
124
|
+
_classPrivateMethodInitSpec(this, _onMenuAfterClose);
|
106
125
|
/**
|
107
|
-
*
|
126
|
+
* Listener for the `afterSubmenuOpen` hook.
|
108
127
|
*
|
109
|
-
* @
|
128
|
+
* @private
|
129
|
+
* @param {Menu} subMenuInstance The opened sub menu instance.
|
110
130
|
*/
|
111
|
-
_classPrivateMethodInitSpec(this,
|
112
|
-
|
131
|
+
_classPrivateMethodInitSpec(this, _onSubMenuAfterOpen);
|
132
|
+
/**
|
133
|
+
* On menu after open listener.
|
134
|
+
*
|
135
|
+
* @private
|
136
|
+
* @fires Hooks#afterDropdownMenuShow
|
137
|
+
*/
|
138
|
+
_classPrivateMethodInitSpec(this, _onMenuAfterOpen);
|
139
|
+
/**
|
140
|
+
* On menu before open listener.
|
141
|
+
*
|
142
|
+
* @private
|
143
|
+
* @fires Hooks#beforeDropdownMenuShow
|
144
|
+
*/
|
145
|
+
_classPrivateMethodInitSpec(this, _onMenuBeforeOpen);
|
113
146
|
/**
|
114
|
-
*
|
147
|
+
* On after get column header listener.
|
115
148
|
*
|
116
149
|
* @private
|
117
|
-
* @
|
150
|
+
* @param {number} col Visual column index.
|
151
|
+
* @param {HTMLTableCellElement} TH Header's TH element.
|
118
152
|
*/
|
119
|
-
this
|
153
|
+
_classPrivateMethodInitSpec(this, _onAfterGetColHeader);
|
154
|
+
/**
|
155
|
+
* Table click listener.
|
156
|
+
*
|
157
|
+
* @private
|
158
|
+
* @param {Event} event The mouse event object.
|
159
|
+
*/
|
160
|
+
_classPrivateMethodInitSpec(this, _onTableClick);
|
161
|
+
/**
|
162
|
+
* Add custom shortcuts to the provided menu instance.
|
163
|
+
*
|
164
|
+
* @param {Menu} menuInstance The menu instance.
|
165
|
+
*/
|
166
|
+
_classPrivateMethodInitSpec(this, _addCustomShortcuts);
|
167
|
+
_defineProperty(this, "commandExecutor", new CommandExecutor(this.hot));
|
120
168
|
/**
|
121
169
|
* Instance of {@link ItemsFactory}.
|
122
170
|
*
|
123
171
|
* @private
|
124
172
|
* @type {ItemsFactory}
|
125
173
|
*/
|
126
|
-
this
|
174
|
+
_defineProperty(this, "itemsFactory", null);
|
127
175
|
/**
|
128
176
|
* Instance of {@link Menu}.
|
129
177
|
*
|
130
178
|
* @private
|
131
179
|
* @type {Menu}
|
132
180
|
*/
|
133
|
-
this
|
134
|
-
|
135
|
-
// One listener for enable/disable functionality
|
136
|
-
this.hot.addHook('afterGetColHeader', (col, TH) => this.onAfterGetColHeader(col, TH));
|
181
|
+
_defineProperty(this, "menu", null);
|
182
|
+
this.hot.addHook('afterGetColHeader', (col, TH) => _classPrivateMethodGet(this, _onAfterGetColHeader, _onAfterGetColHeader2).call(this, col, TH));
|
137
183
|
}
|
138
184
|
|
139
185
|
/**
|
@@ -182,10 +228,10 @@ export class DropdownMenu extends BasePlugin {
|
|
182
228
|
});
|
183
229
|
this.hot.runHooks('beforeDropdownMenuSetItems', menuItems);
|
184
230
|
this.menu.setMenuItems(menuItems);
|
185
|
-
this.menu.addLocalHook('beforeOpen', () => this.
|
186
|
-
this.menu.addLocalHook('afterOpen', () => this.
|
187
|
-
this.menu.addLocalHook('afterSubmenuOpen', subMenuInstance => this.
|
188
|
-
this.menu.addLocalHook('afterClose', () => this.
|
231
|
+
this.menu.addLocalHook('beforeOpen', () => _classPrivateMethodGet(this, _onMenuBeforeOpen, _onMenuBeforeOpen2).call(this));
|
232
|
+
this.menu.addLocalHook('afterOpen', () => _classPrivateMethodGet(this, _onMenuAfterOpen, _onMenuAfterOpen2).call(this));
|
233
|
+
this.menu.addLocalHook('afterSubmenuOpen', subMenuInstance => _classPrivateMethodGet(this, _onSubMenuAfterOpen, _onSubMenuAfterOpen2).call(this, subMenuInstance));
|
234
|
+
this.menu.addLocalHook('afterClose', () => _classPrivateMethodGet(this, _onMenuAfterClose, _onMenuAfterClose2).call(this));
|
189
235
|
this.menu.addLocalHook('executeCommand', function () {
|
190
236
|
for (var _len = arguments.length, params = new Array(_len), _key = 0; _key < _len; _key++) {
|
191
237
|
params[_key] = arguments[_key];
|
@@ -254,7 +300,8 @@ export class DropdownMenu extends BasePlugin {
|
|
254
300
|
callback,
|
255
301
|
runOnlyIf: () => {
|
256
302
|
var _this$hot$getSelected;
|
257
|
-
|
303
|
+
const highlight = (_this$hot$getSelected = this.hot.getSelectedRangeLast()) === null || _this$hot$getSelected === void 0 ? void 0 : _this$hot$getSelected.highlight;
|
304
|
+
return highlight && this.hot.selection.isCellVisible(highlight) && highlight.isHeader() && !this.menu.isOpened();
|
258
305
|
},
|
259
306
|
captureCtrl: true,
|
260
307
|
group: SHORTCUTS_GROUP
|
@@ -263,7 +310,8 @@ export class DropdownMenu extends BasePlugin {
|
|
263
310
|
callback,
|
264
311
|
runOnlyIf: () => {
|
265
312
|
var _this$hot$getSelected2;
|
266
|
-
|
313
|
+
const highlight = (_this$hot$getSelected2 = this.hot.getSelectedRangeLast()) === null || _this$hot$getSelected2 === void 0 ? void 0 : _this$hot$getSelected2.highlight;
|
314
|
+
return highlight && this.hot.selection.isCellVisible(highlight) && highlight.isCell() && !this.menu.isOpened();
|
267
315
|
},
|
268
316
|
group: SHORTCUTS_GROUP
|
269
317
|
}]);
|
@@ -284,7 +332,7 @@ export class DropdownMenu extends BasePlugin {
|
|
284
332
|
* @private
|
285
333
|
*/
|
286
334
|
registerEvents() {
|
287
|
-
this.eventManager.addEventListener(this.hot.rootElement, 'click', event => this.
|
335
|
+
this.eventManager.addEventListener(this.hot.rootElement, 'click', event => _classPrivateMethodGet(this, _onTableClick, _onTableClick2).call(this, event));
|
288
336
|
}
|
289
337
|
|
290
338
|
/**
|
@@ -378,115 +426,6 @@ export class DropdownMenu extends BasePlugin {
|
|
378
426
|
}
|
379
427
|
}
|
380
428
|
}
|
381
|
-
/**
|
382
|
-
* Table click listener.
|
383
|
-
*
|
384
|
-
* @private
|
385
|
-
* @param {Event} event The mouse event object.
|
386
|
-
*/
|
387
|
-
onTableClick(event) {
|
388
|
-
event.stopPropagation();
|
389
|
-
if (hasClass(event.target, BUTTON_CLASS_NAME)) {
|
390
|
-
const offset = getDocumentOffsetByElement(this.menu.container, this.hot.rootDocument);
|
391
|
-
const rect = event.target.getBoundingClientRect();
|
392
|
-
this.open({
|
393
|
-
left: rect.left + offset.left,
|
394
|
-
top: rect.top + event.target.offsetHeight + 3 + offset.top
|
395
|
-
}, {
|
396
|
-
left: rect.width
|
397
|
-
});
|
398
|
-
}
|
399
|
-
}
|
400
|
-
|
401
|
-
/**
|
402
|
-
* On after get column header listener.
|
403
|
-
*
|
404
|
-
* @private
|
405
|
-
* @param {number} col Visual column index.
|
406
|
-
* @param {HTMLTableCellElement} TH Header's TH element.
|
407
|
-
*/
|
408
|
-
onAfterGetColHeader(col, TH) {
|
409
|
-
// Corner or a higher-level header
|
410
|
-
const headerRow = TH.parentNode;
|
411
|
-
if (!headerRow) {
|
412
|
-
return;
|
413
|
-
}
|
414
|
-
const headerRowList = headerRow.parentNode.childNodes;
|
415
|
-
const level = Array.prototype.indexOf.call(headerRowList, headerRow);
|
416
|
-
if (col < 0 || level !== headerRowList.length - 1) {
|
417
|
-
return;
|
418
|
-
}
|
419
|
-
const existingButton = TH.querySelector(`.${BUTTON_CLASS_NAME}`);
|
420
|
-
|
421
|
-
// Plugin enabled and buttons already exists, return.
|
422
|
-
if (this.enabled && existingButton) {
|
423
|
-
return;
|
424
|
-
}
|
425
|
-
// Plugin disabled and buttons still exists, so remove them.
|
426
|
-
if (!this.enabled) {
|
427
|
-
if (existingButton) {
|
428
|
-
existingButton.parentNode.removeChild(existingButton);
|
429
|
-
}
|
430
|
-
return;
|
431
|
-
}
|
432
|
-
const button = this.hot.rootDocument.createElement('button');
|
433
|
-
button.className = BUTTON_CLASS_NAME;
|
434
|
-
button.type = 'button';
|
435
|
-
button.tabIndex = -1;
|
436
|
-
if (this.hot.getSettings().ariaTags) {
|
437
|
-
setAttribute(button, [A11Y_LABEL(this.hot.getTranslatedPhrase(COLUMN_HEADER_LABEL_OPEN_MENU))]);
|
438
|
-
setAttribute(TH, [A11Y_HASPOPUP('menu')]);
|
439
|
-
}
|
440
|
-
|
441
|
-
// prevent page reload on button click
|
442
|
-
button.onclick = function () {
|
443
|
-
return false;
|
444
|
-
};
|
445
|
-
TH.firstChild.insertBefore(button, TH.firstChild.firstChild);
|
446
|
-
}
|
447
|
-
|
448
|
-
/**
|
449
|
-
* On menu before open listener.
|
450
|
-
*
|
451
|
-
* @private
|
452
|
-
* @fires Hooks#beforeDropdownMenuShow
|
453
|
-
*/
|
454
|
-
onMenuBeforeOpen() {
|
455
|
-
this.hot.runHooks('beforeDropdownMenuShow', this);
|
456
|
-
}
|
457
|
-
|
458
|
-
/**
|
459
|
-
* On menu after open listener.
|
460
|
-
*
|
461
|
-
* @private
|
462
|
-
* @fires Hooks#afterDropdownMenuShow
|
463
|
-
*/
|
464
|
-
onMenuAfterOpen() {
|
465
|
-
this.hot.runHooks('afterDropdownMenuShow', this);
|
466
|
-
_classPrivateMethodGet(this, _addCustomShortcuts, _addCustomShortcuts2).call(this, this.menu);
|
467
|
-
}
|
468
|
-
|
469
|
-
/**
|
470
|
-
* Listener for the `afterSubmenuOpen` hook.
|
471
|
-
*
|
472
|
-
* @private
|
473
|
-
* @param {Menu} subMenuInstance The opened sub menu instance.
|
474
|
-
*/
|
475
|
-
onSubMenuAfterOpen(subMenuInstance) {
|
476
|
-
_classPrivateMethodGet(this, _addCustomShortcuts, _addCustomShortcuts2).call(this, subMenuInstance);
|
477
|
-
}
|
478
|
-
|
479
|
-
/**
|
480
|
-
* On menu after close listener.
|
481
|
-
*
|
482
|
-
* @private
|
483
|
-
* @fires Hooks#afterDropdownMenuHide
|
484
|
-
*/
|
485
|
-
onMenuAfterClose() {
|
486
|
-
this.hot.listen();
|
487
|
-
this.hot.runHooks('afterDropdownMenuHide', this);
|
488
|
-
}
|
489
|
-
|
490
429
|
/**
|
491
430
|
* Destroys the plugin instance.
|
492
431
|
*/
|
@@ -504,6 +443,72 @@ function _addCustomShortcuts2(menuInstance) {
|
|
504
443
|
callback: () => false
|
505
444
|
}]);
|
506
445
|
}
|
446
|
+
function _onTableClick2(event) {
|
447
|
+
event.stopPropagation();
|
448
|
+
if (hasClass(event.target, BUTTON_CLASS_NAME)) {
|
449
|
+
const offset = getDocumentOffsetByElement(this.menu.container, this.hot.rootDocument);
|
450
|
+
const rect = event.target.getBoundingClientRect();
|
451
|
+
this.open({
|
452
|
+
left: rect.left + offset.left,
|
453
|
+
top: rect.top + event.target.offsetHeight + 3 + offset.top
|
454
|
+
}, {
|
455
|
+
left: rect.width
|
456
|
+
});
|
457
|
+
}
|
458
|
+
}
|
459
|
+
function _onAfterGetColHeader2(col, TH) {
|
460
|
+
// Corner or a higher-level header
|
461
|
+
const headerRow = TH.parentNode;
|
462
|
+
if (!headerRow) {
|
463
|
+
return;
|
464
|
+
}
|
465
|
+
const headerRowList = headerRow.parentNode.childNodes;
|
466
|
+
const level = Array.prototype.indexOf.call(headerRowList, headerRow);
|
467
|
+
if (col < 0 || level !== headerRowList.length - 1) {
|
468
|
+
return;
|
469
|
+
}
|
470
|
+
const existingButton = TH.querySelector(`.${BUTTON_CLASS_NAME}`);
|
471
|
+
|
472
|
+
// Plugin enabled and buttons already exists, return.
|
473
|
+
if (this.enabled && existingButton) {
|
474
|
+
return;
|
475
|
+
}
|
476
|
+
// Plugin disabled and buttons still exists, so remove them.
|
477
|
+
if (!this.enabled) {
|
478
|
+
if (existingButton) {
|
479
|
+
existingButton.parentNode.removeChild(existingButton);
|
480
|
+
}
|
481
|
+
return;
|
482
|
+
}
|
483
|
+
const button = this.hot.rootDocument.createElement('button');
|
484
|
+
button.className = BUTTON_CLASS_NAME;
|
485
|
+
button.type = 'button';
|
486
|
+
button.tabIndex = -1;
|
487
|
+
if (this.hot.getSettings().ariaTags) {
|
488
|
+
setAttribute(button, [A11Y_LABEL(this.hot.getTranslatedPhrase(COLUMN_HEADER_LABEL_OPEN_MENU))]);
|
489
|
+
setAttribute(TH, [A11Y_HASPOPUP('menu')]);
|
490
|
+
}
|
491
|
+
|
492
|
+
// prevent page reload on button click
|
493
|
+
button.onclick = function () {
|
494
|
+
return false;
|
495
|
+
};
|
496
|
+
TH.firstChild.insertBefore(button, TH.firstChild.firstChild);
|
497
|
+
}
|
498
|
+
function _onMenuBeforeOpen2() {
|
499
|
+
this.hot.runHooks('beforeDropdownMenuShow', this);
|
500
|
+
}
|
501
|
+
function _onMenuAfterOpen2() {
|
502
|
+
this.hot.runHooks('afterDropdownMenuShow', this);
|
503
|
+
_classPrivateMethodGet(this, _addCustomShortcuts, _addCustomShortcuts2).call(this, this.menu);
|
504
|
+
}
|
505
|
+
function _onSubMenuAfterOpen2(subMenuInstance) {
|
506
|
+
_classPrivateMethodGet(this, _addCustomShortcuts, _addCustomShortcuts2).call(this, subMenuInstance);
|
507
|
+
}
|
508
|
+
function _onMenuAfterClose2() {
|
509
|
+
this.hot.listen();
|
510
|
+
this.hot.runHooks('afterDropdownMenuHide', this);
|
511
|
+
}
|
507
512
|
DropdownMenu.SEPARATOR = {
|
508
513
|
name: SEPARATOR
|
509
514
|
};
|
@@ -2,7 +2,11 @@
|
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
require("core-js/modules/es.array.push.js");
|
5
|
+
require("core-js/modules/es.error.cause.js");
|
5
6
|
var _number = require("../../helpers/number");
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
9
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
6
10
|
/**
|
7
11
|
* @private
|
8
12
|
*/
|
@@ -13,13 +17,14 @@ class DataProvider {
|
|
13
17
|
*
|
14
18
|
* @type {Core}
|
15
19
|
*/
|
16
|
-
this
|
20
|
+
_defineProperty(this, "hot", void 0);
|
17
21
|
/**
|
18
22
|
* Format type class options.
|
19
23
|
*
|
20
24
|
* @type {object}
|
21
25
|
*/
|
22
|
-
this
|
26
|
+
_defineProperty(this, "options", {});
|
27
|
+
this.hot = hotInstance;
|
23
28
|
}
|
24
29
|
|
25
30
|
/**
|
@@ -1,4 +1,8 @@
|
|
1
1
|
import "core-js/modules/es.array.push.js";
|
2
|
+
import "core-js/modules/es.error.cause.js";
|
3
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
4
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
5
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
2
6
|
import { rangeEach } from "../../helpers/number.mjs";
|
3
7
|
/**
|
4
8
|
* @private
|
@@ -10,13 +14,14 @@ class DataProvider {
|
|
10
14
|
*
|
11
15
|
* @type {Core}
|
12
16
|
*/
|
13
|
-
this
|
17
|
+
_defineProperty(this, "hot", void 0);
|
14
18
|
/**
|
15
19
|
* Format type class options.
|
16
20
|
*
|
17
21
|
* @type {object}
|
18
22
|
*/
|
19
|
-
this
|
23
|
+
_defineProperty(this, "options", {});
|
24
|
+
this.hot = hotInstance;
|
20
25
|
}
|
21
26
|
|
22
27
|
/**
|
@@ -159,7 +159,7 @@ class ExportFile extends _base.BasePlugin {
|
|
159
159
|
const URL = rootWindow.URL || rootWindow.webkitURL;
|
160
160
|
const a = rootDocument.createElement('a');
|
161
161
|
const name = `${formatter.options.filename}.${formatter.options.fileExtension}`;
|
162
|
-
if (a.download !==
|
162
|
+
if (a.download !== undefined) {
|
163
163
|
const url = URL.createObjectURL(blob);
|
164
164
|
a.style.display = 'none';
|
165
165
|
a.setAttribute('href', url);
|
@@ -153,7 +153,7 @@ export class ExportFile extends BasePlugin {
|
|
153
153
|
const URL = rootWindow.URL || rootWindow.webkitURL;
|
154
154
|
const a = rootDocument.createElement('a');
|
155
155
|
const name = `${formatter.options.filename}.${formatter.options.fileExtension}`;
|
156
|
-
if (a.download !==
|
156
|
+
if (a.download !== undefined) {
|
157
157
|
const url = URL.createObjectURL(blob);
|
158
158
|
a.style.display = 'none';
|
159
159
|
a.setAttribute('href', url);
|
@@ -1,8 +1,12 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
|
+
require("core-js/modules/es.error.cause.js");
|
4
5
|
var _object = require("../../../helpers/object");
|
5
6
|
var _string = require("../../../helpers/string");
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
9
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
6
10
|
/**
|
7
11
|
* @private
|
8
12
|
*/
|
@@ -26,18 +30,22 @@ class BaseType {
|
|
26
30
|
range: []
|
27
31
|
};
|
28
32
|
}
|
33
|
+
|
34
|
+
/**
|
35
|
+
* Data provider.
|
36
|
+
*
|
37
|
+
* @type {DataProvider}
|
38
|
+
*/
|
39
|
+
|
29
40
|
constructor(dataProvider, options) {
|
30
|
-
|
31
|
-
* Data provider.
|
32
|
-
*
|
33
|
-
* @type {DataProvider}
|
34
|
-
*/
|
35
|
-
this.dataProvider = dataProvider;
|
41
|
+
_defineProperty(this, "dataProvider", void 0);
|
36
42
|
/**
|
37
43
|
* Format type class options.
|
38
44
|
*
|
39
45
|
* @type {object}
|
40
46
|
*/
|
47
|
+
_defineProperty(this, "options", void 0);
|
48
|
+
this.dataProvider = dataProvider;
|
41
49
|
this.options = this._mergeOptions(options);
|
42
50
|
this.dataProvider.setOptions(this.options);
|
43
51
|
}
|
@@ -1,3 +1,7 @@
|
|
1
|
+
import "core-js/modules/es.error.cause.js";
|
2
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
3
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
4
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
1
5
|
import { extend, clone } from "../../../helpers/object.mjs";
|
2
6
|
import { substitute } from "../../../helpers/string.mjs";
|
3
7
|
/**
|
@@ -23,18 +27,22 @@ class BaseType {
|
|
23
27
|
range: []
|
24
28
|
};
|
25
29
|
}
|
30
|
+
|
31
|
+
/**
|
32
|
+
* Data provider.
|
33
|
+
*
|
34
|
+
* @type {DataProvider}
|
35
|
+
*/
|
36
|
+
|
26
37
|
constructor(dataProvider, options) {
|
27
|
-
|
28
|
-
* Data provider.
|
29
|
-
*
|
30
|
-
* @type {DataProvider}
|
31
|
-
*/
|
32
|
-
this.dataProvider = dataProvider;
|
38
|
+
_defineProperty(this, "dataProvider", void 0);
|
33
39
|
/**
|
34
40
|
* Format type class options.
|
35
41
|
*
|
36
42
|
* @type {object}
|
37
43
|
*/
|
44
|
+
_defineProperty(this, "options", void 0);
|
45
|
+
this.dataProvider = dataProvider;
|
38
46
|
this.options = this._mergeOptions(options);
|
39
47
|
this.dataProvider.setOptions(this.options);
|
40
48
|
}
|
@@ -13,6 +13,9 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
|
|
13
13
|
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 && Object.prototype.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; }
|
14
14
|
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
15
15
|
function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
|
16
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
17
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
18
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
16
19
|
function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
|
17
20
|
/**
|
18
21
|
* @private
|
@@ -38,6 +41,12 @@ class ActionBarComponent extends _base.BaseComponent {
|
|
38
41
|
* @param {InputUI} button InputUI object.
|
39
42
|
*/
|
40
43
|
_classPrivateMethodInitSpec(this, _onButtonClick);
|
44
|
+
/**
|
45
|
+
* The name of the component.
|
46
|
+
*
|
47
|
+
* @type {string}
|
48
|
+
*/
|
49
|
+
_defineProperty(this, "name", '');
|
41
50
|
this.name = options.name;
|
42
51
|
this.elements.push(new _input.InputUI(this.hot, {
|
43
52
|
type: 'button',
|
@@ -3,6 +3,9 @@ var _class;
|
|
3
3
|
import "core-js/modules/es.array.push.js";
|
4
4
|
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
5
5
|
function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
|
6
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
7
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
8
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
6
9
|
function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
|
7
10
|
import { addClass } from "../../../helpers/dom/element.mjs";
|
8
11
|
import { arrayEach } from "../../../helpers/array.mjs";
|
@@ -33,6 +36,12 @@ export class ActionBarComponent extends BaseComponent {
|
|
33
36
|
* @param {InputUI} button InputUI object.
|
34
37
|
*/
|
35
38
|
_classPrivateMethodInitSpec(this, _onButtonClick);
|
39
|
+
/**
|
40
|
+
* The name of the component.
|
41
|
+
*
|
42
|
+
* @type {string}
|
43
|
+
*/
|
44
|
+
_defineProperty(this, "name", '');
|
36
45
|
this.name = options.name;
|
37
46
|
this.elements.push(new InputUI(this.hot, {
|
38
47
|
type: 'button',
|
@@ -18,6 +18,9 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
|
|
18
18
|
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 && Object.prototype.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; }
|
19
19
|
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
20
20
|
function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
|
21
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
22
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
23
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
21
24
|
function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
|
22
25
|
/**
|
23
26
|
* @private
|
@@ -43,6 +46,16 @@ class ConditionComponent extends _base.BaseComponent {
|
|
43
46
|
* @param {object} command Menu item object (command).
|
44
47
|
*/
|
45
48
|
_classPrivateMethodInitSpec(this, _onConditionSelect);
|
49
|
+
/**
|
50
|
+
* The name of the component.
|
51
|
+
*
|
52
|
+
* @type {string}
|
53
|
+
*/
|
54
|
+
_defineProperty(this, "name", '');
|
55
|
+
/**
|
56
|
+
* @type {boolean}
|
57
|
+
*/
|
58
|
+
_defineProperty(this, "addSeparator", false);
|
46
59
|
this.name = options.name;
|
47
60
|
this.addSeparator = options.addSeparator;
|
48
61
|
this.elements.push(new _select.SelectUI(this.hot, {
|
@@ -2,6 +2,9 @@ import "core-js/modules/es.array.push.js";
|
|
2
2
|
import "core-js/modules/es.error.cause.js";
|
3
3
|
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
4
4
|
function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
|
5
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
6
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
7
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
5
8
|
function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
|
6
9
|
import { addClass } from "../../../helpers/dom/element.mjs";
|
7
10
|
import { stopImmediatePropagation } from "../../../helpers/dom/event.mjs";
|
@@ -38,6 +41,16 @@ export class ConditionComponent extends BaseComponent {
|
|
38
41
|
* @param {object} command Menu item object (command).
|
39
42
|
*/
|
40
43
|
_classPrivateMethodInitSpec(this, _onConditionSelect);
|
44
|
+
/**
|
45
|
+
* The name of the component.
|
46
|
+
*
|
47
|
+
* @type {string}
|
48
|
+
*/
|
49
|
+
_defineProperty(this, "name", '');
|
50
|
+
/**
|
51
|
+
* @type {boolean}
|
52
|
+
*/
|
53
|
+
_defineProperty(this, "addSeparator", false);
|
41
54
|
this.name = options.name;
|
42
55
|
this.addSeparator = options.addSeparator;
|
43
56
|
this.elements.push(new SelectUI(this.hot, {
|
@@ -14,6 +14,9 @@ var _disjunctionWithExtraCondition = require("../logicalOperations/disjunctionWi
|
|
14
14
|
var _radioInput = require("../ui/radioInput");
|
15
15
|
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
16
16
|
function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
|
17
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
18
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
19
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
17
20
|
function _classPrivateMethodGet(receiver, privateSet, fn) { if (!privateSet.has(receiver)) { throw new TypeError("attempted to get private field on non-instance"); } return fn; }
|
18
21
|
const SELECTED_AT_START_ELEMENT_INDEX = 0;
|
19
22
|
|
@@ -34,6 +37,12 @@ class OperatorsComponent extends _base.BaseComponent {
|
|
34
37
|
* @param {Event} event The DOM event object.
|
35
38
|
*/
|
36
39
|
_classPrivateMethodInitSpec(this, _onRadioInputChange);
|
40
|
+
/**
|
41
|
+
* The name of the component.
|
42
|
+
*
|
43
|
+
* @type {string}
|
44
|
+
*/
|
45
|
+
_defineProperty(this, "name", '');
|
37
46
|
this.name = options.name;
|
38
47
|
this.buildOperatorsElement();
|
39
48
|
}
|