handsontable 0.0.0-next-fc6b71a-20231129 → 0.0.0-next-f76fee2-20231130
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/3rdparty/walkontable/src/calculator/constants.js +3 -6
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +1 -2
- package/3rdparty/walkontable/src/calculator/viewportRows.js +1 -2
- package/3rdparty/walkontable/src/cell/coords.js +1 -2
- package/3rdparty/walkontable/src/cell/range.js +1 -2
- package/3rdparty/walkontable/src/event.js +1 -2
- package/3rdparty/walkontable/src/filter/column.js +1 -2
- package/3rdparty/walkontable/src/filter/row.js +1 -2
- package/3rdparty/walkontable/src/index.js +2 -2
- package/3rdparty/walkontable/src/overlay/constants.js +7 -14
- package/3rdparty/walkontable/src/overlays.js +1 -2
- package/3rdparty/walkontable/src/scroll.js +1 -2
- package/3rdparty/walkontable/src/selection/border/border.js +1 -2
- package/3rdparty/walkontable/src/selection/border/constants.js +2 -3
- package/3rdparty/walkontable/src/selection/constants.js +8 -16
- package/3rdparty/walkontable/src/selection/selection.js +1 -2
- package/3rdparty/walkontable/src/table/bottom.js +1 -2
- package/3rdparty/walkontable/src/table/bottomInlineStartCorner.js +1 -2
- package/3rdparty/walkontable/src/table/inlineStart.js +1 -2
- package/3rdparty/walkontable/src/table/master.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/calculatedColumns.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/calculatedRows.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/stickyColumnsStart.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/stickyRowsBottom.js +1 -2
- package/3rdparty/walkontable/src/table/mixin/stickyRowsTop.js +1 -2
- package/3rdparty/walkontable/src/table/top.js +1 -2
- package/3rdparty/walkontable/src/table/topInlineStartCorner.js +1 -2
- package/3rdparty/walkontable/src/table.js +1 -2
- package/3rdparty/walkontable/src/utils/orderView/constants.js +3 -6
- package/3rdparty/walkontable/src/viewport.js +1 -2
- package/CHANGELOG.md +84 -15
- package/base.js +3 -4
- package/base.mjs +2 -2
- package/cellTypes/autocompleteType/autocompleteType.js +3 -5
- package/cellTypes/checkboxType/checkboxType.js +3 -5
- package/cellTypes/dateType/dateType.js +3 -5
- package/cellTypes/dropdownType/dropdownType.js +3 -5
- package/cellTypes/handsontableType/handsontableType.js +3 -5
- package/cellTypes/numericType/numericType.js +3 -5
- package/cellTypes/passwordType/passwordType.js +3 -5
- package/cellTypes/selectType/selectType.js +3 -5
- package/cellTypes/textType/textType.js +3 -5
- package/cellTypes/timeType/timeType.js +3 -5
- package/core.js +19 -9
- package/core.mjs +19 -9
- package/dataMap/dataMap.js +1 -2
- package/dataMap/dataSource.js +1 -2
- package/dataMap/metaManager/metaSchema.js +11 -11
- package/dataMap/metaManager/metaSchema.mjs +11 -11
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +5147 -5188
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +160 -150
- package/dist/handsontable.js +627 -1038
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +31 -31
- package/dist/languages/all.js +19 -38
- package/dist/languages/all.min.js +1 -1
- package/dist/languages/ar-AR.js +1 -2
- package/dist/languages/cs-CZ.js +1 -2
- package/dist/languages/de-CH.js +1 -2
- package/dist/languages/de-DE.js +1 -2
- package/dist/languages/en-US.js +1 -2
- package/dist/languages/es-MX.js +1 -2
- package/dist/languages/fr-FR.js +1 -2
- package/dist/languages/it-IT.js +1 -2
- package/dist/languages/ja-JP.js +1 -2
- package/dist/languages/ko-KR.js +1 -2
- package/dist/languages/lv-LV.js +1 -2
- package/dist/languages/nb-NO.js +1 -2
- package/dist/languages/nl-NL.js +1 -2
- package/dist/languages/pl-PL.js +1 -2
- package/dist/languages/pt-BR.js +1 -2
- package/dist/languages/ru-RU.js +1 -2
- package/dist/languages/sr-SP.js +1 -2
- package/dist/languages/zh-CN.js +1 -2
- package/dist/languages/zh-TW.js +1 -2
- package/editorManager.js +2 -4
- package/editors/autocompleteEditor/autocompleteEditor.js +1 -2
- package/editors/baseEditor/baseEditor.js +3 -6
- package/editors/checkboxEditor/checkboxEditor.js +1 -2
- package/editors/dateEditor/dateEditor.js +1 -2
- package/editors/dropdownEditor/dropdownEditor.js +1 -2
- package/editors/handsontableEditor/handsontableEditor.js +1 -2
- package/editors/numericEditor/numericEditor.js +1 -2
- package/editors/passwordEditor/passwordEditor.js +1 -2
- package/editors/selectEditor/selectEditor.js +1 -2
- package/editors/textEditor/textEditor.js +1 -2
- package/editors/timeEditor/timeEditor.js +1 -2
- package/eventManager.js +1 -2
- package/helpers/dom/element.js +1 -2
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/helpers/unicode.js +1 -2
- package/i18n/constants.js +84 -166
- package/i18n/languages/ar-AR.js +3 -4
- package/i18n/languages/cs-CZ.js +3 -4
- package/i18n/languages/de-CH.js +3 -4
- package/i18n/languages/de-DE.js +3 -4
- package/i18n/languages/en-US.js +3 -4
- package/i18n/languages/es-MX.js +3 -4
- package/i18n/languages/fr-FR.js +3 -4
- package/i18n/languages/it-IT.js +3 -4
- package/i18n/languages/ja-JP.js +3 -4
- package/i18n/languages/ko-KR.js +3 -4
- package/i18n/languages/lv-LV.js +3 -4
- package/i18n/languages/nb-NO.js +3 -4
- package/i18n/languages/nl-NL.js +3 -4
- package/i18n/languages/pl-PL.js +3 -4
- package/i18n/languages/pt-BR.js +3 -4
- package/i18n/languages/ru-RU.js +3 -4
- package/i18n/languages/sr-SP.js +3 -4
- package/i18n/languages/zh-CN.js +3 -4
- package/i18n/languages/zh-TW.js +3 -4
- package/i18n/registry.js +4 -6
- package/index.js +3 -4
- package/languages/all.js +19 -38
- package/languages/ar-AR.js +1 -2
- package/languages/cs-CZ.js +1 -2
- package/languages/de-CH.js +1 -2
- package/languages/de-DE.js +1 -2
- package/languages/en-US.js +1 -2
- package/languages/es-MX.js +1 -2
- package/languages/fr-FR.js +1 -2
- package/languages/index.js +19 -38
- package/languages/it-IT.js +1 -2
- package/languages/ja-JP.js +1 -2
- package/languages/ko-KR.js +1 -2
- package/languages/lv-LV.js +1 -2
- package/languages/nb-NO.js +1 -2
- package/languages/nl-NL.js +1 -2
- package/languages/pl-PL.js +1 -2
- package/languages/pt-BR.js +1 -2
- package/languages/ru-RU.js +1 -2
- package/languages/sr-SP.js +1 -2
- package/languages/zh-CN.js +1 -2
- package/languages/zh-TW.js +1 -2
- package/mixins/hooksRefRegisterer.js +1 -2
- package/mixins/localHooks.js +1 -2
- package/package.json +1 -1
- package/pluginHooks.js +6 -5
- package/pluginHooks.mjs +5 -3
- package/plugins/autoColumnSize/autoColumnSize.js +2 -4
- package/plugins/autoRowSize/autoRowSize.js +2 -4
- package/plugins/autofill/autofill.js +2 -4
- package/plugins/autofill/utils.js +1 -2
- package/plugins/base/base.js +1 -2
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +2 -4
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +1 -2
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +1 -2
- package/plugins/collapsibleColumns/collapsibleColumns.js +2 -4
- package/plugins/columnSorting/columnSorting.js +4 -8
- package/plugins/columnSorting/sortFunction/checkbox.js +1 -2
- package/plugins/columnSorting/sortFunction/date.js +1 -2
- package/plugins/columnSorting/sortFunction/default.js +1 -2
- package/plugins/columnSorting/sortFunction/numeric.js +1 -2
- package/plugins/columnSorting/sortService/engine.js +3 -6
- package/plugins/columnSorting/utils.js +3 -6
- package/plugins/columnSummary/columnSummary.js +2 -4
- package/plugins/columnSummary/endpoints.js +1 -2
- package/plugins/comments/commentEditor.js +1 -2
- package/plugins/comments/comments.js +6 -12
- package/plugins/comments/contextMenuItem/addEditComment.js +2 -2
- package/plugins/comments/contextMenuItem/readOnlyComment.js +2 -2
- package/plugins/comments/contextMenuItem/removeComment.js +2 -2
- package/plugins/comments/displaySwitch.js +1 -2
- package/plugins/contextMenu/contextMenu.js +2 -4
- package/plugins/contextMenu/predefinedItems/alignment.js +3 -4
- package/plugins/contextMenu/predefinedItems/clearColumn.js +3 -4
- package/plugins/contextMenu/predefinedItems/columnLeft.js +3 -4
- package/plugins/contextMenu/predefinedItems/columnRight.js +3 -4
- package/plugins/contextMenu/predefinedItems/index.js +3 -4
- package/plugins/contextMenu/predefinedItems/noItems.js +1 -2
- package/plugins/contextMenu/predefinedItems/readOnly.js +3 -4
- package/plugins/contextMenu/predefinedItems/redo.js +3 -4
- package/plugins/contextMenu/predefinedItems/removeColumn.js +3 -4
- package/plugins/contextMenu/predefinedItems/removeRow.js +3 -4
- package/plugins/contextMenu/predefinedItems/rowAbove.js +3 -4
- package/plugins/contextMenu/predefinedItems/rowBelow.js +3 -4
- package/plugins/contextMenu/predefinedItems/separator.js +1 -2
- package/plugins/contextMenu/predefinedItems/undo.js +3 -4
- package/plugins/copyPaste/contextMenuItem/cut.js +2 -2
- package/plugins/copyPaste/copyPaste.js +2 -4
- package/plugins/customBorders/contextMenuItem/bottom.js +2 -2
- package/plugins/customBorders/contextMenuItem/left.js +2 -2
- package/plugins/customBorders/contextMenuItem/noBorders.js +2 -2
- package/plugins/customBorders/contextMenuItem/right.js +2 -2
- package/plugins/customBorders/contextMenuItem/top.js +2 -2
- package/plugins/customBorders/customBorders.js +4 -6
- package/plugins/dragToScroll/dragToScroll.js +2 -4
- package/plugins/dropdownMenu/dropdownMenu.js +2 -4
- package/plugins/exportFile/dataProvider.js +1 -2
- package/plugins/exportFile/exportFile.js +4 -6
- package/plugins/exportFile/typeFactory.js +5 -8
- package/plugins/exportFile/types/_base.js +1 -2
- package/plugins/exportFile/types/csv.js +1 -2
- package/plugins/filters/component/actionBar.js +2 -2
- package/plugins/filters/component/condition.js +2 -2
- package/plugins/filters/component/value.js +2 -2
- package/plugins/filters/condition/beginsWith.js +3 -4
- package/plugins/filters/condition/between.js +3 -4
- package/plugins/filters/condition/byValue.js +1 -2
- package/plugins/filters/condition/contains.js +3 -4
- package/plugins/filters/condition/date/after.js +3 -4
- package/plugins/filters/condition/date/before.js +3 -4
- package/plugins/filters/condition/date/today.js +3 -4
- package/plugins/filters/condition/date/tomorrow.js +3 -4
- package/plugins/filters/condition/date/yesterday.js +3 -4
- package/plugins/filters/condition/empty.js +3 -4
- package/plugins/filters/condition/endsWith.js +3 -4
- package/plugins/filters/condition/equal.js +3 -4
- package/plugins/filters/condition/false.js +1 -2
- package/plugins/filters/condition/greaterThan.js +3 -4
- package/plugins/filters/condition/greaterThanOrEqual.js +3 -4
- package/plugins/filters/condition/lessThan.js +3 -4
- package/plugins/filters/condition/lessThanOrEqual.js +3 -4
- package/plugins/filters/condition/none.js +3 -4
- package/plugins/filters/condition/notBetween.js +3 -4
- package/plugins/filters/condition/notContains.js +3 -4
- package/plugins/filters/condition/notEmpty.js +3 -4
- package/plugins/filters/condition/notEqual.js +3 -4
- package/plugins/filters/condition/true.js +1 -2
- package/plugins/filters/conditionCollection.js +1 -2
- package/plugins/filters/conditionRegisterer.js +1 -2
- package/plugins/filters/conditionUpdateObserver.js +1 -2
- package/plugins/filters/constants.js +4 -8
- package/plugins/filters/dataFilter.js +1 -2
- package/plugins/filters/filters.js +4 -6
- package/plugins/filters/logicalOperationRegisterer.js +1 -2
- package/plugins/filters/logicalOperations/conjunction.js +4 -6
- package/plugins/filters/logicalOperations/disjunction.js +4 -6
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +4 -6
- package/plugins/filters/ui/_base.js +2 -2
- package/plugins/filters/ui/multipleSelect.js +3 -4
- package/plugins/filters/ui/select.js +2 -2
- package/plugins/formulas/engine/settings.js +2 -4
- package/plugins/formulas/formulas.js +3 -6
- package/plugins/formulas/indexSyncer/axisSyncer.js +1 -2
- package/plugins/formulas/indexSyncer/index.js +1 -2
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +2 -2
- package/plugins/hiddenColumns/contextMenuItem/showColumn.js +2 -2
- package/plugins/hiddenColumns/hiddenColumns.js +2 -4
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +2 -2
- package/plugins/hiddenRows/contextMenuItem/showRow.js +2 -2
- package/plugins/hiddenRows/hiddenRows.js +2 -4
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +2 -2
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +2 -2
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +2 -4
- package/plugins/manualColumnMove/manualColumnMove.js +2 -4
- package/plugins/manualColumnMove/ui/_base.js +1 -2
- package/plugins/manualColumnMove/ui/backlight.js +1 -2
- package/plugins/manualColumnMove/ui/guideline.js +1 -2
- package/plugins/manualColumnResize/manualColumnResize.js +2 -4
- package/plugins/manualRowMove/manualRowMove.js +2 -4
- package/plugins/manualRowMove/ui/_base.js +1 -2
- package/plugins/manualRowMove/ui/backlight.js +1 -2
- package/plugins/manualRowMove/ui/guideline.js +1 -2
- package/plugins/manualRowResize/manualRowResize.js +2 -4
- package/plugins/mergeCells/calculations/autofill.js +1 -2
- package/plugins/mergeCells/calculations/selection.js +1 -2
- package/plugins/mergeCells/cellCoords.js +1 -2
- package/plugins/mergeCells/cellsCollection.js +1 -2
- package/plugins/mergeCells/contextMenuItem/toggleMerge.js +2 -2
- package/plugins/mergeCells/mergeCells.js +3 -5
- package/plugins/mergeCells/mergeCells.mjs +1 -1
- package/plugins/multiColumnSorting/multiColumnSorting.js +2 -4
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +2 -4
- package/plugins/nestedHeaders/nestedHeaders.js +2 -4
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +1 -2
- package/plugins/nestedHeaders/utils/ghostTable.js +1 -2
- package/plugins/nestedRows/data/dataManager.js +1 -2
- package/plugins/nestedRows/nestedRows.js +2 -4
- package/plugins/nestedRows/ui/_base.js +1 -2
- package/plugins/nestedRows/ui/collapsing.js +1 -2
- package/plugins/nestedRows/ui/contextMenu.js +3 -4
- package/plugins/nestedRows/ui/headers.js +1 -2
- package/plugins/persistentState/persistentState.js +2 -4
- package/plugins/persistentState/storage.js +1 -2
- package/plugins/search/search.js +2 -4
- package/plugins/touchScroll/touchScroll.js +2 -4
- package/plugins/trimRows/trimRows.js +2 -4
- package/plugins/undoRedo/index.js +2 -2
- package/plugins/undoRedo/undoRedo.js +2 -4
- package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -2
- package/renderers/baseRenderer/baseRenderer.js +1 -2
- package/renderers/checkboxRenderer/checkboxRenderer.js +1 -2
- package/renderers/dateRenderer/dateRenderer.js +1 -2
- package/renderers/handsontableRenderer/handsontableRenderer.js +1 -2
- package/renderers/htmlRenderer/htmlRenderer.js +1 -2
- package/renderers/numericRenderer/numericRenderer.js +1 -2
- package/renderers/passwordRenderer/passwordRenderer.js +1 -2
- package/renderers/selectRenderer/selectRenderer.js +1 -2
- package/renderers/textRenderer/textRenderer.js +1 -2
- package/renderers/timeRenderer/timeRenderer.js +1 -2
- package/selection/highlight/highlight.js +1 -2
- package/selection/highlight/visualSelection.js +1 -2
- package/selection/range.js +1 -2
- package/selection/selection.js +3 -4
- package/selection/transformation.js +1 -2
- package/selection/utils.js +5 -10
- package/shortcutContexts/commands/editor/closeAndSave.js +2 -3
- package/shortcutContexts/commands/editor/closeWithoutSaving.js +2 -3
- package/shortcutContexts/commands/editor/fastOpen.js +2 -3
- package/shortcutContexts/commands/editor/open.js +2 -3
- package/shortcutContexts/commands/emptySelectedCells.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/down.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/downByViewportHeight.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/left.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/right.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toColumns.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostBottom.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineEnd.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostInlineStart.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostLeft.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostRight.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toMostTop.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/toRows.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/up.js +2 -3
- package/shortcutContexts/commands/extendCellsSelection/upByViewportHeight.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/down.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/downByViewportHeight.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/inlineEnd.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/inlineStart.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/left.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/right.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostBottom.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostBottomInlineEnd.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostInlineEnd.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostInlineStart.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostLeft.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostRight.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostTop.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/toMostTopInlineStart.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/up.js +2 -3
- package/shortcutContexts/commands/moveCellSelection/upByViewportHeight.js +2 -3
- package/shortcutContexts/commands/populateSelectedCellsData.js +2 -3
- package/shortcutContexts/commands/scrollToFocusedCell.js +2 -3
- package/shortcutContexts/commands/selectAllCells.js +2 -3
- package/shortcutContexts/commands/selectAllCellsAndHeaders.js +2 -3
- package/shortcutContexts/constants.js +2 -4
- package/shortcuts/context.js +1 -1
- package/shortcuts/context.mjs +1 -1
- package/shortcuts/manager.js +2 -2
- package/shortcuts/manager.mjs +2 -2
- package/tableView.js +1 -2
- package/utils/dataStructures/linkedList.js +1 -2
- package/utils/dataStructures/priorityMap.js +2 -4
- package/utils/dataStructures/queue.js +1 -2
- package/utils/dataStructures/stack.js +1 -2
- package/utils/dataStructures/tree.js +3 -6
- package/utils/ghostTable.js +1 -2
- package/utils/interval.js +1 -2
- package/utils/rootInstance.js +2 -4
- package/utils/samplesGenerator.js +1 -2
- package/utils/staticRegister.js +1 -2
- package/validators/autocompleteValidator/autocompleteValidator.js +1 -2
- package/validators/dateValidator/dateValidator.js +1 -2
- package/validators/numericValidator/numericValidator.js +1 -2
- package/validators/timeValidator/timeValidator.js +1 -2
package/i18n/languages/pl-PL.js
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var C = _interopRequireWildcard(require("../constants"));
|
5
|
-
function _getRequireWildcardCache(
|
6
|
-
function _interopRequireWildcard(
|
5
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
6
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
7
7
|
/**
|
8
8
|
* @preserve
|
9
9
|
* Authors: Handsoncode
|
@@ -93,5 +93,4 @@ const dictionary = {
|
|
93
93
|
[C.CHECKBOX_CHECKED]: 'Zaznaczony',
|
94
94
|
[C.CHECKBOX_UNCHECKED]: 'Odznaczony'
|
95
95
|
};
|
96
|
-
var _default = dictionary;
|
97
|
-
exports.default = _default;
|
96
|
+
var _default = exports.default = dictionary;
|
package/i18n/languages/pt-BR.js
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var C = _interopRequireWildcard(require("../constants"));
|
5
|
-
function _getRequireWildcardCache(
|
6
|
-
function _interopRequireWildcard(
|
5
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
6
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
7
7
|
/**
|
8
8
|
* @preserve
|
9
9
|
* Authors: Júlio C. Zuppa
|
@@ -87,5 +87,4 @@ const dictionary = {
|
|
87
87
|
[C.FILTERS_BUTTONS_PLACEHOLDER_VALUE]: 'Valor',
|
88
88
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Segundo valor'
|
89
89
|
};
|
90
|
-
var _default = dictionary;
|
91
|
-
exports.default = _default;
|
90
|
+
var _default = exports.default = dictionary;
|
package/i18n/languages/ru-RU.js
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var C = _interopRequireWildcard(require("../constants"));
|
5
|
-
function _getRequireWildcardCache(
|
6
|
-
function _interopRequireWildcard(
|
5
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
6
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
7
7
|
/**
|
8
8
|
* @preserve
|
9
9
|
* Authors: Alexey Rogachev
|
@@ -87,5 +87,4 @@ const dictionary = {
|
|
87
87
|
[C.FILTERS_BUTTONS_PLACEHOLDER_VALUE]: 'Значение',
|
88
88
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Второе значение'
|
89
89
|
};
|
90
|
-
var _default = dictionary;
|
91
|
-
exports.default = _default;
|
90
|
+
var _default = exports.default = dictionary;
|
package/i18n/languages/sr-SP.js
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var C = _interopRequireWildcard(require("../constants"));
|
5
|
-
function _getRequireWildcardCache(
|
6
|
-
function _interopRequireWildcard(
|
5
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
6
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
7
7
|
/**
|
8
8
|
* @preserve
|
9
9
|
* Author: Ivan Zarkovic
|
@@ -88,5 +88,4 @@ const dictionary = {
|
|
88
88
|
[C.FILTERS_BUTTONS_PLACEHOLDER_VALUE]: 'Vrednost',
|
89
89
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Druga vrednost'
|
90
90
|
};
|
91
|
-
var _default = dictionary;
|
92
|
-
exports.default = _default;
|
91
|
+
var _default = exports.default = dictionary;
|
package/i18n/languages/zh-CN.js
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var C = _interopRequireWildcard(require("../constants"));
|
5
|
-
function _getRequireWildcardCache(
|
6
|
-
function _interopRequireWildcard(
|
5
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
6
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
7
7
|
/**
|
8
8
|
* @preserve
|
9
9
|
* Authors: soakit, HChenZi
|
@@ -90,5 +90,4 @@ const dictionary = {
|
|
90
90
|
[C.FILTERS_BUTTONS_PLACEHOLDER_VALUE]: '值',
|
91
91
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '第二值'
|
92
92
|
};
|
93
|
-
var _default = dictionary;
|
94
|
-
exports.default = _default;
|
93
|
+
var _default = exports.default = dictionary;
|
package/i18n/languages/zh-TW.js
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
4
|
var C = _interopRequireWildcard(require("../constants"));
|
5
|
-
function _getRequireWildcardCache(
|
6
|
-
function _interopRequireWildcard(
|
5
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
6
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
7
7
|
/**
|
8
8
|
* @preserve
|
9
9
|
* Authors: Phyllis Yen
|
@@ -87,5 +87,4 @@ const dictionary = {
|
|
87
87
|
[C.FILTERS_BUTTONS_PLACEHOLDER_VALUE]: '值',
|
88
88
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '第二值'
|
89
89
|
};
|
90
|
-
var _default = dictionary;
|
91
|
-
exports.default = _default;
|
90
|
+
var _default = exports.default = dictionary;
|
package/i18n/registry.js
CHANGED
@@ -16,13 +16,11 @@ var _staticRegister = _interopRequireDefault(require("../utils/staticRegister"))
|
|
16
16
|
var _phraseFormatters = require("./phraseFormatters");
|
17
17
|
var _enUS = _interopRequireDefault(require("./languages/en-US"));
|
18
18
|
var _dictionaryKeys = _interopRequireWildcard(require("./constants"));
|
19
|
-
function _getRequireWildcardCache(
|
20
|
-
function _interopRequireWildcard(
|
19
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
20
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
21
21
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
22
|
-
const dictionaryKeys = _dictionaryKeys;
|
23
|
-
exports.
|
24
|
-
const DEFAULT_LANGUAGE_CODE = _enUS.default.languageCode;
|
25
|
-
exports.DEFAULT_LANGUAGE_CODE = DEFAULT_LANGUAGE_CODE;
|
22
|
+
const dictionaryKeys = exports.dictionaryKeys = _dictionaryKeys;
|
23
|
+
const DEFAULT_LANGUAGE_CODE = exports.DEFAULT_LANGUAGE_CODE = _enUS.default.languageCode;
|
26
24
|
const {
|
27
25
|
register: registerGloballyLanguageDictionary,
|
28
26
|
getItem: getGlobalLanguageDictionary,
|
package/index.js
CHANGED
@@ -31,8 +31,8 @@ var _registry6 = require("./plugins/registry");
|
|
31
31
|
var _base2 = require("./plugins/base");
|
32
32
|
var _Handsontable$cellTyp, _Handsontable$editors, _Handsontable$rendere, _Handsontable$validat, _Handsontable$plugins;
|
33
33
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
34
|
-
function _getRequireWildcardCache(
|
35
|
-
function _interopRequireWildcard(
|
34
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
35
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
36
36
|
(0, _registry.registerAllModules)();
|
37
37
|
(0, _jquery.default)(_base.default);
|
38
38
|
|
@@ -116,5 +116,4 @@ arrayHelpers.arrayEach((0, _registry6.getPluginsNames)(), pluginName => {
|
|
116
116
|
_base.default.plugins[`${stringHelpers.toUpperCaseFirst(_base2.BasePlugin.PLUGIN_KEY)}Plugin`] = _base2.BasePlugin;
|
117
117
|
_base.default.plugins.registerPlugin = _registry6.registerPlugin;
|
118
118
|
_base.default.plugins.getPlugin = _registry6.getPlugin;
|
119
|
-
var _default = _base.default;
|
120
|
-
exports.default = _default;
|
119
|
+
var _default = exports.default = _base.default;
|
package/languages/all.js
CHANGED
@@ -106,8 +106,7 @@ const dictionary = {
|
|
106
106
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'القيمة الثانية'
|
107
107
|
};
|
108
108
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
109
|
-
var _default = dictionary;
|
110
|
-
exports["default"] = _default;
|
109
|
+
var _default = exports["default"] = dictionary;
|
111
110
|
|
112
111
|
/***/ }),
|
113
112
|
/* 1 */
|
@@ -223,8 +222,7 @@ const dictionary = {
|
|
223
222
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Druhá hodnota'
|
224
223
|
};
|
225
224
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
226
|
-
var _default = dictionary;
|
227
|
-
exports["default"] = _default;
|
225
|
+
var _default = exports["default"] = dictionary;
|
228
226
|
|
229
227
|
/***/ }),
|
230
228
|
/* 4 */
|
@@ -321,8 +319,7 @@ const dictionary = {
|
|
321
319
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Alternativwert'
|
322
320
|
};
|
323
321
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
324
|
-
var _default = dictionary;
|
325
|
-
exports["default"] = _default;
|
322
|
+
var _default = exports["default"] = dictionary;
|
326
323
|
|
327
324
|
/***/ }),
|
328
325
|
/* 5 */
|
@@ -419,8 +416,7 @@ const dictionary = {
|
|
419
416
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Alternativwert'
|
420
417
|
};
|
421
418
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
422
|
-
var _default = dictionary;
|
423
|
-
exports["default"] = _default;
|
419
|
+
var _default = exports["default"] = dictionary;
|
424
420
|
|
425
421
|
/***/ }),
|
426
422
|
/* 6 */
|
@@ -523,8 +519,7 @@ const dictionary = {
|
|
523
519
|
[C.CHECKBOX_UNCHECKED]: 'Unchecked'
|
524
520
|
};
|
525
521
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
526
|
-
var _default = dictionary;
|
527
|
-
exports["default"] = _default;
|
522
|
+
var _default = exports["default"] = dictionary;
|
528
523
|
|
529
524
|
/***/ }),
|
530
525
|
/* 7 */
|
@@ -624,8 +619,7 @@ const dictionary = {
|
|
624
619
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Valor secundario'
|
625
620
|
};
|
626
621
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
627
|
-
var _default = dictionary;
|
628
|
-
exports["default"] = _default;
|
622
|
+
var _default = exports["default"] = dictionary;
|
629
623
|
|
630
624
|
/***/ }),
|
631
625
|
/* 8 */
|
@@ -722,8 +716,7 @@ const dictionary = {
|
|
722
716
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Valeur de remplacement'
|
723
717
|
};
|
724
718
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
725
|
-
var _default = dictionary;
|
726
|
-
exports["default"] = _default;
|
719
|
+
var _default = exports["default"] = dictionary;
|
727
720
|
|
728
721
|
/***/ }),
|
729
722
|
/* 9 */,
|
@@ -821,8 +814,7 @@ const dictionary = {
|
|
821
814
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Sostituisci con'
|
822
815
|
};
|
823
816
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
824
|
-
var _default = dictionary;
|
825
|
-
exports["default"] = _default;
|
817
|
+
var _default = exports["default"] = dictionary;
|
826
818
|
|
827
819
|
/***/ }),
|
828
820
|
/* 11 */
|
@@ -922,8 +914,7 @@ const dictionary = {
|
|
922
914
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '値2'
|
923
915
|
};
|
924
916
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
925
|
-
var _default = dictionary;
|
926
|
-
exports["default"] = _default;
|
917
|
+
var _default = exports["default"] = dictionary;
|
927
918
|
|
928
919
|
/***/ }),
|
929
920
|
/* 12 */
|
@@ -1020,8 +1011,7 @@ const dictionary = {
|
|
1020
1011
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '두번째 값'
|
1021
1012
|
};
|
1022
1013
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1023
|
-
var _default = dictionary;
|
1024
|
-
exports["default"] = _default;
|
1014
|
+
var _default = exports["default"] = dictionary;
|
1025
1015
|
|
1026
1016
|
/***/ }),
|
1027
1017
|
/* 13 */
|
@@ -1122,8 +1112,7 @@ const dictionary = {
|
|
1122
1112
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Otra vērtība'
|
1123
1113
|
};
|
1124
1114
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1125
|
-
var _default = dictionary;
|
1126
|
-
exports["default"] = _default;
|
1115
|
+
var _default = exports["default"] = dictionary;
|
1127
1116
|
|
1128
1117
|
/***/ }),
|
1129
1118
|
/* 14 */
|
@@ -1220,8 +1209,7 @@ const dictionary = {
|
|
1220
1209
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Andre verdi'
|
1221
1210
|
};
|
1222
1211
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1223
|
-
var _default = dictionary;
|
1224
|
-
exports["default"] = _default;
|
1212
|
+
var _default = exports["default"] = dictionary;
|
1225
1213
|
|
1226
1214
|
/***/ }),
|
1227
1215
|
/* 15 */
|
@@ -1321,8 +1309,7 @@ const dictionary = {
|
|
1321
1309
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Tweede waarde'
|
1322
1310
|
};
|
1323
1311
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1324
|
-
var _default = dictionary;
|
1325
|
-
exports["default"] = _default;
|
1312
|
+
var _default = exports["default"] = dictionary;
|
1326
1313
|
|
1327
1314
|
/***/ }),
|
1328
1315
|
/* 16 */
|
@@ -1425,8 +1412,7 @@ const dictionary = {
|
|
1425
1412
|
[C.CHECKBOX_UNCHECKED]: 'Odznaczony'
|
1426
1413
|
};
|
1427
1414
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1428
|
-
var _default = dictionary;
|
1429
|
-
exports["default"] = _default;
|
1415
|
+
var _default = exports["default"] = dictionary;
|
1430
1416
|
|
1431
1417
|
/***/ }),
|
1432
1418
|
/* 17 */
|
@@ -1523,8 +1509,7 @@ const dictionary = {
|
|
1523
1509
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Segundo valor'
|
1524
1510
|
};
|
1525
1511
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1526
|
-
var _default = dictionary;
|
1527
|
-
exports["default"] = _default;
|
1512
|
+
var _default = exports["default"] = dictionary;
|
1528
1513
|
|
1529
1514
|
/***/ }),
|
1530
1515
|
/* 18 */
|
@@ -1621,8 +1606,7 @@ const dictionary = {
|
|
1621
1606
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Второе значение'
|
1622
1607
|
};
|
1623
1608
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1624
|
-
var _default = dictionary;
|
1625
|
-
exports["default"] = _default;
|
1609
|
+
var _default = exports["default"] = dictionary;
|
1626
1610
|
|
1627
1611
|
/***/ }),
|
1628
1612
|
/* 19 */
|
@@ -1720,8 +1704,7 @@ const dictionary = {
|
|
1720
1704
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Druga vrednost'
|
1721
1705
|
};
|
1722
1706
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1723
|
-
var _default = dictionary;
|
1724
|
-
exports["default"] = _default;
|
1707
|
+
var _default = exports["default"] = dictionary;
|
1725
1708
|
|
1726
1709
|
/***/ }),
|
1727
1710
|
/* 20 */
|
@@ -1821,8 +1804,7 @@ const dictionary = {
|
|
1821
1804
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '第二值'
|
1822
1805
|
};
|
1823
1806
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1824
|
-
var _default = dictionary;
|
1825
|
-
exports["default"] = _default;
|
1807
|
+
var _default = exports["default"] = dictionary;
|
1826
1808
|
|
1827
1809
|
/***/ }),
|
1828
1810
|
/* 21 */
|
@@ -1919,8 +1901,7 @@ const dictionary = {
|
|
1919
1901
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '第二值'
|
1920
1902
|
};
|
1921
1903
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1922
|
-
var _default = dictionary;
|
1923
|
-
exports["default"] = _default;
|
1904
|
+
var _default = exports["default"] = dictionary;
|
1924
1905
|
|
1925
1906
|
/***/ })
|
1926
1907
|
/******/ ]);
|
package/languages/ar-AR.js
CHANGED
@@ -153,8 +153,7 @@ const dictionary = {
|
|
153
153
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'القيمة الثانية'
|
154
154
|
};
|
155
155
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
156
|
-
var _default = dictionary;
|
157
|
-
exports["default"] = _default;
|
156
|
+
var _default = exports["default"] = dictionary;
|
158
157
|
})();
|
159
158
|
|
160
159
|
__webpack_exports__ = __webpack_exports__.___;
|
package/languages/cs-CZ.js
CHANGED
@@ -152,8 +152,7 @@ const dictionary = {
|
|
152
152
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Druhá hodnota'
|
153
153
|
};
|
154
154
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
155
|
-
var _default = dictionary;
|
156
|
-
exports["default"] = _default;
|
155
|
+
var _default = exports["default"] = dictionary;
|
157
156
|
})();
|
158
157
|
|
159
158
|
__webpack_exports__ = __webpack_exports__.___;
|
package/languages/de-CH.js
CHANGED
@@ -151,8 +151,7 @@ const dictionary = {
|
|
151
151
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Alternativwert'
|
152
152
|
};
|
153
153
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
154
|
-
var _default = dictionary;
|
155
|
-
exports["default"] = _default;
|
154
|
+
var _default = exports["default"] = dictionary;
|
156
155
|
})();
|
157
156
|
|
158
157
|
__webpack_exports__ = __webpack_exports__.___;
|
package/languages/de-DE.js
CHANGED
@@ -151,8 +151,7 @@ const dictionary = {
|
|
151
151
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Alternativwert'
|
152
152
|
};
|
153
153
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
154
|
-
var _default = dictionary;
|
155
|
-
exports["default"] = _default;
|
154
|
+
var _default = exports["default"] = dictionary;
|
156
155
|
})();
|
157
156
|
|
158
157
|
__webpack_exports__ = __webpack_exports__.___;
|
package/languages/en-US.js
CHANGED
@@ -157,8 +157,7 @@ const dictionary = {
|
|
157
157
|
[C.CHECKBOX_UNCHECKED]: 'Unchecked'
|
158
158
|
};
|
159
159
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
160
|
-
var _default = dictionary;
|
161
|
-
exports["default"] = _default;
|
160
|
+
var _default = exports["default"] = dictionary;
|
162
161
|
})();
|
163
162
|
|
164
163
|
__webpack_exports__ = __webpack_exports__.___;
|
package/languages/es-MX.js
CHANGED
@@ -154,8 +154,7 @@ const dictionary = {
|
|
154
154
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Valor secundario'
|
155
155
|
};
|
156
156
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
157
|
-
var _default = dictionary;
|
158
|
-
exports["default"] = _default;
|
157
|
+
var _default = exports["default"] = dictionary;
|
159
158
|
})();
|
160
159
|
|
161
160
|
__webpack_exports__ = __webpack_exports__.___;
|
package/languages/fr-FR.js
CHANGED
@@ -151,8 +151,7 @@ const dictionary = {
|
|
151
151
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Valeur de remplacement'
|
152
152
|
};
|
153
153
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
154
|
-
var _default = dictionary;
|
155
|
-
exports["default"] = _default;
|
154
|
+
var _default = exports["default"] = dictionary;
|
156
155
|
})();
|
157
156
|
|
158
157
|
__webpack_exports__ = __webpack_exports__.___;
|
package/languages/index.js
CHANGED
@@ -106,8 +106,7 @@ const dictionary = {
|
|
106
106
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'القيمة الثانية'
|
107
107
|
};
|
108
108
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
109
|
-
var _default = dictionary;
|
110
|
-
exports["default"] = _default;
|
109
|
+
var _default = exports["default"] = dictionary;
|
111
110
|
|
112
111
|
/***/ }),
|
113
112
|
/* 1 */
|
@@ -223,8 +222,7 @@ const dictionary = {
|
|
223
222
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Druhá hodnota'
|
224
223
|
};
|
225
224
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
226
|
-
var _default = dictionary;
|
227
|
-
exports["default"] = _default;
|
225
|
+
var _default = exports["default"] = dictionary;
|
228
226
|
|
229
227
|
/***/ }),
|
230
228
|
/* 4 */
|
@@ -321,8 +319,7 @@ const dictionary = {
|
|
321
319
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Alternativwert'
|
322
320
|
};
|
323
321
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
324
|
-
var _default = dictionary;
|
325
|
-
exports["default"] = _default;
|
322
|
+
var _default = exports["default"] = dictionary;
|
326
323
|
|
327
324
|
/***/ }),
|
328
325
|
/* 5 */
|
@@ -419,8 +416,7 @@ const dictionary = {
|
|
419
416
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Alternativwert'
|
420
417
|
};
|
421
418
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
422
|
-
var _default = dictionary;
|
423
|
-
exports["default"] = _default;
|
419
|
+
var _default = exports["default"] = dictionary;
|
424
420
|
|
425
421
|
/***/ }),
|
426
422
|
/* 6 */
|
@@ -523,8 +519,7 @@ const dictionary = {
|
|
523
519
|
[C.CHECKBOX_UNCHECKED]: 'Unchecked'
|
524
520
|
};
|
525
521
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
526
|
-
var _default = dictionary;
|
527
|
-
exports["default"] = _default;
|
522
|
+
var _default = exports["default"] = dictionary;
|
528
523
|
|
529
524
|
/***/ }),
|
530
525
|
/* 7 */
|
@@ -624,8 +619,7 @@ const dictionary = {
|
|
624
619
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Valor secundario'
|
625
620
|
};
|
626
621
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
627
|
-
var _default = dictionary;
|
628
|
-
exports["default"] = _default;
|
622
|
+
var _default = exports["default"] = dictionary;
|
629
623
|
|
630
624
|
/***/ }),
|
631
625
|
/* 8 */
|
@@ -722,8 +716,7 @@ const dictionary = {
|
|
722
716
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Valeur de remplacement'
|
723
717
|
};
|
724
718
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
725
|
-
var _default = dictionary;
|
726
|
-
exports["default"] = _default;
|
719
|
+
var _default = exports["default"] = dictionary;
|
727
720
|
|
728
721
|
/***/ }),
|
729
722
|
/* 9 */,
|
@@ -821,8 +814,7 @@ const dictionary = {
|
|
821
814
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Sostituisci con'
|
822
815
|
};
|
823
816
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
824
|
-
var _default = dictionary;
|
825
|
-
exports["default"] = _default;
|
817
|
+
var _default = exports["default"] = dictionary;
|
826
818
|
|
827
819
|
/***/ }),
|
828
820
|
/* 11 */
|
@@ -922,8 +914,7 @@ const dictionary = {
|
|
922
914
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '値2'
|
923
915
|
};
|
924
916
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
925
|
-
var _default = dictionary;
|
926
|
-
exports["default"] = _default;
|
917
|
+
var _default = exports["default"] = dictionary;
|
927
918
|
|
928
919
|
/***/ }),
|
929
920
|
/* 12 */
|
@@ -1020,8 +1011,7 @@ const dictionary = {
|
|
1020
1011
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '두번째 값'
|
1021
1012
|
};
|
1022
1013
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1023
|
-
var _default = dictionary;
|
1024
|
-
exports["default"] = _default;
|
1014
|
+
var _default = exports["default"] = dictionary;
|
1025
1015
|
|
1026
1016
|
/***/ }),
|
1027
1017
|
/* 13 */
|
@@ -1122,8 +1112,7 @@ const dictionary = {
|
|
1122
1112
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Otra vērtība'
|
1123
1113
|
};
|
1124
1114
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1125
|
-
var _default = dictionary;
|
1126
|
-
exports["default"] = _default;
|
1115
|
+
var _default = exports["default"] = dictionary;
|
1127
1116
|
|
1128
1117
|
/***/ }),
|
1129
1118
|
/* 14 */
|
@@ -1220,8 +1209,7 @@ const dictionary = {
|
|
1220
1209
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Andre verdi'
|
1221
1210
|
};
|
1222
1211
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1223
|
-
var _default = dictionary;
|
1224
|
-
exports["default"] = _default;
|
1212
|
+
var _default = exports["default"] = dictionary;
|
1225
1213
|
|
1226
1214
|
/***/ }),
|
1227
1215
|
/* 15 */
|
@@ -1321,8 +1309,7 @@ const dictionary = {
|
|
1321
1309
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Tweede waarde'
|
1322
1310
|
};
|
1323
1311
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1324
|
-
var _default = dictionary;
|
1325
|
-
exports["default"] = _default;
|
1312
|
+
var _default = exports["default"] = dictionary;
|
1326
1313
|
|
1327
1314
|
/***/ }),
|
1328
1315
|
/* 16 */
|
@@ -1425,8 +1412,7 @@ const dictionary = {
|
|
1425
1412
|
[C.CHECKBOX_UNCHECKED]: 'Odznaczony'
|
1426
1413
|
};
|
1427
1414
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1428
|
-
var _default = dictionary;
|
1429
|
-
exports["default"] = _default;
|
1415
|
+
var _default = exports["default"] = dictionary;
|
1430
1416
|
|
1431
1417
|
/***/ }),
|
1432
1418
|
/* 17 */
|
@@ -1523,8 +1509,7 @@ const dictionary = {
|
|
1523
1509
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Segundo valor'
|
1524
1510
|
};
|
1525
1511
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1526
|
-
var _default = dictionary;
|
1527
|
-
exports["default"] = _default;
|
1512
|
+
var _default = exports["default"] = dictionary;
|
1528
1513
|
|
1529
1514
|
/***/ }),
|
1530
1515
|
/* 18 */
|
@@ -1621,8 +1606,7 @@ const dictionary = {
|
|
1621
1606
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Второе значение'
|
1622
1607
|
};
|
1623
1608
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1624
|
-
var _default = dictionary;
|
1625
|
-
exports["default"] = _default;
|
1609
|
+
var _default = exports["default"] = dictionary;
|
1626
1610
|
|
1627
1611
|
/***/ }),
|
1628
1612
|
/* 19 */
|
@@ -1720,8 +1704,7 @@ const dictionary = {
|
|
1720
1704
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Druga vrednost'
|
1721
1705
|
};
|
1722
1706
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1723
|
-
var _default = dictionary;
|
1724
|
-
exports["default"] = _default;
|
1707
|
+
var _default = exports["default"] = dictionary;
|
1725
1708
|
|
1726
1709
|
/***/ }),
|
1727
1710
|
/* 20 */
|
@@ -1821,8 +1804,7 @@ const dictionary = {
|
|
1821
1804
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '第二值'
|
1822
1805
|
};
|
1823
1806
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1824
|
-
var _default = dictionary;
|
1825
|
-
exports["default"] = _default;
|
1807
|
+
var _default = exports["default"] = dictionary;
|
1826
1808
|
|
1827
1809
|
/***/ }),
|
1828
1810
|
/* 21 */
|
@@ -1919,8 +1901,7 @@ const dictionary = {
|
|
1919
1901
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: '第二值'
|
1920
1902
|
};
|
1921
1903
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
1922
|
-
var _default = dictionary;
|
1923
|
-
exports["default"] = _default;
|
1904
|
+
var _default = exports["default"] = dictionary;
|
1924
1905
|
|
1925
1906
|
/***/ })
|
1926
1907
|
/******/ ]);
|
package/languages/it-IT.js
CHANGED
@@ -151,8 +151,7 @@ const dictionary = {
|
|
151
151
|
[C.FILTERS_BUTTONS_PLACEHOLDER_SECOND_VALUE]: 'Sostituisci con'
|
152
152
|
};
|
153
153
|
_handsontable.default.languages.registerLanguageDictionary(dictionary);
|
154
|
-
var _default = dictionary;
|
155
|
-
exports["default"] = _default;
|
154
|
+
var _default = exports["default"] = dictionary;
|
156
155
|
})();
|
157
156
|
|
158
157
|
__webpack_exports__ = __webpack_exports__.___;
|