handsontable 0.0.0-next-bfb0e3a-20240403 → 0.0.0-next-5a535ed-20240403
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/3rdparty/walkontable/src/calculator/viewportColumns.js +17 -12
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +17 -12
- package/3rdparty/walkontable/src/calculator/viewportRows.js +15 -10
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +15 -10
- package/3rdparty/walkontable/src/cell/coords.js +17 -12
- package/3rdparty/walkontable/src/cell/coords.mjs +17 -12
- package/3rdparty/walkontable/src/cell/range.d.ts +1 -2
- package/3rdparty/walkontable/src/cell/range.js +28 -40
- package/3rdparty/walkontable/src/cell/range.mjs +28 -40
- package/3rdparty/walkontable/src/core/_base.js +1 -1
- package/3rdparty/walkontable/src/core/_base.mjs +1 -1
- package/3rdparty/walkontable/src/event.js +104 -72
- package/3rdparty/walkontable/src/event.mjs +104 -72
- package/3rdparty/walkontable/src/overlays.js +1 -1
- package/3rdparty/walkontable/src/overlays.mjs +1 -1
- package/3rdparty/walkontable/src/scroll.js +17 -15
- package/3rdparty/walkontable/src/scroll.mjs +17 -15
- package/3rdparty/walkontable/src/selection/manager.js +69 -48
- package/3rdparty/walkontable/src/selection/manager.mjs +69 -48
- package/3rdparty/walkontable/src/selection/scanner.js +42 -33
- package/3rdparty/walkontable/src/selection/scanner.mjs +42 -33
- package/3rdparty/walkontable/src/utils/columnStretching.js +44 -27
- package/3rdparty/walkontable/src/utils/columnStretching.mjs +44 -27
- package/3rdparty/walkontable/src/utils/orderView/view.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/view.mjs +1 -1
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core/viewportScroll/index.js +1 -4
- package/core/viewportScroll/index.mjs +1 -4
- package/core.d.ts +3 -4
- package/core.js +22 -77
- package/core.mjs +22 -77
- package/dataMap/dataSource.js +1 -1
- package/dataMap/dataSource.mjs +1 -1
- package/dataMap/metaManager/metaLayers/cellMeta.js +1 -1
- package/dataMap/metaManager/metaLayers/cellMeta.mjs +1 -1
- package/dataMap/metaManager/metaSchema.js +1 -1
- package/dataMap/metaManager/metaSchema.mjs +1 -1
- package/dataMap/replaceData.js +1 -1
- package/dataMap/replaceData.mjs +1 -1
- package/dist/handsontable.css +4 -4
- package/dist/handsontable.full.css +4 -4
- package/dist/handsontable.full.js +9117 -8969
- package/dist/handsontable.full.min.css +3 -3
- package/dist/handsontable.full.min.js +292 -292
- package/dist/handsontable.js +6569 -6874
- package/dist/handsontable.min.css +3 -3
- package/dist/handsontable.min.js +25 -25
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/ar-AR.min.js +1 -1
- package/dist/languages/cs-CZ.min.js +1 -1
- package/dist/languages/de-CH.min.js +1 -1
- package/dist/languages/de-DE.min.js +1 -1
- package/dist/languages/en-US.min.js +1 -1
- package/dist/languages/es-MX.min.js +1 -1
- package/dist/languages/fr-FR.min.js +1 -1
- package/dist/languages/hr-HR.min.js +1 -1
- package/dist/languages/it-IT.min.js +1 -1
- package/dist/languages/ja-JP.min.js +1 -1
- package/dist/languages/ko-KR.min.js +1 -1
- package/dist/languages/lv-LV.min.js +1 -1
- package/dist/languages/nb-NO.min.js +1 -1
- package/dist/languages/nl-NL.min.js +1 -1
- package/dist/languages/pl-PL.min.js +1 -1
- package/dist/languages/pt-BR.min.js +1 -1
- package/dist/languages/ru-RU.min.js +1 -1
- package/dist/languages/sr-SP.min.js +1 -1
- package/dist/languages/zh-CN.min.js +1 -1
- package/dist/languages/zh-TW.min.js +1 -1
- package/editorManager.js +23 -25
- package/editorManager.mjs +23 -25
- package/editors/autocompleteEditor/autocompleteEditor.js +10 -6
- package/editors/autocompleteEditor/autocompleteEditor.mjs +10 -6
- package/editors/selectEditor/selectEditor.js +19 -20
- package/editors/selectEditor/selectEditor.mjs +19 -20
- package/eventManager.js +1 -1
- package/eventManager.mjs +1 -1
- package/focusManager.js +82 -64
- package/focusManager.mjs +82 -64
- package/helpers/dom/element.js +1 -1
- package/helpers/dom/element.mjs +1 -1
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/helpers/object.js +2 -2
- package/helpers/object.mjs +2 -2
- package/index.d.ts +0 -10
- package/package.json +2 -7
- package/pluginHooks.d.ts +3 -4
- package/pluginHooks.js +38 -99
- package/pluginHooks.mjs +38 -99
- package/plugins/autoColumnSize/autoColumnSize.js +65 -49
- package/plugins/autoColumnSize/autoColumnSize.mjs +65 -49
- package/plugins/autoRowSize/autoRowSize.js +34 -28
- package/plugins/autoRowSize/autoRowSize.mjs +34 -28
- package/plugins/autofill/autofill.js +38 -30
- package/plugins/autofill/autofill.mjs +38 -30
- package/plugins/base/base.js +17 -12
- package/plugins/base/base.mjs +17 -12
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +5 -5
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +5 -5
- package/plugins/collapsibleColumns/collapsibleColumns.js +50 -59
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +50 -59
- package/plugins/columnSorting/columnSorting.js +45 -49
- package/plugins/columnSorting/columnSorting.mjs +45 -49
- package/plugins/columnSummary/columnSummary.js +26 -22
- package/plugins/columnSummary/columnSummary.mjs +26 -22
- package/plugins/comments/comments.js +158 -116
- package/plugins/comments/comments.mjs +158 -116
- package/plugins/contextMenu/contextMenu.js +26 -20
- package/plugins/contextMenu/contextMenu.mjs +26 -20
- package/plugins/contextMenu/itemsFactory.js +1 -1
- package/plugins/contextMenu/itemsFactory.mjs +1 -1
- package/plugins/contextMenu/menu/defaultShortcutsList.js +10 -26
- package/plugins/contextMenu/menu/defaultShortcutsList.mjs +10 -26
- package/plugins/contextMenu/menu/menu.js +21 -13
- package/plugins/contextMenu/menu/menu.mjs +21 -13
- package/plugins/contextMenu/menu/positioner.js +58 -41
- package/plugins/contextMenu/menu/positioner.mjs +58 -41
- package/plugins/copyPaste/copyPaste.js +157 -116
- package/plugins/copyPaste/copyPaste.mjs +157 -116
- package/plugins/copyPaste/copyableRanges.js +66 -43
- package/plugins/copyPaste/copyableRanges.mjs +66 -43
- package/plugins/customBorders/customBorders.js +13 -11
- package/plugins/customBorders/customBorders.mjs +13 -11
- package/plugins/dragToScroll/dragToScroll.js +6 -6
- package/plugins/dragToScroll/dragToScroll.mjs +6 -6
- package/plugins/dropdownMenu/dropdownMenu.js +106 -80
- package/plugins/dropdownMenu/dropdownMenu.mjs +106 -80
- package/plugins/exportFile/dataProvider.js +1 -1
- package/plugins/exportFile/dataProvider.mjs +1 -1
- package/plugins/filters/component/actionBar.js +9 -9
- package/plugins/filters/component/actionBar.mjs +8 -8
- package/plugins/filters/component/condition.js +15 -13
- package/plugins/filters/component/condition.mjs +15 -13
- package/plugins/filters/component/operators.js +6 -6
- package/plugins/filters/component/operators.mjs +6 -6
- package/plugins/filters/component/value.js +28 -24
- package/plugins/filters/component/value.mjs +28 -24
- package/plugins/filters/conditionUpdateObserver.js +24 -22
- package/plugins/filters/conditionUpdateObserver.mjs +24 -22
- package/plugins/filters/dataFilter.js +1 -1
- package/plugins/filters/dataFilter.mjs +1 -1
- package/plugins/filters/filters.js +95 -81
- package/plugins/filters/filters.mjs +95 -81
- package/plugins/filters/ui/input.js +19 -13
- package/plugins/filters/ui/input.mjs +19 -13
- package/plugins/filters/ui/link.js +13 -8
- package/plugins/filters/ui/link.mjs +13 -8
- package/plugins/filters/ui/multipleSelect.js +112 -85
- package/plugins/filters/ui/multipleSelect.mjs +112 -85
- package/plugins/filters/ui/radioInput.js +20 -12
- package/plugins/filters/ui/radioInput.mjs +20 -12
- package/plugins/filters/ui/select.js +72 -50
- package/plugins/filters/ui/select.mjs +71 -49
- package/plugins/formulas/formulas.js +326 -268
- package/plugins/formulas/formulas.mjs +327 -269
- package/plugins/formulas/indexSyncer/axisSyncer.js +61 -38
- package/plugins/formulas/indexSyncer/axisSyncer.mjs +61 -38
- package/plugins/formulas/indexSyncer/index.js +48 -25
- package/plugins/formulas/indexSyncer/index.mjs +48 -25
- package/plugins/hiddenColumns/hiddenColumns.js +83 -64
- package/plugins/hiddenColumns/hiddenColumns.mjs +83 -64
- package/plugins/hiddenRows/hiddenRows.js +82 -63
- package/plugins/hiddenRows/hiddenRows.mjs +82 -63
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +32 -24
- package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +33 -25
- package/plugins/manualColumnMove/manualColumnMove.js +170 -126
- package/plugins/manualColumnMove/manualColumnMove.mjs +170 -126
- package/plugins/manualColumnResize/manualColumnResize.js +230 -169
- package/plugins/manualColumnResize/manualColumnResize.mjs +230 -169
- package/plugins/manualRowMove/manualRowMove.js +128 -99
- package/plugins/manualRowMove/manualRowMove.mjs +128 -99
- package/plugins/manualRowResize/manualRowResize.js +209 -150
- package/plugins/manualRowResize/manualRowResize.mjs +209 -150
- package/plugins/mergeCells/calculations/selection.js +71 -2
- package/plugins/mergeCells/calculations/selection.mjs +71 -2
- package/plugins/mergeCells/cellsCollection.js +1 -117
- package/plugins/mergeCells/cellsCollection.mjs +1 -117
- package/plugins/mergeCells/contextMenuItem/toggleMerge.js +1 -11
- package/plugins/mergeCells/contextMenuItem/toggleMerge.mjs +1 -11
- package/plugins/mergeCells/mergeCells.js +397 -499
- package/plugins/mergeCells/mergeCells.mjs +397 -499
- package/plugins/multiColumnSorting/multiColumnSorting.js +2 -8
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +2 -8
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +1 -1
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +1 -1
- package/plugins/nestedHeaders/nestedHeaders.js +253 -205
- package/plugins/nestedHeaders/nestedHeaders.mjs +254 -206
- package/plugins/nestedHeaders/stateManager/headersTree.js +32 -21
- package/plugins/nestedHeaders/stateManager/headersTree.mjs +32 -21
- package/plugins/nestedHeaders/stateManager/index.js +41 -30
- package/plugins/nestedHeaders/stateManager/index.mjs +41 -30
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +30 -19
- package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +30 -19
- package/plugins/nestedRows/data/dataManager.js +1 -1
- package/plugins/nestedRows/data/dataManager.mjs +1 -1
- package/plugins/nestedRows/nestedRows.js +182 -151
- package/plugins/nestedRows/nestedRows.mjs +183 -152
- package/plugins/nestedRows/ui/contextMenu.js +15 -11
- package/plugins/nestedRows/ui/contextMenu.mjs +14 -10
- package/plugins/nestedRows/utils/rowMoveController.js +1 -1
- package/plugins/nestedRows/utils/rowMoveController.mjs +1 -1
- package/plugins/persistentState/storage.js +2 -2
- package/plugins/persistentState/storage.mjs +2 -2
- package/plugins/search/search.js +7 -7
- package/plugins/search/search.mjs +7 -7
- package/plugins/touchScroll/touchScroll.js +19 -15
- package/plugins/touchScroll/touchScroll.mjs +20 -16
- package/plugins/trimRows/trimRows.js +6 -6
- package/plugins/trimRows/trimRows.mjs +6 -6
- package/renderers/checkboxRenderer/checkboxRenderer.js +5 -8
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +5 -8
- package/selection/highlight/highlight.js +14 -14
- package/selection/highlight/highlight.mjs +13 -13
- package/selection/highlight/visualSelection.js +0 -2
- package/selection/highlight/visualSelection.mjs +0 -2
- package/selection/selection.js +67 -225
- package/selection/selection.mjs +66 -224
- package/selection/transformation.js +118 -149
- package/selection/transformation.mjs +118 -149
- package/shortcutContexts/commands/editor/closeAndSave.js +2 -2
- package/shortcutContexts/commands/editor/closeAndSave.mjs +2 -2
- package/shortcutContexts/commands/editor/open.js +3 -18
- package/shortcutContexts/commands/editor/open.mjs +3 -18
- package/shortcutContexts/commands/extendCellsSelection/down.js +1 -1
- package/shortcutContexts/commands/extendCellsSelection/down.mjs +1 -1
- package/shortcutContexts/commands/extendCellsSelection/left.js +1 -1
- package/shortcutContexts/commands/extendCellsSelection/left.mjs +1 -1
- package/shortcutContexts/commands/extendCellsSelection/right.js +1 -1
- package/shortcutContexts/commands/extendCellsSelection/right.mjs +1 -1
- package/shortcutContexts/commands/extendCellsSelection/toColumns.js +1 -1
- package/shortcutContexts/commands/extendCellsSelection/toColumns.mjs +1 -1
- package/shortcutContexts/commands/extendCellsSelection/toMostBottom.js +1 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostBottom.mjs +1 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineEnd.js +3 -9
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineEnd.mjs +3 -9
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineStart.js +3 -10
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineStart.mjs +3 -10
- package/shortcutContexts/commands/extendCellsSelection/toMostLeft.js +1 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostLeft.mjs +1 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostRight.js +1 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostRight.mjs +1 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostTop.js +1 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostTop.mjs +1 -3
- package/shortcutContexts/commands/extendCellsSelection/toRows.js +1 -1
- package/shortcutContexts/commands/extendCellsSelection/toRows.mjs +1 -1
- package/shortcutContexts/commands/extendCellsSelection/up.js +1 -1
- package/shortcutContexts/commands/extendCellsSelection/up.mjs +1 -1
- package/shortcutContexts/commands/moveCellSelection/inlineEnd.js +1 -6
- package/shortcutContexts/commands/moveCellSelection/inlineEnd.mjs +1 -6
- package/shortcutContexts/commands/moveCellSelection/inlineStart.js +1 -6
- package/shortcutContexts/commands/moveCellSelection/inlineStart.mjs +1 -6
- package/shortcutContexts/grid.js +3 -9
- package/shortcutContexts/grid.mjs +3 -9
- package/shortcuts/context.js +1 -2
- package/shortcuts/context.mjs +1 -2
- package/tableView.js +78 -52
- package/tableView.mjs +78 -52
- package/translations/changesObservable/observable.js +38 -21
- package/translations/changesObservable/observable.mjs +38 -21
- package/translations/changesObservable/observer.js +12 -7
- package/translations/changesObservable/observer.mjs +11 -6
- package/translations/mapCollections/aggregatedCollection.js +1 -1
- package/translations/mapCollections/aggregatedCollection.mjs +1 -1
- package/translations/maps/indexMap.js +1 -1
- package/translations/maps/indexMap.mjs +1 -1
- package/utils/dataStructures/linkedList.js +1 -6
- package/utils/dataStructures/linkedList.mjs +1 -6
- package/utils/dataStructures/tree.js +1 -1
- package/utils/dataStructures/tree.mjs +1 -1
- package/utils/interval.js +44 -26
- package/utils/interval.mjs +44 -26
- package/core/viewportScroll/scrollStrategies/focusScroll.js +0 -15
- package/core/viewportScroll/scrollStrategies/focusScroll.mjs +0 -11
- package/i18n/languages/ar-AR.d.ts +0 -5
- package/i18n/languages/cs-CZ.d.ts +0 -5
- package/i18n/languages/hr-HR.d.ts +0 -5
- package/i18n/languages/sr-SP.d.ts +0 -5
- package/plugins/mergeCells/focusOrder.js +0 -305
- package/plugins/mergeCells/focusOrder.mjs +0 -300
package/helpers/mixed.mjs
CHANGED
@@ -124,7 +124,7 @@ const domMessages = {
|
|
124
124
|
export function _injectProductInfo(key, element) {
|
125
125
|
const hasValidType = !isEmpty(key);
|
126
126
|
const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
127
|
-
const hotVersion = "0.0.0-next-
|
127
|
+
const hotVersion = "0.0.0-next-5a535ed-20240403";
|
128
128
|
let keyValidityDate;
|
129
129
|
let consoleMessageState = 'invalid';
|
130
130
|
let domMessageState = 'invalid';
|
package/helpers/object.js
CHANGED
@@ -17,9 +17,9 @@ exports.isObjectEqual = isObjectEqual;
|
|
17
17
|
exports.mixin = mixin;
|
18
18
|
exports.objectEach = objectEach;
|
19
19
|
exports.setProperty = setProperty;
|
20
|
-
require("core-js/modules/es.error.cause.js");
|
21
|
-
require("core-js/modules/es.array.push.js");
|
22
20
|
require("core-js/modules/es.json.stringify.js");
|
21
|
+
require("core-js/modules/es.array.push.js");
|
22
|
+
require("core-js/modules/es.error.cause.js");
|
23
23
|
var _array = require("./array");
|
24
24
|
/**
|
25
25
|
* Generate schema for passed object.
|
package/helpers/object.mjs
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
import "core-js/modules/es.error.cause.js";
|
2
|
-
import "core-js/modules/es.array.push.js";
|
3
1
|
import "core-js/modules/es.json.stringify.js";
|
2
|
+
import "core-js/modules/es.array.push.js";
|
3
|
+
import "core-js/modules/es.error.cause.js";
|
4
4
|
import { arrayEach } from "./array.mjs";
|
5
5
|
/**
|
6
6
|
* Generate schema for passed object.
|
package/index.d.ts
CHANGED
@@ -361,7 +361,6 @@ declare namespace Handsontable {
|
|
361
361
|
export class CopyPaste extends _CopyPaste {}
|
362
362
|
export class CustomBorders extends _CustomBorders {}
|
363
363
|
export class DragToScroll extends _DragToScroll {}
|
364
|
-
export class DropdownMenu extends _DropdownMenu {}
|
365
364
|
export class ExportFile extends _ExportFile {}
|
366
365
|
export class Filters extends _Filters {}
|
367
366
|
export class Formulas extends _Formulas {}
|
@@ -379,7 +378,6 @@ declare namespace Handsontable {
|
|
379
378
|
export class NestedRows extends _NestedRows {}
|
380
379
|
export class PersistentState extends _PersistentState {}
|
381
380
|
export class Search extends _Search {}
|
382
|
-
export class TouchScroll extends _TouchScroll {}
|
383
381
|
export class TrimRows extends _TrimRows {}
|
384
382
|
export class UndoRedo extends _UndoRedo {}
|
385
383
|
|
@@ -443,10 +441,6 @@ declare namespace Handsontable {
|
|
443
441
|
export { DragToScrollSettings as Settings };
|
444
442
|
}
|
445
443
|
|
446
|
-
export namespace DropdownMenu {
|
447
|
-
export { DropdownMenuSettings as Settings };
|
448
|
-
}
|
449
|
-
|
450
444
|
export namespace ExportFile {
|
451
445
|
export { ExportFileSettings as Settings };
|
452
446
|
}
|
@@ -523,10 +517,6 @@ declare namespace Handsontable {
|
|
523
517
|
export { SearchQueryMethod };
|
524
518
|
}
|
525
519
|
|
526
|
-
export namespace TouchScroll {
|
527
|
-
export { TouchScrollSettings as Settings };
|
528
|
-
}
|
529
|
-
|
530
520
|
export namespace TrimRows {
|
531
521
|
export { TrimRowsSettings as Settings };
|
532
522
|
}
|
package/package.json
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
"url": "https://github.com/handsontable/handsontable/issues"
|
11
11
|
},
|
12
12
|
"author": "Handsoncode <hello@handsontable.com>",
|
13
|
-
"version": "0.0.0-next-
|
13
|
+
"version": "0.0.0-next-5a535ed-20240403",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -98,12 +98,11 @@
|
|
98
98
|
"string-replace-loader": "^3.1.0",
|
99
99
|
"stylelint": "^13.3.3",
|
100
100
|
"typescript": "3.8.2",
|
101
|
-
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
102
101
|
"webpack": "^5.88.1",
|
103
102
|
"webpack-cli": "^5.1.4"
|
104
103
|
},
|
105
104
|
"optionalDependencies": {
|
106
|
-
"hyperformula": "^2.
|
105
|
+
"hyperformula": "^2.4.0"
|
107
106
|
},
|
108
107
|
"license": "SEE LICENSE IN LICENSE.txt",
|
109
108
|
"typings": "./index.d.ts",
|
@@ -618,12 +617,10 @@
|
|
618
617
|
"import": "./i18n/registry.mjs"
|
619
618
|
},
|
620
619
|
"./i18n/languages/ar-AR": {
|
621
|
-
"types": "./i18n/languages/ar-AR.d.ts",
|
622
620
|
"require": "./i18n/languages/ar-AR.js",
|
623
621
|
"import": "./i18n/languages/ar-AR.mjs"
|
624
622
|
},
|
625
623
|
"./i18n/languages/cs-CZ": {
|
626
|
-
"types": "./i18n/languages/cs-CZ.d.ts",
|
627
624
|
"require": "./i18n/languages/cs-CZ.js",
|
628
625
|
"import": "./i18n/languages/cs-CZ.mjs"
|
629
626
|
},
|
@@ -653,7 +650,6 @@
|
|
653
650
|
"import": "./i18n/languages/fr-FR.mjs"
|
654
651
|
},
|
655
652
|
"./i18n/languages/hr-HR": {
|
656
|
-
"types": "./i18n/languages/hr-HR.d.ts",
|
657
653
|
"require": "./i18n/languages/hr-HR.js",
|
658
654
|
"import": "./i18n/languages/hr-HR.mjs"
|
659
655
|
},
|
@@ -708,7 +704,6 @@
|
|
708
704
|
"import": "./i18n/languages/ru-RU.mjs"
|
709
705
|
},
|
710
706
|
"./i18n/languages/sr-SP": {
|
711
|
-
"types": "./i18n/languages/sr-SP.d.ts",
|
712
707
|
"require": "./i18n/languages/sr-SP.js",
|
713
708
|
"import": "./i18n/languages/sr-SP.mjs"
|
714
709
|
},
|
package/pluginHooks.d.ts
CHANGED
@@ -13,12 +13,15 @@ import {
|
|
13
13
|
DropdownMenu,
|
14
14
|
} from './plugins/dropdownMenu';
|
15
15
|
import {
|
16
|
+
ColumnSorting,
|
16
17
|
Config as ColumnSortingConfig,
|
17
18
|
} from './plugins/columnSorting';
|
18
19
|
import {
|
20
|
+
Filters,
|
19
21
|
ColumnConditions as FiltersColumnConditions,
|
20
22
|
} from './plugins/filters';
|
21
23
|
import {
|
24
|
+
UndoRedo,
|
22
25
|
Action as UndoRedoAction,
|
23
26
|
} from './plugins/undoRedo';
|
24
27
|
import {
|
@@ -98,7 +101,6 @@ export interface Events {
|
|
98
101
|
afterLoadData?: (sourceData: CellValue[], initialLoad: boolean, source: string | undefined) => void;
|
99
102
|
afterMergeCells?: (cellRange: CellRange, mergeParent: MergeCellsSettings, auto: boolean) => void;
|
100
103
|
afterModifyTransformEnd?: (coords: CellCoords, rowTransformDir: -1 | 0, colTransformDir: -1 | 0) => void;
|
101
|
-
afterModifyTransformFocus?: (coords: CellCoords, rowTransformDir: -1 | 0, colTransformDir: -1 | 0) => void;
|
102
104
|
afterModifyTransformStart?: (coords: CellCoords, rowTransformDir: -1 | 0, colTransformDir: -1 | 0) => void;
|
103
105
|
afterMomentumScroll?: () => void;
|
104
106
|
afterNamedExpressionAdded?: (namedExpressionName: string, changes: ExportedChange[]) => void;
|
@@ -131,7 +133,6 @@ export interface Events {
|
|
131
133
|
afterSelectionByProp?: (row: number, prop: string, row2: number, prop2: string, preventScrolling: { value: boolean }, selectionLayerLevel: number) => void;
|
132
134
|
afterSelectionEnd?: (row: number, column: number, row2: number, column2: number, selectionLayerLevel: number) => void;
|
133
135
|
afterSelectionEndByProp?: (row: number, prop: string, row2: number, prop2: string, selectionLayerLevel: number) => void;
|
134
|
-
afterSelectionFocusSet?: (row: number, column: number, preventScrolling: { value: boolean }) => void;
|
135
136
|
afterSelectRows?: (from: CellCoords, to: CellCoords, highlight: CellCoords) => void;
|
136
137
|
afterSetCellMeta?: (row: number, column: number, key: string, value: any) => void;
|
137
138
|
afterSetDataAtCell?: (changes: CellChange[], source?: ChangeSource) => void;
|
@@ -210,7 +211,6 @@ export interface Events {
|
|
210
211
|
beforeRowResize?: (newSize: number, row: number, isDoubleClick: boolean) => number | void;
|
211
212
|
beforeRowWrap?: (isActionInterrupted: { value: boolean }, newCoords: CellCoords, isRowFlipped: boolean) => void;
|
212
213
|
beforeSelectColumns?: (from: CellCoords, to: CellCoords, highlight: CellCoords) => void;
|
213
|
-
beforeSelectionFocusSet?: (coords: CellCoords) => void;
|
214
214
|
beforeSelectionHighlightSet?: () => void;
|
215
215
|
beforeSelectRows?: (from: CellCoords, to: CellCoords, highlight: CellCoords) => void;
|
216
216
|
beforeSetCellMeta?: (row: number, column: number, key: string, value: any) => boolean | void;
|
@@ -253,7 +253,6 @@ export interface Events {
|
|
253
253
|
modifyRowHeight?: (height: number, row: number) => void;
|
254
254
|
modifySourceData?: (row: number, column: number, valueHolder: { value: CellValue }, ioMode: 'get' | 'set') => void;
|
255
255
|
modifyTransformEnd?: (delta: CellCoords) => void;
|
256
|
-
modifyTransformFocus?: (delta: CellCoords) => void;
|
257
256
|
modifyTransformStart?: (delta: CellCoords) => void;
|
258
257
|
persistentStateLoad?: (key: string, valuePlaceholder: { value: any }) => void;
|
259
258
|
persistentStateReset?: (key: string) => void;
|
package/pluginHooks.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
|
-
require("core-js/modules/es.error.cause.js");
|
5
4
|
require("core-js/modules/es.array.push.js");
|
5
|
+
require("core-js/modules/es.error.cause.js");
|
6
6
|
var _array = require("./helpers/array");
|
7
7
|
var _object = require("./helpers/object");
|
8
8
|
var _string = require("./helpers/string");
|
@@ -134,7 +134,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
134
134
|
'afterCellMetaReset',
|
135
135
|
/**
|
136
136
|
* Fired after one or more cells has been changed. The changes are triggered in any situation when the
|
137
|
-
* value is entered using an editor or changed using API (e.q
|
137
|
+
* value is entered using an editor or changed using API (e.q setDataAtCell).
|
138
138
|
*
|
139
139
|
* __Note:__ For performance reasons, the `changes` array is null for `"loadData"` source.
|
140
140
|
*
|
@@ -177,7 +177,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
177
177
|
'afterContextMenuDefaultOptions',
|
178
178
|
/**
|
179
179
|
* Fired each time user opens {@link ContextMenu} plugin before setting up the Context Menu's items but after filtering these options by
|
180
|
-
* user (
|
180
|
+
* user (`contextMenu` option). This hook can by helpful to determine if user use specified menu item or to set up
|
181
181
|
* one of the menu item to by always visible.
|
182
182
|
*
|
183
183
|
* @event Hooks#beforeContextMenuSetItems
|
@@ -195,7 +195,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
195
195
|
'afterDropdownMenuDefaultOptions',
|
196
196
|
/**
|
197
197
|
* Fired by {@link DropdownMenu} plugin before setting up the Dropdown Menu's items but after filtering these options
|
198
|
-
* by user (
|
198
|
+
* by user (`dropdownMenu` option). This hook can by helpful to determine if user use specified menu item or to set
|
199
199
|
* up one of the menu item to by always visible.
|
200
200
|
*
|
201
201
|
* @event Hooks#beforeDropdownMenuSetItems
|
@@ -322,7 +322,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
322
322
|
*/
|
323
323
|
'afterDestroy',
|
324
324
|
/**
|
325
|
-
* Hook fired after
|
325
|
+
* Hook fired after keydown event is handled.
|
326
326
|
*
|
327
327
|
* @event Hooks#afterDocumentKeyDown
|
328
328
|
* @param {Event} event A native `keydown` event object.
|
@@ -414,7 +414,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
414
414
|
*/
|
415
415
|
'afterUpdateData',
|
416
416
|
/**
|
417
|
-
* Fired after a scroll event, which is identified as a momentum scroll (e.g.
|
417
|
+
* Fired after a scroll event, which is identified as a momentum scroll (e.g. On an iPad).
|
418
418
|
*
|
419
419
|
* @event Hooks#afterMomentumScroll
|
420
420
|
*/
|
@@ -598,7 +598,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
598
598
|
*/
|
599
599
|
'afterScroll',
|
600
600
|
/**
|
601
|
-
* Fired after one or more cells are selected (e.g.
|
601
|
+
* Fired after one or more cells are selected (e.g. During mouse move).
|
602
602
|
*
|
603
603
|
* @event Hooks#afterSelection
|
604
604
|
* @param {number} row Selection start visual row index.
|
@@ -650,9 +650,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
650
650
|
* @param {string} prop Selection start data source object property name.
|
651
651
|
* @param {number} row2 Selection end visual row index.
|
652
652
|
* @param {string} prop2 Selection end data source object property name.
|
653
|
-
* @param {object} preventScrolling
|
654
|
-
* Property `preventScrolling.value` expects a boolean value that
|
655
|
-
* Handsontable uses to control scroll behavior after selection.
|
653
|
+
* @param {object} preventScrolling Object with `value` property where its value change will be observed.
|
656
654
|
* @param {number} selectionLayerLevel The number which indicates what selection layer is currently modified.
|
657
655
|
* @example
|
658
656
|
* ```js
|
@@ -679,7 +677,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
679
677
|
*/
|
680
678
|
'afterSelectionByProp',
|
681
679
|
/**
|
682
|
-
* Fired after one or more cells are selected (e.g.
|
680
|
+
* Fired after one or more cells are selected (e.g. On mouse up).
|
683
681
|
*
|
684
682
|
* @event Hooks#afterSelectionEnd
|
685
683
|
* @param {number} row Selection start visual row index.
|
@@ -690,7 +688,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
690
688
|
*/
|
691
689
|
'afterSelectionEnd',
|
692
690
|
/**
|
693
|
-
* Fired after one or more cells are selected (e.g.
|
691
|
+
* Fired after one or more cells are selected (e.g. On mouse up).
|
694
692
|
*
|
695
693
|
* The `prop` and `prop2` arguments represent the source object property name instead of the column number.
|
696
694
|
*
|
@@ -702,46 +700,6 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
702
700
|
* @param {number} selectionLayerLevel The number which indicates what selection layer is currently modified.
|
703
701
|
*/
|
704
702
|
'afterSelectionEndByProp',
|
705
|
-
/**
|
706
|
-
* Fired after the focus position within a selected range is changed.
|
707
|
-
*
|
708
|
-
* @since 14.3.0
|
709
|
-
* @event Hooks#afterSelectionFocusSet
|
710
|
-
* @param {number} row The focus visual row index position.
|
711
|
-
* @param {number} column The focus visual column index position.
|
712
|
-
* @param {object} preventScrolling A reference to the observable object with the `value` property.
|
713
|
-
* Property `preventScrolling.value` expects a boolean value that
|
714
|
-
* Handsontable uses to control scroll behavior after selection.
|
715
|
-
* @example
|
716
|
-
* ```js
|
717
|
-
* ::: only-for javascript
|
718
|
-
* new Handsontable(element, {
|
719
|
-
* afterSelectionFocusSet: (row, column, preventScrolling) => {
|
720
|
-
* // If set to `false` (default): when focused cell selection is outside the viewport,
|
721
|
-
* // Handsontable scrolls the viewport to that cell.
|
722
|
-
* // If set to `true`: when focused cell selection is outside the viewport,
|
723
|
-
* // Handsontable doesn't scroll the viewport.
|
724
|
-
* preventScrolling.value = true;
|
725
|
-
* }
|
726
|
-
* })
|
727
|
-
* ```
|
728
|
-
* :::
|
729
|
-
*
|
730
|
-
* ::: only-for react
|
731
|
-
* ```jsx
|
732
|
-
* <HotTable
|
733
|
-
* afterSelectionFocusSet={(row, column, preventScrolling) => {
|
734
|
-
* // If set to `false` (default): when focused cell selection is outside the viewport,
|
735
|
-
* // Handsontable scrolls the viewport to that cell.
|
736
|
-
* // If set to `true`: when focused cell selection is outside the viewport,
|
737
|
-
* // Handsontable doesn't scroll the viewport.
|
738
|
-
* preventScrolling.value = true;
|
739
|
-
* }}
|
740
|
-
* />
|
741
|
-
* ```
|
742
|
-
* :::
|
743
|
-
*/
|
744
|
-
'afterSelectionFocusSet',
|
745
703
|
/**
|
746
704
|
* Fired before one or more columns are selected (e.g. During mouse header click or {@link Core#selectColumns} API call).
|
747
705
|
*
|
@@ -777,7 +735,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
777
735
|
*/
|
778
736
|
'beforeSelectColumns',
|
779
737
|
/**
|
780
|
-
* Fired after one or more columns are selected (e.g.
|
738
|
+
* Fired after one or more columns are selected (e.g. During mouse header click or {@link Core#selectColumns} API call).
|
781
739
|
*
|
782
740
|
* @since 14.0.0
|
783
741
|
* @event Hooks#afterSelectColumns
|
@@ -787,7 +745,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
787
745
|
*/
|
788
746
|
'afterSelectColumns',
|
789
747
|
/**
|
790
|
-
* Fired before one or more rows are selected (e.g.
|
748
|
+
* Fired before one or more rows are selected (e.g. During mouse header click or {@link Core#selectRows} API call).
|
791
749
|
*
|
792
750
|
* @since 14.0.0
|
793
751
|
* @event Hooks#beforeSelectRows
|
@@ -821,7 +779,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
821
779
|
*/
|
822
780
|
'beforeSelectRows',
|
823
781
|
/**
|
824
|
-
* Fired after one or more rows are selected (e.g.
|
782
|
+
* Fired after one or more rows are selected (e.g. During mouse header click or {@link Core#selectRows} API call).
|
825
783
|
*
|
826
784
|
* @since 14.0.0
|
827
785
|
* @event Hooks#afterSelectRows
|
@@ -861,7 +819,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
861
819
|
'afterSetDataAtCell',
|
862
820
|
/**
|
863
821
|
* Fired after cell data was changed.
|
864
|
-
* Called only when
|
822
|
+
* Called only when `setDataAtRowProp` was executed.
|
865
823
|
*
|
866
824
|
* @event Hooks#afterSetDataAtRowProp
|
867
825
|
* @param {Array} changes An array of changes in format `[[row, prop, oldValue, value], ...]`.
|
@@ -879,7 +837,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
879
837
|
*/
|
880
838
|
'afterSetSourceDataAtCell',
|
881
839
|
/**
|
882
|
-
* Fired after calling the
|
840
|
+
* Fired after calling the `updateSettings` method.
|
883
841
|
*
|
884
842
|
* @event Hooks#afterUpdateSettings
|
885
843
|
* @param {object} newSettings New settings object.
|
@@ -929,7 +887,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
929
887
|
* @param {string} direction Declares the direction of the autofill. Possible values: `up`, `down`, `left`, `right`.
|
930
888
|
*
|
931
889
|
* @returns {boolean|Array[]} If false, the operation is cancelled. If array of arrays, the returned data
|
932
|
-
* will be passed into
|
890
|
+
* will be passed into `populateFromArray` instead of the default autofill
|
933
891
|
* algorithm's result.
|
934
892
|
*/
|
935
893
|
'beforeAutofill',
|
@@ -951,10 +909,17 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
951
909
|
*
|
952
910
|
* @event Hooks#beforeCellAlignment
|
953
911
|
* @param {object} stateBefore An object with class names defining the cell alignment.
|
954
|
-
* @param {CellRange[]} range An array of
|
912
|
+
* @param {CellRange[]} range An array of CellRange coordinates where the alignment will be applied.
|
955
913
|
* @param {string} type Type of the alignment - either `horizontal` or `vertical`.
|
956
914
|
* @param {string} alignmentClass String defining the alignment class added to the cell.
|
957
|
-
* Possible values:
|
915
|
+
* Possible values:
|
916
|
+
* * `htLeft`
|
917
|
+
* * `htCenter`
|
918
|
+
* * `htRight`
|
919
|
+
* * `htJustify`
|
920
|
+
* * `htTop`
|
921
|
+
* * `htMiddle`
|
922
|
+
* * `htBottom`.
|
958
923
|
*/
|
959
924
|
'beforeCellAlignment',
|
960
925
|
/**
|
@@ -1115,7 +1080,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1115
1080
|
*/
|
1116
1081
|
'beforeUpdateData',
|
1117
1082
|
/**
|
1118
|
-
* Hook fired before
|
1083
|
+
* Hook fired before keydown event is handled. It can be used to stop default key bindings.
|
1119
1084
|
*
|
1120
1085
|
* __Note__: To prevent default behavior you need to call `false` in your `beforeKeyDown` handler.
|
1121
1086
|
*
|
@@ -1289,33 +1254,25 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1289
1254
|
* @returns {boolean|undefined} If false is returned the action is canceled.
|
1290
1255
|
*/
|
1291
1256
|
'beforeSetCellMeta',
|
1292
|
-
/**
|
1293
|
-
* Fired before setting focus selection.
|
1294
|
-
*
|
1295
|
-
* @since 14.3.0
|
1296
|
-
* @event Hooks#beforeSelectionFocusSet
|
1297
|
-
* @param {CellCoords} coords CellCoords instance.
|
1298
|
-
*/
|
1299
|
-
'beforeSelectionFocusSet',
|
1300
1257
|
/**
|
1301
1258
|
* Fired before setting range is started but not finished yet.
|
1302
1259
|
*
|
1303
1260
|
* @event Hooks#beforeSetRangeStartOnly
|
1304
|
-
* @param {CellCoords} coords
|
1261
|
+
* @param {CellCoords} coords CellCoords instance.
|
1305
1262
|
*/
|
1306
1263
|
'beforeSetRangeStartOnly',
|
1307
1264
|
/**
|
1308
1265
|
* Fired before setting range is started.
|
1309
1266
|
*
|
1310
1267
|
* @event Hooks#beforeSetRangeStart
|
1311
|
-
* @param {CellCoords} coords
|
1268
|
+
* @param {CellCoords} coords CellCoords instance.
|
1312
1269
|
*/
|
1313
1270
|
'beforeSetRangeStart',
|
1314
1271
|
/**
|
1315
1272
|
* Fired before setting range is ended.
|
1316
1273
|
*
|
1317
1274
|
* @event Hooks#beforeSetRangeEnd
|
1318
|
-
* @param {CellCoords} coords
|
1275
|
+
* @param {CellCoords} coords CellCoords instance.
|
1319
1276
|
*/
|
1320
1277
|
'beforeSetRangeEnd',
|
1321
1278
|
/**
|
@@ -1448,7 +1405,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1448
1405
|
*/
|
1449
1406
|
'modifyRowData',
|
1450
1407
|
/**
|
1451
|
-
* Used to modify the cell coordinates when using the
|
1408
|
+
* Used to modify the cell coordinates when using the `getCell` method, opening editor, getting value from the editor
|
1452
1409
|
* and saving values from the closed editor.
|
1453
1410
|
*
|
1454
1411
|
* @event Hooks#modifyGetCellCoords
|
@@ -2117,9 +2074,9 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
2117
2074
|
* @event Hooks#modifyColumnHeaderValue
|
2118
2075
|
* @param {string} value A column header value.
|
2119
2076
|
* @param {number} visualColumnIndex A visual column index.
|
2120
|
-
* @param {number} [headerLevel=0] Header level index. Accepts positive (
|
2121
|
-
* and negative (
|
2122
|
-
* topmost header. For negative values,
|
2077
|
+
* @param {number} [headerLevel=0] Header level index. Accepts positive (0 to n)
|
2078
|
+
* and negative (-1 to -n) values. For positive values, 0 points to the
|
2079
|
+
* topmost header. For negative values, -1 points to the bottom-most
|
2123
2080
|
* header (the header closest to the cells).
|
2124
2081
|
* @returns {string} The column header value to be updated.
|
2125
2082
|
*/
|
@@ -2206,14 +2163,6 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
2206
2163
|
* @param {number} rowHeaderWidth Row header width.
|
2207
2164
|
*/
|
2208
2165
|
'modifyRowHeaderWidth',
|
2209
|
-
/**
|
2210
|
-
* Fired when the focus of the selection is being modified (e.g. Moving the focus with the enter/tab keys).
|
2211
|
-
*
|
2212
|
-
* @since 14.3.0
|
2213
|
-
* @event Hooks#modifyTransformFocus
|
2214
|
-
* @param {CellCoords} delta Cell coords object declaring the delta of the new selection relative to the previous one.
|
2215
|
-
*/
|
2216
|
-
'modifyTransformFocus',
|
2217
2166
|
/**
|
2218
2167
|
* Fired when the start of the selection is being modified (e.g. Moving the selection with the arrow keys).
|
2219
2168
|
*
|
@@ -2228,16 +2177,6 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
2228
2177
|
* @param {CellCoords} delta Cell coords object declaring the delta of the new selection relative to the previous one.
|
2229
2178
|
*/
|
2230
2179
|
'modifyTransformEnd',
|
2231
|
-
/**
|
2232
|
-
* Fired after the focus of the selection is being modified (e.g. Moving the focus with the enter/tab keys).
|
2233
|
-
*
|
2234
|
-
* @since 14.3.0
|
2235
|
-
* @event Hooks#afterModifyTransformFocus
|
2236
|
-
* @param {CellCoords} coords Coords of the freshly focused cell.
|
2237
|
-
* @param {number} rowTransformDir `-1` if trying to focus a cell with a negative row index. `0` otherwise.
|
2238
|
-
* @param {number} colTransformDir `-1` if trying to focus a cell with a negative column index. `0` otherwise.
|
2239
|
-
*/
|
2240
|
-
'afterModifyTransformFocus',
|
2241
2180
|
/**
|
2242
2181
|
* Fired after the start of the selection is being modified (e.g. Moving the selection with the arrow keys).
|
2243
2182
|
*
|
@@ -2413,7 +2352,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
2413
2352
|
* option is enabled.
|
2414
2353
|
*
|
2415
2354
|
* @event Hooks#beforeDropdownMenuShow
|
2416
|
-
* @param {DropdownMenu} dropdownMenu The
|
2355
|
+
* @param {DropdownMenu} dropdownMenu The DropdownMenu instance.
|
2417
2356
|
*/
|
2418
2357
|
'beforeDropdownMenuShow',
|
2419
2358
|
/**
|
@@ -2421,7 +2360,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
2421
2360
|
* option is enabled.
|
2422
2361
|
*
|
2423
2362
|
* @event Hooks#afterDropdownMenuShow
|
2424
|
-
* @param {DropdownMenu} dropdownMenu The
|
2363
|
+
* @param {DropdownMenu} dropdownMenu The DropdownMenu instance.
|
2425
2364
|
*/
|
2426
2365
|
'afterDropdownMenuShow',
|
2427
2366
|
/**
|
@@ -2429,11 +2368,11 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
2429
2368
|
* option is enabled.
|
2430
2369
|
*
|
2431
2370
|
* @event Hooks#afterDropdownMenuHide
|
2432
|
-
* @param {DropdownMenu} instance The
|
2371
|
+
* @param {DropdownMenu} instance The DropdownMenu instance.
|
2433
2372
|
*/
|
2434
2373
|
'afterDropdownMenuHide',
|
2435
2374
|
/**
|
2436
|
-
* Fired by {@link NestedRows} plugin before adding a children to the
|
2375
|
+
* Fired by {@link NestedRows} plugin before adding a children to the NestedRows structure. This hook is fired when
|
2437
2376
|
* {@link Options#nestedRows} option is enabled.
|
2438
2377
|
*
|
2439
2378
|
* @event Hooks#beforeAddChild
|
@@ -2443,7 +2382,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
2443
2382
|
*/
|
2444
2383
|
'beforeAddChild',
|
2445
2384
|
/**
|
2446
|
-
* Fired by {@link NestedRows} plugin after adding a children to the
|
2385
|
+
* Fired by {@link NestedRows} plugin after adding a children to the NestedRows structure. This hook is fired when
|
2447
2386
|
* {@link Options#nestedRows} option is enabled.
|
2448
2387
|
*
|
2449
2388
|
* @event Hooks#afterAddChild
|