handsontable 14.2.0-next-75c8bcd-20240306 → 14.3.0-next-13fe676-20240409
Sign up to get free protection for your applications and to get access to all the features.
- package/3rdparty/walkontable/src/calculator/renderAllColumns.js +1 -1
- package/3rdparty/walkontable/src/calculator/renderAllColumns.mjs +1 -1
- package/3rdparty/walkontable/src/calculator/renderAllRows.js +1 -1
- package/3rdparty/walkontable/src/calculator/renderAllRows.mjs +1 -1
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +13 -18
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +13 -18
- package/3rdparty/walkontable/src/calculator/viewportRows.js +11 -16
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +11 -16
- package/3rdparty/walkontable/src/cell/coords.js +13 -18
- package/3rdparty/walkontable/src/cell/coords.mjs +13 -18
- package/3rdparty/walkontable/src/cell/range.d.ts +2 -1
- package/3rdparty/walkontable/src/cell/range.js +42 -30
- package/3rdparty/walkontable/src/cell/range.mjs +42 -30
- package/3rdparty/walkontable/src/core/_base.js +2 -2
- package/3rdparty/walkontable/src/core/_base.mjs +2 -2
- package/3rdparty/walkontable/src/core/clone.js +1 -1
- package/3rdparty/walkontable/src/core/clone.mjs +1 -1
- package/3rdparty/walkontable/src/event.js +72 -104
- package/3rdparty/walkontable/src/event.mjs +72 -104
- package/3rdparty/walkontable/src/filter/column.js +1 -1
- package/3rdparty/walkontable/src/filter/column.mjs +1 -1
- package/3rdparty/walkontable/src/filter/row.js +1 -1
- package/3rdparty/walkontable/src/filter/row.mjs +1 -1
- package/3rdparty/walkontable/src/index.js +1 -1
- package/3rdparty/walkontable/src/overlay/_base.js +1 -1
- package/3rdparty/walkontable/src/overlay/_base.mjs +1 -1
- package/3rdparty/walkontable/src/overlay/bottom.js +1 -1
- package/3rdparty/walkontable/src/overlay/bottom.mjs +1 -1
- package/3rdparty/walkontable/src/overlay/inlineStart.js +15 -1
- package/3rdparty/walkontable/src/overlay/inlineStart.mjs +16 -2
- package/3rdparty/walkontable/src/overlay/top.js +12 -1
- package/3rdparty/walkontable/src/overlay/top.mjs +13 -2
- package/3rdparty/walkontable/src/overlay/topInlineStartCorner.js +1 -1
- package/3rdparty/walkontable/src/overlay/topInlineStartCorner.mjs +1 -1
- package/3rdparty/walkontable/src/overlays.js +47 -5
- package/3rdparty/walkontable/src/overlays.mjs +47 -5
- package/3rdparty/walkontable/src/renderer/_base.js +1 -1
- package/3rdparty/walkontable/src/renderer/_base.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/cells.js +1 -1
- package/3rdparty/walkontable/src/renderer/cells.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +1 -1
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/rows.js +1 -1
- package/3rdparty/walkontable/src/renderer/rows.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/table.js +1 -1
- package/3rdparty/walkontable/src/renderer/table.mjs +1 -1
- package/3rdparty/walkontable/src/scroll.js +16 -18
- package/3rdparty/walkontable/src/scroll.mjs +16 -18
- package/3rdparty/walkontable/src/selection/manager.js +48 -69
- package/3rdparty/walkontable/src/selection/manager.mjs +48 -69
- package/3rdparty/walkontable/src/selection/scanner.js +33 -42
- package/3rdparty/walkontable/src/selection/scanner.mjs +33 -42
- package/3rdparty/walkontable/src/settings.js +1 -1
- package/3rdparty/walkontable/src/settings.mjs +1 -1
- package/3rdparty/walkontable/src/table.js +1 -1
- package/3rdparty/walkontable/src/table.mjs +1 -1
- package/3rdparty/walkontable/src/utils/column.js +1 -1
- package/3rdparty/walkontable/src/utils/column.mjs +1 -1
- package/3rdparty/walkontable/src/utils/columnStretching.js +28 -45
- package/3rdparty/walkontable/src/utils/columnStretching.mjs +28 -45
- package/3rdparty/walkontable/src/utils/nodesPool.js +1 -1
- package/3rdparty/walkontable/src/utils/nodesPool.mjs +1 -1
- package/3rdparty/walkontable/src/utils/orderView/view.js +2 -2
- package/3rdparty/walkontable/src/utils/orderView/view.mjs +2 -2
- package/3rdparty/walkontable/src/utils/orderView/viewSize.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +1 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +1 -1
- package/3rdparty/walkontable/src/utils/row.js +1 -1
- package/3rdparty/walkontable/src/utils/row.mjs +1 -1
- package/CHANGELOG.md +20 -0
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core/viewportScroll/index.js +4 -1
- package/core/viewportScroll/index.mjs +4 -1
- package/core/viewportScroll/scrollStrategies/focusScroll.js +15 -0
- package/core/viewportScroll/scrollStrategies/focusScroll.mjs +11 -0
- package/core.d.ts +4 -3
- package/core.js +98 -43
- package/core.mjs +98 -43
- package/dataMap/dataMap.js +1 -1
- package/dataMap/dataMap.mjs +1 -1
- package/dataMap/dataSource.js +2 -2
- package/dataMap/dataSource.mjs +2 -2
- package/dataMap/metaManager/lazyFactoryMap.js +3 -5
- package/dataMap/metaManager/lazyFactoryMap.mjs +2 -4
- package/dataMap/metaManager/metaLayers/cellMeta.js +2 -2
- package/dataMap/metaManager/metaLayers/cellMeta.mjs +2 -2
- package/dataMap/metaManager/metaLayers/columnMeta.js +1 -1
- package/dataMap/metaManager/metaLayers/columnMeta.mjs +1 -1
- package/dataMap/metaManager/metaLayers/globalMeta.js +1 -1
- package/dataMap/metaManager/metaLayers/globalMeta.mjs +1 -1
- package/dataMap/metaManager/metaLayers/tableMeta.js +1 -1
- package/dataMap/metaManager/metaLayers/tableMeta.mjs +1 -1
- package/dataMap/metaManager/metaSchema.js +272 -272
- package/dataMap/metaManager/metaSchema.mjs +272 -272
- package/dataMap/metaManager/mods/dynamicCellMeta.js +1 -1
- package/dataMap/metaManager/mods/dynamicCellMeta.mjs +1 -1
- package/dataMap/metaManager/mods/extendMetaProperties.js +1 -1
- package/dataMap/metaManager/mods/extendMetaProperties.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 +9800 -10020
- package/dist/handsontable.full.min.css +3 -3
- package/dist/handsontable.full.min.js +292 -292
- package/dist/handsontable.js +7470 -7056
- 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 +26 -24
- package/editorManager.mjs +26 -24
- package/editors/autocompleteEditor/autocompleteEditor.js +7 -11
- package/editors/autocompleteEditor/autocompleteEditor.mjs +7 -11
- package/editors/baseEditor/baseEditor.js +1 -1
- package/editors/baseEditor/baseEditor.mjs +1 -1
- package/editors/dateEditor/dateEditor.js +35 -11
- package/editors/dateEditor/dateEditor.mjs +35 -11
- package/editors/selectEditor/selectEditor.js +20 -19
- package/editors/selectEditor/selectEditor.mjs +20 -19
- package/editors/textEditor/textEditor.js +1 -1
- package/editors/textEditor/textEditor.mjs +1 -1
- package/eventManager.js +2 -2
- package/eventManager.mjs +2 -2
- package/focusManager.js +64 -82
- package/focusManager.mjs +64 -82
- package/helpers/dom/element.js +23 -1
- package/helpers/dom/element.mjs +21 -1
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/helpers/object.js +2 -2
- package/helpers/object.mjs +2 -2
- package/i18n/languages/ar-AR.d.ts +5 -0
- package/i18n/languages/ar-AR.js +1 -1
- package/i18n/languages/cs-CZ.d.ts +5 -0
- package/i18n/languages/cs-CZ.js +1 -1
- package/i18n/languages/de-CH.js +1 -1
- package/i18n/languages/de-DE.js +1 -1
- package/i18n/languages/en-US.js +1 -1
- package/i18n/languages/es-MX.js +1 -1
- package/i18n/languages/fr-FR.js +1 -1
- package/i18n/languages/hr-HR.d.ts +5 -0
- package/i18n/languages/hr-HR.js +1 -1
- package/i18n/languages/it-IT.js +1 -1
- package/i18n/languages/ja-JP.js +1 -1
- package/i18n/languages/ko-KR.js +1 -1
- package/i18n/languages/lv-LV.js +1 -1
- package/i18n/languages/nb-NO.js +1 -1
- package/i18n/languages/nl-NL.js +1 -1
- package/i18n/languages/pl-PL.js +1 -1
- package/i18n/languages/pt-BR.js +1 -1
- package/i18n/languages/ru-RU.js +1 -1
- package/i18n/languages/sr-SP.d.ts +5 -0
- package/i18n/languages/sr-SP.js +1 -1
- package/i18n/languages/zh-CN.js +1 -1
- package/i18n/languages/zh-TW.js +1 -1
- package/i18n/registry.js +1 -1
- package/index.d.ts +10 -0
- package/index.js +1 -1
- package/package.json +14 -10
- package/pluginHooks.d.ts +4 -3
- package/pluginHooks.js +143 -82
- package/pluginHooks.mjs +143 -82
- package/plugins/autoColumnSize/autoColumnSize.js +50 -66
- package/plugins/autoColumnSize/autoColumnSize.mjs +50 -66
- package/plugins/autoRowSize/autoRowSize.js +29 -35
- package/plugins/autoRowSize/autoRowSize.mjs +29 -35
- package/plugins/autofill/autofill.js +31 -39
- package/plugins/autofill/autofill.mjs +31 -39
- package/plugins/base/base.js +13 -18
- package/plugins/base/base.mjs +13 -18
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +6 -6
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +6 -6
- package/plugins/collapsibleColumns/collapsibleColumns.js +60 -51
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +60 -51
- package/plugins/columnSorting/columnSorting.js +50 -46
- package/plugins/columnSorting/columnSorting.mjs +50 -46
- package/plugins/columnSorting/columnStatesManager.js +1 -1
- package/plugins/columnSorting/columnStatesManager.mjs +1 -1
- package/plugins/columnSummary/columnSummary.js +36 -40
- package/plugins/columnSummary/columnSummary.mjs +36 -40
- package/plugins/columnSummary/endpoints.js +1 -1
- package/plugins/columnSummary/endpoints.mjs +1 -1
- package/plugins/comments/commentEditor.js +1 -1
- package/plugins/comments/commentEditor.mjs +1 -1
- package/plugins/comments/comments.js +117 -159
- package/plugins/comments/comments.mjs +117 -159
- package/plugins/comments/contextMenuItem/addEditComment.js +1 -1
- package/plugins/comments/contextMenuItem/readOnlyComment.js +1 -1
- package/plugins/comments/contextMenuItem/removeComment.js +1 -1
- package/plugins/comments/displaySwitch.js +1 -1
- package/plugins/comments/displaySwitch.mjs +1 -1
- package/plugins/contextMenu/commandExecutor.js +1 -1
- package/plugins/contextMenu/commandExecutor.mjs +1 -1
- package/plugins/contextMenu/contextMenu.js +24 -30
- package/plugins/contextMenu/contextMenu.mjs +24 -30
- package/plugins/contextMenu/itemsFactory.js +2 -2
- package/plugins/contextMenu/itemsFactory.mjs +2 -2
- package/plugins/contextMenu/menu/cursor.js +1 -1
- package/plugins/contextMenu/menu/cursor.mjs +1 -1
- package/plugins/contextMenu/menu/defaultShortcutsList.js +26 -10
- package/plugins/contextMenu/menu/defaultShortcutsList.mjs +26 -10
- package/plugins/contextMenu/menu/menu.js +14 -22
- package/plugins/contextMenu/menu/menu.mjs +14 -22
- package/plugins/contextMenu/menu/positioner.js +41 -58
- package/plugins/contextMenu/menu/positioner.mjs +41 -58
- package/plugins/contextMenu/predefinedItems/alignment.js +1 -1
- package/plugins/contextMenu/predefinedItems/clearColumn.js +1 -1
- package/plugins/contextMenu/predefinedItems/columnLeft.js +1 -1
- package/plugins/contextMenu/predefinedItems/columnRight.js +1 -1
- package/plugins/contextMenu/predefinedItems/index.js +1 -1
- package/plugins/contextMenu/predefinedItems/readOnly.js +1 -1
- package/plugins/contextMenu/predefinedItems/redo.js +1 -1
- package/plugins/contextMenu/predefinedItems/removeColumn.js +1 -1
- package/plugins/contextMenu/predefinedItems/removeRow.js +1 -1
- package/plugins/contextMenu/predefinedItems/rowAbove.js +1 -1
- package/plugins/contextMenu/predefinedItems/rowBelow.js +1 -1
- package/plugins/contextMenu/predefinedItems/undo.js +1 -1
- package/plugins/copyPaste/contextMenuItem/cut.js +1 -1
- package/plugins/copyPaste/copyPaste.js +120 -161
- package/plugins/copyPaste/copyPaste.mjs +120 -161
- package/plugins/copyPaste/copyableRanges.js +43 -66
- package/plugins/copyPaste/copyableRanges.mjs +43 -66
- package/plugins/customBorders/contextMenuItem/bottom.js +1 -1
- package/plugins/customBorders/contextMenuItem/left.js +1 -1
- package/plugins/customBorders/contextMenuItem/noBorders.js +1 -1
- package/plugins/customBorders/contextMenuItem/right.js +1 -1
- package/plugins/customBorders/contextMenuItem/top.js +1 -1
- package/plugins/customBorders/customBorders.js +14 -16
- package/plugins/customBorders/customBorders.mjs +13 -15
- package/plugins/dragToScroll/dragToScroll.js +7 -7
- package/plugins/dragToScroll/dragToScroll.mjs +7 -7
- package/plugins/dropdownMenu/dropdownMenu.js +84 -110
- package/plugins/dropdownMenu/dropdownMenu.mjs +84 -110
- package/plugins/exportFile/dataProvider.js +2 -2
- package/plugins/exportFile/dataProvider.mjs +2 -2
- package/plugins/exportFile/exportFile.js +2 -2
- package/plugins/exportFile/exportFile.mjs +1 -1
- package/plugins/exportFile/types/_base.js +1 -1
- package/plugins/exportFile/types/_base.mjs +1 -1
- package/plugins/filters/component/_base.js +1 -1
- package/plugins/filters/component/_base.mjs +1 -1
- package/plugins/filters/component/actionBar.js +11 -11
- package/plugins/filters/component/actionBar.mjs +9 -9
- package/plugins/filters/component/condition.js +15 -17
- package/plugins/filters/component/condition.mjs +14 -16
- package/plugins/filters/component/operators.js +7 -7
- package/plugins/filters/component/operators.mjs +7 -7
- package/plugins/filters/component/value.js +26 -30
- package/plugins/filters/component/value.mjs +25 -29
- package/plugins/filters/condition/beginsWith.js +1 -1
- package/plugins/filters/condition/between.js +1 -1
- package/plugins/filters/condition/contains.js +1 -1
- package/plugins/filters/condition/date/after.js +1 -1
- package/plugins/filters/condition/date/before.js +1 -1
- package/plugins/filters/condition/date/today.js +1 -1
- package/plugins/filters/condition/date/tomorrow.js +1 -1
- package/plugins/filters/condition/date/yesterday.js +1 -1
- package/plugins/filters/condition/empty.js +1 -1
- package/plugins/filters/condition/endsWith.js +1 -1
- package/plugins/filters/condition/equal.js +1 -1
- package/plugins/filters/condition/greaterThan.js +1 -1
- package/plugins/filters/condition/greaterThanOrEqual.js +1 -1
- package/plugins/filters/condition/lessThan.js +1 -1
- package/plugins/filters/condition/lessThanOrEqual.js +1 -1
- package/plugins/filters/condition/none.js +1 -1
- package/plugins/filters/condition/notBetween.js +1 -1
- package/plugins/filters/condition/notContains.js +1 -1
- package/plugins/filters/condition/notEmpty.js +1 -1
- package/plugins/filters/condition/notEqual.js +1 -1
- package/plugins/filters/conditionCollection.js +1 -1
- package/plugins/filters/conditionCollection.mjs +1 -1
- package/plugins/filters/conditionUpdateObserver.js +23 -25
- package/plugins/filters/conditionUpdateObserver.mjs +23 -25
- package/plugins/filters/dataFilter.js +2 -2
- package/plugins/filters/dataFilter.mjs +2 -2
- package/plugins/filters/filters.js +84 -98
- package/plugins/filters/filters.mjs +83 -97
- package/plugins/filters/logicalOperations/conjunction.js +1 -1
- package/plugins/filters/logicalOperations/disjunction.js +1 -1
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +1 -1
- package/plugins/filters/ui/_base.js +2 -2
- package/plugins/filters/ui/_base.mjs +1 -1
- package/plugins/filters/ui/input.js +13 -19
- package/plugins/filters/ui/input.mjs +13 -19
- package/plugins/filters/ui/link.js +8 -13
- package/plugins/filters/ui/link.mjs +8 -13
- package/plugins/filters/ui/multipleSelect.js +86 -113
- package/plugins/filters/ui/multipleSelect.mjs +85 -112
- package/plugins/filters/ui/radioInput.js +12 -20
- package/plugins/filters/ui/radioInput.mjs +12 -20
- package/plugins/filters/ui/select.js +51 -73
- package/plugins/filters/ui/select.mjs +49 -71
- package/plugins/formulas/formulas.js +270 -328
- package/plugins/formulas/formulas.mjs +271 -329
- package/plugins/formulas/indexSyncer/axisSyncer.js +38 -61
- package/plugins/formulas/indexSyncer/axisSyncer.mjs +38 -61
- package/plugins/formulas/indexSyncer/index.js +25 -48
- package/plugins/formulas/indexSyncer/index.mjs +25 -48
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +1 -1
- package/plugins/hiddenColumns/contextMenuItem/showColumn.js +1 -1
- package/plugins/hiddenColumns/hiddenColumns.js +68 -87
- package/plugins/hiddenColumns/hiddenColumns.mjs +68 -87
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +1 -1
- package/plugins/hiddenRows/contextMenuItem/showRow.js +1 -1
- package/plugins/hiddenRows/hiddenRows.js +67 -86
- package/plugins/hiddenRows/hiddenRows.mjs +67 -86
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +1 -1
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +24 -32
- package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +25 -33
- package/plugins/manualColumnMove/manualColumnMove.js +133 -177
- package/plugins/manualColumnMove/manualColumnMove.mjs +133 -177
- package/plugins/manualColumnMove/ui/_base.js +1 -1
- package/plugins/manualColumnMove/ui/_base.mjs +1 -1
- package/plugins/manualColumnResize/manualColumnResize.js +169 -230
- package/plugins/manualColumnResize/manualColumnResize.mjs +169 -230
- package/plugins/manualRowMove/manualRowMove.js +106 -135
- package/plugins/manualRowMove/manualRowMove.mjs +106 -135
- package/plugins/manualRowMove/ui/_base.js +1 -1
- package/plugins/manualRowMove/ui/_base.mjs +1 -1
- package/plugins/manualRowResize/manualRowResize.js +150 -209
- package/plugins/manualRowResize/manualRowResize.mjs +150 -209
- package/plugins/mergeCells/calculations/autofill.js +1 -1
- package/plugins/mergeCells/calculations/autofill.mjs +1 -1
- package/plugins/mergeCells/calculations/selection.js +3 -72
- package/plugins/mergeCells/calculations/selection.mjs +3 -72
- package/plugins/mergeCells/cellCoords.js +1 -1
- package/plugins/mergeCells/cellCoords.mjs +1 -1
- package/plugins/mergeCells/cellsCollection.js +118 -2
- package/plugins/mergeCells/cellsCollection.mjs +118 -2
- package/plugins/mergeCells/contextMenuItem/toggleMerge.js +12 -2
- package/plugins/mergeCells/contextMenuItem/toggleMerge.mjs +11 -1
- package/plugins/mergeCells/focusOrder.js +305 -0
- package/plugins/mergeCells/focusOrder.mjs +300 -0
- package/plugins/mergeCells/mergeCells.js +500 -398
- package/plugins/mergeCells/mergeCells.mjs +500 -398
- package/plugins/multiColumnSorting/multiColumnSorting.js +9 -3
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +9 -3
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +2 -2
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +2 -2
- package/plugins/nestedHeaders/nestedHeaders.js +206 -254
- package/plugins/nestedHeaders/nestedHeaders.mjs +207 -255
- package/plugins/nestedHeaders/stateManager/headersTree.js +21 -32
- package/plugins/nestedHeaders/stateManager/headersTree.mjs +21 -32
- package/plugins/nestedHeaders/stateManager/index.js +30 -41
- package/plugins/nestedHeaders/stateManager/index.mjs +30 -41
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +19 -30
- package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +19 -30
- package/plugins/nestedHeaders/utils/ghostTable.js +1 -1
- package/plugins/nestedHeaders/utils/ghostTable.mjs +1 -1
- package/plugins/nestedRows/data/dataManager.js +2 -2
- package/plugins/nestedRows/data/dataManager.mjs +2 -2
- package/plugins/nestedRows/nestedRows.js +154 -185
- package/plugins/nestedRows/nestedRows.mjs +155 -186
- package/plugins/nestedRows/ui/_base.js +1 -1
- package/plugins/nestedRows/ui/_base.mjs +1 -1
- package/plugins/nestedRows/ui/contextMenu.js +13 -17
- package/plugins/nestedRows/ui/contextMenu.mjs +11 -15
- package/plugins/nestedRows/utils/rowMoveController.js +6 -6
- package/plugins/nestedRows/utils/rowMoveController.mjs +6 -6
- package/plugins/persistentState/persistentState.js +1 -1
- package/plugins/persistentState/persistentState.mjs +1 -1
- package/plugins/persistentState/storage.js +3 -3
- package/plugins/persistentState/storage.mjs +3 -3
- package/plugins/search/search.js +8 -8
- package/plugins/search/search.mjs +8 -8
- package/plugins/touchScroll/touchScroll.js +16 -20
- package/plugins/touchScroll/touchScroll.mjs +17 -21
- package/plugins/trimRows/trimRows.js +7 -7
- package/plugins/trimRows/trimRows.mjs +7 -7
- package/plugins/undoRedo/index.js +1 -1
- package/renderers/checkboxRenderer/checkboxRenderer.js +8 -5
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +8 -5
- package/selection/highlight/highlight.js +16 -18
- package/selection/highlight/highlight.mjs +15 -17
- package/selection/highlight/visualSelection.js +3 -1
- package/selection/highlight/visualSelection.mjs +3 -1
- package/selection/range.js +3 -5
- package/selection/range.mjs +2 -4
- package/selection/selection.js +227 -69
- package/selection/selection.mjs +225 -67
- package/selection/transformation.js +149 -118
- package/selection/transformation.mjs +149 -118
- package/shortcutContexts/commands/editor/closeAndSave.js +2 -2
- package/shortcutContexts/commands/editor/closeAndSave.mjs +2 -2
- package/shortcutContexts/commands/editor/open.js +18 -3
- package/shortcutContexts/commands/editor/open.mjs +18 -3
- 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 +3 -1
- package/shortcutContexts/commands/extendCellsSelection/toMostBottom.mjs +3 -1
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineEnd.js +9 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineEnd.mjs +9 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineStart.js +10 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineStart.mjs +10 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostLeft.js +3 -1
- package/shortcutContexts/commands/extendCellsSelection/toMostLeft.mjs +3 -1
- package/shortcutContexts/commands/extendCellsSelection/toMostRight.js +3 -1
- package/shortcutContexts/commands/extendCellsSelection/toMostRight.mjs +3 -1
- package/shortcutContexts/commands/extendCellsSelection/toMostTop.js +3 -1
- package/shortcutContexts/commands/extendCellsSelection/toMostTop.mjs +3 -1
- 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 +6 -1
- package/shortcutContexts/commands/moveCellSelection/inlineEnd.mjs +6 -1
- package/shortcutContexts/commands/moveCellSelection/inlineStart.js +6 -1
- package/shortcutContexts/commands/moveCellSelection/inlineStart.mjs +6 -1
- package/shortcutContexts/grid.js +9 -3
- package/shortcutContexts/grid.mjs +9 -3
- package/shortcuts/context.js +3 -2
- package/shortcuts/context.mjs +3 -2
- package/shortcuts/manager.js +2 -2
- package/shortcuts/manager.mjs +2 -2
- package/tableView.js +53 -79
- package/tableView.mjs +53 -79
- package/translations/changesObservable/observable.js +21 -38
- package/translations/changesObservable/observable.mjs +21 -38
- package/translations/changesObservable/observer.js +7 -12
- package/translations/changesObservable/observer.mjs +6 -11
- package/translations/indexMapper.js +1 -1
- package/translations/indexMapper.mjs +1 -1
- package/translations/mapCollections/aggregatedCollection.js +2 -2
- package/translations/mapCollections/aggregatedCollection.mjs +2 -2
- package/translations/mapCollections/mapCollection.js +1 -1
- package/translations/mapCollections/mapCollection.mjs +1 -1
- package/translations/maps/indexMap.js +2 -2
- package/translations/maps/indexMap.mjs +2 -2
- package/translations/maps/linkedPhysicalIndexToValueMap.js +1 -1
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +1 -1
- package/utils/dataStructures/linkedList.js +7 -2
- package/utils/dataStructures/linkedList.mjs +7 -2
- package/utils/dataStructures/tree.js +2 -2
- package/utils/dataStructures/tree.mjs +2 -2
- package/utils/ghostTable.js +1 -1
- package/utils/ghostTable.mjs +1 -1
- package/utils/interval.js +27 -45
- package/utils/interval.mjs +27 -45
- package/utils/samplesGenerator.js +1 -1
- package/utils/samplesGenerator.mjs +1 -1
@@ -2,19 +2,16 @@
|
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
exports.normalizeRanges = normalizeRanges;
|
5
|
-
require("core-js/modules/es.array.push.js");
|
6
5
|
require("core-js/modules/es.error.cause.js");
|
6
|
+
require("core-js/modules/es.array.push.js");
|
7
7
|
var _array = require("../../helpers/array");
|
8
8
|
var _number = require("../../helpers/number");
|
9
9
|
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
10
10
|
function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }
|
11
11
|
function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
|
12
|
-
function
|
13
|
-
function
|
14
|
-
function
|
15
|
-
function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, "set"); _classApplyDescriptorSet(receiver, descriptor, value); return value; }
|
16
|
-
function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError("attempted to " + action + " private field on non-instance"); } return privateMap.get(receiver); }
|
17
|
-
function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError("attempted to set read only private field"); } descriptor.value = value; } }
|
12
|
+
function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
|
13
|
+
function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
|
14
|
+
function _assertClassBrand(e, t, n) { if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n; throw new TypeError("Private element is not present on this object"); }
|
18
15
|
/**
|
19
16
|
* The utils class produces the selection ranges in the `{startRow, startCol, endRow, endCol}` format
|
20
17
|
* based on the current table selection. The CopyPaste plugin consumes that ranges to generate
|
@@ -28,8 +25,7 @@ var _countColumns = /*#__PURE__*/new WeakMap();
|
|
28
25
|
var _rowsLimit = /*#__PURE__*/new WeakMap();
|
29
26
|
var _columnsLimit = /*#__PURE__*/new WeakMap();
|
30
27
|
var _countColumnHeaders = /*#__PURE__*/new WeakMap();
|
31
|
-
var
|
32
|
-
var _trimRowsRange = /*#__PURE__*/new WeakSet();
|
28
|
+
var _CopyableRangesFactory_brand = /*#__PURE__*/new WeakSet();
|
33
29
|
class CopyableRangesFactory {
|
34
30
|
/* eslint-disable jsdoc/require-description-complete-sentence */
|
35
31
|
/**
|
@@ -49,14 +45,6 @@ class CopyableRangesFactory {
|
|
49
45
|
columnsLimit,
|
50
46
|
countColumnHeaders
|
51
47
|
} = _ref;
|
52
|
-
/**
|
53
|
-
* Trimmed the rows range to the limit.
|
54
|
-
*
|
55
|
-
* @param {*} startRow The lowest row index in the range.
|
56
|
-
* @param {*} endRow The highest row index in the range.
|
57
|
-
* @returns {number} Returns trimmed row index if it exceeds the limit.
|
58
|
-
*/
|
59
|
-
_classPrivateMethodInitSpec(this, _trimRowsRange);
|
60
48
|
/**
|
61
49
|
* Trimmed the columns range to the limit.
|
62
50
|
*
|
@@ -64,54 +52,36 @@ class CopyableRangesFactory {
|
|
64
52
|
* @param {*} endColumn The highest column index in the range.
|
65
53
|
* @returns {number} Returns trimmed column index if it exceeds the limit.
|
66
54
|
*/
|
67
|
-
_classPrivateMethodInitSpec(this,
|
55
|
+
_classPrivateMethodInitSpec(this, _CopyableRangesFactory_brand);
|
68
56
|
/**
|
69
57
|
* @type {CellRange}
|
70
58
|
*/
|
71
|
-
_classPrivateFieldInitSpec(this, _selectedRange,
|
72
|
-
writable: true,
|
73
|
-
value: void 0
|
74
|
-
});
|
59
|
+
_classPrivateFieldInitSpec(this, _selectedRange, void 0);
|
75
60
|
/**
|
76
61
|
* @type {function(): number}
|
77
62
|
*/
|
78
|
-
_classPrivateFieldInitSpec(this, _countRows,
|
79
|
-
writable: true,
|
80
|
-
value: void 0
|
81
|
-
});
|
63
|
+
_classPrivateFieldInitSpec(this, _countRows, void 0);
|
82
64
|
/**
|
83
65
|
* @type {function(): number}
|
84
66
|
*/
|
85
|
-
_classPrivateFieldInitSpec(this, _countColumns,
|
86
|
-
writable: true,
|
87
|
-
value: void 0
|
88
|
-
});
|
67
|
+
_classPrivateFieldInitSpec(this, _countColumns, void 0);
|
89
68
|
/**
|
90
69
|
* @type {function(): number}
|
91
70
|
*/
|
92
|
-
_classPrivateFieldInitSpec(this, _rowsLimit,
|
93
|
-
writable: true,
|
94
|
-
value: void 0
|
95
|
-
});
|
71
|
+
_classPrivateFieldInitSpec(this, _rowsLimit, void 0);
|
96
72
|
/**
|
97
73
|
* @type {function(): number}
|
98
74
|
*/
|
99
|
-
_classPrivateFieldInitSpec(this, _columnsLimit,
|
100
|
-
writable: true,
|
101
|
-
value: void 0
|
102
|
-
});
|
75
|
+
_classPrivateFieldInitSpec(this, _columnsLimit, void 0);
|
103
76
|
/**
|
104
77
|
* @type {function(): number}
|
105
78
|
*/
|
106
|
-
_classPrivateFieldInitSpec(this, _countColumnHeaders,
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
_classPrivateFieldSet(
|
111
|
-
_classPrivateFieldSet(
|
112
|
-
_classPrivateFieldSet(this, _rowsLimit, rowsLimit);
|
113
|
-
_classPrivateFieldSet(this, _columnsLimit, columnsLimit);
|
114
|
-
_classPrivateFieldSet(this, _countColumnHeaders, countColumnHeaders);
|
79
|
+
_classPrivateFieldInitSpec(this, _countColumnHeaders, void 0);
|
80
|
+
_classPrivateFieldSet(_countRows, this, countRows);
|
81
|
+
_classPrivateFieldSet(_countColumns, this, countColumns);
|
82
|
+
_classPrivateFieldSet(_rowsLimit, this, rowsLimit);
|
83
|
+
_classPrivateFieldSet(_columnsLimit, this, columnsLimit);
|
84
|
+
_classPrivateFieldSet(_countColumnHeaders, this, countColumnHeaders);
|
115
85
|
}
|
116
86
|
/* eslint-enable jsdoc/require-description-complete-sentence */
|
117
87
|
|
@@ -121,7 +91,7 @@ class CopyableRangesFactory {
|
|
121
91
|
* @param {CellRange} selectedRange The selection range represented by the CellRange class.
|
122
92
|
*/
|
123
93
|
setSelectedRange(selectedRange) {
|
124
|
-
_classPrivateFieldSet(
|
94
|
+
_classPrivateFieldSet(_selectedRange, this, selectedRange);
|
125
95
|
}
|
126
96
|
|
127
97
|
/**
|
@@ -131,19 +101,19 @@ class CopyableRangesFactory {
|
|
131
101
|
* @returns {{startRow: number, startCol: number, endRow: number, endCol: number} | null}
|
132
102
|
*/
|
133
103
|
getCellsRange() {
|
134
|
-
if (_classPrivateFieldGet(
|
104
|
+
if (_classPrivateFieldGet(_countRows, this).call(this) === 0 || _classPrivateFieldGet(_countColumns, this).call(this) === 0) {
|
135
105
|
return null;
|
136
106
|
}
|
137
107
|
const {
|
138
108
|
row: startRow,
|
139
109
|
col: startCol
|
140
|
-
} = _classPrivateFieldGet(
|
110
|
+
} = _classPrivateFieldGet(_selectedRange, this).getTopStartCorner();
|
141
111
|
const {
|
142
112
|
row: endRow,
|
143
113
|
col: endCol
|
144
|
-
} = _classPrivateFieldGet(
|
145
|
-
const finalEndRow =
|
146
|
-
const finalEndCol =
|
114
|
+
} = _classPrivateFieldGet(_selectedRange, this).getBottomEndCorner();
|
115
|
+
const finalEndRow = _assertClassBrand(_CopyableRangesFactory_brand, this, _trimRowsRange).call(this, startRow, endRow);
|
116
|
+
const finalEndCol = _assertClassBrand(_CopyableRangesFactory_brand, this, _trimColumnsRange).call(this, startCol, endCol);
|
147
117
|
const isRangeTrimmed = endRow !== finalEndRow || endCol !== finalEndCol;
|
148
118
|
return {
|
149
119
|
isRangeTrimmed,
|
@@ -161,16 +131,16 @@ class CopyableRangesFactory {
|
|
161
131
|
* @returns {{startRow: number, startCol: number, endRow: number, endCol: number} | null}
|
162
132
|
*/
|
163
133
|
getMostBottomColumnHeadersRange() {
|
164
|
-
if (_classPrivateFieldGet(
|
134
|
+
if (_classPrivateFieldGet(_countColumns, this).call(this) === 0 || _classPrivateFieldGet(_countColumnHeaders, this).call(this) === 0) {
|
165
135
|
return null;
|
166
136
|
}
|
167
137
|
const {
|
168
138
|
col: startCol
|
169
|
-
} = _classPrivateFieldGet(
|
139
|
+
} = _classPrivateFieldGet(_selectedRange, this).getTopStartCorner();
|
170
140
|
const {
|
171
141
|
col: endCol
|
172
|
-
} = _classPrivateFieldGet(
|
173
|
-
const finalEndCol =
|
142
|
+
} = _classPrivateFieldGet(_selectedRange, this).getBottomEndCorner();
|
143
|
+
const finalEndCol = _assertClassBrand(_CopyableRangesFactory_brand, this, _trimColumnsRange).call(this, startCol, endCol);
|
174
144
|
const isRangeTrimmed = endCol !== finalEndCol;
|
175
145
|
return {
|
176
146
|
isRangeTrimmed,
|
@@ -188,20 +158,20 @@ class CopyableRangesFactory {
|
|
188
158
|
* @returns {{startRow: number, startCol: number, endRow: number, endCol: number} | null}
|
189
159
|
*/
|
190
160
|
getAllColumnHeadersRange() {
|
191
|
-
if (_classPrivateFieldGet(
|
161
|
+
if (_classPrivateFieldGet(_countColumns, this).call(this) === 0 || _classPrivateFieldGet(_countColumnHeaders, this).call(this) === 0) {
|
192
162
|
return null;
|
193
163
|
}
|
194
164
|
const {
|
195
165
|
col: startCol
|
196
|
-
} = _classPrivateFieldGet(
|
166
|
+
} = _classPrivateFieldGet(_selectedRange, this).getTopStartCorner();
|
197
167
|
const {
|
198
168
|
col: endCol
|
199
|
-
} = _classPrivateFieldGet(
|
200
|
-
const finalEndCol =
|
169
|
+
} = _classPrivateFieldGet(_selectedRange, this).getBottomEndCorner();
|
170
|
+
const finalEndCol = _assertClassBrand(_CopyableRangesFactory_brand, this, _trimColumnsRange).call(this, startCol, endCol);
|
201
171
|
const isRangeTrimmed = endCol !== finalEndCol;
|
202
172
|
return {
|
203
173
|
isRangeTrimmed,
|
204
|
-
startRow: -_classPrivateFieldGet(
|
174
|
+
startRow: -_classPrivateFieldGet(_countColumnHeaders, this).call(this),
|
205
175
|
startCol,
|
206
176
|
endRow: -1,
|
207
177
|
endCol: finalEndCol
|
@@ -217,11 +187,18 @@ class CopyableRangesFactory {
|
|
217
187
|
* @returns {{rows: number[], columns: number[]}}
|
218
188
|
*/
|
219
189
|
exports.CopyableRangesFactory = CopyableRangesFactory;
|
220
|
-
function
|
221
|
-
return Math.min(endColumn, Math.max(startColumn + _classPrivateFieldGet(
|
190
|
+
function _trimColumnsRange(startColumn, endColumn) {
|
191
|
+
return Math.min(endColumn, Math.max(startColumn + _classPrivateFieldGet(_columnsLimit, this).call(this) - 1, startColumn));
|
222
192
|
}
|
223
|
-
|
224
|
-
|
193
|
+
/**
|
194
|
+
* Trimmed the rows range to the limit.
|
195
|
+
*
|
196
|
+
* @param {*} startRow The lowest row index in the range.
|
197
|
+
* @param {*} endRow The highest row index in the range.
|
198
|
+
* @returns {number} Returns trimmed row index if it exceeds the limit.
|
199
|
+
*/
|
200
|
+
function _trimRowsRange(startRow, endRow) {
|
201
|
+
return Math.min(endRow, Math.max(startRow + _classPrivateFieldGet(_rowsLimit, this).call(this) - 1, startRow));
|
225
202
|
}
|
226
203
|
function normalizeRanges(ranges) {
|
227
204
|
const rows = [];
|
@@ -1,14 +1,11 @@
|
|
1
|
-
import "core-js/modules/es.array.push.js";
|
2
1
|
import "core-js/modules/es.error.cause.js";
|
2
|
+
import "core-js/modules/es.array.push.js";
|
3
3
|
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
4
4
|
function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }
|
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
|
7
|
-
function
|
8
|
-
function
|
9
|
-
function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, "set"); _classApplyDescriptorSet(receiver, descriptor, value); return value; }
|
10
|
-
function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError("attempted to " + action + " private field on non-instance"); } return privateMap.get(receiver); }
|
11
|
-
function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError("attempted to set read only private field"); } descriptor.value = value; } }
|
6
|
+
function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
|
7
|
+
function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
|
8
|
+
function _assertClassBrand(e, t, n) { if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n; throw new TypeError("Private element is not present on this object"); }
|
12
9
|
import { arrayEach } from "../../helpers/array.mjs";
|
13
10
|
import { rangeEach } from "../../helpers/number.mjs";
|
14
11
|
/**
|
@@ -24,8 +21,7 @@ var _countColumns = /*#__PURE__*/new WeakMap();
|
|
24
21
|
var _rowsLimit = /*#__PURE__*/new WeakMap();
|
25
22
|
var _columnsLimit = /*#__PURE__*/new WeakMap();
|
26
23
|
var _countColumnHeaders = /*#__PURE__*/new WeakMap();
|
27
|
-
var
|
28
|
-
var _trimRowsRange = /*#__PURE__*/new WeakSet();
|
24
|
+
var _CopyableRangesFactory_brand = /*#__PURE__*/new WeakSet();
|
29
25
|
export class CopyableRangesFactory {
|
30
26
|
/* eslint-disable jsdoc/require-description-complete-sentence */
|
31
27
|
/**
|
@@ -45,14 +41,6 @@ export class CopyableRangesFactory {
|
|
45
41
|
columnsLimit,
|
46
42
|
countColumnHeaders
|
47
43
|
} = _ref;
|
48
|
-
/**
|
49
|
-
* Trimmed the rows range to the limit.
|
50
|
-
*
|
51
|
-
* @param {*} startRow The lowest row index in the range.
|
52
|
-
* @param {*} endRow The highest row index in the range.
|
53
|
-
* @returns {number} Returns trimmed row index if it exceeds the limit.
|
54
|
-
*/
|
55
|
-
_classPrivateMethodInitSpec(this, _trimRowsRange);
|
56
44
|
/**
|
57
45
|
* Trimmed the columns range to the limit.
|
58
46
|
*
|
@@ -60,54 +48,36 @@ export class CopyableRangesFactory {
|
|
60
48
|
* @param {*} endColumn The highest column index in the range.
|
61
49
|
* @returns {number} Returns trimmed column index if it exceeds the limit.
|
62
50
|
*/
|
63
|
-
_classPrivateMethodInitSpec(this,
|
51
|
+
_classPrivateMethodInitSpec(this, _CopyableRangesFactory_brand);
|
64
52
|
/**
|
65
53
|
* @type {CellRange}
|
66
54
|
*/
|
67
|
-
_classPrivateFieldInitSpec(this, _selectedRange,
|
68
|
-
writable: true,
|
69
|
-
value: void 0
|
70
|
-
});
|
55
|
+
_classPrivateFieldInitSpec(this, _selectedRange, void 0);
|
71
56
|
/**
|
72
57
|
* @type {function(): number}
|
73
58
|
*/
|
74
|
-
_classPrivateFieldInitSpec(this, _countRows,
|
75
|
-
writable: true,
|
76
|
-
value: void 0
|
77
|
-
});
|
59
|
+
_classPrivateFieldInitSpec(this, _countRows, void 0);
|
78
60
|
/**
|
79
61
|
* @type {function(): number}
|
80
62
|
*/
|
81
|
-
_classPrivateFieldInitSpec(this, _countColumns,
|
82
|
-
writable: true,
|
83
|
-
value: void 0
|
84
|
-
});
|
63
|
+
_classPrivateFieldInitSpec(this, _countColumns, void 0);
|
85
64
|
/**
|
86
65
|
* @type {function(): number}
|
87
66
|
*/
|
88
|
-
_classPrivateFieldInitSpec(this, _rowsLimit,
|
89
|
-
writable: true,
|
90
|
-
value: void 0
|
91
|
-
});
|
67
|
+
_classPrivateFieldInitSpec(this, _rowsLimit, void 0);
|
92
68
|
/**
|
93
69
|
* @type {function(): number}
|
94
70
|
*/
|
95
|
-
_classPrivateFieldInitSpec(this, _columnsLimit,
|
96
|
-
writable: true,
|
97
|
-
value: void 0
|
98
|
-
});
|
71
|
+
_classPrivateFieldInitSpec(this, _columnsLimit, void 0);
|
99
72
|
/**
|
100
73
|
* @type {function(): number}
|
101
74
|
*/
|
102
|
-
_classPrivateFieldInitSpec(this, _countColumnHeaders,
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
_classPrivateFieldSet(
|
107
|
-
_classPrivateFieldSet(
|
108
|
-
_classPrivateFieldSet(this, _rowsLimit, rowsLimit);
|
109
|
-
_classPrivateFieldSet(this, _columnsLimit, columnsLimit);
|
110
|
-
_classPrivateFieldSet(this, _countColumnHeaders, countColumnHeaders);
|
75
|
+
_classPrivateFieldInitSpec(this, _countColumnHeaders, void 0);
|
76
|
+
_classPrivateFieldSet(_countRows, this, countRows);
|
77
|
+
_classPrivateFieldSet(_countColumns, this, countColumns);
|
78
|
+
_classPrivateFieldSet(_rowsLimit, this, rowsLimit);
|
79
|
+
_classPrivateFieldSet(_columnsLimit, this, columnsLimit);
|
80
|
+
_classPrivateFieldSet(_countColumnHeaders, this, countColumnHeaders);
|
111
81
|
}
|
112
82
|
/* eslint-enable jsdoc/require-description-complete-sentence */
|
113
83
|
|
@@ -117,7 +87,7 @@ export class CopyableRangesFactory {
|
|
117
87
|
* @param {CellRange} selectedRange The selection range represented by the CellRange class.
|
118
88
|
*/
|
119
89
|
setSelectedRange(selectedRange) {
|
120
|
-
_classPrivateFieldSet(
|
90
|
+
_classPrivateFieldSet(_selectedRange, this, selectedRange);
|
121
91
|
}
|
122
92
|
|
123
93
|
/**
|
@@ -127,19 +97,19 @@ export class CopyableRangesFactory {
|
|
127
97
|
* @returns {{startRow: number, startCol: number, endRow: number, endCol: number} | null}
|
128
98
|
*/
|
129
99
|
getCellsRange() {
|
130
|
-
if (_classPrivateFieldGet(
|
100
|
+
if (_classPrivateFieldGet(_countRows, this).call(this) === 0 || _classPrivateFieldGet(_countColumns, this).call(this) === 0) {
|
131
101
|
return null;
|
132
102
|
}
|
133
103
|
const {
|
134
104
|
row: startRow,
|
135
105
|
col: startCol
|
136
|
-
} = _classPrivateFieldGet(
|
106
|
+
} = _classPrivateFieldGet(_selectedRange, this).getTopStartCorner();
|
137
107
|
const {
|
138
108
|
row: endRow,
|
139
109
|
col: endCol
|
140
|
-
} = _classPrivateFieldGet(
|
141
|
-
const finalEndRow =
|
142
|
-
const finalEndCol =
|
110
|
+
} = _classPrivateFieldGet(_selectedRange, this).getBottomEndCorner();
|
111
|
+
const finalEndRow = _assertClassBrand(_CopyableRangesFactory_brand, this, _trimRowsRange).call(this, startRow, endRow);
|
112
|
+
const finalEndCol = _assertClassBrand(_CopyableRangesFactory_brand, this, _trimColumnsRange).call(this, startCol, endCol);
|
143
113
|
const isRangeTrimmed = endRow !== finalEndRow || endCol !== finalEndCol;
|
144
114
|
return {
|
145
115
|
isRangeTrimmed,
|
@@ -157,16 +127,16 @@ export class CopyableRangesFactory {
|
|
157
127
|
* @returns {{startRow: number, startCol: number, endRow: number, endCol: number} | null}
|
158
128
|
*/
|
159
129
|
getMostBottomColumnHeadersRange() {
|
160
|
-
if (_classPrivateFieldGet(
|
130
|
+
if (_classPrivateFieldGet(_countColumns, this).call(this) === 0 || _classPrivateFieldGet(_countColumnHeaders, this).call(this) === 0) {
|
161
131
|
return null;
|
162
132
|
}
|
163
133
|
const {
|
164
134
|
col: startCol
|
165
|
-
} = _classPrivateFieldGet(
|
135
|
+
} = _classPrivateFieldGet(_selectedRange, this).getTopStartCorner();
|
166
136
|
const {
|
167
137
|
col: endCol
|
168
|
-
} = _classPrivateFieldGet(
|
169
|
-
const finalEndCol =
|
138
|
+
} = _classPrivateFieldGet(_selectedRange, this).getBottomEndCorner();
|
139
|
+
const finalEndCol = _assertClassBrand(_CopyableRangesFactory_brand, this, _trimColumnsRange).call(this, startCol, endCol);
|
170
140
|
const isRangeTrimmed = endCol !== finalEndCol;
|
171
141
|
return {
|
172
142
|
isRangeTrimmed,
|
@@ -184,20 +154,20 @@ export class CopyableRangesFactory {
|
|
184
154
|
* @returns {{startRow: number, startCol: number, endRow: number, endCol: number} | null}
|
185
155
|
*/
|
186
156
|
getAllColumnHeadersRange() {
|
187
|
-
if (_classPrivateFieldGet(
|
157
|
+
if (_classPrivateFieldGet(_countColumns, this).call(this) === 0 || _classPrivateFieldGet(_countColumnHeaders, this).call(this) === 0) {
|
188
158
|
return null;
|
189
159
|
}
|
190
160
|
const {
|
191
161
|
col: startCol
|
192
|
-
} = _classPrivateFieldGet(
|
162
|
+
} = _classPrivateFieldGet(_selectedRange, this).getTopStartCorner();
|
193
163
|
const {
|
194
164
|
col: endCol
|
195
|
-
} = _classPrivateFieldGet(
|
196
|
-
const finalEndCol =
|
165
|
+
} = _classPrivateFieldGet(_selectedRange, this).getBottomEndCorner();
|
166
|
+
const finalEndCol = _assertClassBrand(_CopyableRangesFactory_brand, this, _trimColumnsRange).call(this, startCol, endCol);
|
197
167
|
const isRangeTrimmed = endCol !== finalEndCol;
|
198
168
|
return {
|
199
169
|
isRangeTrimmed,
|
200
|
-
startRow: -_classPrivateFieldGet(
|
170
|
+
startRow: -_classPrivateFieldGet(_countColumnHeaders, this).call(this),
|
201
171
|
startCol,
|
202
172
|
endRow: -1,
|
203
173
|
endCol: finalEndCol
|
@@ -212,11 +182,18 @@ export class CopyableRangesFactory {
|
|
212
182
|
* @param {Array<{startRow: number, startCol: number, endRow: number, endCol: number}>} ranges The range to process.
|
213
183
|
* @returns {{rows: number[], columns: number[]}}
|
214
184
|
*/
|
215
|
-
function
|
216
|
-
return Math.min(endColumn, Math.max(startColumn + _classPrivateFieldGet(
|
185
|
+
function _trimColumnsRange(startColumn, endColumn) {
|
186
|
+
return Math.min(endColumn, Math.max(startColumn + _classPrivateFieldGet(_columnsLimit, this).call(this) - 1, startColumn));
|
217
187
|
}
|
218
|
-
|
219
|
-
|
188
|
+
/**
|
189
|
+
* Trimmed the rows range to the limit.
|
190
|
+
*
|
191
|
+
* @param {*} startRow The lowest row index in the range.
|
192
|
+
* @param {*} endRow The highest row index in the range.
|
193
|
+
* @returns {number} Returns trimmed row index if it exceeds the limit.
|
194
|
+
*/
|
195
|
+
function _trimRowsRange(startRow, endRow) {
|
196
|
+
return Math.min(endRow, Math.max(startRow + _classPrivateFieldGet(_rowsLimit, this).call(this) - 1, startRow));
|
220
197
|
}
|
221
198
|
export function normalizeRanges(ranges) {
|
222
199
|
const rows = [];
|
@@ -5,7 +5,7 @@ exports.default = bottom;
|
|
5
5
|
var C = _interopRequireWildcard(require("../../../i18n/constants"));
|
6
6
|
var _utils = require("../utils");
|
7
7
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
8
|
-
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 &&
|
8
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
9
9
|
/**
|
10
10
|
* @param {CustomBorders} customBordersPlugin The plugin instance.
|
11
11
|
* @returns {object}
|
@@ -5,7 +5,7 @@ exports.default = left;
|
|
5
5
|
var C = _interopRequireWildcard(require("../../../i18n/constants"));
|
6
6
|
var _utils = require("../utils");
|
7
7
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
8
|
-
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 &&
|
8
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
9
9
|
/**
|
10
10
|
* @param {CustomBorders} customBordersPlugin The plugin instance.
|
11
11
|
* @returns {object}
|
@@ -5,7 +5,7 @@ exports.default = noBorders;
|
|
5
5
|
var C = _interopRequireWildcard(require("../../../i18n/constants"));
|
6
6
|
var _utils = require("../utils");
|
7
7
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
8
|
-
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 &&
|
8
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
9
9
|
/**
|
10
10
|
* @param {CustomBorders} customBordersPlugin The plugin instance.
|
11
11
|
* @returns {object}
|
@@ -5,7 +5,7 @@ exports.default = right;
|
|
5
5
|
var C = _interopRequireWildcard(require("../../../i18n/constants"));
|
6
6
|
var _utils = require("../utils");
|
7
7
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
8
|
-
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 &&
|
8
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
9
9
|
/**
|
10
10
|
* @param {CustomBorders} customBordersPlugin The plugin instance.
|
11
11
|
* @returns {object}
|
@@ -5,7 +5,7 @@ exports.default = top;
|
|
5
5
|
var C = _interopRequireWildcard(require("../../../i18n/constants"));
|
6
6
|
var _utils = require("../utils");
|
7
7
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
8
|
-
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 &&
|
8
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
9
9
|
/**
|
10
10
|
* @param {CustomBorders} customBordersPlugin The plugin instance.
|
11
11
|
* @returns {object}
|
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
|
-
require("core-js/modules/es.array.push.js");
|
5
4
|
require("core-js/modules/es.error.cause.js");
|
5
|
+
require("core-js/modules/es.array.push.js");
|
6
6
|
var _base = require("../base");
|
7
7
|
var _object = require("../../helpers/object");
|
8
8
|
var _number = require("../../helpers/number");
|
@@ -12,13 +12,13 @@ var _contextMenuItem = require("./contextMenuItem");
|
|
12
12
|
var _utils = require("./utils");
|
13
13
|
var _selection = require("../../selection");
|
14
14
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
15
|
-
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 &&
|
15
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
16
16
|
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
17
17
|
function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } }
|
18
18
|
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; }
|
19
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i :
|
19
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
20
20
|
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
21
|
-
function
|
21
|
+
function _assertClassBrand(e, t, n) { if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n; throw new TypeError("Private element is not present on this object"); }
|
22
22
|
const PLUGIN_KEY = exports.PLUGIN_KEY = 'customBorders';
|
23
23
|
const PLUGIN_PRIORITY = exports.PLUGIN_PRIORITY = 90;
|
24
24
|
|
@@ -36,7 +36,7 @@ const PLUGIN_PRIORITY = exports.PLUGIN_PRIORITY = 90;
|
|
36
36
|
* of an array.
|
37
37
|
*
|
38
38
|
* See [`customBorders` configuration option](@/api/options.md#customBorders) or go to
|
39
|
-
* [Custom cell borders demo](@/guides/cell-features/formatting-cells.md#custom-cell-borders) for more examples.
|
39
|
+
* [Custom cell borders demo](@/guides/cell-features/formatting-cells/formatting-cells.md#custom-cell-borders) for more examples.
|
40
40
|
*
|
41
41
|
* @example
|
42
42
|
* ```js
|
@@ -77,21 +77,16 @@ const PLUGIN_PRIORITY = exports.PLUGIN_PRIORITY = 90;
|
|
77
77
|
* ],
|
78
78
|
* ```
|
79
79
|
*/
|
80
|
-
var
|
81
|
-
var _onAfterInit = /*#__PURE__*/new WeakSet();
|
80
|
+
var _CustomBorders_brand = /*#__PURE__*/new WeakSet();
|
82
81
|
class CustomBorders extends _base.BasePlugin {
|
83
82
|
constructor() {
|
84
83
|
super(...arguments);
|
85
|
-
/**
|
86
|
-
* `afterInit` hook callback.
|
87
|
-
*/
|
88
|
-
_classPrivateMethodInitSpec(this, _onAfterInit);
|
89
84
|
/**
|
90
85
|
* Add border options to context menu.
|
91
86
|
*
|
92
87
|
* @param {object} defaultOptions Context menu items.
|
93
88
|
*/
|
94
|
-
_classPrivateMethodInitSpec(this,
|
89
|
+
_classPrivateMethodInitSpec(this, _CustomBorders_brand);
|
95
90
|
/**
|
96
91
|
* Saved borders.
|
97
92
|
*
|
@@ -123,8 +118,8 @@ class CustomBorders extends _base.BasePlugin {
|
|
123
118
|
if (this.enabled) {
|
124
119
|
return;
|
125
120
|
}
|
126
|
-
this.addHook('afterContextMenuDefaultOptions', options =>
|
127
|
-
this.addHook('init', () =>
|
121
|
+
this.addHook('afterContextMenuDefaultOptions', options => _assertClassBrand(_CustomBorders_brand, this, _onAfterContextMenuDefaultOptions).call(this, options));
|
122
|
+
this.addHook('init', () => _assertClassBrand(_CustomBorders_brand, this, _onAfterInit).call(this));
|
128
123
|
super.enablePlugin();
|
129
124
|
}
|
130
125
|
|
@@ -715,7 +710,7 @@ class CustomBorders extends _base.BasePlugin {
|
|
715
710
|
}
|
716
711
|
}
|
717
712
|
exports.CustomBorders = CustomBorders;
|
718
|
-
function
|
713
|
+
function _onAfterContextMenuDefaultOptions(defaultOptions) {
|
719
714
|
if (!this.hot.getSettings()[PLUGIN_KEY]) {
|
720
715
|
return;
|
721
716
|
}
|
@@ -741,6 +736,9 @@ function _onAfterContextMenuDefaultOptions2(defaultOptions) {
|
|
741
736
|
}
|
742
737
|
});
|
743
738
|
}
|
744
|
-
|
739
|
+
/**
|
740
|
+
* `afterInit` hook callback.
|
741
|
+
*/
|
742
|
+
function _onAfterInit() {
|
745
743
|
this.changeBorderSettings();
|
746
744
|
}
|