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/languages/index.js
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
var a = typeof exports === 'object' ? factory(require("handsontable")) : factory(root["Handsontable"]);
|
8
8
|
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
9
9
|
}
|
10
|
-
})(typeof self !== 'undefined' ? self : this, function(
|
10
|
+
})(typeof self !== 'undefined' ? self : this, function(__WEBPACK_EXTERNAL_MODULE__6__) {
|
11
11
|
return /******/ (function(modules) { // webpackBootstrap
|
12
12
|
/******/ // The module cache
|
13
13
|
/******/ var installedModules = {};
|
@@ -91,7 +91,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
91
91
|
/******/
|
92
92
|
/******/
|
93
93
|
/******/ // Load entry module and return exports
|
94
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
94
|
+
/******/ return __webpack_require__(__webpack_require__.s = 13);
|
95
95
|
/******/ })
|
96
96
|
/************************************************************************/
|
97
97
|
/******/ ([
|
@@ -105,7 +105,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
105
105
|
exports.__esModule = true;
|
106
106
|
exports.default = void 0;
|
107
107
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
108
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
108
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
109
109
|
var _dictionary;
|
110
110
|
var C = _handsontable.default.languages.dictionaryKeys;
|
111
111
|
var dictionary = (_dictionary = {
|
@@ -129,9 +129,11 @@ module.exports = _interopRequireDefault, module.exports.__esModule = true, modul
|
|
129
129
|
|
130
130
|
/***/ }),
|
131
131
|
/* 2 */
|
132
|
-
/***/ (function(module, exports) {
|
132
|
+
/***/ (function(module, exports, __webpack_require__) {
|
133
133
|
|
134
|
+
var toPropertyKey = __webpack_require__(3);
|
134
135
|
function _defineProperty(obj, key, value) {
|
136
|
+
key = toPropertyKey(key);
|
135
137
|
if (key in obj) {
|
136
138
|
Object.defineProperty(obj, key, {
|
137
139
|
value: value,
|
@@ -148,12 +150,56 @@ module.exports = _defineProperty, module.exports.__esModule = true, module.expor
|
|
148
150
|
|
149
151
|
/***/ }),
|
150
152
|
/* 3 */
|
151
|
-
/***/ (function(module, exports) {
|
153
|
+
/***/ (function(module, exports, __webpack_require__) {
|
152
154
|
|
153
|
-
|
155
|
+
var _typeof = __webpack_require__(4)["default"];
|
156
|
+
var toPrimitive = __webpack_require__(5);
|
157
|
+
function _toPropertyKey(arg) {
|
158
|
+
var key = toPrimitive(arg, "string");
|
159
|
+
return _typeof(key) === "symbol" ? key : String(key);
|
160
|
+
}
|
161
|
+
module.exports = _toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
154
162
|
|
155
163
|
/***/ }),
|
156
164
|
/* 4 */
|
165
|
+
/***/ (function(module, exports) {
|
166
|
+
|
167
|
+
function _typeof(obj) {
|
168
|
+
"@babel/helpers - typeof";
|
169
|
+
|
170
|
+
return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
|
171
|
+
return typeof obj;
|
172
|
+
} : function (obj) {
|
173
|
+
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
174
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(obj);
|
175
|
+
}
|
176
|
+
module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
177
|
+
|
178
|
+
/***/ }),
|
179
|
+
/* 5 */
|
180
|
+
/***/ (function(module, exports, __webpack_require__) {
|
181
|
+
|
182
|
+
var _typeof = __webpack_require__(4)["default"];
|
183
|
+
function _toPrimitive(input, hint) {
|
184
|
+
if (_typeof(input) !== "object" || input === null) return input;
|
185
|
+
var prim = input[Symbol.toPrimitive];
|
186
|
+
if (prim !== undefined) {
|
187
|
+
var res = prim.call(input, hint || "default");
|
188
|
+
if (_typeof(res) !== "object") return res;
|
189
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
190
|
+
}
|
191
|
+
return (hint === "string" ? String : Number)(input);
|
192
|
+
}
|
193
|
+
module.exports = _toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
194
|
+
|
195
|
+
/***/ }),
|
196
|
+
/* 6 */
|
197
|
+
/***/ (function(module, exports) {
|
198
|
+
|
199
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__6__;
|
200
|
+
|
201
|
+
/***/ }),
|
202
|
+
/* 7 */
|
157
203
|
/***/ (function(module, exports, __webpack_require__) {
|
158
204
|
|
159
205
|
"use strict";
|
@@ -163,7 +209,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
163
209
|
exports.__esModule = true;
|
164
210
|
exports.default = void 0;
|
165
211
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
166
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
212
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
167
213
|
var _dictionary;
|
168
214
|
var C = _handsontable.default.languages.dictionaryKeys;
|
169
215
|
var dictionary = (_dictionary = {
|
@@ -174,7 +220,7 @@ var _default = dictionary;
|
|
174
220
|
exports.default = _default;
|
175
221
|
|
176
222
|
/***/ }),
|
177
|
-
/*
|
223
|
+
/* 8 */
|
178
224
|
/***/ (function(module, exports, __webpack_require__) {
|
179
225
|
|
180
226
|
"use strict";
|
@@ -184,7 +230,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
184
230
|
exports.__esModule = true;
|
185
231
|
exports.default = void 0;
|
186
232
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
187
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
233
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
188
234
|
var _dictionary;
|
189
235
|
var C = _handsontable.default.languages.dictionaryKeys;
|
190
236
|
var dictionary = (_dictionary = {
|
@@ -195,7 +241,7 @@ var _default = dictionary;
|
|
195
241
|
exports.default = _default;
|
196
242
|
|
197
243
|
/***/ }),
|
198
|
-
/*
|
244
|
+
/* 9 */
|
199
245
|
/***/ (function(module, exports, __webpack_require__) {
|
200
246
|
|
201
247
|
"use strict";
|
@@ -205,7 +251,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
205
251
|
exports.__esModule = true;
|
206
252
|
exports.default = void 0;
|
207
253
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
208
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
254
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
209
255
|
var _dictionary;
|
210
256
|
var C = _handsontable.default.languages.dictionaryKeys;
|
211
257
|
var dictionary = (_dictionary = {
|
@@ -216,7 +262,7 @@ var _default = dictionary;
|
|
216
262
|
exports.default = _default;
|
217
263
|
|
218
264
|
/***/ }),
|
219
|
-
/*
|
265
|
+
/* 10 */
|
220
266
|
/***/ (function(module, exports, __webpack_require__) {
|
221
267
|
|
222
268
|
"use strict";
|
@@ -226,7 +272,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
226
272
|
exports.__esModule = true;
|
227
273
|
exports.default = void 0;
|
228
274
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
229
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
275
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
230
276
|
var _dictionary;
|
231
277
|
var C = _handsontable.default.languages.dictionaryKeys;
|
232
278
|
var dictionary = (_dictionary = {
|
@@ -237,7 +283,7 @@ var _default = dictionary;
|
|
237
283
|
exports.default = _default;
|
238
284
|
|
239
285
|
/***/ }),
|
240
|
-
/*
|
286
|
+
/* 11 */
|
241
287
|
/***/ (function(module, exports, __webpack_require__) {
|
242
288
|
|
243
289
|
"use strict";
|
@@ -247,7 +293,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
247
293
|
exports.__esModule = true;
|
248
294
|
exports.default = void 0;
|
249
295
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
250
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
296
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
251
297
|
var _dictionary;
|
252
298
|
var C = _handsontable.default.languages.dictionaryKeys;
|
253
299
|
var dictionary = (_dictionary = {
|
@@ -258,7 +304,7 @@ var _default = dictionary;
|
|
258
304
|
exports.default = _default;
|
259
305
|
|
260
306
|
/***/ }),
|
261
|
-
/*
|
307
|
+
/* 12 */
|
262
308
|
/***/ (function(module, exports, __webpack_require__) {
|
263
309
|
|
264
310
|
"use strict";
|
@@ -268,7 +314,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
268
314
|
exports.__esModule = true;
|
269
315
|
exports.default = void 0;
|
270
316
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
271
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
317
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
272
318
|
var _dictionary;
|
273
319
|
var C = _handsontable.default.languages.dictionaryKeys;
|
274
320
|
var dictionary = (_dictionary = {
|
@@ -279,7 +325,7 @@ var _default = dictionary;
|
|
279
325
|
exports.default = _default;
|
280
326
|
|
281
327
|
/***/ }),
|
282
|
-
/*
|
328
|
+
/* 13 */
|
283
329
|
/***/ (function(module, exports, __webpack_require__) {
|
284
330
|
|
285
331
|
"use strict";
|
@@ -289,45 +335,45 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
289
335
|
exports.__esModule = true;
|
290
336
|
var _arAR = _interopRequireDefault(__webpack_require__(0));
|
291
337
|
exports.arAR = _arAR.default;
|
292
|
-
var _csCZ = _interopRequireDefault(__webpack_require__(
|
338
|
+
var _csCZ = _interopRequireDefault(__webpack_require__(7));
|
293
339
|
exports.csCZ = _csCZ.default;
|
294
|
-
var _deCH = _interopRequireDefault(__webpack_require__(
|
340
|
+
var _deCH = _interopRequireDefault(__webpack_require__(8));
|
295
341
|
exports.deCH = _deCH.default;
|
296
|
-
var _deDE = _interopRequireDefault(__webpack_require__(
|
342
|
+
var _deDE = _interopRequireDefault(__webpack_require__(9));
|
297
343
|
exports.deDE = _deDE.default;
|
298
|
-
var _enUS = _interopRequireDefault(__webpack_require__(
|
344
|
+
var _enUS = _interopRequireDefault(__webpack_require__(10));
|
299
345
|
exports.enUS = _enUS.default;
|
300
|
-
var _esMX = _interopRequireDefault(__webpack_require__(
|
346
|
+
var _esMX = _interopRequireDefault(__webpack_require__(11));
|
301
347
|
exports.esMX = _esMX.default;
|
302
|
-
var _frFR = _interopRequireDefault(__webpack_require__(
|
348
|
+
var _frFR = _interopRequireDefault(__webpack_require__(12));
|
303
349
|
exports.frFR = _frFR.default;
|
304
|
-
var _itIT = _interopRequireDefault(__webpack_require__(
|
350
|
+
var _itIT = _interopRequireDefault(__webpack_require__(14));
|
305
351
|
exports.itIT = _itIT.default;
|
306
|
-
var _jaJP = _interopRequireDefault(__webpack_require__(
|
352
|
+
var _jaJP = _interopRequireDefault(__webpack_require__(15));
|
307
353
|
exports.jaJP = _jaJP.default;
|
308
|
-
var _koKR = _interopRequireDefault(__webpack_require__(
|
354
|
+
var _koKR = _interopRequireDefault(__webpack_require__(16));
|
309
355
|
exports.koKR = _koKR.default;
|
310
|
-
var _lvLV = _interopRequireDefault(__webpack_require__(
|
356
|
+
var _lvLV = _interopRequireDefault(__webpack_require__(17));
|
311
357
|
exports.lvLV = _lvLV.default;
|
312
|
-
var _nbNO = _interopRequireDefault(__webpack_require__(
|
358
|
+
var _nbNO = _interopRequireDefault(__webpack_require__(18));
|
313
359
|
exports.nbNO = _nbNO.default;
|
314
|
-
var _nlNL = _interopRequireDefault(__webpack_require__(
|
360
|
+
var _nlNL = _interopRequireDefault(__webpack_require__(19));
|
315
361
|
exports.nlNL = _nlNL.default;
|
316
|
-
var _plPL = _interopRequireDefault(__webpack_require__(
|
362
|
+
var _plPL = _interopRequireDefault(__webpack_require__(20));
|
317
363
|
exports.plPL = _plPL.default;
|
318
|
-
var _ptBR = _interopRequireDefault(__webpack_require__(
|
364
|
+
var _ptBR = _interopRequireDefault(__webpack_require__(21));
|
319
365
|
exports.ptBR = _ptBR.default;
|
320
|
-
var _ruRU = _interopRequireDefault(__webpack_require__(
|
366
|
+
var _ruRU = _interopRequireDefault(__webpack_require__(22));
|
321
367
|
exports.ruRU = _ruRU.default;
|
322
|
-
var _srSP = _interopRequireDefault(__webpack_require__(
|
368
|
+
var _srSP = _interopRequireDefault(__webpack_require__(23));
|
323
369
|
exports.srSP = _srSP.default;
|
324
|
-
var _zhCN = _interopRequireDefault(__webpack_require__(
|
370
|
+
var _zhCN = _interopRequireDefault(__webpack_require__(24));
|
325
371
|
exports.zhCN = _zhCN.default;
|
326
|
-
var _zhTW = _interopRequireDefault(__webpack_require__(
|
372
|
+
var _zhTW = _interopRequireDefault(__webpack_require__(25));
|
327
373
|
exports.zhTW = _zhTW.default;
|
328
374
|
|
329
375
|
/***/ }),
|
330
|
-
/*
|
376
|
+
/* 14 */
|
331
377
|
/***/ (function(module, exports, __webpack_require__) {
|
332
378
|
|
333
379
|
"use strict";
|
@@ -337,7 +383,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
337
383
|
exports.__esModule = true;
|
338
384
|
exports.default = void 0;
|
339
385
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
340
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
386
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
341
387
|
var _dictionary;
|
342
388
|
var C = _handsontable.default.languages.dictionaryKeys;
|
343
389
|
var dictionary = (_dictionary = {
|
@@ -348,7 +394,7 @@ var _default = dictionary;
|
|
348
394
|
exports.default = _default;
|
349
395
|
|
350
396
|
/***/ }),
|
351
|
-
/*
|
397
|
+
/* 15 */
|
352
398
|
/***/ (function(module, exports, __webpack_require__) {
|
353
399
|
|
354
400
|
"use strict";
|
@@ -358,7 +404,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
358
404
|
exports.__esModule = true;
|
359
405
|
exports.default = void 0;
|
360
406
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
361
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
407
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
362
408
|
var _dictionary;
|
363
409
|
var C = _handsontable.default.languages.dictionaryKeys;
|
364
410
|
var dictionary = (_dictionary = {
|
@@ -369,7 +415,7 @@ var _default = dictionary;
|
|
369
415
|
exports.default = _default;
|
370
416
|
|
371
417
|
/***/ }),
|
372
|
-
/*
|
418
|
+
/* 16 */
|
373
419
|
/***/ (function(module, exports, __webpack_require__) {
|
374
420
|
|
375
421
|
"use strict";
|
@@ -379,7 +425,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
379
425
|
exports.__esModule = true;
|
380
426
|
exports.default = void 0;
|
381
427
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
382
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
428
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
383
429
|
var _dictionary;
|
384
430
|
var C = _handsontable.default.languages.dictionaryKeys;
|
385
431
|
var dictionary = (_dictionary = {
|
@@ -390,7 +436,7 @@ var _default = dictionary;
|
|
390
436
|
exports.default = _default;
|
391
437
|
|
392
438
|
/***/ }),
|
393
|
-
/*
|
439
|
+
/* 17 */
|
394
440
|
/***/ (function(module, exports, __webpack_require__) {
|
395
441
|
|
396
442
|
"use strict";
|
@@ -400,7 +446,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
400
446
|
exports.__esModule = true;
|
401
447
|
exports.default = void 0;
|
402
448
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
403
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
449
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
404
450
|
var _dictionary;
|
405
451
|
var C = _handsontable.default.languages.dictionaryKeys;
|
406
452
|
var dictionary = (_dictionary = {
|
@@ -411,7 +457,7 @@ var _default = dictionary;
|
|
411
457
|
exports.default = _default;
|
412
458
|
|
413
459
|
/***/ }),
|
414
|
-
/*
|
460
|
+
/* 18 */
|
415
461
|
/***/ (function(module, exports, __webpack_require__) {
|
416
462
|
|
417
463
|
"use strict";
|
@@ -421,7 +467,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
421
467
|
exports.__esModule = true;
|
422
468
|
exports.default = void 0;
|
423
469
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
424
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
470
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
425
471
|
var _dictionary;
|
426
472
|
var C = _handsontable.default.languages.dictionaryKeys;
|
427
473
|
var dictionary = (_dictionary = {
|
@@ -432,7 +478,7 @@ var _default = dictionary;
|
|
432
478
|
exports.default = _default;
|
433
479
|
|
434
480
|
/***/ }),
|
435
|
-
/*
|
481
|
+
/* 19 */
|
436
482
|
/***/ (function(module, exports, __webpack_require__) {
|
437
483
|
|
438
484
|
"use strict";
|
@@ -442,7 +488,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
442
488
|
exports.__esModule = true;
|
443
489
|
exports.default = void 0;
|
444
490
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
445
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
491
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
446
492
|
var _dictionary;
|
447
493
|
var C = _handsontable.default.languages.dictionaryKeys;
|
448
494
|
var dictionary = (_dictionary = {
|
@@ -453,7 +499,7 @@ var _default = dictionary;
|
|
453
499
|
exports.default = _default;
|
454
500
|
|
455
501
|
/***/ }),
|
456
|
-
/*
|
502
|
+
/* 20 */
|
457
503
|
/***/ (function(module, exports, __webpack_require__) {
|
458
504
|
|
459
505
|
"use strict";
|
@@ -463,7 +509,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
463
509
|
exports.__esModule = true;
|
464
510
|
exports.default = void 0;
|
465
511
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
466
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
512
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
467
513
|
var _dictionary;
|
468
514
|
var C = _handsontable.default.languages.dictionaryKeys;
|
469
515
|
var dictionary = (_dictionary = {
|
@@ -474,7 +520,7 @@ var _default = dictionary;
|
|
474
520
|
exports.default = _default;
|
475
521
|
|
476
522
|
/***/ }),
|
477
|
-
/*
|
523
|
+
/* 21 */
|
478
524
|
/***/ (function(module, exports, __webpack_require__) {
|
479
525
|
|
480
526
|
"use strict";
|
@@ -484,7 +530,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
484
530
|
exports.__esModule = true;
|
485
531
|
exports.default = void 0;
|
486
532
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
487
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
533
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
488
534
|
var _dictionary;
|
489
535
|
var C = _handsontable.default.languages.dictionaryKeys;
|
490
536
|
var dictionary = (_dictionary = {
|
@@ -495,7 +541,7 @@ var _default = dictionary;
|
|
495
541
|
exports.default = _default;
|
496
542
|
|
497
543
|
/***/ }),
|
498
|
-
/*
|
544
|
+
/* 22 */
|
499
545
|
/***/ (function(module, exports, __webpack_require__) {
|
500
546
|
|
501
547
|
"use strict";
|
@@ -505,7 +551,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
505
551
|
exports.__esModule = true;
|
506
552
|
exports.default = void 0;
|
507
553
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
508
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
554
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
509
555
|
var _dictionary;
|
510
556
|
var C = _handsontable.default.languages.dictionaryKeys;
|
511
557
|
var dictionary = (_dictionary = {
|
@@ -516,7 +562,7 @@ var _default = dictionary;
|
|
516
562
|
exports.default = _default;
|
517
563
|
|
518
564
|
/***/ }),
|
519
|
-
/*
|
565
|
+
/* 23 */
|
520
566
|
/***/ (function(module, exports, __webpack_require__) {
|
521
567
|
|
522
568
|
"use strict";
|
@@ -526,7 +572,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
526
572
|
exports.__esModule = true;
|
527
573
|
exports.default = void 0;
|
528
574
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
529
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
575
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
530
576
|
var _dictionary;
|
531
577
|
var C = _handsontable.default.languages.dictionaryKeys;
|
532
578
|
var dictionary = (_dictionary = {
|
@@ -537,7 +583,7 @@ var _default = dictionary;
|
|
537
583
|
exports.default = _default;
|
538
584
|
|
539
585
|
/***/ }),
|
540
|
-
/*
|
586
|
+
/* 24 */
|
541
587
|
/***/ (function(module, exports, __webpack_require__) {
|
542
588
|
|
543
589
|
"use strict";
|
@@ -547,7 +593,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
547
593
|
exports.__esModule = true;
|
548
594
|
exports.default = void 0;
|
549
595
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
550
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
596
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
551
597
|
var _dictionary;
|
552
598
|
var C = _handsontable.default.languages.dictionaryKeys;
|
553
599
|
var dictionary = (_dictionary = {
|
@@ -558,7 +604,7 @@ var _default = dictionary;
|
|
558
604
|
exports.default = _default;
|
559
605
|
|
560
606
|
/***/ }),
|
561
|
-
/*
|
607
|
+
/* 25 */
|
562
608
|
/***/ (function(module, exports, __webpack_require__) {
|
563
609
|
|
564
610
|
"use strict";
|
@@ -568,7 +614,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
568
614
|
exports.__esModule = true;
|
569
615
|
exports.default = void 0;
|
570
616
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
571
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
617
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
572
618
|
var _dictionary;
|
573
619
|
var C = _handsontable.default.languages.dictionaryKeys;
|
574
620
|
var dictionary = (_dictionary = {
|
package/languages/it-IT.js
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
var a = typeof exports === 'object' ? factory(require("handsontable")) : factory(root["Handsontable"]);
|
8
8
|
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
9
9
|
}
|
10
|
-
})(typeof self !== 'undefined' ? self : this, function(
|
10
|
+
})(typeof self !== 'undefined' ? self : this, function(__WEBPACK_EXTERNAL_MODULE__6__) {
|
11
11
|
return /******/ (function(modules) { // webpackBootstrap
|
12
12
|
/******/ // The module cache
|
13
13
|
/******/ var installedModules = {};
|
@@ -91,7 +91,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
91
91
|
/******/
|
92
92
|
/******/
|
93
93
|
/******/ // Load entry module and return exports
|
94
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
94
|
+
/******/ return __webpack_require__(__webpack_require__.s = 14);
|
95
95
|
/******/ })
|
96
96
|
/************************************************************************/
|
97
97
|
/******/ ([
|
@@ -108,9 +108,11 @@ module.exports = _interopRequireDefault, module.exports.__esModule = true, modul
|
|
108
108
|
|
109
109
|
/***/ }),
|
110
110
|
/* 2 */
|
111
|
-
/***/ (function(module, exports) {
|
111
|
+
/***/ (function(module, exports, __webpack_require__) {
|
112
112
|
|
113
|
+
var toPropertyKey = __webpack_require__(3);
|
113
114
|
function _defineProperty(obj, key, value) {
|
115
|
+
key = toPropertyKey(key);
|
114
116
|
if (key in obj) {
|
115
117
|
Object.defineProperty(obj, key, {
|
116
118
|
value: value,
|
@@ -127,19 +129,63 @@ module.exports = _defineProperty, module.exports.__esModule = true, module.expor
|
|
127
129
|
|
128
130
|
/***/ }),
|
129
131
|
/* 3 */
|
132
|
+
/***/ (function(module, exports, __webpack_require__) {
|
133
|
+
|
134
|
+
var _typeof = __webpack_require__(4)["default"];
|
135
|
+
var toPrimitive = __webpack_require__(5);
|
136
|
+
function _toPropertyKey(arg) {
|
137
|
+
var key = toPrimitive(arg, "string");
|
138
|
+
return _typeof(key) === "symbol" ? key : String(key);
|
139
|
+
}
|
140
|
+
module.exports = _toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
141
|
+
|
142
|
+
/***/ }),
|
143
|
+
/* 4 */
|
144
|
+
/***/ (function(module, exports) {
|
145
|
+
|
146
|
+
function _typeof(obj) {
|
147
|
+
"@babel/helpers - typeof";
|
148
|
+
|
149
|
+
return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
|
150
|
+
return typeof obj;
|
151
|
+
} : function (obj) {
|
152
|
+
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
153
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(obj);
|
154
|
+
}
|
155
|
+
module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
156
|
+
|
157
|
+
/***/ }),
|
158
|
+
/* 5 */
|
159
|
+
/***/ (function(module, exports, __webpack_require__) {
|
160
|
+
|
161
|
+
var _typeof = __webpack_require__(4)["default"];
|
162
|
+
function _toPrimitive(input, hint) {
|
163
|
+
if (_typeof(input) !== "object" || input === null) return input;
|
164
|
+
var prim = input[Symbol.toPrimitive];
|
165
|
+
if (prim !== undefined) {
|
166
|
+
var res = prim.call(input, hint || "default");
|
167
|
+
if (_typeof(res) !== "object") return res;
|
168
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
169
|
+
}
|
170
|
+
return (hint === "string" ? String : Number)(input);
|
171
|
+
}
|
172
|
+
module.exports = _toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
173
|
+
|
174
|
+
/***/ }),
|
175
|
+
/* 6 */
|
130
176
|
/***/ (function(module, exports) {
|
131
177
|
|
132
|
-
module.exports =
|
178
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__6__;
|
133
179
|
|
134
180
|
/***/ }),
|
135
|
-
/* 4 */,
|
136
|
-
/* 5 */,
|
137
|
-
/* 6 */,
|
138
181
|
/* 7 */,
|
139
182
|
/* 8 */,
|
140
183
|
/* 9 */,
|
141
184
|
/* 10 */,
|
142
|
-
/* 11
|
185
|
+
/* 11 */,
|
186
|
+
/* 12 */,
|
187
|
+
/* 13 */,
|
188
|
+
/* 14 */
|
143
189
|
/***/ (function(module, exports, __webpack_require__) {
|
144
190
|
|
145
191
|
"use strict";
|
@@ -149,7 +195,7 @@ var _interopRequireDefault = __webpack_require__(1);
|
|
149
195
|
exports.__esModule = true;
|
150
196
|
exports.default = void 0;
|
151
197
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
152
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(
|
198
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
153
199
|
var _dictionary;
|
154
200
|
var C = _handsontable.default.languages.dictionaryKeys;
|
155
201
|
var dictionary = (_dictionary = {
|
package/languages/it-IT.mjs
CHANGED
@@ -1,5 +1,18 @@
|
|
1
|
+
import "core-js/modules/es.symbol.to-primitive.js";
|
2
|
+
import "core-js/modules/es.date.to-primitive.js";
|
3
|
+
import "core-js/modules/es.symbol.js";
|
4
|
+
import "core-js/modules/es.symbol.description.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
6
|
+
import "core-js/modules/es.number.constructor.js";
|
7
|
+
import "core-js/modules/es.symbol.iterator.js";
|
8
|
+
import "core-js/modules/es.array.iterator.js";
|
9
|
+
import "core-js/modules/es.string.iterator.js";
|
10
|
+
import "core-js/modules/web.dom-collections.iterator.js";
|
11
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
1
12
|
var _dictionary;
|
2
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
13
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
14
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
15
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
3
16
|
/**
|
4
17
|
* @preserve
|
5
18
|
* Authors: Andrea Cattaneo
|