handsontable 0.0.0-next-9f084c0-20221208 → 0.0.0-next-ff80711-20221214
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/border.js +11 -5
- package/3rdparty/walkontable/src/border.mjs +8 -2
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +10 -1
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +10 -1
- package/3rdparty/walkontable/src/calculator/viewportRows.js +10 -1
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +10 -1
- package/3rdparty/walkontable/src/cell/coords.js +11 -2
- package/3rdparty/walkontable/src/cell/coords.mjs +11 -2
- package/3rdparty/walkontable/src/cell/range.js +11 -2
- package/3rdparty/walkontable/src/cell/range.mjs +11 -2
- package/3rdparty/walkontable/src/core/_base.js +15 -2
- package/3rdparty/walkontable/src/core/_base.mjs +15 -2
- package/3rdparty/walkontable/src/core/clone.js +11 -6
- package/3rdparty/walkontable/src/core/clone.mjs +11 -6
- package/3rdparty/walkontable/src/core/core.js +6 -1
- package/3rdparty/walkontable/src/core/core.mjs +6 -1
- package/3rdparty/walkontable/src/event.js +10 -1
- package/3rdparty/walkontable/src/event.mjs +10 -1
- package/3rdparty/walkontable/src/facade/core.js +14 -1
- package/3rdparty/walkontable/src/facade/core.mjs +14 -1
- package/3rdparty/walkontable/src/filter/column.js +14 -1
- package/3rdparty/walkontable/src/filter/column.mjs +14 -1
- package/3rdparty/walkontable/src/filter/row.js +14 -1
- package/3rdparty/walkontable/src/filter/row.mjs +14 -1
- package/3rdparty/walkontable/src/overlay/_base.js +15 -2
- package/3rdparty/walkontable/src/overlay/_base.mjs +15 -2
- package/3rdparty/walkontable/src/overlay/bottom.js +11 -6
- package/3rdparty/walkontable/src/overlay/bottom.mjs +11 -6
- package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.js +6 -1
- package/3rdparty/walkontable/src/overlay/bottomInlineStartCorner.mjs +6 -1
- package/3rdparty/walkontable/src/overlay/inlineStart.js +6 -1
- package/3rdparty/walkontable/src/overlay/inlineStart.mjs +6 -1
- package/3rdparty/walkontable/src/overlay/top.js +11 -6
- package/3rdparty/walkontable/src/overlay/top.mjs +11 -6
- package/3rdparty/walkontable/src/overlay/topInlineStartCorner.js +11 -6
- package/3rdparty/walkontable/src/overlay/topInlineStartCorner.mjs +11 -6
- package/3rdparty/walkontable/src/overlays.js +14 -2
- package/3rdparty/walkontable/src/overlays.mjs +14 -2
- package/3rdparty/walkontable/src/renderer/_base.js +14 -1
- package/3rdparty/walkontable/src/renderer/_base.mjs +14 -1
- package/3rdparty/walkontable/src/renderer/cells.js +6 -1
- package/3rdparty/walkontable/src/renderer/cells.mjs +6 -1
- package/3rdparty/walkontable/src/renderer/colGroup.js +6 -1
- package/3rdparty/walkontable/src/renderer/colGroup.mjs +6 -1
- package/3rdparty/walkontable/src/renderer/columnHeaders.js +6 -1
- package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +6 -1
- package/3rdparty/walkontable/src/renderer/index.js +14 -1
- package/3rdparty/walkontable/src/renderer/index.mjs +14 -1
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +6 -1
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +6 -1
- package/3rdparty/walkontable/src/renderer/rows.js +8 -3
- package/3rdparty/walkontable/src/renderer/rows.mjs +8 -3
- package/3rdparty/walkontable/src/renderer/table.js +14 -1
- package/3rdparty/walkontable/src/renderer/table.mjs +14 -1
- package/3rdparty/walkontable/src/scroll.js +14 -2
- package/3rdparty/walkontable/src/scroll.mjs +14 -2
- package/3rdparty/walkontable/src/selection.js +9 -4
- package/3rdparty/walkontable/src/selection.mjs +7 -2
- package/3rdparty/walkontable/src/settings.js +15 -2
- package/3rdparty/walkontable/src/settings.mjs +15 -2
- package/3rdparty/walkontable/src/table/bottom.js +6 -1
- package/3rdparty/walkontable/src/table/bottom.mjs +6 -1
- package/3rdparty/walkontable/src/table/bottomInlineStartCorner.js +6 -1
- package/3rdparty/walkontable/src/table/bottomInlineStartCorner.mjs +6 -1
- package/3rdparty/walkontable/src/table/inlineStart.js +6 -1
- package/3rdparty/walkontable/src/table/inlineStart.mjs +6 -1
- package/3rdparty/walkontable/src/table/master.js +6 -1
- package/3rdparty/walkontable/src/table/master.mjs +6 -1
- package/3rdparty/walkontable/src/table/top.js +6 -1
- package/3rdparty/walkontable/src/table/top.mjs +6 -1
- package/3rdparty/walkontable/src/table/topInlineStartCorner.js +6 -1
- package/3rdparty/walkontable/src/table/topInlineStartCorner.mjs +6 -1
- package/3rdparty/walkontable/src/table.js +11 -5
- package/3rdparty/walkontable/src/table.mjs +9 -3
- package/3rdparty/walkontable/src/utils/column.js +10 -1
- package/3rdparty/walkontable/src/utils/column.mjs +10 -1
- package/3rdparty/walkontable/src/utils/nodesPool.js +14 -1
- package/3rdparty/walkontable/src/utils/nodesPool.mjs +14 -1
- package/3rdparty/walkontable/src/utils/orderView/sharedView.js +6 -1
- package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +6 -1
- package/3rdparty/walkontable/src/utils/orderView/view.js +14 -1
- package/3rdparty/walkontable/src/utils/orderView/view.mjs +14 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSize.js +14 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSize.mjs +14 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.js +14 -1
- package/3rdparty/walkontable/src/utils/orderView/viewSizeSet.mjs +14 -1
- package/3rdparty/walkontable/src/utils/row.js +14 -1
- package/3rdparty/walkontable/src/utils/row.mjs +14 -1
- package/3rdparty/walkontable/src/viewport.js +14 -1
- package/3rdparty/walkontable/src/viewport.mjs +14 -1
- package/CHANGELOG.md +172 -66
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +1 -1
- package/core.mjs +1 -1
- package/dataMap/dataMap.js +7 -3
- package/dataMap/dataMap.mjs +5 -1
- package/dataMap/dataSource.js +12 -1
- package/dataMap/dataSource.mjs +12 -1
- package/dataMap/metaManager/index.js +13 -1
- package/dataMap/metaManager/index.mjs +13 -1
- package/dataMap/metaManager/lazyFactoryMap.js +7 -1
- package/dataMap/metaManager/lazyFactoryMap.mjs +7 -1
- package/dataMap/metaManager/metaLayers/cellMeta.js +9 -3
- package/dataMap/metaManager/metaLayers/cellMeta.mjs +7 -1
- package/dataMap/metaManager/metaLayers/columnMeta.js +14 -1
- package/dataMap/metaManager/metaLayers/columnMeta.mjs +14 -1
- package/dataMap/metaManager/metaLayers/globalMeta.js +15 -4
- package/dataMap/metaManager/metaLayers/globalMeta.mjs +15 -4
- package/dataMap/metaManager/metaLayers/tableMeta.js +14 -1
- package/dataMap/metaManager/metaLayers/tableMeta.mjs +14 -1
- package/dataMap/metaManager/mods/dynamicCellMeta.js +10 -1
- package/dataMap/metaManager/mods/dynamicCellMeta.mjs +10 -1
- package/dataMap/metaManager/mods/extendMetaProperties.js +10 -1
- package/dataMap/metaManager/mods/extendMetaProperties.mjs +10 -1
- package/dist/handsontable.css +9 -9
- package/dist/handsontable.full.css +9 -9
- package/dist/handsontable.full.js +2868 -7667
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +76 -82
- package/dist/handsontable.js +1796 -1759
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/dist/languages/all.js +106 -60
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/ar-AR.js +50 -4
- package/dist/languages/ar-AR.min.js +1 -1
- package/dist/languages/cs-CZ.js +52 -6
- package/dist/languages/cs-CZ.min.js +1 -1
- package/dist/languages/de-CH.js +52 -6
- package/dist/languages/de-CH.min.js +1 -1
- package/dist/languages/de-DE.js +53 -7
- package/dist/languages/de-DE.min.js +1 -1
- package/dist/languages/en-US.js +55 -9
- package/dist/languages/en-US.min.js +1 -1
- package/dist/languages/es-MX.js +55 -9
- package/dist/languages/es-MX.min.js +1 -1
- package/dist/languages/fr-FR.js +55 -9
- package/dist/languages/fr-FR.min.js +1 -1
- package/dist/languages/it-IT.js +55 -9
- package/dist/languages/it-IT.min.js +1 -1
- package/dist/languages/ja-JP.js +83 -33
- package/dist/languages/ja-JP.min.js +1 -1
- package/dist/languages/ko-KR.js +84 -33
- package/dist/languages/ko-KR.min.js +1 -1
- package/dist/languages/lv-LV.js +85 -33
- package/dist/languages/lv-LV.min.js +1 -1
- package/dist/languages/nb-NO.js +86 -33
- package/dist/languages/nb-NO.min.js +1 -1
- package/dist/languages/nl-NL.js +87 -33
- package/dist/languages/nl-NL.min.js +1 -1
- package/dist/languages/pl-PL.js +88 -33
- package/dist/languages/pl-PL.min.js +1 -1
- package/dist/languages/pt-BR.js +68 -19
- package/dist/languages/pt-BR.min.js +1 -1
- package/dist/languages/ru-RU.js +68 -19
- package/dist/languages/ru-RU.min.js +1 -1
- package/dist/languages/sr-SP.js +55 -6
- package/dist/languages/sr-SP.min.js +1 -1
- package/dist/languages/zh-CN.js +55 -6
- package/dist/languages/zh-CN.min.js +1 -1
- package/dist/languages/zh-TW.js +55 -6
- package/dist/languages/zh-TW.min.js +1 -1
- package/editorManager.js +11 -5
- package/editorManager.mjs +8 -2
- package/editors/autocompleteEditor/autocompleteEditor.js +10 -5
- package/editors/autocompleteEditor/autocompleteEditor.mjs +9 -4
- package/editors/baseEditor/baseEditor.js +11 -6
- package/editors/baseEditor/baseEditor.mjs +10 -5
- package/editors/checkboxEditor/checkboxEditor.js +6 -1
- package/editors/checkboxEditor/checkboxEditor.mjs +6 -1
- package/editors/dateEditor/dateEditor.js +6 -1
- package/editors/dateEditor/dateEditor.mjs +6 -1
- package/editors/dropdownEditor/dropdownEditor.js +6 -1
- package/editors/dropdownEditor/dropdownEditor.mjs +6 -1
- package/editors/handsontableEditor/handsontableEditor.js +6 -1
- package/editors/handsontableEditor/handsontableEditor.mjs +6 -1
- package/editors/numericEditor/numericEditor.js +6 -1
- package/editors/numericEditor/numericEditor.mjs +6 -1
- package/editors/passwordEditor/passwordEditor.js +6 -1
- package/editors/passwordEditor/passwordEditor.mjs +6 -1
- package/editors/selectEditor/selectEditor.js +6 -1
- package/editors/selectEditor/selectEditor.mjs +6 -1
- package/editors/textEditor/textEditor.js +7 -2
- package/editors/textEditor/textEditor.mjs +7 -2
- package/editors/timeEditor/timeEditor.js +6 -1
- package/editors/timeEditor/timeEditor.mjs +6 -1
- package/eventManager.js +14 -1
- package/eventManager.mjs +14 -1
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/helpers/object.js +6 -1
- package/helpers/object.mjs +6 -1
- package/i18n/languages/ar-AR.js +12 -7
- package/i18n/languages/ar-AR.mjs +14 -1
- package/i18n/languages/cs-CZ.js +12 -7
- package/i18n/languages/cs-CZ.mjs +14 -1
- package/i18n/languages/de-CH.js +12 -7
- package/i18n/languages/de-CH.mjs +14 -1
- package/i18n/languages/de-DE.js +12 -7
- package/i18n/languages/de-DE.mjs +14 -1
- package/i18n/languages/en-US.js +12 -7
- package/i18n/languages/en-US.mjs +14 -1
- package/i18n/languages/es-MX.js +12 -7
- package/i18n/languages/es-MX.mjs +14 -1
- package/i18n/languages/fr-FR.js +12 -7
- package/i18n/languages/fr-FR.mjs +14 -1
- package/i18n/languages/it-IT.js +12 -7
- package/i18n/languages/it-IT.mjs +14 -1
- package/i18n/languages/ja-JP.js +12 -7
- package/i18n/languages/ja-JP.mjs +14 -1
- package/i18n/languages/ko-KR.js +12 -7
- package/i18n/languages/ko-KR.mjs +14 -1
- package/i18n/languages/lv-LV.js +12 -7
- package/i18n/languages/lv-LV.mjs +14 -1
- package/i18n/languages/nb-NO.js +12 -7
- package/i18n/languages/nb-NO.mjs +14 -1
- package/i18n/languages/nl-NL.js +12 -7
- package/i18n/languages/nl-NL.mjs +14 -1
- package/i18n/languages/pl-PL.js +12 -7
- package/i18n/languages/pl-PL.mjs +14 -1
- package/i18n/languages/pt-BR.js +12 -7
- package/i18n/languages/pt-BR.mjs +14 -1
- package/i18n/languages/ru-RU.js +12 -7
- package/i18n/languages/ru-RU.mjs +14 -1
- package/i18n/languages/sr-SP.js +12 -7
- package/i18n/languages/sr-SP.mjs +14 -1
- package/i18n/languages/zh-CN.js +12 -7
- package/i18n/languages/zh-CN.mjs +14 -1
- package/i18n/languages/zh-TW.js +12 -7
- package/i18n/languages/zh-TW.mjs +14 -1
- package/languages/all.js +106 -60
- package/languages/ar-AR.js +50 -4
- package/languages/ar-AR.mjs +14 -1
- package/languages/cs-CZ.js +52 -6
- package/languages/cs-CZ.mjs +14 -1
- package/languages/de-CH.js +52 -6
- package/languages/de-CH.mjs +14 -1
- package/languages/de-DE.js +53 -7
- package/languages/de-DE.mjs +14 -1
- package/languages/en-US.js +55 -9
- package/languages/en-US.mjs +14 -1
- package/languages/es-MX.js +55 -9
- package/languages/es-MX.mjs +14 -1
- package/languages/fr-FR.js +55 -9
- package/languages/fr-FR.mjs +14 -1
- package/languages/index.js +106 -60
- package/languages/it-IT.js +55 -9
- package/languages/it-IT.mjs +14 -1
- package/languages/ja-JP.js +83 -33
- package/languages/ja-JP.mjs +14 -1
- package/languages/ko-KR.js +84 -33
- package/languages/ko-KR.mjs +14 -1
- package/languages/lv-LV.js +85 -33
- package/languages/lv-LV.mjs +14 -1
- package/languages/nb-NO.js +86 -33
- package/languages/nb-NO.mjs +14 -1
- package/languages/nl-NL.js +87 -33
- package/languages/nl-NL.mjs +14 -1
- package/languages/pl-PL.js +88 -33
- package/languages/pl-PL.mjs +14 -1
- package/languages/pt-BR.js +68 -19
- package/languages/pt-BR.mjs +14 -1
- package/languages/ru-RU.js +68 -19
- package/languages/ru-RU.mjs +14 -1
- package/languages/sr-SP.js +55 -6
- package/languages/sr-SP.mjs +14 -1
- package/languages/zh-CN.js +55 -6
- package/languages/zh-CN.mjs +14 -1
- package/languages/zh-TW.js +55 -6
- package/languages/zh-TW.mjs +14 -1
- package/package.json +1 -1
- package/pluginHooks.js +10 -1
- package/pluginHooks.mjs +10 -1
- package/plugins/autoColumnSize/autoColumnSize.js +7 -2
- package/plugins/autoColumnSize/autoColumnSize.mjs +7 -2
- package/plugins/autoRowSize/autoRowSize.js +7 -2
- package/plugins/autoRowSize/autoRowSize.mjs +7 -2
- package/plugins/autofill/autofill.js +7 -2
- package/plugins/autofill/autofill.mjs +7 -2
- package/plugins/base/base.js +8 -2
- package/plugins/base/base.mjs +8 -2
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +6 -1
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +6 -1
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +6 -1
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.mjs +6 -1
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +6 -1
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.mjs +6 -1
- package/plugins/collapsibleColumns/collapsibleColumns.js +10 -5
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +9 -4
- package/plugins/columnSorting/columnSorting.js +8 -4
- package/plugins/columnSorting/columnSorting.mjs +8 -4
- package/plugins/columnSorting/columnStatesManager.js +12 -6
- package/plugins/columnSorting/columnStatesManager.mjs +9 -3
- package/plugins/columnSummary/columnSummary.js +8 -3
- package/plugins/columnSummary/columnSummary.mjs +8 -3
- package/plugins/columnSummary/endpoints.js +13 -1
- package/plugins/columnSummary/endpoints.mjs +13 -1
- package/plugins/comments/commentEditor.js +14 -1
- package/plugins/comments/commentEditor.mjs +14 -1
- package/plugins/comments/comments.js +7 -2
- package/plugins/comments/comments.mjs +7 -2
- package/plugins/comments/displaySwitch.js +14 -1
- package/plugins/comments/displaySwitch.mjs +14 -1
- package/plugins/contextMenu/commandExecutor.js +14 -1
- package/plugins/contextMenu/commandExecutor.mjs +14 -1
- package/plugins/contextMenu/contextMenu.js +6 -1
- package/plugins/contextMenu/contextMenu.mjs +6 -1
- package/plugins/contextMenu/cursor.js +14 -1
- package/plugins/contextMenu/cursor.mjs +14 -1
- package/plugins/contextMenu/itemsFactory.js +14 -1
- package/plugins/contextMenu/itemsFactory.mjs +14 -1
- package/plugins/contextMenu/menu.js +14 -3
- package/plugins/contextMenu/menu.mjs +13 -2
- package/plugins/contextMenu/predefinedItems/removeColumn.js +1 -1
- package/plugins/contextMenu/predefinedItems/removeColumn.mjs +1 -1
- package/plugins/contextMenu/predefinedItems/removeRow.js +1 -1
- package/plugins/contextMenu/predefinedItems/removeRow.mjs +1 -1
- package/plugins/contextMenu/predefinedItems.js +12 -7
- package/plugins/contextMenu/predefinedItems.mjs +14 -1
- package/plugins/copyPaste/clipboardData.js +14 -1
- package/plugins/copyPaste/clipboardData.mjs +14 -1
- package/plugins/copyPaste/copyPaste.js +10 -5
- package/plugins/copyPaste/copyPaste.mjs +10 -5
- package/plugins/copyPaste/copyableRanges.js +10 -1
- package/plugins/copyPaste/copyableRanges.mjs +10 -1
- package/plugins/copyPaste/focusableElement.js +10 -1
- package/plugins/copyPaste/focusableElement.mjs +10 -1
- package/plugins/copyPaste/pasteEvent.js +14 -1
- package/plugins/copyPaste/pasteEvent.mjs +14 -1
- package/plugins/customBorders/customBorders.js +12 -7
- package/plugins/customBorders/customBorders.mjs +11 -6
- package/plugins/dragToScroll/dragToScroll.js +6 -1
- package/plugins/dragToScroll/dragToScroll.mjs +6 -1
- package/plugins/dropdownMenu/dropdownMenu.js +6 -1
- package/plugins/dropdownMenu/dropdownMenu.mjs +6 -1
- package/plugins/exportFile/dataProvider.js +11 -5
- package/plugins/exportFile/dataProvider.mjs +8 -2
- package/plugins/exportFile/exportFile.js +8 -3
- package/plugins/exportFile/exportFile.mjs +6 -1
- package/plugins/exportFile/typeFactory.js +14 -1
- package/plugins/exportFile/typeFactory.mjs +14 -1
- package/plugins/exportFile/types/_base.js +14 -1
- package/plugins/exportFile/types/_base.mjs +14 -1
- package/plugins/exportFile/types/csv.js +6 -1
- package/plugins/exportFile/types/csv.mjs +6 -1
- package/plugins/filters/component/_base.js +14 -1
- package/plugins/filters/component/_base.mjs +14 -1
- package/plugins/filters/component/actionBar.js +8 -3
- package/plugins/filters/component/actionBar.mjs +6 -1
- package/plugins/filters/component/condition.js +8 -3
- package/plugins/filters/component/condition.mjs +6 -1
- package/plugins/filters/component/operators.js +8 -3
- package/plugins/filters/component/operators.mjs +8 -3
- package/plugins/filters/component/value.js +7 -2
- package/plugins/filters/component/value.mjs +7 -2
- package/plugins/filters/condition/beginsWith.js +1 -1
- package/plugins/filters/condition/beginsWith.mjs +1 -1
- package/plugins/filters/condition/between.js +1 -1
- package/plugins/filters/condition/between.mjs +1 -1
- package/plugins/filters/condition/byValue.js +1 -1
- package/plugins/filters/condition/byValue.mjs +1 -1
- package/plugins/filters/condition/contains.js +1 -1
- package/plugins/filters/condition/contains.mjs +1 -1
- package/plugins/filters/condition/date/after.js +1 -1
- package/plugins/filters/condition/date/after.mjs +1 -1
- package/plugins/filters/condition/date/before.js +1 -1
- package/plugins/filters/condition/date/before.mjs +1 -1
- package/plugins/filters/condition/endsWith.js +1 -1
- package/plugins/filters/condition/endsWith.mjs +1 -1
- package/plugins/filters/condition/equal.js +1 -1
- package/plugins/filters/condition/equal.mjs +1 -1
- package/plugins/filters/condition/greaterThan.js +1 -1
- package/plugins/filters/condition/greaterThan.mjs +1 -1
- package/plugins/filters/condition/greaterThanOrEqual.js +1 -1
- package/plugins/filters/condition/greaterThanOrEqual.mjs +1 -1
- package/plugins/filters/condition/lessThan.js +1 -1
- package/plugins/filters/condition/lessThan.mjs +1 -1
- package/plugins/filters/condition/lessThanOrEqual.js +1 -1
- package/plugins/filters/condition/lessThanOrEqual.mjs +1 -1
- package/plugins/filters/conditionCollection.js +10 -4
- package/plugins/filters/conditionCollection.mjs +18 -12
- package/plugins/filters/conditionUpdateObserver.js +13 -1
- package/plugins/filters/conditionUpdateObserver.mjs +13 -1
- package/plugins/filters/constants.js +14 -1
- package/plugins/filters/constants.mjs +14 -1
- package/plugins/filters/dataFilter.js +14 -1
- package/plugins/filters/dataFilter.mjs +14 -1
- package/plugins/filters/filters.js +7 -2
- package/plugins/filters/filters.mjs +7 -2
- package/plugins/filters/ui/_base.js +12 -7
- package/plugins/filters/ui/_base.mjs +14 -1
- package/plugins/filters/ui/input.js +6 -1
- package/plugins/filters/ui/input.mjs +6 -1
- package/plugins/filters/ui/link.js +6 -1
- package/plugins/filters/ui/link.mjs +6 -1
- package/plugins/filters/ui/multipleSelect.js +6 -1
- package/plugins/filters/ui/multipleSelect.mjs +6 -1
- package/plugins/filters/ui/radioInput.js +6 -1
- package/plugins/filters/ui/radioInput.mjs +6 -1
- package/plugins/filters/ui/select.js +6 -1
- package/plugins/filters/ui/select.mjs +6 -1
- package/plugins/formulas/engine/settings.js +12 -1
- package/plugins/formulas/engine/settings.mjs +12 -1
- package/plugins/formulas/formulas.js +10 -5
- package/plugins/formulas/formulas.mjs +10 -5
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +1 -1
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.mjs +1 -1
- package/plugins/hiddenColumns/hiddenColumns.js +5 -1
- package/plugins/hiddenColumns/hiddenColumns.mjs +5 -1
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +1 -1
- package/plugins/hiddenRows/contextMenuItem/hideRow.mjs +1 -1
- package/plugins/hiddenRows/hiddenRows.js +5 -1
- package/plugins/hiddenRows/hiddenRows.mjs +5 -1
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +1 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +1 -1
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +6 -1
- package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +6 -1
- package/plugins/manualColumnMove/manualColumnMove.js +6 -1
- package/plugins/manualColumnMove/manualColumnMove.mjs +6 -1
- package/plugins/manualColumnMove/ui/_base.js +14 -1
- package/plugins/manualColumnMove/ui/_base.mjs +14 -1
- package/plugins/manualColumnMove/ui/backlight.js +6 -1
- package/plugins/manualColumnMove/ui/backlight.mjs +6 -1
- package/plugins/manualColumnMove/ui/guideline.js +6 -1
- package/plugins/manualColumnMove/ui/guideline.mjs +6 -1
- package/plugins/manualColumnResize/manualColumnResize.js +6 -1
- package/plugins/manualColumnResize/manualColumnResize.mjs +6 -1
- package/plugins/manualRowMove/manualRowMove.js +6 -1
- package/plugins/manualRowMove/manualRowMove.mjs +6 -1
- package/plugins/manualRowMove/ui/_base.js +14 -1
- package/plugins/manualRowMove/ui/_base.mjs +14 -1
- package/plugins/manualRowMove/ui/backlight.js +6 -1
- package/plugins/manualRowMove/ui/backlight.mjs +6 -1
- package/plugins/manualRowMove/ui/guideline.js +6 -1
- package/plugins/manualRowMove/ui/guideline.mjs +6 -1
- package/plugins/manualRowResize/manualRowResize.js +6 -1
- package/plugins/manualRowResize/manualRowResize.mjs +6 -1
- package/plugins/mergeCells/calculations/autofill.js +11 -5
- package/plugins/mergeCells/calculations/autofill.mjs +8 -2
- package/plugins/mergeCells/calculations/selection.js +14 -1
- package/plugins/mergeCells/calculations/selection.mjs +14 -1
- package/plugins/mergeCells/cellCoords.js +14 -1
- package/plugins/mergeCells/cellCoords.mjs +14 -1
- package/plugins/mergeCells/cellsCollection.js +10 -4
- package/plugins/mergeCells/cellsCollection.mjs +7 -1
- package/plugins/mergeCells/mergeCells.js +7 -2
- package/plugins/mergeCells/mergeCells.mjs +7 -2
- package/plugins/multiColumnSorting/multiColumnSorting.js +6 -1
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +6 -1
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +6 -1
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +6 -1
- package/plugins/nestedHeaders/nestedHeaders.js +10 -5
- package/plugins/nestedHeaders/nestedHeaders.mjs +17 -12
- package/plugins/nestedHeaders/stateManager/headersTree.js +9 -3
- package/plugins/nestedHeaders/stateManager/headersTree.mjs +9 -3
- package/plugins/nestedHeaders/stateManager/index.js +11 -3
- package/plugins/nestedHeaders/stateManager/index.mjs +17 -9
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +11 -3
- package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +17 -9
- package/plugins/nestedHeaders/utils/ghostTable.js +15 -2
- package/plugins/nestedHeaders/utils/ghostTable.mjs +15 -2
- package/plugins/nestedRows/data/dataManager.js +8 -3
- package/plugins/nestedRows/data/dataManager.mjs +6 -1
- package/plugins/nestedRows/nestedRows.js +6 -1
- package/plugins/nestedRows/nestedRows.mjs +6 -1
- package/plugins/nestedRows/ui/_base.js +14 -1
- package/plugins/nestedRows/ui/_base.mjs +14 -1
- package/plugins/nestedRows/ui/collapsing.js +6 -1
- package/plugins/nestedRows/ui/collapsing.mjs +6 -1
- package/plugins/nestedRows/ui/contextMenu.js +7 -2
- package/plugins/nestedRows/ui/contextMenu.mjs +6 -1
- package/plugins/nestedRows/ui/headers.js +6 -1
- package/plugins/nestedRows/ui/headers.mjs +6 -1
- package/plugins/nestedRows/utils/rowMoveController.js +9 -3
- package/plugins/nestedRows/utils/rowMoveController.mjs +18 -12
- package/plugins/persistentState/persistentState.js +6 -1
- package/plugins/persistentState/persistentState.mjs +6 -1
- package/plugins/persistentState/storage.js +14 -1
- package/plugins/persistentState/storage.mjs +14 -1
- package/plugins/registry.js +1 -1
- package/plugins/registry.mjs +1 -1
- package/plugins/search/search.js +6 -1
- package/plugins/search/search.mjs +6 -1
- package/plugins/touchScroll/touchScroll.js +6 -1
- package/plugins/touchScroll/touchScroll.mjs +6 -1
- package/plugins/trimRows/trimRows.js +5 -1
- package/plugins/trimRows/trimRows.mjs +5 -1
- package/plugins/undoRedo/undoRedo.js +7 -2
- package/plugins/undoRedo/undoRedo.mjs +7 -2
- package/selection/highlight/highlight.js +8 -2
- package/selection/highlight/highlight.mjs +8 -2
- package/selection/highlight/types/activeHeader.js +13 -2
- package/selection/highlight/types/activeHeader.mjs +13 -2
- package/selection/highlight/types/area.js +13 -2
- package/selection/highlight/types/area.mjs +13 -2
- package/selection/highlight/types/cell.js +13 -2
- package/selection/highlight/types/cell.mjs +13 -2
- package/selection/highlight/types/customSelection.js +13 -2
- package/selection/highlight/types/customSelection.mjs +13 -2
- package/selection/highlight/types/fill.js +14 -3
- package/selection/highlight/types/fill.mjs +14 -3
- package/selection/highlight/types/header.js +13 -2
- package/selection/highlight/types/header.mjs +13 -2
- package/selection/highlight/types/index.js +14 -3
- package/selection/highlight/types/index.mjs +14 -3
- package/selection/highlight/visualSelection.js +11 -6
- package/selection/highlight/visualSelection.mjs +11 -6
- package/selection/range.js +7 -1
- package/selection/range.mjs +7 -1
- package/selection/selection.js +9 -4
- package/selection/selection.mjs +14 -9
- package/selection/transformation.js +14 -1
- package/selection/transformation.mjs +14 -1
- package/selection/utils.js +1 -1
- package/selection/utils.mjs +1 -1
- package/shortcuts/context.js +1 -1
- package/shortcuts/context.mjs +1 -1
- package/tableView.js +8 -3
- package/tableView.mjs +8 -3
- package/translations/changesObservable/observable.js +10 -1
- package/translations/changesObservable/observable.mjs +10 -1
- package/translations/changesObservable/observer.js +10 -1
- package/translations/changesObservable/observer.mjs +10 -1
- package/translations/indexMapper.js +9 -3
- package/translations/indexMapper.mjs +14 -8
- package/translations/mapCollections/aggregatedCollection.js +6 -1
- package/translations/mapCollections/aggregatedCollection.mjs +6 -1
- package/translations/mapCollections/mapCollection.js +10 -1
- package/translations/mapCollections/mapCollection.mjs +10 -1
- package/translations/maps/hidingMap.js +6 -1
- package/translations/maps/hidingMap.mjs +6 -1
- package/translations/maps/indexMap.js +14 -1
- package/translations/maps/indexMap.mjs +14 -1
- package/translations/maps/indexesSequence.js +6 -1
- package/translations/maps/indexesSequence.mjs +6 -1
- package/translations/maps/linkedPhysicalIndexToValueMap.js +10 -5
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +9 -4
- package/translations/maps/physicalIndexToValueMap.js +6 -1
- package/translations/maps/physicalIndexToValueMap.mjs +6 -1
- package/translations/maps/trimmingMap.js +6 -1
- package/translations/maps/trimmingMap.mjs +6 -1
- package/utils/dataStructures/linkedList.js +14 -1
- package/utils/dataStructures/linkedList.mjs +14 -1
- package/utils/dataStructures/priorityMap.js +1 -1
- package/utils/dataStructures/priorityMap.mjs +1 -1
- package/utils/dataStructures/queue.js +14 -1
- package/utils/dataStructures/queue.mjs +14 -1
- package/utils/dataStructures/stack.js +14 -1
- package/utils/dataStructures/stack.mjs +14 -1
- package/utils/dataStructures/tree.js +8 -2
- package/utils/dataStructures/tree.mjs +8 -2
- package/utils/dataStructures/uniqueMap.js +1 -1
- package/utils/dataStructures/uniqueMap.mjs +1 -1
- package/utils/ghostTable.js +10 -4
- package/utils/ghostTable.mjs +8 -2
- package/utils/interval.js +14 -1
- package/utils/interval.mjs +14 -1
- package/utils/samplesGenerator.js +11 -2
- package/utils/samplesGenerator.mjs +11 -2
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# Handsontable changelog
|
2
|
+
|
2
3
|
All notable changes to this project will be documented in this file.
|
3
4
|
|
4
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
@@ -8,32 +9,72 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
8
9
|
|
9
10
|
<!-- UNVERSIONED -->
|
10
11
|
|
12
|
+
## [12.3.0] - 2022-12-14
|
13
|
+
|
14
|
+
For more information on this release, see:
|
15
|
+
- [Blog post](https://handsontable.com/blog/articles/2022/12/handsontable-12-3-0-copying-cells-with-headers)
|
16
|
+
- [Documentation (12.3)](https://handsontable.com/docs/12.3/)
|
17
|
+
- [Release notes](https://handsontable.com/docs/release-notes/#_12-3-0)
|
18
|
+
|
19
|
+
### Added
|
20
|
+
|
21
|
+
- Added a new feature that lets you copy the contents of column headers by using 3 new context menu options: "Copy with headers", "Copy with group headers", and "Copy headers only". [#2288](https://github.com/handsontable/handsontable/issues/2288)
|
22
|
+
- Added 4 new API methods for copying column headers programmatically: `copyCellsOnly()`, `copyWithColumnHeaders()`, `copyWithAllColumnHeaders()`, and `copyColumnHeadersOnly()`. [#2288](https://github.com/handsontable/handsontable/issues/2288)
|
23
|
+
- Added missing TypeScript definitions of the `CellCoords` and `CellRange` classes, which are used in the arguments of some of the APIs. [#9755](https://github.com/handsontable/handsontable/issues/9755)
|
24
|
+
- Added missing TypeScript definitions for the following Handsontable hooks: `beforeColumnFreeze`, `afterColumnFreeze`, `beforeColumnUnfreeze`, and `afterColumnUnfreeze`. [#9859](https://github.com/handsontable/handsontable/issues/9859)
|
25
|
+
|
26
|
+
### Fixed
|
27
|
+
|
28
|
+
- Fixed an issue where the `UndoRedo` plugin didn't work properly with preconfigured columns. [#10108](https://github.com/handsontable/handsontable/pull/10108)
|
29
|
+
- Fixed an issue where formulas inserted programmatically by using `updateData()` were not evaluated. [#10011](https://github.com/handsontable/handsontable/issues/10011)
|
30
|
+
- Fixed a regression where setting a column's `type` could overwrite other custom-defined settings. [#10128](https://github.com/handsontable/handsontable/pull/10128)
|
31
|
+
- Fixed an issue where Handsontable didn't render properly when initialized inside of a hidden container. [#5322](https://github.com/handsontable/handsontable/issues/5322)
|
32
|
+
- Fixed an issue of desynchronization between configuration options (cell meta) and Handsontable's data. The issue occurred when Handsontable's options were modified through the following hooks: `beforeCreateRow`, `afterCreateRow`, `beforeCreateCol`, and `afterCreateCol`. [#10136](https://github.com/handsontable/handsontable/pull/10136)
|
33
|
+
- Fixed an issue where comments added to fixed columns didn't display properly after scrolling. [#9645](https://github.com/handsontable/handsontable/issues/9645)
|
34
|
+
- Fixed an issue where typing in a `dropdown` editor caused the IME to disappear, resulting in wrong characters being typed. [#9672](https://github.com/handsontable/handsontable/issues/9672)
|
35
|
+
- React: Fixed an issue where `dropdown` cells weren't validated properly when using the `HotColumn` component. [#10065](https://github.com/handsontable/handsontable/issues/10065)
|
36
|
+
|
11
37
|
## [12.2.0] - 2022-10-25
|
12
38
|
|
13
39
|
For more information on this release, see:
|
40
|
+
- [Blog post](https://handsontable.com/blog/handsontable-12.2.0)
|
41
|
+
- [Documentation (12.2)](https://handsontable.com/docs/12.2/)
|
14
42
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-2-0)
|
15
|
-
- [Blog post](https://handsontable.com/blog/articles/handsontable-12.2.0)
|
16
43
|
|
17
44
|
### Added
|
18
|
-
|
45
|
+
|
46
|
+
- Added a new feature that lets you add rows and columns at a specified position. Now, the `alter()` method takes 4 new parameter values: `insert_row_above`, `insert_row_below`, `insert_col_start`, and `insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
|
47
|
+
|
48
|
+
### Deprecated
|
49
|
+
|
50
|
+
- Deprecated the `insert_row` parameter of the `alter()` method. Instead, use `insert_row_above` or `insert_row_below`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
|
51
|
+
- Deprecated the `insert_col` parameter of the `alter()` method. Instead, use `insert_col_start` or `insert_col_end`. [#9471](https://github.com/handsontable/handsontable/issues/9471)
|
52
|
+
|
53
|
+
### Removed
|
54
|
+
|
55
|
+
- Removed a type definition for a non-existing method, `translateRowsToColumns()`. [#9919](https://github.com/handsontable/handsontable/issues/9919)
|
19
56
|
|
20
57
|
### Fixed
|
58
|
+
|
21
59
|
- Fixed an issue where the width of the cell editor was calculated incorrectly. [#3815](https://github.com/handsontable/handsontable/issues/3815)
|
22
60
|
- Fixed an issue where formulas surrounded by merged cells were converted to values by mistake. [#6359](https://github.com/handsontable/handsontable/issues/6359)
|
23
61
|
- Fixed an issue where Handsontable could disappear on Firefox 93 (and later) in a specific use case. [#9545](https://github.com/handsontable/handsontable/issues/9545)
|
24
62
|
- Fixed an issue where changing a cell's `type` through `setCellMeta()` didn't properly set the cell's `editor` and `renderer`. [#9734](https://github.com/handsontable/handsontable/issues/9734)
|
25
63
|
- Fixed an issue where the dropdown menu didn't display when the `NestedHeaders` plugin was enabled and all rows were trimmed out. [#9753](https://github.com/handsontable/handsontable/issues/9753)
|
26
64
|
|
27
|
-
### Removed
|
28
|
-
- Removed a type definition for a non-existing method, `translateRowsToColumns()`. [#9919](https://github.com/handsontable/handsontable/issues/9919)
|
29
|
-
|
30
65
|
## [12.1.3] - 2022-09-22
|
31
66
|
|
32
67
|
For more information on this release, see:
|
68
|
+
- [Documentation (12.1)](https://handsontable.com/docs/12.1/)
|
33
69
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-3)
|
34
|
-
|
70
|
+
|
71
|
+
### Removed
|
72
|
+
|
73
|
+
- Removed a custom stable sorting implementation in favor of the built-in sorting algorithm [#6091](https://github.com/handsontable/handsontable/issues/6091)
|
74
|
+
- Removed type definitions for non-existing methods `rowOffset` and `colOffset` and a non-existing hook `modifyRowSourceData`. [#8659](https://github.com/handsontable/handsontable/issues/8659), [#7317](https://github.com/handsontable/handsontable/issues/7317)
|
35
75
|
|
36
76
|
### Fixed
|
77
|
+
|
37
78
|
- Fixed incorrect date format conversion on input in the date editor. [#9681](https://github.com/handsontable/handsontable/issues/9681)
|
38
79
|
- Fixed an error when adding a large number of rows using the `alter` method. [#7840](https://github.com/handsontable/handsontable/issues/7840)
|
39
80
|
- Fixed IME text input in the editors. [#9586](https://github.com/handsontable/handsontable/issues/9586)
|
@@ -45,34 +86,36 @@ For more information on this release, see:
|
|
45
86
|
- Fixed misalignment on mobile devices when the edge cells were selected. [#9621](https://github.com/handsontable/handsontable/issues/9621)
|
46
87
|
- Fixed type definitions for the method `setSourceDataAtCell`. [#8599](https://github.com/handsontable/handsontable/issues/8599)
|
47
88
|
|
48
|
-
### Removed
|
49
|
-
- Removed a custom stable sorting implementation in favor of the built-in sorting algorithm [#6091](https://github.com/handsontable/handsontable/issues/6091)
|
50
|
-
- Removed type definitions for non-existing methods `rowOffset` and `colOffset` and a non-existing hook `modifyRowSourceData`. [#8659](https://github.com/handsontable/handsontable/issues/8659), [#7317](https://github.com/handsontable/handsontable/issues/7317)
|
51
|
-
|
52
89
|
## [12.1.2] - 2022-07-08
|
53
90
|
|
54
91
|
For more information on this release, see:
|
92
|
+
- [Documentation (12.1)](https://handsontable.com/docs/12.1/)
|
55
93
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-2)
|
56
94
|
|
57
95
|
### Changed
|
96
|
+
|
58
97
|
- Changed the version of the Moment.js dependency from 2.29.3 to 2.29.4, in reaction to a recently-found Moment.js security vulnerability. The vulnerability did not affect a correct configuration of Handsontable. [#9638](https://github.com/handsontable/handsontable/issues/9638)
|
59
|
-
-
|
98
|
+
- Vue: Freezed the version of the Vue framework that is used in our build chain to ~2.6. This shouldn't affect apps that use Vue 2.7+. [#9624](https://github.com/handsontable/handsontable/issues/9624)
|
60
99
|
|
61
100
|
## [12.1.1] - 2022-07-05
|
62
101
|
|
63
102
|
For more information on this release, see:
|
103
|
+
- [Documentation (12.1)](https://handsontable.com/docs/12.1/)
|
64
104
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-1)
|
65
105
|
|
66
106
|
### Fixed
|
67
|
-
|
107
|
+
|
108
|
+
- Angular: Fixed an issue where the installation of `@handsontable/angular` package failed for versions of Angular other than 9 [#9622](https://github.com/handsontable/handsontable/issues/9622)
|
68
109
|
|
69
110
|
## [12.1.0] - 2022-06-28
|
70
111
|
|
71
112
|
For more information on this release, see:
|
72
|
-
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-0)
|
73
113
|
- [Blog post](https://handsontable.com/blog/handsontable-12.1.0-data-grid-new-hooks-new-translations-and-rendering-improvements)
|
114
|
+
- [Documentation (12.1)](https://handsontable.com/docs/12.1/)
|
115
|
+
- [Release notes](https://handsontable.com/docs/release-notes/#_12-1-0)
|
74
116
|
|
75
117
|
### Added
|
118
|
+
|
76
119
|
- Added smoother row and column moving when some row or columns are hidden. [#7613](https://github.com/handsontable/handsontable/issues/7613)
|
77
120
|
- Added `getNearestNotHiddenIndex()`, a new method that finds the visual index of the nearest not-hidden row or column and works even with large numbers of hidden rows or columns. The previous method, `getFirstNotHiddenIndex()`, still works, but is marked as deprecated. [#9064](https://github.com/handsontable/handsontable/issues/9064)
|
78
121
|
- Added a Czech translation. [#9343](https://github.com/handsontable/handsontable/issues/9343)
|
@@ -80,12 +123,18 @@ For more information on this release, see:
|
|
80
123
|
- Added new hooks: `beforeColumnFreeze`, `afterColumnFreeze`, `beforeColumnUnfreeze`, and `afterColumnUnfreeze`. [#9248](https://github.com/handsontable/handsontable/issues/9248)
|
81
124
|
|
82
125
|
### Changed
|
126
|
+
|
83
127
|
- Replaced HTML entities appearing in Handsontable's license texts with canonical counterparts. [#9487](https://github.com/handsontable/handsontable/issues/9487)
|
84
128
|
- Updated the Pikaday optional dependency to 1.8.2, to let Handsontable work with Parcel 2 without errors. [#9410](https://github.com/handsontable/handsontable/issues/9410)
|
85
|
-
-
|
86
|
-
-
|
129
|
+
- React: Changed the wrapper's lifecycle methods, to let Handsontable work with React 17+ without warnings. [#8748](https://github.com/handsontable/handsontable/issues/8748)
|
130
|
+
- Angular: Moved the `@angular/core` dependency to peer dependencies. [#9574](https://github.com/handsontable/handsontable/issues/9574)
|
131
|
+
|
132
|
+
### Deprecated
|
133
|
+
|
134
|
+
- Deprecated the `getFirstNotHiddenIndex()` method. Use `getNearestNotHiddenIndex()` instead. [#9064](https://github.com/handsontable/handsontable/issues/9064)
|
87
135
|
|
88
136
|
### Fixed
|
137
|
+
|
89
138
|
- Fixed an issue where dropdown and autocomplete cell editors rendered incorrectly if the `preventOverflow` option was set to `'horizontal'`. [#3828](https://github.com/handsontable/handsontable/issues/3828)
|
90
139
|
- Fixed an issue where frozen rows were getting duplicated. [#4454](https://github.com/handsontable/handsontable/issues/4454)
|
91
140
|
- Fixed an issue where comments rendered outside the viewport. [#4785](https://github.com/handsontable/handsontable/issues/4785)
|
@@ -100,9 +149,11 @@ For more information on this release, see:
|
|
100
149
|
## [12.0.1] - 2022-05-16
|
101
150
|
|
102
151
|
For more information on this release, see:
|
152
|
+
- [Documentation (12.0)](https://handsontable.com/docs/12.0/)
|
103
153
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-0-1)
|
104
154
|
|
105
155
|
### Fixed
|
156
|
+
|
106
157
|
- Fixed an issue where checking or unchecking a checkbox in a row with `autoRowSize: true` and multi-line cell values caused rows to align incorrectly. [#7102](https://github.com/handsontable/handsontable/issues/7102)
|
107
158
|
- Fixed an issue where checking or unchecking a checkbox changed the cell width. [#8211](https://github.com/handsontable/handsontable/issues/8211)
|
108
159
|
- Fixed an issue where using a single Handsontable instance with multiple HyperFormula sheets could lead to an uncaught `TypeError`. [#8268](https://github.com/handsontable/handsontable/issues/8268)
|
@@ -112,11 +163,13 @@ For more information on this release, see:
|
|
112
163
|
## [12.0.0] - 2022-04-28
|
113
164
|
|
114
165
|
For more information on this release, see:
|
166
|
+
- [Blog post](https://handsontable.com/blog/handsontable-12.0.0-data-grid-rtl-support-and-a-new-keyboard-shortcuts-api)
|
167
|
+
- [Documentation (12.0)](https://handsontable.com/docs/12.0/)
|
168
|
+
- [Migration guide (11.1 → 12.0)](https://handsontable.com/docs/migration-from-11.1-to-12.0/)
|
115
169
|
- [Release notes](https://handsontable.com/docs/release-notes/#_12-0-0)
|
116
|
-
- [Blog post](https://handsontable.com/blog/articles/2022/4/handsontable-12.0.0-data-grid-rtl-support-and-a-new-keyboard-shortcuts-api)
|
117
|
-
- [Migration guide](https://handsontable.com/docs/migration-from-11.1-to-12.0/)
|
118
170
|
|
119
171
|
### Added
|
172
|
+
|
120
173
|
- Added `ShortcutManager`, a new API for customizing keyboard shortcuts. [#8942](https://github.com/handsontable/handsontable/issues/8942)
|
121
174
|
- Added support for right-to-left (RTL) languages, introducing a new configuration option: `layoutDirection`. [#8760](https://github.com/handsontable/handsontable/issues/8760)
|
122
175
|
- Added an Arabic translation. [#9208](https://github.com/handsontable/handsontable/issues/9208)
|
@@ -126,6 +179,7 @@ For more information on this release, see:
|
|
126
179
|
- Added support for the latest Node LTS version. [#9149](https://github.com/handsontable/handsontable/issues/9149)
|
127
180
|
|
128
181
|
### Changed
|
182
|
+
|
129
183
|
- **Breaking change**: Changed how `updateSettings()` handles data updates, to improve performance and the consistency of user experience. Now, when provided with a new data object, `updateSettings()` updates the data without resetting any states. [#7263](https://github.com/handsontable/handsontable/issues/7263)
|
130
184
|
- **Breaking change (React, Angular, Vue 2, Vue 3)**: Updating your data through a component property no longer resets your index mapper information and configuration options. [#7263](https://github.com/handsontable/handsontable/issues/7263)
|
131
185
|
- **Breaking change**: Changed how `updatePlugin()` reacts to `updateSettings()` calls, to improve performance and the consistency of user experience. Now, calls to `updateSettings()` update a plugin's state only when the options object contains a configuration option that's relevant to that particular plugin. [#9021](https://github.com/handsontable/handsontable/issues/9021)
|
@@ -138,43 +192,49 @@ For more information on this release, see:
|
|
138
192
|
- Changed the version of the HyperFormula optional dependency from ^1.2.0 to ^2.0.0. [#9411](https://github.com/handsontable/handsontable/issues/9411)
|
139
193
|
- Changed an internal property name, from `hot.view.wt` to `hot.view._wt`, where `hot` is the name of your Handsontable instance. The intention of this change is to make it clear that Walkontable (Handsontable's rendering engine) is not a part of Handsontable's public API. [#8760](https://github.com/handsontable/handsontable/issues/8760)
|
140
194
|
|
195
|
+
### Removed
|
196
|
+
|
197
|
+
- **Breaking change**: Removed the <kbd>Cmd</kbd> + <kbd>M</kbd> keyboard shortcut (used for cell merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd> + <kbd>M</kbd> keyboard shortcut works the same as before. [#9368](https://github.com/handsontable/handsontable/issues/9368)
|
198
|
+
- **Breaking change**: Removed the <kbd>Shift</kbd> + <kbd>Page Up</kbd>/<kbd>Page Down</kbd> keyboard shortcuts from the cell editing context. [#9401](https://github.com/handsontable/handsontable/issues/9401)
|
199
|
+
- Dropped support for Internet Explorer 11 and Edge Legacy (the non-Chromium version of Edge). Handsontable 11.x becomes the long-term support (LTS) version for Internet Explorer 11 and Edge Legacy, until the end of 2023. [#7026](https://github.com/handsontable/handsontable/issues/7026)
|
200
|
+
- React: Removed the `enzyme` dependency from the React wrapper. [#9151](https://github.com/handsontable/handsontable/issues/9151)
|
201
|
+
|
141
202
|
### Fixed
|
142
|
-
|
203
|
+
|
204
|
+
- React, Angular, Vue 2, Vue 3: Fixed an issue where using `updateSettings()` caused problems for state managers. [#8372](https://github.com/handsontable/handsontable/issues/8372)
|
143
205
|
- Fixed an issue where using `updateSettings()` caused hidden columns to reappear. [#7165](https://github.com/handsontable/handsontable/issues/7165)
|
144
206
|
- Fixed an issue where using `updateSettings()` caused merged cells to unmerge. [#3315](https://github.com/handsontable/handsontable/issues/3315)
|
145
207
|
- Fixed an issue where using `updateSettings()` caused the state of nested rows to reset. [#8838](https://github.com/handsontable/handsontable/issues/8838)
|
146
208
|
- Fixed an issue where using `updateSettings()` caused problems with column sorting. [#7688](https://github.com/handsontable/handsontable/issues/7688)
|
147
|
-
-
|
148
|
-
-
|
149
|
-
-
|
209
|
+
- React: Fixed an issue where using React's `setState()` within the `afterFilter` hook broke filtering. [#7567](https://github.com/handsontable/handsontable/issues/7567)
|
210
|
+
- Vue 2: Fixed an issue where repeatedly changing Handsontable's height through `updateSettings()` caused Handsontable to crash. [#7546](https://github.com/handsontable/handsontable/issues/7546)
|
211
|
+
- Vue 2: Fixed an issue where the `failed` validation status got erased when editing a new row. [#7541](https://github.com/handsontable/handsontable/issues/7541)
|
150
212
|
- Fixed an issue where cell filtering did not use formula results. [#5455](https://github.com/handsontable/handsontable/issues/5455)
|
151
213
|
- Fixed a wrong TypeScript definition in the `BasePlugin` class. [#9175](https://github.com/handsontable/handsontable/issues/9175)
|
152
214
|
- Fixed an issue where the <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Z</kbd> and <kbd>Ctrl</kbd>/<kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>Z</kbd> keyboard shortcuts didn't behave properly inside cell editors. [#9367](https://github.com/handsontable/handsontable/issues/9367)
|
153
215
|
- Fixed an issue where the dropdown menu contained unwanted rectangle elements. [#9240](https://github.com/handsontable/handsontable/issues/9240)
|
154
|
-
-
|
155
|
-
|
156
|
-
### Removed
|
157
|
-
- **Breaking change**: Removed the <kbd>Cmd</kbd> + <kbd>M</kbd> keyboard shortcut (used for cell merging), as it conflicted with window minimizing on macOS. The <kbd>Ctrl</kbd> + <kbd>M</kbd> keyboard shortcut works the same as before. [#9368](https://github.com/handsontable/handsontable/issues/9368)
|
158
|
-
- **Breaking change**: Removed the <kbd>Shift</kbd> + <kbd>Page Up</kbd>/<kbd>Page Down</kbd> keyboard shortcuts from the cell editing context. [#9401](https://github.com/handsontable/handsontable/issues/9401)
|
159
|
-
- Dropped support for Internet Explorer 11 and Edge Legacy (the non-Chromium version of Edge). Handsontable 11.x becomes the long-term support (LTS) version for Internet Explorer 11 and Edge Legacy, until the end of 2023. [#7026](https://github.com/handsontable/handsontable/issues/7026)
|
160
|
-
- *React:* Removed the `enzyme` dependency from the React wrapper. [#9151](https://github.com/handsontable/handsontable/issues/9151)
|
216
|
+
- React, Vue 2, Vue 3: Fixed an issue with registering modules for the React, Vue 2, and Vue 3 wrappers, by adding an `"exports"` field to their `package.json` files. [#9140](https://github.com/handsontable/handsontable/issues/9140)
|
161
217
|
|
162
218
|
## [11.1.0] - 2022-01-13
|
163
219
|
|
164
220
|
For more information on this release, see:
|
165
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-1)
|
166
221
|
- [Blog post](https://handsontable.com/blog/handsontable-11.1.0-vue-3-support-and-updatedata)
|
222
|
+
- [Documentation (11.1)](https://handsontable.com/docs/11.1/)
|
223
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-1)
|
167
224
|
|
168
225
|
### Added
|
226
|
+
|
169
227
|
- Added `updateData()`, a new method that allows for replacing Handsontable's `data` without
|
170
228
|
resetting the states of cells, rows and columns. [#7263](https://github.com/handsontable/handsontable/issues/7263)
|
171
|
-
-
|
229
|
+
- Vue: Added Vue 3 support, by introducing a new wrapper. [#7545](https://github.com/handsontable/handsontable/issues/7545)
|
172
230
|
|
173
231
|
### Changed
|
232
|
+
|
174
233
|
- Updated the TypeScript definition of the `setDataAtCell()` method. [#8601](https://github.com/handsontable/handsontable/issues/8601)
|
175
234
|
- Extended Handsontable's GitHub Actions workflow, to allow for deploying code examples to GitHub Pages. [#9058](https://github.com/handsontable/handsontable/issues/9058)
|
176
235
|
|
177
236
|
### Fixed
|
237
|
+
|
178
238
|
- Fixed an issue where the `autocomplete` editor's suggestion list didn't update properly. [#7570](https://github.com/handsontable/handsontable/issues/7570)
|
179
239
|
- Fixed an issue where nested headers didn't render when `data` wasn't defined. [#8589](https://github.com/handsontable/handsontable/issues/8589)
|
180
240
|
- Fixed some end-to-end tests that failed on mobile devices. [#8749](https://github.com/handsontable/handsontable/issues/8749)
|
@@ -187,25 +247,29 @@ resetting the states of cells, rows and columns. [#7263](https://github.com/hand
|
|
187
247
|
- Fixed an issue where performance was affected by removing events. [#9044](https://github.com/handsontable/handsontable/issues/9044)
|
188
248
|
- Fixed a wrong TypeScript definition of the `MultiColumnSorting` plugin's `sort()` method. [#9067](https://github.com/handsontable/handsontable/issues/9067)
|
189
249
|
- Fixed an issue where the `Comments` plugin's editor disappeared after adding a comment. [#9075](https://github.com/handsontable/handsontable/issues/9075) [#6661](https://github.com/handsontable/handsontable/issues/6661)
|
190
|
-
-
|
250
|
+
- React: Fixed a wrong return type. [#9000](https://github.com/handsontable/handsontable/issues/9000)
|
191
251
|
|
192
252
|
## [11.0.1] - 2021-11-17
|
193
253
|
|
194
254
|
For more information on this release, see:
|
255
|
+
- [Documentation (11.0)](https://handsontable.com/docs/11.0/)
|
195
256
|
- [Release notes](https://handsontable.com/docs/release-notes/#_11-0-1)
|
196
257
|
|
197
258
|
### Fixed
|
259
|
+
|
198
260
|
- Fixed the UMD build of `@handsontable/angular`, which was not working properly in `11.0.0`. [#8946](https://github.com/handsontable/handsontable/pull/8946)
|
199
261
|
|
200
262
|
## [11.0.0] - 2021-11-17
|
201
263
|
|
202
264
|
For more information on this release, see:
|
203
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-0)
|
204
265
|
- [Blog post](https://handsontable.com/blog/handsontable-11.0.0-modularization-for-react-angular-and-vue)
|
205
|
-
- [
|
266
|
+
- [Documentation (11.0)](https://handsontable.com/docs/11.0/)
|
267
|
+
- [Migration guide (10.0 → 11.0)](https://handsontable.com/docs/migration-from-10.0-to-11.0/)
|
268
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_11-0)
|
206
269
|
|
207
270
|
### Added
|
208
|
-
|
271
|
+
|
272
|
+
- **Breaking change**: Added TypeScript definition files for Handsontable's modularized version. [#7489](https://github.com/handsontable/handsontable/issues/7489)
|
209
273
|
- **Breaking change (Vue)**: Added support for modularization to the Vue wrapper. [#8820](https://github.com/handsontable/handsontable/issues/8820)
|
210
274
|
- **Breaking change (React)**: Added support for modularization to the React wrapper. [#8819](https://github.com/handsontable/handsontable/issues/8819)
|
211
275
|
- **Breaking change (Angular)**: Added support for modularization to the Angular wrapper. [#8818](https://github.com/handsontable/handsontable/issues/8818)
|
@@ -215,27 +279,31 @@ For more information on this release, see:
|
|
215
279
|
- Added new direction helpers (internal API) that lay ground for future RTL support. [#8868](https://github.com/handsontable/handsontable/issues/8868)
|
216
280
|
|
217
281
|
### Changed
|
282
|
+
|
218
283
|
- **Breaking change**: Changed how the `populateFromArray()` method works with its `method` argument set to `shift_down` or `shift_right`. [#888](https://github.com/handsontable/handsontable/issues/888)
|
219
284
|
- Moved the entire Handsontable package to its own, new subdirectory: `./handsontable`. [#8759](https://github.com/handsontable/handsontable/issues/8759)
|
220
285
|
- Replaced the license files with updated versions. [#8877](https://github.com/handsontable/handsontable/issues/8877)
|
221
286
|
|
222
|
-
### Fixed
|
287
|
+
### Fixed
|
288
|
+
|
223
289
|
- Fixed an issue with incorrect filtering of locale-based data while using search input from a drop-down menu. [#6095](https://github.com/handsontable/handsontable/issues/6095)
|
224
290
|
- Fixed an error thrown when using the `populateFromArray()` method with its `method` argument set to `shift_right`. [#6929](https://github.com/handsontable/handsontable/issues/6929)
|
225
291
|
- Fixed an issue with the `beforeOnCellMouseDown` and `afterOnCellMouseDown` hooks using wrong coordinates. [#8498](https://github.com/handsontable/handsontable/issues/8498)
|
226
292
|
- Fixed a `TypeError` thrown when calling the `updateSettings()` method in Handsontable's modularized version. [#8830](https://github.com/handsontable/handsontable/issues/8830)
|
227
293
|
- Fixed two issues with the documentation's `canonicalUrl` entries. [#8886](https://github.com/handsontable/handsontable/issues/8886)
|
228
294
|
- Fixed an error thrown when autofill's source is a `date` cell. [#8894](https://github.com/handsontable/handsontable/issues/8894)
|
229
|
-
-
|
295
|
+
- React: Fixed a React wrapper issue where it's impossible to use different sets of props in editor components reused across multiple columns. [#8527](https://github.com/handsontable/handsontable/issues/8527)
|
230
296
|
|
231
297
|
## [10.0.0] - 2021-09-29
|
232
298
|
|
233
299
|
For more information on this release, see:
|
234
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_10-0)
|
235
300
|
- [Blog post](https://handsontable.com/blog/handsontable-10.0.0-improved-performance-and-consistency)
|
236
|
-
- [
|
301
|
+
- [Documentation (10.0)](https://handsontable.com/docs/10.0/)
|
302
|
+
- [Migration guide (9.0 → 10.0)](https://handsontable.com/docs/migration-from-9.0-to-10.0/)
|
303
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_10-0)
|
237
304
|
|
238
305
|
### Changed
|
306
|
+
|
239
307
|
- **Breaking change**: Unified the naming and description of the fourth argument, `controller`, for selection manipulation in the `beforeOnCellMouseDown` and `beforeOnCellMouseOver` hooks. [#4996](https://github.com/handsontable/handsontable/issues/4996)
|
240
308
|
- **Breaking change**: Changed what the `beforeRender` and `afterRender` hooks are, and when they are triggered. Added two new hooks: `beforeViewRender` and `afterViewRender`. [#6303](https://github.com/handsontable/handsontable/issues/6303)
|
241
309
|
- **Breaking change**: Changed the optional HyperFormula dependency from 0.6.2 to ^1.1.0, which introduces breaking changes for the `Formulas` plugin users. [#8502](https://github.com/handsontable/handsontable/issues/8502)
|
@@ -248,6 +316,7 @@ For more information on this release, see:
|
|
248
316
|
- Added a Github Actions workflow covering the testing of Handsontable and all of the wrappers. [#8652](https://github.com/handsontable/handsontable/issues/8652)
|
249
317
|
|
250
318
|
### Fixed
|
319
|
+
|
251
320
|
- Fixed an issue of not resetting the date picker's configuration. [#6636](https://github.com/handsontable/handsontable/issues/6636)
|
252
321
|
- An error won't be thrown while inserting a new row for nested rows in a specific case. [#7137](https://github.com/handsontable/handsontable/issues/7137)
|
253
322
|
- Fixed a few problems with the `NestedRows` plugin, occurring with the `Formulas` plugin enabled. [#8048](https://github.com/handsontable/handsontable/issues/8048)
|
@@ -264,76 +333,90 @@ For more information on this release, see:
|
|
264
333
|
## [9.0.2] - 2021-07-28
|
265
334
|
|
266
335
|
For more information on this release, see:
|
267
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0-2)
|
268
336
|
- [Blog post](https://handsontable.com/blog/whats-new-in-handsontable-9.0.2)
|
337
|
+
- [Documentation (9.0)](https://handsontable.com/docs/9.0/)
|
338
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0-2)
|
269
339
|
|
270
340
|
### Fixed
|
341
|
+
|
271
342
|
- Fixed an issue with an error being thrown when lazy loading columns on a setup with Nested Headers + Hidden Columns. [#7160](https://github.com/handsontable/handsontable/issues/7160)
|
272
343
|
- Fixed column header sizes not being updated on `updateSettings` calls containing `columns`. [#7689](https://github.com/handsontable/handsontable/issues/7689)
|
273
344
|
- Fixed functional keys' behavior, to prevent unexpected editing. [#7838](https://github.com/handsontable/handsontable/issues/7838)
|
274
345
|
- Fixed missing collapsible indicator on IE. [#8028](https://github.com/handsontable/handsontable/issues/8028)
|
275
346
|
- Fixed support for row and column headers in the `parseTable` utility. [#8041](https://github.com/handsontable/handsontable/issues/8041)
|
276
347
|
- Fixed a bug where not providing a data object with the `nestedRows` plugin enabled crashed the table. [#8171](https://github.com/handsontable/handsontable/issues/8171)
|
277
|
-
-
|
278
|
-
-
|
279
|
-
-
|
280
|
-
-
|
348
|
+
- Vue: Fixed an issue where adding rows to a Handsontable instance wrapped for Vue resulted in additional rows being inserted at the end of the table. [#8148](https://github.com/handsontable/handsontable/issues/8148)
|
349
|
+
- Vue: Fixed a problem in the Vue wrapper, where destroying the underlying Handsontable instance caused it to throw errors and crash. [#8311](https://github.com/handsontable/handsontable/issues/8311)
|
350
|
+
- React: Fixed a problem in the React wrapper, where destroying the underlying Handsontable instance caused it to throw errors and crash. [#8311](https://github.com/handsontable/handsontable/issues/8311)
|
351
|
+
- Angular: Fixed a problem in the Angular wrapper, where destroying the underlying Handsontable instance caused it to throw errors and crash. [#8311](https://github.com/handsontable/handsontable/issues/8311)
|
281
352
|
|
282
353
|
### Added
|
354
|
+
|
283
355
|
- Added new documentation engine [#7624](https://github.com/handsontable/handsontable/issues/7624)
|
284
356
|
|
285
357
|
## [9.0.1] - 2021-06-17
|
286
358
|
|
287
359
|
For more information on this release, see:
|
360
|
+
- [Documentation (9.0)](https://handsontable.com/docs/9.0/)
|
288
361
|
- [Release notes](https://handsontable.com/docs/release-notes/#_9-0-1)
|
289
362
|
|
363
|
+
### Removed
|
364
|
+
|
365
|
+
- Removed the redundant internal `jsonpatch` library from the source code. [#8140](https://github.com/handsontable/handsontable/issues/8140)
|
366
|
+
|
290
367
|
### Fixed
|
368
|
+
|
291
369
|
- Fixed an issue where the validator function was called twice when the Formulas plugin was enabled. [#8138](https://github.com/handsontable/handsontable/issues/8138)
|
292
370
|
- Introduced a new CSS style for cells of the `checkbox` type to restore previous behaviour. [#8196](https://github.com/handsontable/handsontable/issues/8196)
|
293
371
|
|
294
|
-
### Removed
|
295
|
-
- Removed the redundant internal `jsonpatch` library from the source code. [#8140](https://github.com/handsontable/handsontable/issues/8140)
|
296
|
-
|
297
372
|
## [9.0.0] - 2021-06-01
|
298
373
|
|
299
374
|
For more information on this release, see:
|
300
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0)
|
301
375
|
- [Blog post](https://handsontable.com/blog/handsontable-9.0.0-new-formula-plugin)
|
302
|
-
- [
|
376
|
+
- [Documentation (9.0)](https://handsontable.com/docs/9.0/)
|
377
|
+
- [Migration guide (8.4 → 9.0)](https://handsontable.com/docs/migration-from-8.4-to-9.0/)
|
378
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_9-0)
|
303
379
|
|
304
380
|
### Changed
|
381
|
+
|
305
382
|
- **Breaking change**: New Formulas plugin, with an entirely different API. See the migration guide for a full list of changes. Removed the required `hot-formula-parser` dependency for the sake of an optional one, `hyperformula`. [#6466](https://github.com/handsontable/handsontable/issues/6466)
|
306
383
|
- **Breaking change**: Changed the `afterAutofill` and `beforeAutofill` hooks' signatures. [#7987](https://github.com/handsontable/handsontable/issues/7987)
|
307
384
|
- Upgraded `eslint` and eslint-related modules. [#7531](https://github.com/handsontable/handsontable/issues/7531)
|
308
385
|
- Added `fit` & `fdescribe` to restricted globals in test files. [#8088](https://github.com/handsontable/handsontable/issues/8088)
|
309
386
|
|
387
|
+
### Removed
|
388
|
+
|
389
|
+
- **Breaking change**: Removed the deprecated plugins - Header Tooltips and Observe Changes. [#8083](https://github.com/handsontable/handsontable/issues/8083)
|
390
|
+
|
310
391
|
### Fixed
|
392
|
+
|
311
393
|
- Fixed a problem with the column indicator of the Collapsible Columns plugin not being displayed properly on styled headers. [#7970](https://github.com/handsontable/handsontable/issues/7970)
|
312
394
|
- Fixed a problem with duplicated `afterCreateCol` hooks being triggered after undoing a removal of a column. [#8076](https://github.com/handsontable/handsontable/issues/8076)
|
313
395
|
|
314
|
-
### Removed
|
315
|
-
- **Breaking change**: Removed the deprecated plugins - Header Tooltips and Observe Changes. [#8083](https://github.com/handsontable/handsontable/issues/8083)
|
316
|
-
|
317
396
|
### Deprecated
|
397
|
+
|
318
398
|
- Deprecated the `beforeAutofillInsidePopulate` hook. It will be removed in the next major release. [#8095](https://github.com/handsontable/handsontable/issues/8095)
|
319
399
|
|
320
400
|
## [8.4.0] - 2021-05-11
|
321
401
|
|
322
402
|
For more information on this release, see:
|
323
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-4)
|
324
403
|
- [Blog post](https://handsontable.com/blog/whats-new-in-handsontable-8-4-0)
|
404
|
+
- [Documentation (8.4.0)](https://handsontable.com/docs/8.4.0/)
|
405
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-4)
|
325
406
|
|
326
407
|
### Added
|
408
|
+
|
327
409
|
- Introduced a `separated` attribute for the label options (the `label` DOM element may wrap `input` or be placed next to it). [#3172](https://github.com/handsontable/handsontable/issues/3172)
|
328
410
|
- Introduced the `modifyAutoColumnSizeSeed` hook to let developers overwrite the default behaviour of the AutoColumnSize sampling. [#3339](https://github.com/handsontable/handsontable/issues/3339)
|
329
411
|
- Added support for hiding columns for the _NestedHeaders_ plugin. [#6879](https://github.com/handsontable/handsontable/issues/6879)
|
330
412
|
- Added ability to skip stacking actions by the `UndoRedo` plugin and introduced new hooks. [#6948](https://github.com/handsontable/handsontable/issues/6948)
|
331
|
-
-
|
332
|
-
-
|
333
|
-
-
|
334
|
-
-
|
413
|
+
- Added 2 new hooks, `beforeHighlightingColumnHeader` and `beforeHighlightingRowHeader`. Use them to retrieve a header element (`<th>`) before it gets highlighted. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
414
|
+
- Added a new method, `indexMapper.unregisterAll()`. Use it to unregister all collected index maps from all map collections types. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
415
|
+
- Added a new method, `indexMapper.createChangesObserver()`. Use it to listen to any changes made to indexes while Handsontable is running. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
416
|
+
- Added a new method, `indexMapper.createAndRegisterIndexMap()`. Use it to create and register a new index map. ([#7528](https://github.com/handsontable/handsontable/pull/7528))
|
335
417
|
|
336
418
|
### Fixed
|
419
|
+
|
337
420
|
- Fixed a problem with sorting the `checkbox`-typed cells and an issue with empty cells not being displayed properly. [#4047](https://github.com/handsontable/handsontable/issues/4047)
|
338
421
|
- Fixed a problem where undoing the removal of row with `readOnly` cells was not performed properly. [#4754](https://github.com/handsontable/handsontable/issues/4754)
|
339
422
|
- Fixed state-change resolving for externally added checkboxes. [#5934](https://github.com/handsontable/handsontable/issues/5934)
|
@@ -350,19 +433,21 @@ For more information on this release, see:
|
|
350
433
|
- Fixed the `postbuild` and `examples:install` scripts on Windows. [#7680](https://github.com/handsontable/handsontable/issues/7680)
|
351
434
|
- Fixed the contents of the production `package.json`. [#7723](https://github.com/handsontable/handsontable/issues/7723)
|
352
435
|
- Fixed an issue, where the callbacks for the UndoRedo plugin were called twice. [#7825](https://github.com/handsontable/handsontable/issues/7825)
|
353
|
-
-
|
354
|
-
-
|
436
|
+
- Vue: Fixed a problem with displaying and removing rows in the Nested Rows plugin. [#7548](https://github.com/handsontable/handsontable/issues/7548)
|
437
|
+
- React: Fixed an incompatibility in the property type definitions for the HotColumn component. [#7612](https://github.com/handsontable/handsontable/issues/7612)
|
355
438
|
|
356
439
|
### Changed
|
440
|
+
|
357
441
|
- Enhanced the ESLint config file by adding a rule that checks if there are new lines missing before some keywords or statements. [#7691](https://github.com/handsontable/handsontable/issues/7691)
|
358
442
|
|
359
443
|
## [8.3.2] - 2021-03-16
|
360
444
|
|
361
445
|
For more information on this release, see:
|
362
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3-2)
|
363
446
|
- [Blog post](https://handsontable.com/blog/handsontable-8-3-2-introducing-monorepo)
|
447
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3-2)
|
364
448
|
|
365
449
|
### Fixed
|
450
|
+
|
366
451
|
- Fixed a bug where it was impossible to enable `disableVisualSelection` for cells/columns. [#5082](https://github.com/handsontable/handsontable/issues/5082)
|
367
452
|
- Fixed wrong paddings for multi-level headers. [#5086](https://github.com/handsontable/handsontable/issues/5086)
|
368
453
|
- Fixed problems with the `current` option of the `disableVisualSelection` setting. [#5869](https://github.com/handsontable/handsontable/issues/5869)
|
@@ -378,27 +463,32 @@ For more information on this release, see:
|
|
378
463
|
- Fixed a bug with the `trimWhitespace` option not working properly. [#7458](https://github.com/handsontable/handsontable/issues/7458)
|
379
464
|
- Fixed an issue with inconsistent documentation and TypeScript definitions for `colWidths` and `rowHeights` options. [#7507](https://github.com/handsontable/handsontable/issues/7507)
|
380
465
|
- Fixed the incorrect `cellTypes` module paths in the `exports` entry of the `package.json` file. [#7597](https://github.com/handsontable/handsontable/issues/7597)
|
381
|
-
-
|
466
|
+
- Vue: Fixed Remote Code Execution vulnerability in the dev dependencies. [#7620](https://github.com/handsontable/handsontable/issues/7620)
|
382
467
|
|
383
468
|
### Added
|
469
|
+
|
384
470
|
- Introduced the monorepo to this repository. From now on, `handsontable`, `@handsontable/angular`, `@handsontable/react`, and `@handsontable/vue` will all be developed in the same repo - `handsontable`. [#7380](https://github.com/handsontable/handsontable/issues/7380)
|
385
471
|
- Added a custom ESLint rule which allows restricting specified modules from loading by `import` or re-exporting. [#7473](https://github.com/handsontable/handsontable/issues/7473)
|
386
472
|
|
387
473
|
## [8.3.1] - 2021-02-10
|
388
474
|
|
389
475
|
For more information on this release, see:
|
476
|
+
- [Documentation (8.3.1)](https://handsontable.com/docs/8.3.1/)
|
390
477
|
- [Release notes](https://handsontable.com/docs/release-notes/#_8-3-1)
|
391
478
|
|
392
479
|
### Fixed
|
480
|
+
|
393
481
|
- Fixed an issue where the CSS files could be eliminated during tree-shaking [#7516](https://github.com/handsontable/handsontable/issues/7516)
|
394
482
|
|
395
483
|
## [8.3.0] - 2021-01-28
|
396
484
|
|
397
485
|
For more information on this release, see:
|
398
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3)
|
399
486
|
- [Blog post](https://handsontable.com/blog/handsontable-8.3.0-has-been-released)
|
487
|
+
- [Documentation (8.3.0)](https://handsontable.com/docs/8.3.0/)
|
488
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-3)
|
400
489
|
|
401
490
|
### Added
|
491
|
+
|
402
492
|
- Introduced a new feature that allows postponing the table render and internal data cache update. The table rendering time can be reduced several-fold times by batching (using the `batch` method), multi-line API calls, or manually suspending rendering using the `suspendRender` and `resumeRender` methods. [#7274](https://github.com/handsontable/handsontable/issues/7274)
|
403
493
|
- Introduced a possibility to import:
|
404
494
|
- plugins
|
@@ -411,6 +501,7 @@ For more information on this release, see:
|
|
411
501
|
- Added a new workflow for managing and generating changelogs. [#7405](https://github.com/handsontable/handsontable/issues/7405)
|
412
502
|
|
413
503
|
### Fixed
|
504
|
+
|
414
505
|
- Fixed a bug with auto-execution of the first item in the ContextMenu plugin. [#7364](https://github.com/handsontable/handsontable/issues/7364)
|
415
506
|
- Fixed a bug where column sorting with multi column sorting crashed the table. [#7415](https://github.com/handsontable/handsontable/issues/7415)
|
416
507
|
- Added a missing entry for the `skipRowOnPaste` option in the TypeScript definition file. [#7394](https://github.com/handsontable/handsontable/issues/7394)
|
@@ -420,20 +511,24 @@ For more information on this release, see:
|
|
420
511
|
- Updated the dependencies causing potential security issues, as well as Babel configuration needed after the update. [#7463](https://github.com/handsontable/handsontable/issues/7463)
|
421
512
|
|
422
513
|
### Changed
|
514
|
+
|
423
515
|
- Corrected a typo in a helper method from the Column Sorting plugin. [#7375](https://github.com/handsontable/handsontable/issues/7375)
|
424
516
|
- Optimized the performance of rendering the table with numerous spare rows (for `minSpareRows`, `minSpareCols`, `minRows`, and `minCols` options). [#7439](https://github.com/handsontable/handsontable/issues/7439)
|
425
517
|
|
426
518
|
## [8.2.0] - 2020-11-12
|
427
519
|
|
428
520
|
For more information on this release, see:
|
429
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-2)
|
430
521
|
- [Blog post](https://handsontable.com/blog/handsontable-8.2.0-has-been-released)
|
522
|
+
- [Documentation (8.2.0)](https://handsontable.com/docs/8.2.0/)
|
523
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-2)
|
431
524
|
|
432
525
|
### Added
|
526
|
+
|
433
527
|
- Added new type of Index Map named `LinkedPhysicalIndexToValueMap` [#7276](https://github.com/handsontable/handsontable/pull/7276)
|
434
528
|
- Added an external dependency, `DOMPurify`, to add HTML sanitization what should minimize the risk of inserting insecure code using Handsontable built-in functionalities. [#7292](https://github.com/handsontable/handsontable/issues/7292)
|
435
529
|
|
436
530
|
### Fixed
|
531
|
+
|
437
532
|
- Fixed an issue the container not being updated after trimming rows. [#7241](https://github.com/handsontable/handsontable/issues/7241)
|
438
533
|
- Fixed an issue with a `htmlToGridSettings` helper if passed `<table>` had no rows. [#7311](https://github.com/handsontable/handsontable/issues/7311)
|
439
534
|
- Fixed an issue where sorting indicator moved incorrectly when column was added. [#6397](https://github.com/handsontable/handsontable/issues/6397)
|
@@ -448,14 +543,17 @@ For more information on this release, see:
|
|
448
543
|
## [8.1.0] - 2020-10-01
|
449
544
|
|
450
545
|
For more information on this release, see:
|
451
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-1)
|
452
546
|
- [Blog post](https://handsontable.com/blog/handsontable-8.1.0-has-been-released)
|
547
|
+
- [Documentation (8.1.0)](https://handsontable.com/docs/8.1.0/)
|
548
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-1)
|
453
549
|
|
454
550
|
### Added
|
551
|
+
|
455
552
|
- Added support for resizing non-contiguous selected rows [#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
|
456
553
|
- Added e2e tests and reorganized already existing ones [#6491](https://github.com/handsontable/handsontable/issues/6491)
|
457
554
|
|
458
555
|
### Fixed
|
556
|
+
|
459
557
|
- Fixed an issue where if the first part of the merged area was hidden the value did not show [#6871](https://github.com/handsontable/handsontable/issues/6871)
|
460
558
|
- Fixed an issue where after selecting the top-left element the row range resizing was not possible [#7162](https://github.com/handsontable/handsontable/pull/7162) along with refactor and bug fix introduced within #6871 PR [#7220](https://github.com/handsontable/handsontable/pull/7220)
|
461
559
|
- Fixed an issue where the column headers were cut off after hiding and then showing columns using the Hidden Columns plugin. [#6395](https://github.com/handsontable/handsontable/issues/6395)
|
@@ -471,24 +569,27 @@ For more information on this release, see:
|
|
471
569
|
- Fixed an issue with clipped column headers if they were changed before or within usage `updateSettings`. [#6004](https://github.com/handsontable/handsontable/issues/6004)
|
472
570
|
|
473
571
|
### Changed
|
572
|
+
|
474
573
|
- Updated dependencies to meet security requirements [#7222](https://github.com/handsontable/handsontable/pull/7222)
|
475
574
|
- Improved performance for TrimRows, HiddenRows and HiddenColumns plugins for big datasets with lots trimmed/hidden indexes [#7223](https://github.com/handsontable/handsontable/pull/7223)
|
476
575
|
|
477
576
|
## [8.0.0] - 2020-08-05
|
478
577
|
|
479
578
|
For more information on this release, see:
|
480
|
-
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-0)
|
481
579
|
- [Blog post](https://handsontable.com/blog/the-new-handsontable-8-is-now-available)
|
482
|
-
- [
|
580
|
+
- [Documentation (8.0.0)](https://handsontable.com/docs/8.0.0/)
|
581
|
+
- [Migration guide (7.4 → 8.0)](https://handsontable.com/docs/migration-from-7.4-to-8.0/)
|
582
|
+
- [Release notes](https://handsontable.com/docs/javascript-data-grid/release-notes/#_8-0)
|
483
583
|
|
484
584
|
### Added
|
585
|
+
|
485
586
|
- Added `modifySourceData` hook and `setSourceDataAtCell` method. [#6664](https://github.com/handsontable/handsontable/issues/6664)
|
486
587
|
- Added new argument to `scrollViewportTo` method: optional `considerHiddenIndexes` which is a `boolean`. [#6547](https://github.com/handsontable/handsontable/pull/6547)
|
487
588
|
- Added additional information available in the cell meta object - the language. [#6254](https://github.com/handsontable/handsontable/pull/6254).
|
488
589
|
- Added a possibility to allow cancelling of `autofill` in the `beforeAutofill` hook. [#4441](https://github.com/handsontable/handsontable/issues/4441)
|
489
590
|
- Added support for newer versions of moment, numbro and pikaday. [#5159](https://github.com/handsontable/handsontable/issues/5159)
|
490
591
|
- Added `afterAutoFill` hook. [#6135](https://github.com/handsontable/handsontable/issues/6135)
|
491
|
-
- Added deprecated warning messages mechanism for plugin hooks. [#6613](https://github.com/handsontable/handsontable/pull/6613)
|
592
|
+
- Added "deprecated" warning messages mechanism for plugin hooks. [#6613](https://github.com/handsontable/handsontable/pull/6613)
|
492
593
|
- Added missing types for `instance.undoRedo`. [#6346](https://github.com/handsontable/handsontable/issues/6346)
|
493
594
|
- Added `countRenderableColumns` method to the `TableView`. [#6177](https://github.com/handsontable/handsontable/issues/6177)
|
494
595
|
- Added missing "hide" property in `CustomBorders` typings. [#6788](https://github.com/handsontable/handsontable/issues/6788)
|
@@ -496,6 +597,7 @@ For more information on this release, see:
|
|
496
597
|
- Added additional test for autofill plugin. [#6756](https://github.com/handsontable/handsontable/issues/6756)
|
497
598
|
|
498
599
|
### Changed
|
600
|
+
|
499
601
|
- Changed how `manualRowMove` and `manualColumnMove` plugins work [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
500
602
|
- Click on a row header will select all cells (also hidden). [#2391](https://github.com/handsontable/handsontable/issues/2391)
|
501
603
|
- Extracted Cell-Meta logic from Core to separate module. [#6254](https://github.com/handsontable/handsontable/pull/6254)
|
@@ -528,10 +630,13 @@ For more information on this release, see:
|
|
528
630
|
- Standardize the `z-index` properties between the overlays. [#6269](https://github.com/handsontable/handsontable/pull/6269)
|
529
631
|
|
530
632
|
### Deprecated
|
633
|
+
|
634
|
+
- The `ObserveChanges` plugin is no longer enabled by `columnSorting` and became deprecated. [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
531
635
|
- `HeaderTooltips` plugin becomes deprecated and will be removed in the next major version. [#7023](https://github.com/handsontable/handsontable/issues/7023)
|
532
636
|
- IE support is depreacated and will removed by the end of the year. [#7026](https://github.com/handsontable/handsontable/issues/7026)
|
533
637
|
|
534
638
|
### Removed
|
639
|
+
|
535
640
|
- Removed `firstVisibleColumn` CSS class as no longer needed. [#6547](https://github.com/handsontable/handsontable/pull/6547)
|
536
641
|
- Removed helpers that covered IE8 support or are not needed anymore. [#6525](https://github.com/handsontable/handsontable/issues/6525)
|
537
642
|
- Removed old unnecessary warning about `beforeChange` callback. [#6792](https://github.com/handsontable/handsontable/issues/6792)
|
@@ -544,6 +649,7 @@ For more information on this release, see:
|
|
544
649
|
- The `modifyRow`, `modifyCol`, `unmodifyRow`, `unmodifyCol` and `skipLengthCache` hooks are no longer needed and were removed. [#5945](https://github.com/handsontable/handsontable/pull/5945)
|
545
650
|
|
546
651
|
### Fixed
|
652
|
+
|
547
653
|
- Fixed a problem with data not being added to the table properly with the `columnSorting` option enabled. [#2685](https://github.com/handsontable/handsontable/issues/2685)
|
548
654
|
- Fixed a problem with `loadData` not resetting the row order changed by the `manualRowMove` plugin. [#3568](https://github.com/handsontable/handsontable/issues/3568)
|
549
655
|
- Fixed a bug, where using `alter`'s `insert_row` after using the `loadData` method and sorting the data would add unintentional additional rows to the table. [#3809](https://github.com/handsontable/handsontable/issues/3809)
|