handsontable 0.0.0-next-fc6b71a-20231129 → 0.0.0-next-f76fee2-20231130
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/3rdparty/walkontable/src/calculator/constants.js +3 -6
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +1 -2
- package/3rdparty/walkontable/src/calculator/viewportRows.js +1 -2
- package/3rdparty/walkontable/src/cell/coords.js +1 -2
- package/3rdparty/walkontable/src/cell/range.js +1 -2
- package/3rdparty/walkontable/src/event.js +1 -2
- package/3rdparty/walkontable/src/filter/column.js +1 -2
- package/3rdparty/walkontable/src/filter/row.js +1 -2
- package/3rdparty/walkontable/src/index.js +2 -2
- package/3rdparty/walkontable/src/overlay/constants.js +7 -14
- package/3rdparty/walkontable/src/overlays.js +1 -2
- package/3rdparty/walkontable/src/scroll.js +1 -2
- package/3rdparty/walkontable/src/selection/border/border.js +1 -2
- package/3rdparty/walkontable/src/selection/border/constants.js +2 -3
- package/3rdparty/walkontable/src/selection/constants.js +8 -16
- package/3rdparty/walkontable/src/selection/selection.js +1 -2
- package/3rdparty/walkontable/src/table/bottom.js +1 -2
- package/3rdparty/walkontable/src/table/bottomInlineStartCorner.js +1 -2
- package/3rdparty/walkontable/src/table/inlineStart.js +1 -2
- package/3rdparty/walkontable/src/table/master.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/calculatedColumns.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/calculatedRows.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +1 -2
- package/3rdparty/walkontable/src/table/top.js +1 -2
- package/3rdparty/walkontable/src/table/topInlineStartCorner.js +1 -2
- package/3rdparty/walkontable/src/table.js +1 -2
- package/3rdparty/walkontable/src/utils/orderView/constants.js +3 -6
- package/3rdparty/walkontable/src/viewport.js +1 -2
- package/CHANGELOG.md +84 -15
- package/base.js +3 -4
- package/base.mjs +2 -2
- package/cellTypes/autocompleteType/autocompleteType.js +3 -5
- package/cellTypes/checkboxType/checkboxType.js +3 -5
- package/cellTypes/dateType/dateType.js +3 -5
- package/cellTypes/dropdownType/dropdownType.js +3 -5
- package/cellTypes/handsontableType/handsontableType.js +3 -5
- package/cellTypes/numericType/numericType.js +3 -5
- package/cellTypes/passwordType/passwordType.js +3 -5
- package/cellTypes/selectType/selectType.js +3 -5
- package/cellTypes/textType/textType.js +3 -5
- package/cellTypes/timeType/timeType.js +3 -5
- package/core.js +19 -9
- package/core.mjs +19 -9
- package/dataMap/dataMap.js +1 -2
- package/dataMap/dataSource.js +1 -2
- package/dataMap/metaManager/metaSchema.js +11 -11
- package/dataMap/metaManager/metaSchema.mjs +11 -11
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +5147 -5188
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +160 -150
- package/dist/handsontable.js +627 -1038
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +31 -31
- package/dist/languages/all.js +19 -38
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/ar-AR.js +1 -2
- package/dist/languages/cs-CZ.js +1 -2
- package/dist/languages/de-CH.js +1 -2
- package/dist/languages/de-DE.js +1 -2
- package/dist/languages/en-US.js +1 -2
- package/dist/languages/es-MX.js +1 -2
- package/dist/languages/fr-FR.js +1 -2
- package/dist/languages/it-IT.js +1 -2
- package/dist/languages/ja-JP.js +1 -2
- package/dist/languages/ko-KR.js +1 -2
- package/dist/languages/lv-LV.js +1 -2
- package/dist/languages/nb-NO.js +1 -2
- package/dist/languages/nl-NL.js +1 -2
- package/dist/languages/pl-PL.js +1 -2
- package/dist/languages/pt-BR.js +1 -2
- package/dist/languages/ru-RU.js +1 -2
- package/dist/languages/sr-SP.js +1 -2
- package/dist/languages/zh-CN.js +1 -2
- package/dist/languages/zh-TW.js +1 -2
- package/editorManager.js +2 -4
- package/editors/autocompleteEditor/autocompleteEditor.js +1 -2
- package/editors/baseEditor/baseEditor.js +3 -6
- package/editors/checkboxEditor/checkboxEditor.js +1 -2
- package/editors/dateEditor/dateEditor.js +1 -2
- package/editors/dropdownEditor/dropdownEditor.js +1 -2
- package/editors/handsontableEditor/handsontableEditor.js +1 -2
- package/editors/numericEditor/numericEditor.js +1 -2
- package/editors/passwordEditor/passwordEditor.js +1 -2
- package/editors/selectEditor/selectEditor.js +1 -2
- package/editors/textEditor/textEditor.js +1 -2
- package/editors/timeEditor/timeEditor.js +1 -2
- package/eventManager.js +1 -2
- package/helpers/dom/element.js +1 -2
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/helpers/unicode.js +1 -2
- package/i18n/constants.js +84 -166
- package/i18n/languages/ar-AR.js +3 -4
- package/i18n/languages/cs-CZ.js +3 -4
- package/i18n/languages/de-CH.js +3 -4
- package/i18n/languages/de-DE.js +3 -4
- package/i18n/languages/en-US.js +3 -4
- package/i18n/languages/es-MX.js +3 -4
- package/i18n/languages/fr-FR.js +3 -4
- package/i18n/languages/it-IT.js +3 -4
- package/i18n/languages/ja-JP.js +3 -4
- package/i18n/languages/ko-KR.js +3 -4
- package/i18n/languages/lv-LV.js +3 -4
- package/i18n/languages/nb-NO.js +3 -4
- package/i18n/languages/nl-NL.js +3 -4
- package/i18n/languages/pl-PL.js +3 -4
- package/i18n/languages/pt-BR.js +3 -4
- package/i18n/languages/ru-RU.js +3 -4
- package/i18n/languages/sr-SP.js +3 -4
- package/i18n/languages/zh-CN.js +3 -4
- package/i18n/languages/zh-TW.js +3 -4
- package/i18n/registry.js +4 -6
- package/index.js +3 -4
- package/languages/all.js +19 -38
- package/languages/ar-AR.js +1 -2
- package/languages/cs-CZ.js +1 -2
- package/languages/de-CH.js +1 -2
- package/languages/de-DE.js +1 -2
- package/languages/en-US.js +1 -2
- package/languages/es-MX.js +1 -2
- package/languages/fr-FR.js +1 -2
- package/languages/index.js +19 -38
- package/languages/it-IT.js +1 -2
- package/languages/ja-JP.js +1 -2
- package/languages/ko-KR.js +1 -2
- package/languages/lv-LV.js +1 -2
- package/languages/nb-NO.js +1 -2
- package/languages/nl-NL.js +1 -2
- package/languages/pl-PL.js +1 -2
- package/languages/pt-BR.js +1 -2
- package/languages/ru-RU.js +1 -2
- package/languages/sr-SP.js +1 -2
- package/languages/zh-CN.js +1 -2
- package/languages/zh-TW.js +1 -2
- package/mixins/hooksRefRegisterer.js +1 -2
- package/mixins/localHooks.js +1 -2
- package/package.json +1 -1
- package/pluginHooks.js +6 -5
- package/pluginHooks.mjs +5 -3
- package/plugins/autoColumnSize/autoColumnSize.js +2 -4
- package/plugins/autoRowSize/autoRowSize.js +2 -4
- package/plugins/autofill/autofill.js +2 -4
- package/plugins/autofill/utils.js +1 -2
- package/plugins/base/base.js +1 -2
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +2 -4
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +1 -2
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +1 -2
- package/plugins/collapsibleColumns/collapsibleColumns.js +2 -4
- package/plugins/columnSorting/columnSorting.js +4 -8
- package/plugins/columnSorting/sortFunction/checkbox.js +1 -2
- package/plugins/columnSorting/sortFunction/date.js +1 -2
- package/plugins/columnSorting/sortFunction/default.js +1 -2
- package/plugins/columnSorting/sortFunction/numeric.js +1 -2
- package/plugins/columnSorting/sortService/engine.js +3 -6
- package/plugins/columnSorting/utils.js +3 -6
- package/plugins/columnSummary/columnSummary.js +2 -4
- package/plugins/columnSummary/endpoints.js +1 -2
- package/plugins/comments/commentEditor.js +1 -2
- package/plugins/comments/comments.js +6 -12
- package/plugins/comments/contextMenuItem/addEditComment.js +2 -2
- package/plugins/comments/contextMenuItem/readOnlyComment.js +2 -2
- package/plugins/comments/contextMenuItem/removeComment.js +2 -2
- package/plugins/comments/displaySwitch.js +1 -2
- package/plugins/contextMenu/contextMenu.js +2 -4
- package/plugins/contextMenu/predefinedItems/alignment.js +3 -4
- package/plugins/contextMenu/predefinedItems/clearColumn.js +3 -4
- package/plugins/contextMenu/predefinedItems/columnLeft.js +3 -4
- package/plugins/contextMenu/predefinedItems/columnRight.js +3 -4
- package/plugins/contextMenu/predefinedItems/index.js +3 -4
- package/plugins/contextMenu/predefinedItems/noItems.js +1 -2
- package/plugins/contextMenu/predefinedItems/readOnly.js +3 -4
- package/plugins/contextMenu/predefinedItems/redo.js +3 -4
- package/plugins/contextMenu/predefinedItems/removeColumn.js +3 -4
- package/plugins/contextMenu/predefinedItems/removeRow.js +3 -4
- package/plugins/contextMenu/predefinedItems/rowAbove.js +3 -4
- package/plugins/contextMenu/predefinedItems/rowBelow.js +3 -4
- package/plugins/contextMenu/predefinedItems/separator.js +1 -2
- package/plugins/contextMenu/predefinedItems/undo.js +3 -4
- package/plugins/copyPaste/contextMenuItem/cut.js +2 -2
- package/plugins/copyPaste/copyPaste.js +2 -4
- package/plugins/customBorders/contextMenuItem/bottom.js +2 -2
- package/plugins/customBorders/contextMenuItem/left.js +2 -2
- package/plugins/customBorders/contextMenuItem/noBorders.js +2 -2
- package/plugins/customBorders/contextMenuItem/right.js +2 -2
- package/plugins/customBorders/contextMenuItem/top.js +2 -2
- package/plugins/customBorders/customBorders.js +4 -6
- package/plugins/dragToScroll/dragToScroll.js +2 -4
- package/plugins/dropdownMenu/dropdownMenu.js +2 -4
- package/plugins/exportFile/dataProvider.js +1 -2
- package/plugins/exportFile/exportFile.js +4 -6
- package/plugins/exportFile/typeFactory.js +5 -8
- package/plugins/exportFile/types/_base.js +1 -2
- package/plugins/exportFile/types/csv.js +1 -2
- package/plugins/filters/component/actionBar.js +2 -2
- package/plugins/filters/component/condition.js +2 -2
- package/plugins/filters/component/value.js +2 -2
- package/plugins/filters/condition/beginsWith.js +3 -4
- package/plugins/filters/condition/between.js +3 -4
- package/plugins/filters/condition/byValue.js +1 -2
- package/plugins/filters/condition/contains.js +3 -4
- package/plugins/filters/condition/date/after.js +3 -4
- package/plugins/filters/condition/date/before.js +3 -4
- package/plugins/filters/condition/date/today.js +3 -4
- package/plugins/filters/condition/date/tomorrow.js +3 -4
- package/plugins/filters/condition/date/yesterday.js +3 -4
- package/plugins/filters/condition/empty.js +3 -4
- package/plugins/filters/condition/endsWith.js +3 -4
- package/plugins/filters/condition/equal.js +3 -4
- package/plugins/filters/condition/false.js +1 -2
- package/plugins/filters/condition/greaterThan.js +3 -4
- package/plugins/filters/condition/greaterThanOrEqual.js +3 -4
- package/plugins/filters/condition/lessThan.js +3 -4
- package/plugins/filters/condition/lessThanOrEqual.js +3 -4
- package/plugins/filters/condition/none.js +3 -4
- package/plugins/filters/condition/notBetween.js +3 -4
- package/plugins/filters/condition/notContains.js +3 -4
- package/plugins/filters/condition/notEmpty.js +3 -4
- package/plugins/filters/condition/notEqual.js +3 -4
- package/plugins/filters/condition/true.js +1 -2
- package/plugins/filters/conditionCollection.js +1 -2
- package/plugins/filters/conditionRegisterer.js +1 -2
- package/plugins/filters/conditionUpdateObserver.js +1 -2
- package/plugins/filters/constants.js +4 -8
- package/plugins/filters/dataFilter.js +1 -2
- package/plugins/filters/filters.js +4 -6
- package/plugins/filters/logicalOperationRegisterer.js +1 -2
- package/plugins/filters/logicalOperations/conjunction.js +4 -6
- package/plugins/filters/logicalOperations/disjunction.js +4 -6
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +4 -6
- package/plugins/filters/ui/_base.js +2 -2
- package/plugins/filters/ui/multipleSelect.js +3 -4
- package/plugins/filters/ui/select.js +2 -2
- package/plugins/formulas/engine/settings.js +2 -4
- package/plugins/formulas/formulas.js +3 -6
- package/plugins/formulas/indexSyncer/axisSyncer.js +1 -2
- package/plugins/formulas/indexSyncer/index.js +1 -2
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +2 -2
- package/plugins/hiddenColumns/contextMenuItem/showColumn.js +2 -2
- package/plugins/hiddenColumns/hiddenColumns.js +2 -4
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +2 -2
- package/plugins/hiddenRows/contextMenuItem/showRow.js +2 -2
- package/plugins/hiddenRows/hiddenRows.js +2 -4
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +2 -2
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +2 -2
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +2 -4
- package/plugins/manualColumnMove/manualColumnMove.js +2 -4
- package/plugins/manualColumnMove/ui/_base.js +1 -2
- package/plugins/manualColumnMove/ui/backlight.js +1 -2
- package/plugins/manualColumnMove/ui/guideline.js +1 -2
- package/plugins/manualColumnResize/manualColumnResize.js +2 -4
- package/plugins/manualRowMove/manualRowMove.js +2 -4
- package/plugins/manualRowMove/ui/_base.js +1 -2
- package/plugins/manualRowMove/ui/backlight.js +1 -2
- package/plugins/manualRowMove/ui/guideline.js +1 -2
- package/plugins/manualRowResize/manualRowResize.js +2 -4
- package/plugins/mergeCells/calculations/autofill.js +1 -2
- package/plugins/mergeCells/calculations/selection.js +1 -2
- package/plugins/mergeCells/cellCoords.js +1 -2
- package/plugins/mergeCells/cellsCollection.js +1 -2
- package/plugins/mergeCells/contextMenuItem/toggleMerge.js +2 -2
- package/plugins/mergeCells/mergeCells.js +3 -5
- package/plugins/mergeCells/mergeCells.mjs +1 -1
- package/plugins/multiColumnSorting/multiColumnSorting.js +2 -4
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +2 -4
- package/plugins/nestedHeaders/nestedHeaders.js +2 -4
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +1 -2
- package/plugins/nestedHeaders/utils/ghostTable.js +1 -2
- package/plugins/nestedRows/data/dataManager.js +1 -2
- package/plugins/nestedRows/nestedRows.js +2 -4
- package/plugins/nestedRows/ui/_base.js +1 -2
- package/plugins/nestedRows/ui/collapsing.js +1 -2
- package/plugins/nestedRows/ui/contextMenu.js +3 -4
- package/plugins/nestedRows/ui/headers.js +1 -2
- package/plugins/persistentState/persistentState.js +2 -4
- package/plugins/persistentState/storage.js +1 -2
- package/plugins/search/search.js +2 -4
- package/plugins/touchScroll/touchScroll.js +2 -4
- package/plugins/trimRows/trimRows.js +2 -4
- package/plugins/undoRedo/index.js +2 -2
- package/plugins/undoRedo/undoRedo.js +2 -4
- package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -2
- package/renderers/baseRenderer/baseRenderer.js +1 -2
- package/renderers/checkboxRenderer/checkboxRenderer.js +1 -2
- package/renderers/dateRenderer/dateRenderer.js +1 -2
- package/renderers/handsontableRenderer/handsontableRenderer.js +1 -2
- package/renderers/htmlRenderer/htmlRenderer.js +1 -2
- package/renderers/numericRenderer/numericRenderer.js +1 -2
- package/renderers/passwordRenderer/passwordRenderer.js +1 -2
- package/renderers/selectRenderer/selectRenderer.js +1 -2
- package/renderers/textRenderer/textRenderer.js +1 -2
- package/renderers/timeRenderer/timeRenderer.js +1 -2
- package/selection/highlight/highlight.js +1 -2
- package/selection/highlight/visualSelection.js +1 -2
- package/selection/range.js +1 -2
- package/selection/selection.js +3 -4
- package/selection/transformation.js +1 -2
- package/selection/utils.js +5 -10
- package/shortcutContexts/commands/editor/closeAndSave.js +2 -3
- package/shortcutContexts/commands/editor/closeWithoutSaving.js +2 -3
- package/shortcutContexts/commands/editor/fastOpen.js +2 -3
- package/shortcutContexts/commands/editor/open.js +2 -3
- package/shortcutContexts/commands/emptySelectedCells.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/down.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/downByViewportHeight.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/left.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/right.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toColumns.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostBottom.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineEnd.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineStart.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostLeft.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostRight.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostTop.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toRows.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/up.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/upByViewportHeight.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/down.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/downByViewportHeight.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/inlineEnd.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/inlineStart.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/left.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/right.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostBottom.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostBottomInlineEnd.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostInlineEnd.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostInlineStart.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostLeft.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostRight.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostTop.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostTopInlineStart.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/up.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/upByViewportHeight.js +2 -3
- package/shortcutContexts/commands/populateSelectedCellsData.js +2 -3
- package/shortcutContexts/commands/scrollToFocusedCell.js +2 -3
- package/shortcutContexts/commands/selectAllCells.js +2 -3
- package/shortcutContexts/commands/selectAllCellsAndHeaders.js +2 -3
- package/shortcutContexts/constants.js +2 -4
- package/shortcuts/context.js +1 -1
- package/shortcuts/context.mjs +1 -1
- package/shortcuts/manager.js +2 -2
- package/shortcuts/manager.mjs +2 -2
- package/tableView.js +1 -2
- package/utils/dataStructures/linkedList.js +1 -2
- package/utils/dataStructures/priorityMap.js +2 -4
- package/utils/dataStructures/queue.js +1 -2
- package/utils/dataStructures/stack.js +1 -2
- package/utils/dataStructures/tree.js +3 -6
- package/utils/ghostTable.js +1 -2
- package/utils/interval.js +1 -2
- package/utils/rootInstance.js +2 -4
- package/utils/samplesGenerator.js +1 -2
- package/utils/staticRegister.js +1 -2
- package/validators/autocompleteValidator/autocompleteValidator.js +1 -2
- package/validators/dateValidator/dateValidator.js +1 -2
- package/validators/numericValidator/numericValidator.js +1 -2
- package/validators/timeValidator/timeValidator.js +1 -2
@@ -7,15 +7,14 @@ exports.__esModule = true;
|
|
7
7
|
*
|
8
8
|
* @type {number}
|
9
9
|
*/
|
10
|
-
const RENDER_TYPE = 1;
|
10
|
+
const RENDER_TYPE = exports.RENDER_TYPE = 1;
|
11
11
|
/**
|
12
12
|
* Fully visible type calculation calculates rows that are fully visible in the viewport.
|
13
13
|
* This type of calculation is used in scrolling by arrow keys navigation.
|
14
14
|
*
|
15
15
|
* @type {number}
|
16
16
|
*/
|
17
|
-
exports.
|
18
|
-
const FULLY_VISIBLE_TYPE = 2;
|
17
|
+
const FULLY_VISIBLE_TYPE = exports.FULLY_VISIBLE_TYPE = 2;
|
19
18
|
/**
|
20
19
|
* Partially visible type calculation calculates rows that are fully and partially visible in
|
21
20
|
* the viewport. This type of calculation is used to check `endRow` (or `startRow`) with properties
|
@@ -24,6 +23,4 @@ const FULLY_VISIBLE_TYPE = 2;
|
|
24
23
|
*
|
25
24
|
* @type {number}
|
26
25
|
*/
|
27
|
-
exports.
|
28
|
-
const PARTIALLY_VISIBLE_TYPE = 3;
|
29
|
-
exports.PARTIALLY_VISIBLE_TYPE = PARTIALLY_VISIBLE_TYPE;
|
26
|
+
const PARTIALLY_VISIBLE_TYPE = exports.PARTIALLY_VISIBLE_TYPE = 3;
|
@@ -29,6 +29,6 @@ exports.OrderView = _orderView.OrderView;
|
|
29
29
|
exports.SharedOrderView = _orderView.SharedOrderView;
|
30
30
|
var _eventManager = require("../../../eventManager");
|
31
31
|
exports.getListenersCounter = _eventManager.getListenersCounter;
|
32
|
-
function _getRequireWildcardCache(
|
33
|
-
function _interopRequireWildcard(
|
32
|
+
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); }
|
33
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
34
34
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
@@ -4,17 +4,10 @@ exports.__esModule = true;
|
|
4
4
|
/**
|
5
5
|
* @typedef {'top'|'bottom'|'inline_start'|'top_inline_start_corner'|'bottom_inline_start_corner'} CLONE_TYPES_ENUM
|
6
6
|
*/
|
7
|
-
const CLONE_TOP = 'top';
|
8
|
-
exports.
|
9
|
-
const
|
10
|
-
exports.
|
11
|
-
const
|
12
|
-
exports.
|
13
|
-
const
|
14
|
-
exports.CLONE_TOP_INLINE_START_CORNER = CLONE_TOP_INLINE_START_CORNER;
|
15
|
-
const CLONE_BOTTOM_INLINE_START_CORNER = 'bottom_inline_start_corner';
|
16
|
-
exports.CLONE_BOTTOM_INLINE_START_CORNER = CLONE_BOTTOM_INLINE_START_CORNER;
|
17
|
-
const CLONE_TYPES = [CLONE_TOP, CLONE_BOTTOM, CLONE_INLINE_START, CLONE_TOP_INLINE_START_CORNER, CLONE_BOTTOM_INLINE_START_CORNER];
|
18
|
-
exports.CLONE_TYPES = CLONE_TYPES;
|
19
|
-
const CLONE_CLASS_NAMES = new Map([[CLONE_TOP, `ht_clone_${CLONE_TOP}`], [CLONE_BOTTOM, `ht_clone_${CLONE_BOTTOM}`], [CLONE_INLINE_START, `ht_clone_${CLONE_INLINE_START} ht_clone_left`], [CLONE_TOP_INLINE_START_CORNER, `ht_clone_${CLONE_TOP_INLINE_START_CORNER} ht_clone_top_left_corner`], [CLONE_BOTTOM_INLINE_START_CORNER, `ht_clone_${CLONE_BOTTOM_INLINE_START_CORNER} ht_clone_bottom_left_corner`]]);
|
20
|
-
exports.CLONE_CLASS_NAMES = CLONE_CLASS_NAMES;
|
7
|
+
const CLONE_TOP = exports.CLONE_TOP = 'top';
|
8
|
+
const CLONE_BOTTOM = exports.CLONE_BOTTOM = 'bottom';
|
9
|
+
const CLONE_INLINE_START = exports.CLONE_INLINE_START = 'inline_start';
|
10
|
+
const CLONE_TOP_INLINE_START_CORNER = exports.CLONE_TOP_INLINE_START_CORNER = 'top_inline_start_corner';
|
11
|
+
const CLONE_BOTTOM_INLINE_START_CORNER = exports.CLONE_BOTTOM_INLINE_START_CORNER = 'bottom_inline_start_corner';
|
12
|
+
const CLONE_TYPES = exports.CLONE_TYPES = [CLONE_TOP, CLONE_BOTTOM, CLONE_INLINE_START, CLONE_TOP_INLINE_START_CORNER, CLONE_BOTTOM_INLINE_START_CORNER];
|
13
|
+
const CLONE_CLASS_NAMES = exports.CLONE_CLASS_NAMES = new Map([[CLONE_TOP, `ht_clone_${CLONE_TOP}`], [CLONE_BOTTOM, `ht_clone_${CLONE_BOTTOM}`], [CLONE_INLINE_START, `ht_clone_${CLONE_INLINE_START} ht_clone_left`], [CLONE_TOP_INLINE_START_CORNER, `ht_clone_${CLONE_TOP_INLINE_START_CORNER} ht_clone_top_left_corner`], [CLONE_BOTTOM_INLINE_START_CORNER, `ht_clone_${CLONE_BOTTOM_INLINE_START_CORNER} ht_clone_bottom_left_corner`]]);
|
@@ -6,11 +6,10 @@ exports.__esModule = true;
|
|
6
6
|
*
|
7
7
|
* @type {object}
|
8
8
|
*/
|
9
|
-
const CORNER_DEFAULT_STYLE = Object.freeze({
|
9
|
+
const CORNER_DEFAULT_STYLE = exports.CORNER_DEFAULT_STYLE = Object.freeze({
|
10
10
|
width: '6px',
|
11
11
|
height: '6px',
|
12
12
|
borderWidth: '1px',
|
13
13
|
borderStyle: 'solid',
|
14
14
|
borderColor: '#FFF'
|
15
|
-
});
|
16
|
-
exports.CORNER_DEFAULT_STYLE = CORNER_DEFAULT_STYLE;
|
15
|
+
});
|
@@ -7,56 +7,48 @@ exports.__esModule = true;
|
|
7
7
|
*
|
8
8
|
* @type {string}
|
9
9
|
*/
|
10
|
-
const ACTIVE_HEADER_TYPE = 'active-header';
|
10
|
+
const ACTIVE_HEADER_TYPE = exports.ACTIVE_HEADER_TYPE = 'active-header';
|
11
11
|
/**
|
12
12
|
* Selection type that is visible only if the a cell or cells are clicked. If that happened
|
13
13
|
* only the most closest to the cells row or column header is highlighted.
|
14
14
|
*
|
15
15
|
* @type {string}
|
16
16
|
*/
|
17
|
-
exports.
|
18
|
-
const HEADER_TYPE = 'header';
|
17
|
+
const HEADER_TYPE = exports.HEADER_TYPE = 'header';
|
19
18
|
/**
|
20
19
|
* Selection type that is visible when a cell or cells are clicked. The selected cells are
|
21
20
|
* highlighted.
|
22
21
|
*
|
23
22
|
* @type {string}
|
24
23
|
*/
|
25
|
-
exports.
|
26
|
-
const AREA_TYPE = 'area';
|
24
|
+
const AREA_TYPE = exports.AREA_TYPE = 'area';
|
27
25
|
/**
|
28
26
|
* Selection type defines a cell that follows the user (keyboard navigation).
|
29
27
|
*
|
30
28
|
* @type {string}
|
31
29
|
*/
|
32
|
-
exports.
|
33
|
-
const FOCUS_TYPE = 'focus';
|
30
|
+
const FOCUS_TYPE = exports.FOCUS_TYPE = 'focus';
|
34
31
|
/**
|
35
32
|
* Selection type defines borders for the autofill functionality.
|
36
33
|
*
|
37
34
|
* @type {string}
|
38
35
|
*/
|
39
|
-
exports.
|
40
|
-
const FILL_TYPE = 'fill';
|
36
|
+
const FILL_TYPE = exports.FILL_TYPE = 'fill';
|
41
37
|
/**
|
42
38
|
* Selection type defines highlights for the `currentRowClassName` option.
|
43
39
|
*
|
44
40
|
* @type {string}
|
45
41
|
*/
|
46
|
-
exports.
|
47
|
-
const ROW_TYPE = 'row';
|
42
|
+
const ROW_TYPE = exports.ROW_TYPE = 'row';
|
48
43
|
/**
|
49
44
|
* Selection type defines highlights for the `currentColumnClassName` option.
|
50
45
|
*
|
51
46
|
* @type {string}
|
52
47
|
*/
|
53
|
-
exports.
|
54
|
-
const COLUMN_TYPE = 'column';
|
48
|
+
const COLUMN_TYPE = exports.COLUMN_TYPE = 'column';
|
55
49
|
/**
|
56
50
|
* Selection type defines highlights managed by the CustomBorders plugin.
|
57
51
|
*
|
58
52
|
* @type {string}
|
59
53
|
*/
|
60
|
-
exports.
|
61
|
-
const CUSTOM_SELECTION_TYPE = 'custom-selection';
|
62
|
-
exports.CUSTOM_SELECTION_TYPE = CUSTOM_SELECTION_TYPE;
|
54
|
+
const CUSTOM_SELECTION_TYPE = exports.CUSTOM_SELECTION_TYPE = 'custom-selection';
|
@@ -26,5 +26,4 @@ class BottomOverlayTable extends _table.default {
|
|
26
26
|
}
|
27
27
|
(0, _object.mixin)(BottomOverlayTable, _stickyRowsBottom.default);
|
28
28
|
(0, _object.mixin)(BottomOverlayTable, _calculatedColumns.default);
|
29
|
-
var _default = BottomOverlayTable;
|
30
|
-
exports.default = _default;
|
29
|
+
var _default = exports.default = BottomOverlayTable;
|
@@ -27,5 +27,4 @@ class BottomInlineStartCornerOverlayTable extends _table.default {
|
|
27
27
|
}
|
28
28
|
(0, _object.mixin)(BottomInlineStartCornerOverlayTable, _stickyRowsBottom.default);
|
29
29
|
(0, _object.mixin)(BottomInlineStartCornerOverlayTable, _stickyColumnsStart.default);
|
30
|
-
var _default = BottomInlineStartCornerOverlayTable;
|
31
|
-
exports.default = _default;
|
30
|
+
var _default = exports.default = BottomInlineStartCornerOverlayTable;
|
@@ -23,5 +23,4 @@ class InlineStartOverlayTable extends _table.default {
|
|
23
23
|
}
|
24
24
|
(0, _object.mixin)(InlineStartOverlayTable, _calculatedRows.default);
|
25
25
|
(0, _object.mixin)(InlineStartOverlayTable, _stickyColumnsStart.default);
|
26
|
-
var _default = InlineStartOverlayTable;
|
27
|
-
exports.default = _default;
|
26
|
+
var _default = exports.default = InlineStartOverlayTable;
|
@@ -103,5 +103,4 @@ class MasterTable extends _table.default {
|
|
103
103
|
}
|
104
104
|
(0, _object.mixin)(MasterTable, _calculatedRows.default);
|
105
105
|
(0, _object.mixin)(MasterTable, _calculatedColumns.default);
|
106
|
-
var _default = MasterTable;
|
107
|
-
exports.default = _default;
|
106
|
+
var _default = exports.default = MasterTable;
|
@@ -26,5 +26,4 @@ class TopOverlayTable extends _table.default {
|
|
26
26
|
}
|
27
27
|
(0, _object.mixin)(TopOverlayTable, _stickyRowsTop.default);
|
28
28
|
(0, _object.mixin)(TopOverlayTable, _calculatedColumns.default);
|
29
|
-
var _default = TopOverlayTable;
|
30
|
-
exports.default = _default;
|
29
|
+
var _default = exports.default = TopOverlayTable;
|
@@ -27,5 +27,4 @@ class TopInlineStartCornerOverlayTable extends _table.default {
|
|
27
27
|
}
|
28
28
|
(0, _object.mixin)(TopInlineStartCornerOverlayTable, _stickyRowsTop.default);
|
29
29
|
(0, _object.mixin)(TopInlineStartCornerOverlayTable, _stickyColumnsStart.default);
|
30
|
-
var _default = TopInlineStartCornerOverlayTable;
|
31
|
-
exports.default = _default;
|
30
|
+
var _default = exports.default = TopInlineStartCornerOverlayTable;
|
@@ -7,7 +7,7 @@ exports.__esModule = true;
|
|
7
7
|
*
|
8
8
|
* @type {number}
|
9
9
|
*/
|
10
|
-
const WORKING_SPACE_ALL = 0;
|
10
|
+
const WORKING_SPACE_ALL = exports.WORKING_SPACE_ALL = 0;
|
11
11
|
/**
|
12
12
|
* Describes that ViewSizeSet instance share sizes with another instance and
|
13
13
|
* set working space for this instance to 'top' (root node can contain multiple
|
@@ -15,8 +15,7 @@ const WORKING_SPACE_ALL = 0;
|
|
15
15
|
*
|
16
16
|
* @type {number}
|
17
17
|
*/
|
18
|
-
exports.
|
19
|
-
const WORKING_SPACE_TOP = 1;
|
18
|
+
const WORKING_SPACE_TOP = exports.WORKING_SPACE_TOP = 1;
|
20
19
|
/**
|
21
20
|
* Describes that ViewSizeSet instance share sizes with another instance and
|
22
21
|
* set working space for this instance to 'bottom' (root node can contain multiple
|
@@ -24,6 +23,4 @@ const WORKING_SPACE_TOP = 1;
|
|
24
23
|
*
|
25
24
|
* @type {number}
|
26
25
|
*/
|
27
|
-
exports.
|
28
|
-
const WORKING_SPACE_BOTTOM = 2;
|
29
|
-
exports.WORKING_SPACE_BOTTOM = WORKING_SPACE_BOTTOM;
|
26
|
+
const WORKING_SPACE_BOTTOM = exports.WORKING_SPACE_BOTTOM = 2;
|
package/CHANGELOG.md
CHANGED
@@ -9,6 +9,75 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
10
10
|
<!-- UNVERSIONED -->
|
11
11
|
|
12
|
+
## [14.0.0] - 2023-11-22
|
13
|
+
|
14
|
+
### Added
|
15
|
+
- Added a `Ctrl/Cmd + Shift + Space` keyboard shortcut for selecting all cells. [#10237](https://github.com/handsontable/handsontable/pull/10237)
|
16
|
+
- Added support for keyboard navigation in the headers. [#10265](https://github.com/handsontable/handsontable/pull/10265)
|
17
|
+
- Added keyboard shortcuts for selecting all rows and columns along with 4 new hooks. [#10389](https://github.com/handsontable/handsontable/pull/10389)
|
18
|
+
- Added support for collapsing/expanding columns using a keyboard shortcut. [#10404](https://github.com/handsontable/handsontable/pull/10404)
|
19
|
+
- Added support for collapsing/expanding nested rows using a keyboard shortcut. [#10405](https://github.com/handsontable/handsontable/pull/10405)
|
20
|
+
- Added support for column sorting using a keyboard shortcut. [#10410](https://github.com/handsontable/handsontable/pull/10410)
|
21
|
+
- Added keyboard shortcuts for opening the column menu. [#10413](https://github.com/handsontable/handsontable/pull/10413)
|
22
|
+
- Added a keyboard shortcut for opening the context menu. [#10417](https://github.com/handsontable/handsontable/pull/10417)
|
23
|
+
- Added a keyboard shortcut for scrolling the viewport [#10419](https://github.com/handsontable/handsontable/pull/10419)
|
24
|
+
- Added a keyboard shortcut for clearing the filters. [#10420](https://github.com/handsontable/handsontable/pull/10420)
|
25
|
+
- Added a keyboard shortcut for managing cell comments. [#10421](https://github.com/handsontable/handsontable/pull/10421)
|
26
|
+
- Added the ability to traverse the grid within a webpage using the `TAB` key and introduced a new `tabNavigation` option. [#10430](https://github.com/handsontable/handsontable/pull/10430) [#10585](https://github.com/handsontable/handsontable/pull/10585)
|
27
|
+
- Added ARIA tags to the table elements. [#10463](https://github.com/handsontable/handsontable/pull/10463)
|
28
|
+
- Added ARIA tags to the autocomplete editor. [#10524](https://github.com/handsontable/handsontable/pull/10524)
|
29
|
+
- Added test cases to ensure the dropdown editor's ARIA tags are correct. [#10526](https://github.com/handsontable/handsontable/pull/10526)
|
30
|
+
- Added the `aria-label` attribute to the checkbox renderer. [#10539](https://github.com/handsontable/handsontable/pull/10539)
|
31
|
+
- Added keyboard shortcuts and `role` attributes to the filtering menu's links. [#10548](https://github.com/handsontable/handsontable/pull/10548)
|
32
|
+
- Added ARIA tags and improved accessibility of the dropdown menu. [#10541](https://github.com/handsontable/handsontable/pull/10541)
|
33
|
+
- Added the ability to navigate the headers with the keyboard by introducing a new `navigableHeaders` option along with other changes. [#10301](https://github.com/handsontable/handsontable/pull/10301)
|
34
|
+
- Added a new `beforeSelectionHighlightSet` hook that allows modifying logical selection coordinates before they are applied to the rendering engine. [#10513](https://github.com/handsontable/handsontable/pull/10513)
|
35
|
+
- Implemented the `select` renderer and cell type. [#10529](https://github.com/handsontable/handsontable/pull/10529)
|
36
|
+
- Added an accessibility demo for javascript and React. [#10532](https://github.com/handsontable/handsontable/pull/10532)
|
37
|
+
- Added `handsontable` and `date` renderers for their respective cell types to allow adding the a11y attributes. [#10535](https://github.com/handsontable/handsontable/pull/10535)
|
38
|
+
- Added new `beforeColumnWrap` and `beforeRowWrap` hooks. [#10550](https://github.com/handsontable/handsontable/pull/10550)
|
39
|
+
- Add a set of `angular@17` examples to ensure Handsontable works with that Angular version. [#10584](https://github.com/handsontable/handsontable/pull/10584)
|
40
|
+
|
41
|
+
### Changed
|
42
|
+
- **Breaking change**: Changed the way the table reacts to using the "select all cells" methods and shortcuts. [#10461](https://github.com/handsontable/handsontable/pull/10461)
|
43
|
+
- **Breaking change**: Changed the colors of the invalid cells and the arrow buttons of the autocomplete-typed cells. [#10520](https://github.com/handsontable/handsontable/pull/10520)
|
44
|
+
- **Breaking change**: Improved the navigation and accessibility of the Filtering Dropdown Menu. [#10530](https://github.com/handsontable/handsontable/pull/10530)
|
45
|
+
- **Breaking change**: Changed the way Handsontable handles focus by focusing the browser on cell elements. Introduced a new `imeFastEdit` option to minimize the negative effects affecting the "fast edit" feature for the IME users. [#10342](https://github.com/handsontable/handsontable/pull/10342)
|
46
|
+
- Extended the Core's `scrollViewportTo` method to allow disabling of cell auto-snapping. [#10508](https://github.com/handsontable/handsontable/pull/10508)
|
47
|
+
- Improved the keyboard navigation for the context and dropdown menus and added a new `forwardToContext` option to the ShortcutManager. [#10519](https://github.com/handsontable/handsontable/pull/10519)
|
48
|
+
- Upgraded the monorepo to utilize Node 20. [#10468](https://github.com/handsontable/handsontable/pull/10468)
|
49
|
+
- Improved DX by adding an exception to be thrown when trying to activate a shortcut context that has been not yet registered. [#10476](https://github.com/handsontable/handsontable/pull/10476)
|
50
|
+
- Improved the performance of the table for cases when the table is hidden. [#10490](https://github.com/handsontable/handsontable/pull/10490)
|
51
|
+
- Updated the TS definitions for the HiddenRows and HiddenColumns plugins. [#10492](https://github.com/handsontable/handsontable/pull/10492)
|
52
|
+
- Updated the TS definitions for the AutoRowSize and AutoColumnSize plugins. [#10493](https://github.com/handsontable/handsontable/pull/10493)
|
53
|
+
- Updated the TS definitions for the Filters plugin and the Core methods. [#10494](https://github.com/handsontable/handsontable/pull/10494)
|
54
|
+
- Fixed the typescript type definitions in the packages' `package.json` files. [#10509](https://github.com/handsontable/handsontable/issues/10509)
|
55
|
+
- Changed the default styling of the "OK" button in the Filtering Dropdown when it's focus. [#10558](https://github.com/handsontable/handsontable/issues/10558)
|
56
|
+
|
57
|
+
### Fixed
|
58
|
+
- Fixed an issue where copying values containing an ampersand resulted in a wrong values being pasted. [#10472](https://github.com/handsontable/handsontable/pull/10472)
|
59
|
+
- Fixed an issue related to the backlight position misalignment for the `ManualRowMove` and `ManualColumnMove` plugins. [#10475](https://github.com/handsontable/handsontable/pull/10475)
|
60
|
+
- Fixed a problem with row header widths changing sizes after adding/deleting rows. [#10479](https://github.com/handsontable/handsontable/pull/10479)
|
61
|
+
- Fixed a problem with the `offset` helper for elements placed in foreign object contexts. [#10480](https://github.com/handsontable/handsontable/issues/10480)
|
62
|
+
- Fixed problems with size and alignment of the table when placed under elements with the CSS `transform: scale` attribute applied. [#10482](https://github.com/handsontable/handsontable/pull/10482)
|
63
|
+
- Added the missing `updateData` value to the `ChangeSource` type. [#10488](https://github.com/handsontable/handsontable/pull/10488)
|
64
|
+
- Fixed a bug where pressing `Ctrl/Cmd` does not trigger non-contiguous selection. [#10502](https://github.com/handsontable/handsontable/pull/10502)
|
65
|
+
- Fixed a problem with the editor having incorrect width and height. [#10504](https://github.com/handsontable/handsontable/pull/10504)
|
66
|
+
- Fixed visual glitches (unwanted pixels) of the `Autocomplete` editor's list in cases when there were no items. [#10506](https://github.com/handsontable/handsontable/pull/10506)
|
67
|
+
- Fixed the Vue and React demo's dependencies to be able to use the demos with Stackblitz. [#10523](https://github.com/handsontable/handsontable/pull/10523)
|
68
|
+
- Fixed a problem with the merged cells having wrong row heights. [#10500](https://github.com/handsontable/handsontable/pull/10500)
|
69
|
+
- Fixed the accessibility issues in the documentation. [#10574](https://github.com/handsontable/handsontable/pull/10574)
|
70
|
+
- Updated the demos for better accessibility. [#10563](https://github.com/handsontable/handsontable/pull/10563)
|
71
|
+
- Fixed a problem with the text editor's width being calculated incorrectly. [#10590](https://github.com/handsontable/handsontable/pull/10590)
|
72
|
+
- Fixed a problem with two cells being selected after `Ctrl/Cmd + Shift` key combination. [#10622](https://github.com/handsontable/handsontable/pull/10622)
|
73
|
+
|
74
|
+
For more information on Handsontable 14.0.0, see:
|
75
|
+
|
76
|
+
- [Blog post (14.0.0)](https://handsontable.com/blog/whats-new-in-handsontable-14-improvements-to-accessibility)
|
77
|
+
- [Documentation (14.0)](https://handsontable.com/docs/14.0)
|
78
|
+
- [Release notes (14.0.0)](https://handsontable.com/docs/release-notes/#_14-0-0)
|
79
|
+
- [Migration guide (13.1 → 14.0)](https://handsontable.com/docs/migration-from-13.1.0-to-14.0/)
|
80
|
+
|
12
81
|
## [13.1.0] - 2023-08-31
|
13
82
|
|
14
83
|
### Changed
|
@@ -387,7 +456,7 @@ For more information on Handsontable 12.0.1, see:
|
|
387
456
|
- Added an Arabic translation. [#9208](https://github.com/handsontable/handsontable/issues/9208)
|
388
457
|
- Added a new configuration option: `fixedColumnsStart`.
|
389
458
|
[#8760](https://github.com/handsontable/handsontable/issues/8760)
|
390
|
-
- Added a new keyboard shortcut (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd
|
459
|
+
- Added a new keyboard shortcut (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Enter</kbd>) for filling the
|
391
460
|
selected range of cells with the value of the active cell.
|
392
461
|
[#9366](https://github.com/handsontable/handsontable/issues/9366)
|
393
462
|
- Added support for the <kbd>Home</kbd> and <kbd>End</kbd> keys inside cell editors, for moving the
|
@@ -418,23 +487,23 @@ For more information on Handsontable 12.0.1, see:
|
|
418
487
|
[keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts)
|
419
488
|
guide. However, some shortcuts that were not defined explicitly, and were not listed in the
|
420
489
|
documentation, don't work anymore (e.g., <kbd>Enter</kbd> opens a cell's editor, but
|
421
|
-
<kbd>Ctrl</kbd
|
490
|
+
<kbd>Ctrl</kbd>+<kbd>Enter</kbd> doesn't). This change doesn't affect custom keyboard shortcuts.
|
422
491
|
[#8942](https://github.com/handsontable/handsontable/issues/8942)
|
423
492
|
- **Breaking change**: Split a cross-platform modifier key (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>) into two
|
424
493
|
separate keys, to improve keyboard navigation consistency. Now, the <kbd>Cmd</kbd> key triggers
|
425
494
|
actions on macOS where the <kbd>Ctrl</kbd> key triggers actions on Windows. For example, on macOS,
|
426
|
-
<kbd>Ctrl</kbd
|
495
|
+
<kbd>Ctrl</kbd>+<kbd>A</kbd> doesn't work anymore: <kbd>Cmd</kbd>+<kbd>A</kbd> is used
|
427
496
|
instead. [#9369](https://github.com/handsontable/handsontable/issues/9369)
|
428
497
|
- **Breaking change**: Changed the actions of the following
|
429
498
|
[keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/#default-keyboard-shortcuts),
|
430
499
|
to match the usual spreadsheet software behavior, and provide a more intuitive user experience:
|
431
|
-
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd
|
432
|
-
<kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd
|
433
|
-
<kbd>Shift</kbd
|
434
|
-
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd
|
435
|
-
<kbd>→</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd
|
436
|
-
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd
|
437
|
-
<kbd>End</kbd>, <kbd>Shift</kbd
|
500
|
+
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd> +
|
501
|
+
<kbd>↑</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
|
502
|
+
<kbd>Shift</kbd>+<kbd>↓</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>←</kbd>,
|
503
|
+
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>←</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
|
504
|
+
<kbd>→</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>→</kbd>, <kbd>Home</kbd>,
|
505
|
+
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Home</kbd>, <kbd>End</kbd>, <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> +
|
506
|
+
<kbd>End</kbd>, <kbd>Shift</kbd>+<kbd>Page Up</kbd>, and <kbd>Shift</kbd>+<kbd>Page
|
438
507
|
Down</kbd>. [#9363](https://github.com/handsontable/handsontable/issues/9363)
|
439
508
|
[#9364](https://github.com/handsontable/handsontable/issues/9364)
|
440
509
|
[#9365](https://github.com/handsontable/handsontable/issues/9365)
|
@@ -453,11 +522,11 @@ For more information on Handsontable 12.0.1, see:
|
|
453
522
|
|
454
523
|
### Removed
|
455
524
|
|
456
|
-
- **Breaking change**: Removed the <kbd>Cmd</kbd
|
457
|
-
merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd
|
525
|
+
- **Breaking change**: Removed the <kbd>Cmd</kbd>+<kbd>M</kbd> keyboard shortcut (used for cell
|
526
|
+
merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd>+<kbd>M</kbd>
|
458
527
|
keyboard shortcut works the same as before.
|
459
528
|
[#9368](https://github.com/handsontable/handsontable/issues/9368)
|
460
|
-
- **Breaking change**: Removed the <kbd>Shift</kbd
|
529
|
+
- **Breaking change**: Removed the <kbd>Shift</kbd>+<kbd>Page Up</kbd>/<kbd>Page Down</kbd>
|
461
530
|
keyboard shortcuts from the cell editing context.
|
462
531
|
[#9401](https://github.com/handsontable/handsontable/issues/9401)
|
463
532
|
- Dropped support for Internet Explorer 11 and Edge Legacy (the non-Chromium version of Edge).
|
@@ -488,8 +557,8 @@ For more information on Handsontable 12.0.1, see:
|
|
488
557
|
[#5455](https://github.com/handsontable/handsontable/issues/5455)
|
489
558
|
- Fixed a wrong TypeScript definition in the `BasePlugin` class.
|
490
559
|
[#9175](https://github.com/handsontable/handsontable/issues/9175)
|
491
|
-
- Fixed an issue where the <kbd>Ctrl</kbd>/<kbd>Cmd</kbd
|
492
|
-
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd
|
560
|
+
- Fixed an issue where the <kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Z</kbd> and
|
561
|
+
<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>Z</kbd> keyboard shortcuts didn't behave
|
493
562
|
properly inside cell editors. [#9367](https://github.com/handsontable/handsontable/issues/9367)
|
494
563
|
- Fixed an issue where the dropdown menu contained unwanted rectangle elements.
|
495
564
|
[#9240](https://github.com/handsontable/handsontable/issues/9240)
|
package/base.js
CHANGED
@@ -43,8 +43,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
43
43
|
Handsontable.CellCoords = _src.CellCoords;
|
44
44
|
Handsontable.CellRange = _src.CellRange;
|
45
45
|
Handsontable.packageName = 'handsontable';
|
46
|
-
Handsontable.buildDate = "
|
47
|
-
Handsontable.version = "0.0.0-next-
|
46
|
+
Handsontable.buildDate = "30/11/2023 11:40:50";
|
47
|
+
Handsontable.version = "0.0.0-next-f76fee2-20231130";
|
48
48
|
Handsontable.languages = {
|
49
49
|
dictionaryKeys: _registry.dictionaryKeys,
|
50
50
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
@@ -52,5 +52,4 @@ Handsontable.languages = {
|
|
52
52
|
registerLanguageDictionary: _registry.registerLanguageDictionary,
|
53
53
|
getTranslatedPhrase: _registry.getTranslatedPhrase
|
54
54
|
};
|
55
|
-
var _default = Handsontable;
|
56
|
-
exports.default = _default;
|
55
|
+
var _default = exports.default = Handsontable;
|
package/base.mjs
CHANGED
@@ -35,8 +35,8 @@ Handsontable.hooks = Hooks.getSingleton();
|
|
35
35
|
Handsontable.CellCoords = CellCoords;
|
36
36
|
Handsontable.CellRange = CellRange;
|
37
37
|
Handsontable.packageName = 'handsontable';
|
38
|
-
Handsontable.buildDate = "
|
39
|
-
Handsontable.version = "0.0.0-next-
|
38
|
+
Handsontable.buildDate = "30/11/2023 11:40:57";
|
39
|
+
Handsontable.version = "0.0.0-next-f76fee2-20231130";
|
40
40
|
Handsontable.languages = {
|
41
41
|
dictionaryKeys,
|
42
42
|
getLanguageDictionary,
|
@@ -4,12 +4,10 @@ exports.__esModule = true;
|
|
4
4
|
var _autocompleteEditor = require("../../editors/autocompleteEditor");
|
5
5
|
var _autocompleteRenderer = require("../../renderers/autocompleteRenderer");
|
6
6
|
var _autocompleteValidator = require("../../validators/autocompleteValidator");
|
7
|
-
const CELL_TYPE = 'autocomplete';
|
8
|
-
exports.
|
9
|
-
const AutocompleteCellType = {
|
7
|
+
const CELL_TYPE = exports.CELL_TYPE = 'autocomplete';
|
8
|
+
const AutocompleteCellType = exports.AutocompleteCellType = {
|
10
9
|
CELL_TYPE,
|
11
10
|
editor: _autocompleteEditor.AutocompleteEditor,
|
12
11
|
renderer: _autocompleteRenderer.autocompleteRenderer,
|
13
12
|
validator: _autocompleteValidator.autocompleteValidator
|
14
|
-
};
|
15
|
-
exports.AutocompleteCellType = AutocompleteCellType;
|
13
|
+
};
|
@@ -3,11 +3,9 @@
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var _checkboxEditor = require("../../editors/checkboxEditor");
|
5
5
|
var _checkboxRenderer = require("../../renderers/checkboxRenderer");
|
6
|
-
const CELL_TYPE = 'checkbox';
|
7
|
-
exports.
|
8
|
-
const CheckboxCellType = {
|
6
|
+
const CELL_TYPE = exports.CELL_TYPE = 'checkbox';
|
7
|
+
const CheckboxCellType = exports.CheckboxCellType = {
|
9
8
|
CELL_TYPE,
|
10
9
|
editor: _checkboxEditor.CheckboxEditor,
|
11
10
|
renderer: _checkboxRenderer.checkboxRenderer
|
12
|
-
};
|
13
|
-
exports.CheckboxCellType = CheckboxCellType;
|
11
|
+
};
|
@@ -4,13 +4,11 @@ exports.__esModule = true;
|
|
4
4
|
var _dateEditor = require("../../editors/dateEditor");
|
5
5
|
var _dateRenderer = require("../../renderers/dateRenderer");
|
6
6
|
var _dateValidator = require("../../validators/dateValidator");
|
7
|
-
const CELL_TYPE = 'date';
|
8
|
-
exports.
|
9
|
-
const DateCellType = {
|
7
|
+
const CELL_TYPE = exports.CELL_TYPE = 'date';
|
8
|
+
const DateCellType = exports.DateCellType = {
|
10
9
|
CELL_TYPE,
|
11
10
|
editor: _dateEditor.DateEditor,
|
12
11
|
// displays small gray arrow on right side of the cell
|
13
12
|
renderer: _dateRenderer.dateRenderer,
|
14
13
|
validator: _dateValidator.dateValidator
|
15
|
-
};
|
16
|
-
exports.DateCellType = DateCellType;
|
14
|
+
};
|