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/nb-NO.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,12 +91,12 @@ 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 = 18);
|
95
95
|
/******/ })
|
96
96
|
/************************************************************************/
|
97
|
-
/******/ (
|
98
|
-
|
99
|
-
|
97
|
+
/******/ ([
|
98
|
+
/* 0 */,
|
99
|
+
/* 1 */
|
100
100
|
/***/ (function(module, exports) {
|
101
101
|
|
102
102
|
function _interopRequireDefault(obj) {
|
@@ -107,33 +107,12 @@ function _interopRequireDefault(obj) {
|
|
107
107
|
module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
108
108
|
|
109
109
|
/***/ }),
|
110
|
-
|
111
|
-
/***/ 15:
|
110
|
+
/* 2 */
|
112
111
|
/***/ (function(module, exports, __webpack_require__) {
|
113
112
|
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
var _interopRequireDefault = __webpack_require__(1);
|
118
|
-
exports.__esModule = true;
|
119
|
-
exports.default = void 0;
|
120
|
-
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
121
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(3));
|
122
|
-
var _dictionary;
|
123
|
-
var C = _handsontable.default.languages.dictionaryKeys;
|
124
|
-
var dictionary = (_dictionary = {
|
125
|
-
languageCode: 'nb-NO'
|
126
|
-
}, (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, 'Sett inn over'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, 'Sett inn under'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, 'Sett inn til venstre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, 'Sett inn til høyre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['Fjern rad', 'Fjern rader']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['Fjern kolonne', 'Fjern kolonner']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, 'Angre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REDO, 'Gjør om'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, 'Skrivebeskyttet'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, 'Tøm kolonne'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, 'Juster'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, 'Venstre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, 'Midtstill'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, 'Høyre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, 'Tilpasset'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, 'Øverst'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, 'På midten'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, 'Nederst'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, 'Frys kolonne'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, 'Frigi kolonne'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, 'Kantlinjer'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, 'Over'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, 'Til høyre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, 'Under'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, 'Til venstre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, 'Fjern kantlinje(r)'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, 'Legg til kommentar'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, 'Endre kommentar'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, 'Fjern kommentar'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, 'Skrivebeskytt kommentar'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, 'Slå sammen celler'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, 'Opphev sammenslåing'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY, 'Kopier'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CUT, 'Klipp ut'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, 'Sett inn underrad'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, 'Frigi fra gruppe'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['Skjul kolonne', 'Skjul kolonner']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['Vis kolonne', 'Vis kolonner']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['Skjul rad', 'Skjul rader']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['Vis rad', 'Vis rader']), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NONE, 'Ingen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EMPTY, 'Er tom'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, 'Er ikke tom'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EQUAL, 'Er lik'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, 'Er ikke lik'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, 'Begynner med'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, 'Slutter med'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, 'Inneholder'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, 'Inneholder ikke'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, 'Større enn'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, 'Større enn eller lik'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, 'Mindre enn'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, 'Mindre enn eller lik'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, 'Er mellom'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, 'Er ikke mellom'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_AFTER, 'Etter'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEFORE, 'Før'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TODAY, 'I dag'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, 'I morgen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, 'I går'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, 'Tomme celler'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, 'Filtrer etter betingelse'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, 'Filtrer etter verdi'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_CONJUNCTION, 'Og'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_DISJUNCTION, 'Eller'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, 'Velg alle'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CLEAR, 'Tøm'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_OK, 'OK'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CANCEL, 'Avbryt'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, 'Søk'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, 'Verdi'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, 'Andre verdi'), _dictionary);
|
127
|
-
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
128
|
-
var _default = dictionary;
|
129
|
-
exports.default = _default;
|
130
|
-
|
131
|
-
/***/ }),
|
132
|
-
|
133
|
-
/***/ 2:
|
134
|
-
/***/ (function(module, exports) {
|
135
|
-
|
113
|
+
var toPropertyKey = __webpack_require__(3);
|
136
114
|
function _defineProperty(obj, key, value) {
|
115
|
+
key = toPropertyKey(key);
|
137
116
|
if (key in obj) {
|
138
117
|
Object.defineProperty(obj, key, {
|
139
118
|
value: value,
|
@@ -149,13 +128,87 @@ function _defineProperty(obj, key, value) {
|
|
149
128
|
module.exports = _defineProperty, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
150
129
|
|
151
130
|
/***/ }),
|
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;
|
152
141
|
|
153
|
-
/***/
|
142
|
+
/***/ }),
|
143
|
+
/* 4 */
|
154
144
|
/***/ (function(module, exports) {
|
155
145
|
|
156
|
-
|
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 */
|
176
|
+
/***/ (function(module, exports) {
|
177
|
+
|
178
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__6__;
|
179
|
+
|
180
|
+
/***/ }),
|
181
|
+
/* 7 */,
|
182
|
+
/* 8 */,
|
183
|
+
/* 9 */,
|
184
|
+
/* 10 */,
|
185
|
+
/* 11 */,
|
186
|
+
/* 12 */,
|
187
|
+
/* 13 */,
|
188
|
+
/* 14 */,
|
189
|
+
/* 15 */,
|
190
|
+
/* 16 */,
|
191
|
+
/* 17 */,
|
192
|
+
/* 18 */
|
193
|
+
/***/ (function(module, exports, __webpack_require__) {
|
194
|
+
|
195
|
+
"use strict";
|
157
196
|
|
158
|
-
/***/ })
|
159
197
|
|
160
|
-
|
198
|
+
var _interopRequireDefault = __webpack_require__(1);
|
199
|
+
exports.__esModule = true;
|
200
|
+
exports.default = void 0;
|
201
|
+
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
202
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
203
|
+
var _dictionary;
|
204
|
+
var C = _handsontable.default.languages.dictionaryKeys;
|
205
|
+
var dictionary = (_dictionary = {
|
206
|
+
languageCode: 'nb-NO'
|
207
|
+
}, (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, 'Sett inn over'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, 'Sett inn under'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, 'Sett inn til venstre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, 'Sett inn til høyre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['Fjern rad', 'Fjern rader']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['Fjern kolonne', 'Fjern kolonner']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, 'Angre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REDO, 'Gjør om'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, 'Skrivebeskyttet'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, 'Tøm kolonne'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, 'Juster'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, 'Venstre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, 'Midtstill'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, 'Høyre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, 'Tilpasset'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, 'Øverst'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, 'På midten'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, 'Nederst'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, 'Frys kolonne'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, 'Frigi kolonne'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, 'Kantlinjer'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, 'Over'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, 'Til høyre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, 'Under'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, 'Til venstre'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, 'Fjern kantlinje(r)'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, 'Legg til kommentar'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, 'Endre kommentar'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, 'Fjern kommentar'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, 'Skrivebeskytt kommentar'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, 'Slå sammen celler'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, 'Opphev sammenslåing'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY, 'Kopier'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CUT, 'Klipp ut'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, 'Sett inn underrad'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, 'Frigi fra gruppe'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['Skjul kolonne', 'Skjul kolonner']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['Vis kolonne', 'Vis kolonner']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['Skjul rad', 'Skjul rader']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['Vis rad', 'Vis rader']), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NONE, 'Ingen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EMPTY, 'Er tom'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, 'Er ikke tom'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EQUAL, 'Er lik'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, 'Er ikke lik'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, 'Begynner med'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, 'Slutter med'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, 'Inneholder'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, 'Inneholder ikke'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, 'Større enn'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, 'Større enn eller lik'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, 'Mindre enn'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, 'Mindre enn eller lik'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, 'Er mellom'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, 'Er ikke mellom'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_AFTER, 'Etter'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEFORE, 'Før'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TODAY, 'I dag'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, 'I morgen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, 'I går'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, 'Tomme celler'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, 'Filtrer etter betingelse'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, 'Filtrer etter verdi'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_CONJUNCTION, 'Og'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_DISJUNCTION, 'Eller'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, 'Velg alle'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CLEAR, 'Tøm'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_OK, 'OK'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CANCEL, 'Avbryt'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, 'Søk'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, 'Verdi'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, 'Andre verdi'), _dictionary);
|
208
|
+
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
209
|
+
var _default = dictionary;
|
210
|
+
exports.default = _default;
|
211
|
+
|
212
|
+
/***/ })
|
213
|
+
/******/ ])["___"];
|
161
214
|
});
|
package/languages/nb-NO.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: Simon Borøy-Johnsen (TheSimoms)
|
package/languages/nl-NL.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,12 +91,12 @@ 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 = 19);
|
95
95
|
/******/ })
|
96
96
|
/************************************************************************/
|
97
|
-
/******/ (
|
98
|
-
|
99
|
-
|
97
|
+
/******/ ([
|
98
|
+
/* 0 */,
|
99
|
+
/* 1 */
|
100
100
|
/***/ (function(module, exports) {
|
101
101
|
|
102
102
|
function _interopRequireDefault(obj) {
|
@@ -107,33 +107,12 @@ function _interopRequireDefault(obj) {
|
|
107
107
|
module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
108
108
|
|
109
109
|
/***/ }),
|
110
|
-
|
111
|
-
/***/ 16:
|
110
|
+
/* 2 */
|
112
111
|
/***/ (function(module, exports, __webpack_require__) {
|
113
112
|
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
var _interopRequireDefault = __webpack_require__(1);
|
118
|
-
exports.__esModule = true;
|
119
|
-
exports.default = void 0;
|
120
|
-
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
121
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(3));
|
122
|
-
var _dictionary;
|
123
|
-
var C = _handsontable.default.languages.dictionaryKeys;
|
124
|
-
var dictionary = (_dictionary = {
|
125
|
-
languageCode: 'nl-NL'
|
126
|
-
}, (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, 'Rij boven invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, 'Rij onder invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, 'Kolom links invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, 'Kolom rechts invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['Rij verwijderen', 'Rijen verwijderen']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['Kolom verwijderen', 'Kolommen verwijderen']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, 'Ongedaan maken'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REDO, 'Opnieuw uitvoeren'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, 'Alleen lezen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, 'Kolom leegmaken'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, 'Uitlijning'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, 'Links'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, 'Gecentreerd'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, 'Rechts'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, 'Uitvullen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, 'Boven'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, 'Midden'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, 'Onder'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, 'Kolom blokkeren'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, 'Kolom blokkering opheffen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, 'Randen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, 'Boven'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, 'Rechts'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, 'Onder'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, 'Links'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, 'Rand(en) verwijderen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, 'Opmerking toevoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, 'Opmerking bewerken'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, 'Opmerking verwijderen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, 'Opmerking Alleen-lezen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, 'Cellen samenvoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, 'Samenvoeging van cellen opheffen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY, 'Kopiëren'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_WITH_COLUMN_HEADERS, ['Kopiëren met koptekst', 'Kopiëren met kopteksten']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_WITH_COLUMN_GROUP_HEADERS, ['Kopiëren met groepskoptekst', 'Kopiëren met groepskopteksten']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_COLUMN_HEADERS_ONLY, ['Kopiëren koptekst', 'Kopiëren kopteksten']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CUT, 'Knippen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, 'Geneste rij invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, 'Geneste rij ontkoppelen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['Kolom verbergen', 'Kolommen verbergen']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['Kolom zichbaar maken', 'Kolommen zichtbaar maken']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['Rij verbergen', 'Rijen verbergen']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['Rij zichtbaar maken', 'Rijen zichtbaar maken']), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NONE, 'Geen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EMPTY, 'Is leeg'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, 'Is niet leeg'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EQUAL, 'Is gelijk aan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, 'Is niet gelijk aan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, 'Begint met'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, 'Eindigt op'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, 'Bevat'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, 'Bevat niet'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, 'Is groter'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, 'Is groter of gelijk aan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, 'Is kleiner dan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, 'Is kleiner dan of gelijk aan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, 'Is tussen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, 'Ligt niet tussen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_AFTER, 'Na'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEFORE, 'Voor'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TODAY, 'Vandaag'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, 'Morgen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, 'Gisteren'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, 'Cellen leegmaken'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, 'Filteren op conditie'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, 'Filteren op waarde'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_CONJUNCTION, 'En'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_DISJUNCTION, 'Of'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, 'Alles selecteren'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CLEAR, 'Leeg maken'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_OK, 'OK'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CANCEL, 'Annuleren'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, 'Zoeken'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, 'Waarde'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, 'Tweede waarde'), _dictionary);
|
127
|
-
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
128
|
-
var _default = dictionary;
|
129
|
-
exports.default = _default;
|
130
|
-
|
131
|
-
/***/ }),
|
132
|
-
|
133
|
-
/***/ 2:
|
134
|
-
/***/ (function(module, exports) {
|
135
|
-
|
113
|
+
var toPropertyKey = __webpack_require__(3);
|
136
114
|
function _defineProperty(obj, key, value) {
|
115
|
+
key = toPropertyKey(key);
|
137
116
|
if (key in obj) {
|
138
117
|
Object.defineProperty(obj, key, {
|
139
118
|
value: value,
|
@@ -149,13 +128,88 @@ function _defineProperty(obj, key, value) {
|
|
149
128
|
module.exports = _defineProperty, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
150
129
|
|
151
130
|
/***/ }),
|
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;
|
152
141
|
|
153
|
-
/***/
|
142
|
+
/***/ }),
|
143
|
+
/* 4 */
|
154
144
|
/***/ (function(module, exports) {
|
155
145
|
|
156
|
-
|
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 */
|
176
|
+
/***/ (function(module, exports) {
|
177
|
+
|
178
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__6__;
|
179
|
+
|
180
|
+
/***/ }),
|
181
|
+
/* 7 */,
|
182
|
+
/* 8 */,
|
183
|
+
/* 9 */,
|
184
|
+
/* 10 */,
|
185
|
+
/* 11 */,
|
186
|
+
/* 12 */,
|
187
|
+
/* 13 */,
|
188
|
+
/* 14 */,
|
189
|
+
/* 15 */,
|
190
|
+
/* 16 */,
|
191
|
+
/* 17 */,
|
192
|
+
/* 18 */,
|
193
|
+
/* 19 */
|
194
|
+
/***/ (function(module, exports, __webpack_require__) {
|
195
|
+
|
196
|
+
"use strict";
|
157
197
|
|
158
|
-
/***/ })
|
159
198
|
|
160
|
-
|
199
|
+
var _interopRequireDefault = __webpack_require__(1);
|
200
|
+
exports.__esModule = true;
|
201
|
+
exports.default = void 0;
|
202
|
+
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
203
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
204
|
+
var _dictionary;
|
205
|
+
var C = _handsontable.default.languages.dictionaryKeys;
|
206
|
+
var dictionary = (_dictionary = {
|
207
|
+
languageCode: 'nl-NL'
|
208
|
+
}, (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, 'Rij boven invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, 'Rij onder invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, 'Kolom links invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, 'Kolom rechts invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['Rij verwijderen', 'Rijen verwijderen']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['Kolom verwijderen', 'Kolommen verwijderen']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, 'Ongedaan maken'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REDO, 'Opnieuw uitvoeren'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, 'Alleen lezen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, 'Kolom leegmaken'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, 'Uitlijning'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, 'Links'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, 'Gecentreerd'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, 'Rechts'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, 'Uitvullen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, 'Boven'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, 'Midden'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, 'Onder'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, 'Kolom blokkeren'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, 'Kolom blokkering opheffen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, 'Randen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, 'Boven'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, 'Rechts'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, 'Onder'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, 'Links'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, 'Rand(en) verwijderen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, 'Opmerking toevoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, 'Opmerking bewerken'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, 'Opmerking verwijderen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, 'Opmerking Alleen-lezen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, 'Cellen samenvoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, 'Samenvoeging van cellen opheffen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY, 'Kopiëren'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_WITH_COLUMN_HEADERS, ['Kopiëren met koptekst', 'Kopiëren met kopteksten']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_WITH_COLUMN_GROUP_HEADERS, ['Kopiëren met groepskoptekst', 'Kopiëren met groepskopteksten']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_COLUMN_HEADERS_ONLY, ['Kopiëren koptekst', 'Kopiëren kopteksten']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CUT, 'Knippen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, 'Geneste rij invoegen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, 'Geneste rij ontkoppelen'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['Kolom verbergen', 'Kolommen verbergen']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['Kolom zichbaar maken', 'Kolommen zichtbaar maken']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['Rij verbergen', 'Rijen verbergen']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['Rij zichtbaar maken', 'Rijen zichtbaar maken']), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NONE, 'Geen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EMPTY, 'Is leeg'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, 'Is niet leeg'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EQUAL, 'Is gelijk aan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, 'Is niet gelijk aan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, 'Begint met'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, 'Eindigt op'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, 'Bevat'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, 'Bevat niet'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, 'Is groter'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, 'Is groter of gelijk aan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, 'Is kleiner dan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, 'Is kleiner dan of gelijk aan'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, 'Is tussen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, 'Ligt niet tussen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_AFTER, 'Na'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEFORE, 'Voor'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TODAY, 'Vandaag'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, 'Morgen'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, 'Gisteren'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, 'Cellen leegmaken'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, 'Filteren op conditie'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, 'Filteren op waarde'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_CONJUNCTION, 'En'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_DISJUNCTION, 'Of'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, 'Alles selecteren'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CLEAR, 'Leeg maken'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_OK, 'OK'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CANCEL, 'Annuleren'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, 'Zoeken'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, 'Waarde'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, 'Tweede waarde'), _dictionary);
|
209
|
+
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
210
|
+
var _default = dictionary;
|
211
|
+
exports.default = _default;
|
212
|
+
|
213
|
+
/***/ })
|
214
|
+
/******/ ])["___"];
|
161
215
|
});
|
package/languages/nl-NL.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: Tomas Rapkauskas, Anton Brouwer, webjazznl
|
package/languages/pl-PL.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,12 +91,12 @@ 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 = 20);
|
95
95
|
/******/ })
|
96
96
|
/************************************************************************/
|
97
|
-
/******/ (
|
98
|
-
|
99
|
-
|
97
|
+
/******/ ([
|
98
|
+
/* 0 */,
|
99
|
+
/* 1 */
|
100
100
|
/***/ (function(module, exports) {
|
101
101
|
|
102
102
|
function _interopRequireDefault(obj) {
|
@@ -107,33 +107,12 @@ function _interopRequireDefault(obj) {
|
|
107
107
|
module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
108
108
|
|
109
109
|
/***/ }),
|
110
|
-
|
111
|
-
/***/ 17:
|
110
|
+
/* 2 */
|
112
111
|
/***/ (function(module, exports, __webpack_require__) {
|
113
112
|
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
var _interopRequireDefault = __webpack_require__(1);
|
118
|
-
exports.__esModule = true;
|
119
|
-
exports.default = void 0;
|
120
|
-
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
121
|
-
var _handsontable = _interopRequireDefault(__webpack_require__(3));
|
122
|
-
var _dictionary;
|
123
|
-
var C = _handsontable.default.languages.dictionaryKeys;
|
124
|
-
var dictionary = (_dictionary = {
|
125
|
-
languageCode: 'pl-PL'
|
126
|
-
}, (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NO_ITEMS, 'Brak dostępnych opcji'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, 'Wstaw wiersz powyżej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, 'Wstaw wiersz poniżej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, 'Wstaw kolumnę z lewej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, 'Wstaw kolumnę z prawej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['Usuń wiersz', 'Usuń wiersze']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['Usuń kolumnę', 'Usuń kolumny']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, 'Cofnij'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REDO, 'Ponów'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, 'Tylko do odczytu'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, 'Wyczyść kolumnę'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, 'Wyrównanie'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, 'Do lewej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, 'Do środka'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, 'Do prawej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, 'Wyjustuj'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, 'Do góry'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, 'Wyśrodkuj'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, 'Do dołu'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, 'Zablokuj kolumnę'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, 'Odblokuj kolumnę'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, 'Obramowanie'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, 'Krawędź górna'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, 'Krawędź prawa'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, 'Krawędź dolna'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, 'Krawędź lewa'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, 'Usuń obramowanie(a)'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, 'Dodaj komentarz'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, 'Edytuj komentarz'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, 'Usuń komentarz'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, 'Komentarz tylko do odczytu'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, 'Scal komórki'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, 'Rozdziel komórki'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY, 'Kopiuj'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_WITH_COLUMN_HEADERS, ['Kopiuj z nagłówkiem', 'Kopiuj z nagłówkami']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_WITH_COLUMN_GROUP_HEADERS, ['Kopiuj z nagłówkiem grupowym', 'Kopiuj z nagłówkami grupowymi']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_COLUMN_HEADERS_ONLY, ['Kopiuj sam nagłówek', 'Kopiuj same nagłówki']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CUT, 'Wytnij'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, 'Wstaw wiersz podrzędny'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, 'Odłącz od nadrzędnego'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['Ukryj kolumnę', 'Ukryj kolumny']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['Pokaż kolumnę', 'Pokaż kolumny']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['Ukryj wiersz', 'Ukryj wiersze']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['Pokaż wiersz', 'Pokaż wiersze']), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NONE, 'Brak'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EMPTY, 'Komórka jest pusta'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, 'Komórka nie jest pusta'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EQUAL, 'Jest równe'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, 'Jest różne od'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, 'Tekst zaczyna się od'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, 'Tekst kończy się na'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, 'Tekst zawiera fragment'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, 'Tekst nie zawiera fragmentu'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, 'Większe niż'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, 'Większe lub równe'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, 'Mniejsze niż'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, 'Mniejsze lub równe'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, 'Jest pomiędzy'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, 'Nie jest pomiędzy'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_AFTER, 'Data późniejsza niż'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEFORE, 'Data wcześniejsza niż'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TODAY, 'Dzisiaj'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, 'Jutro'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, 'Wczoraj'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, 'Puste miejsca'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, 'Filtruj wg warunku'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, 'Filtruj wg wartości'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_CONJUNCTION, 'Oraz'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_DISJUNCTION, 'Lub'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, 'Zaznacz wszystko'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CLEAR, 'Wyczyść'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_OK, 'OK'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CANCEL, 'Anuluj'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, 'Szukaj'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, 'Wartość'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, 'Druga wartość'), _dictionary);
|
127
|
-
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
128
|
-
var _default = dictionary;
|
129
|
-
exports.default = _default;
|
130
|
-
|
131
|
-
/***/ }),
|
132
|
-
|
133
|
-
/***/ 2:
|
134
|
-
/***/ (function(module, exports) {
|
135
|
-
|
113
|
+
var toPropertyKey = __webpack_require__(3);
|
136
114
|
function _defineProperty(obj, key, value) {
|
115
|
+
key = toPropertyKey(key);
|
137
116
|
if (key in obj) {
|
138
117
|
Object.defineProperty(obj, key, {
|
139
118
|
value: value,
|
@@ -149,13 +128,89 @@ function _defineProperty(obj, key, value) {
|
|
149
128
|
module.exports = _defineProperty, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
150
129
|
|
151
130
|
/***/ }),
|
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;
|
152
141
|
|
153
|
-
/***/
|
142
|
+
/***/ }),
|
143
|
+
/* 4 */
|
154
144
|
/***/ (function(module, exports) {
|
155
145
|
|
156
|
-
|
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 */
|
176
|
+
/***/ (function(module, exports) {
|
177
|
+
|
178
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__6__;
|
179
|
+
|
180
|
+
/***/ }),
|
181
|
+
/* 7 */,
|
182
|
+
/* 8 */,
|
183
|
+
/* 9 */,
|
184
|
+
/* 10 */,
|
185
|
+
/* 11 */,
|
186
|
+
/* 12 */,
|
187
|
+
/* 13 */,
|
188
|
+
/* 14 */,
|
189
|
+
/* 15 */,
|
190
|
+
/* 16 */,
|
191
|
+
/* 17 */,
|
192
|
+
/* 18 */,
|
193
|
+
/* 19 */,
|
194
|
+
/* 20 */
|
195
|
+
/***/ (function(module, exports, __webpack_require__) {
|
196
|
+
|
197
|
+
"use strict";
|
157
198
|
|
158
|
-
/***/ })
|
159
199
|
|
160
|
-
|
200
|
+
var _interopRequireDefault = __webpack_require__(1);
|
201
|
+
exports.__esModule = true;
|
202
|
+
exports.default = void 0;
|
203
|
+
var _defineProperty2 = _interopRequireDefault(__webpack_require__(2));
|
204
|
+
var _handsontable = _interopRequireDefault(__webpack_require__(6));
|
205
|
+
var _dictionary;
|
206
|
+
var C = _handsontable.default.languages.dictionaryKeys;
|
207
|
+
var dictionary = (_dictionary = {
|
208
|
+
languageCode: 'pl-PL'
|
209
|
+
}, (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NO_ITEMS, 'Brak dostępnych opcji'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_ABOVE, 'Wstaw wiersz powyżej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ROW_BELOW, 'Wstaw wiersz poniżej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_LEFT, 'Wstaw kolumnę z lewej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_INSERT_RIGHT, 'Wstaw kolumnę z prawej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_ROW, ['Usuń wiersz', 'Usuń wiersze']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COLUMN, ['Usuń kolumnę', 'Usuń kolumny']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNDO, 'Cofnij'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REDO, 'Ponów'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY, 'Tylko do odczytu'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CLEAR_COLUMN, 'Wyczyść kolumnę'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT, 'Wyrównanie'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_LEFT, 'Do lewej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_CENTER, 'Do środka'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_RIGHT, 'Do prawej'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_JUSTIFY, 'Wyjustuj'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_TOP, 'Do góry'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_MIDDLE, 'Wyśrodkuj'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ALIGNMENT_BOTTOM, 'Do dołu'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_FREEZE_COLUMN, 'Zablokuj kolumnę'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNFREEZE_COLUMN, 'Odblokuj kolumnę'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS, 'Obramowanie'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_TOP, 'Krawędź górna'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_RIGHT, 'Krawędź prawa'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_BOTTOM, 'Krawędź dolna'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_BORDERS_LEFT, 'Krawędź lewa'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_BORDERS, 'Usuń obramowanie(a)'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_ADD_COMMENT, 'Dodaj komentarz'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_EDIT_COMMENT, 'Edytuj komentarz'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_REMOVE_COMMENT, 'Usuń komentarz'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_READ_ONLY_COMMENT, 'Komentarz tylko do odczytu'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_MERGE_CELLS, 'Scal komórki'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_UNMERGE_CELLS, 'Rozdziel komórki'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY, 'Kopiuj'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_WITH_COLUMN_HEADERS, ['Kopiuj z nagłówkiem', 'Kopiuj z nagłówkami']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_WITH_COLUMN_GROUP_HEADERS, ['Kopiuj z nagłówkiem grupowym', 'Kopiuj z nagłówkami grupowymi']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_COPY_COLUMN_HEADERS_ONLY, ['Kopiuj sam nagłówek', 'Kopiuj same nagłówki']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_CUT, 'Wytnij'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_INSERT_CHILD, 'Wstaw wiersz podrzędny'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_NESTED_ROWS_DETACH_CHILD, 'Odłącz od nadrzędnego'), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_COLUMN, ['Ukryj kolumnę', 'Ukryj kolumny']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_COLUMN, ['Pokaż kolumnę', 'Pokaż kolumny']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_HIDE_ROW, ['Ukryj wiersz', 'Ukryj wiersze']), (0, _defineProperty2.default)(_dictionary, C.CONTEXTMENU_ITEMS_SHOW_ROW, ['Pokaż wiersz', 'Pokaż wiersze']), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NONE, 'Brak'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EMPTY, 'Komórka jest pusta'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EMPTY, 'Komórka nie jest pusta'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_EQUAL, 'Jest równe'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_EQUAL, 'Jest różne od'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEGINS_WITH, 'Tekst zaczyna się od'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_ENDS_WITH, 'Tekst kończy się na'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_CONTAINS, 'Tekst zawiera fragment'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_CONTAIN, 'Tekst nie zawiera fragmentu'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN, 'Większe niż'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_GREATER_THAN_OR_EQUAL, 'Większe lub równe'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN, 'Mniejsze niż'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_LESS_THAN_OR_EQUAL, 'Mniejsze lub równe'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BETWEEN, 'Jest pomiędzy'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_NOT_BETWEEN, 'Nie jest pomiędzy'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_AFTER, 'Data późniejsza niż'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_BEFORE, 'Data wcześniejsza niż'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TODAY, 'Dzisiaj'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_TOMORROW, 'Jutro'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_CONDITIONS_YESTERDAY, 'Wczoraj'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_VALUES_BLANK_CELLS, 'Puste miejsca'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_CONDITION, 'Filtruj wg warunku'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_DIVS_FILTER_BY_VALUE, 'Filtruj wg wartości'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_CONJUNCTION, 'Oraz'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_LABELS_DISJUNCTION, 'Lub'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_SELECT_ALL, 'Zaznacz wszystko'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CLEAR, 'Wyczyść'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_OK, 'OK'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_CANCEL, 'Anuluj'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SEARCH, 'Szukaj'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_VALUE, 'Wartość'), (0, _defineProperty2.default)(_dictionary, C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE, 'Druga wartość'), _dictionary);
|
210
|
+
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
211
|
+
var _default = dictionary;
|
212
|
+
exports.default = _default;
|
213
|
+
|
214
|
+
/***/ })
|
215
|
+
/******/ ])["___"];
|
161
216
|
});
|
package/languages/pl-PL.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: Handsoncode
|