handsontable 10.0.0 → 11.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/3rdparty/autoResize/autoResize.js +2 -0
- package/3rdparty/autoResize/autoResize.mjs +1 -0
- package/3rdparty/walkontable/src/border.js +2 -0
- package/3rdparty/walkontable/src/border.mjs +1 -0
- package/3rdparty/walkontable/src/calculator/constants.js +1 -1
- package/3rdparty/walkontable/src/calculator/index.js +2 -0
- package/3rdparty/walkontable/src/calculator/viewportColumns.d.ts +18 -0
- package/3rdparty/walkontable/src/cell/coords.d.ts +16 -0
- package/3rdparty/walkontable/src/cell/range.d.ts +51 -0
- package/3rdparty/walkontable/src/index.d.ts +1 -0
- package/3rdparty/walkontable/src/overlay/bottom.js +2 -2
- package/3rdparty/walkontable/src/overlay/bottom.mjs +1 -1
- package/3rdparty/walkontable/src/overlay/bottomLeftCorner.js +2 -2
- package/3rdparty/walkontable/src/overlay/bottomLeftCorner.mjs +1 -1
- package/3rdparty/walkontable/src/overlay/constants.js +1 -1
- package/3rdparty/walkontable/src/overlay/index.js +2 -0
- package/3rdparty/walkontable/src/overlay/left.js +2 -2
- package/3rdparty/walkontable/src/overlay/left.mjs +1 -1
- package/3rdparty/walkontable/src/overlay/registerer.js +1 -1
- package/3rdparty/walkontable/src/overlay/top.js +2 -2
- package/3rdparty/walkontable/src/overlay/top.mjs +1 -1
- package/3rdparty/walkontable/src/overlay/topLeftCorner.js +2 -2
- package/3rdparty/walkontable/src/overlay/topLeftCorner.mjs +1 -1
- package/3rdparty/walkontable/src/overlays.js +2 -0
- package/3rdparty/walkontable/src/overlays.mjs +1 -0
- package/3rdparty/walkontable/src/renderer/colGroup.js +2 -2
- package/3rdparty/walkontable/src/renderer/colGroup.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/columnHeaders.js +2 -2
- package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/rows.js +2 -2
- package/3rdparty/walkontable/src/renderer/rows.mjs +1 -1
- package/3rdparty/walkontable/src/selection.js +4 -2
- package/3rdparty/walkontable/src/selection.mjs +2 -1
- package/3rdparty/walkontable/src/table/bottom.js +2 -2
- package/3rdparty/walkontable/src/table/bottom.mjs +1 -1
- package/3rdparty/walkontable/src/table/bottomLeftCorner.js +2 -2
- package/3rdparty/walkontable/src/table/bottomLeftCorner.mjs +1 -1
- package/3rdparty/walkontable/src/table/left.js +2 -2
- package/3rdparty/walkontable/src/table/left.mjs +1 -1
- package/3rdparty/walkontable/src/table/master.js +2 -2
- package/3rdparty/walkontable/src/table/master.mjs +1 -1
- package/3rdparty/walkontable/src/table/top.js +2 -2
- package/3rdparty/walkontable/src/table/top.mjs +1 -1
- package/3rdparty/walkontable/src/table/topLeftCorner.js +2 -2
- package/3rdparty/walkontable/src/table/topLeftCorner.mjs +1 -1
- package/3rdparty/walkontable/src/table.js +4 -2
- package/3rdparty/walkontable/src/table.mjs +2 -1
- package/3rdparty/walkontable/src/utils/orderView/constants.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/sharedView.js +2 -2
- package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +1 -1
- package/CHANGELOG.md +28 -0
- package/LICENSE.txt +19 -22
- package/README.md +1 -0
- package/base.d.ts +1 -1
- package/base.js +16 -3
- package/base.mjs +14 -4
- package/cellTypes/autocompleteType/autocompleteType.d.ts +17 -0
- package/cellTypes/autocompleteType/autocompleteType.js +1 -1
- package/cellTypes/autocompleteType/index.d.ts +1 -0
- package/cellTypes/base.d.ts +14 -0
- package/cellTypes/checkboxType/checkboxType.d.ts +14 -0
- package/cellTypes/checkboxType/index.d.ts +1 -0
- package/cellTypes/dateType/dateType.d.ts +17 -0
- package/cellTypes/dateType/index.d.ts +1 -0
- package/cellTypes/dropdownType/dropdownType.d.ts +17 -0
- package/cellTypes/dropdownType/index.d.ts +1 -0
- package/cellTypes/handsontableType/handsontableType.d.ts +14 -0
- package/cellTypes/handsontableType/index.d.ts +1 -0
- package/cellTypes/index.d.ts +47 -0
- package/cellTypes/index.js +18 -2
- package/cellTypes/index.mjs +26 -9
- package/cellTypes/numericType/index.d.ts +1 -0
- package/cellTypes/numericType/numericType.d.ts +17 -0
- package/cellTypes/passwordType/index.d.ts +1 -0
- package/cellTypes/passwordType/passwordType.d.ts +14 -0
- package/cellTypes/registry.d.ts +18 -0
- package/cellTypes/registry.js +2 -2
- package/cellTypes/textType/index.d.ts +1 -0
- package/cellTypes/textType/textType.d.ts +14 -0
- package/cellTypes/timeType/index.d.ts +1 -0
- package/cellTypes/timeType/timeType.d.ts +17 -0
- package/common.d.ts +74 -0
- package/core.d.ts +159 -0
- package/core.js +110 -45
- package/core.mjs +108 -45
- package/dataMap/dataMap.js +22 -15
- package/dataMap/dataMap.mjs +22 -15
- package/dataMap/metaManager/index.js +2 -0
- package/dataMap/metaManager/index.mjs +1 -0
- package/dataMap/metaManager/metaLayers/cellMeta.js +2 -0
- package/dataMap/metaManager/metaLayers/cellMeta.mjs +1 -0
- package/dataMap/metaManager/metaSchema.js +2147 -885
- package/dataMap/metaManager/metaSchema.mjs +2147 -885
- package/dataMap/metaManager/utils.js +3 -3
- package/dataSource.js +2 -0
- package/dataSource.mjs +1 -0
- package/dist/handsontable.css +275 -278
- package/dist/handsontable.full.css +275 -278
- package/dist/handsontable.full.js +29033 -26919
- package/dist/handsontable.full.min.css +24 -27
- package/dist/handsontable.full.min.js +154 -157
- package/dist/handsontable.js +29473 -27486
- package/dist/handsontable.min.css +24 -27
- package/dist/handsontable.min.js +22 -25
- package/editorManager.js +8 -6
- package/editorManager.mjs +7 -6
- package/editors/autocompleteEditor/autocompleteEditor.d.ts +29 -0
- package/editors/autocompleteEditor/autocompleteEditor.js +89 -85
- package/editors/autocompleteEditor/autocompleteEditor.mjs +87 -82
- package/editors/autocompleteEditor/index.d.ts +1 -0
- package/editors/autocompleteEditor/index.js +1 -1
- package/editors/baseEditor/baseEditor.d.ts +45 -0
- package/editors/baseEditor/baseEditor.js +6 -5
- package/editors/baseEditor/baseEditor.mjs +3 -3
- package/editors/baseEditor/index.d.ts +1 -0
- package/editors/baseEditor/index.js +1 -1
- package/editors/checkboxEditor/checkboxEditor.d.ts +12 -0
- package/editors/checkboxEditor/checkboxEditor.js +3 -3
- package/editors/checkboxEditor/checkboxEditor.mjs +1 -1
- package/editors/checkboxEditor/index.d.ts +1 -0
- package/editors/checkboxEditor/index.js +1 -1
- package/editors/dateEditor/dateEditor.d.ts +18 -0
- package/editors/dateEditor/dateEditor.js +10 -6
- package/editors/dateEditor/dateEditor.mjs +8 -4
- package/editors/dateEditor/index.d.ts +1 -0
- package/editors/dateEditor/index.js +1 -1
- package/editors/dropdownEditor/dropdownEditor.d.ts +7 -0
- package/editors/dropdownEditor/dropdownEditor.js +3 -3
- package/editors/dropdownEditor/dropdownEditor.mjs +1 -1
- package/editors/dropdownEditor/index.d.ts +1 -0
- package/editors/dropdownEditor/index.js +1 -1
- package/editors/handsontableEditor/handsontableEditor.d.ts +10 -0
- package/editors/handsontableEditor/handsontableEditor.js +2 -2
- package/editors/handsontableEditor/handsontableEditor.mjs +1 -1
- package/editors/handsontableEditor/index.d.ts +1 -0
- package/editors/index.d.ts +53 -0
- package/editors/index.js +19 -2
- package/editors/index.mjs +28 -10
- package/editors/numericEditor/index.d.ts +1 -0
- package/editors/numericEditor/numericEditor.d.ts +7 -0
- package/editors/numericEditor/numericEditor.js +2 -2
- package/editors/numericEditor/numericEditor.mjs +1 -1
- package/editors/passwordEditor/index.d.ts +1 -0
- package/editors/passwordEditor/passwordEditor.d.ts +7 -0
- package/editors/passwordEditor/passwordEditor.js +2 -2
- package/editors/passwordEditor/passwordEditor.mjs +1 -1
- package/editors/registry.d.ts +29 -0
- package/editors/registry.js +2 -2
- package/editors/selectEditor/index.d.ts +1 -0
- package/editors/selectEditor/selectEditor.d.ts +16 -0
- package/editors/selectEditor/selectEditor.js +2 -2
- package/editors/selectEditor/selectEditor.mjs +1 -1
- package/editors/textEditor/index.d.ts +1 -0
- package/editors/textEditor/textEditor.d.ts +24 -0
- package/editors/textEditor/textEditor.js +2 -2
- package/editors/textEditor/textEditor.mjs +1 -1
- package/eventManager.d.ts +13 -0
- package/eventManager.js +1 -1
- package/handsontable-non-commercial-license.pdf +0 -0
- package/helpers/array.d.ts +18 -0
- package/helpers/array.js +10 -10
- package/helpers/array.mjs +1 -1
- package/helpers/browser.d.ts +25 -0
- package/helpers/browser.js +11 -9
- package/helpers/browser.mjs +1 -0
- package/helpers/console.d.ts +4 -0
- package/helpers/console.js +2 -2
- package/helpers/data.d.ts +13 -0
- package/helpers/data.js +7 -35
- package/helpers/data.mjs +1 -27
- package/helpers/date.d.ts +1 -0
- package/helpers/dom/element.d.ts +49 -0
- package/helpers/dom/element.js +40 -40
- package/helpers/dom/element.mjs +3 -3
- package/helpers/dom/event.d.ts +4 -0
- package/helpers/dom/event.js +2 -2
- package/helpers/dom/index.d.ts +2 -0
- package/helpers/feature.d.ts +11 -0
- package/helpers/feature.js +6 -6
- package/helpers/function.d.ts +10 -0
- package/helpers/function.js +6 -6
- package/helpers/index.d.ts +14 -0
- package/helpers/mixed.d.ts +5 -0
- package/helpers/mixed.js +5 -5
- package/helpers/mixed.mjs +2 -2
- package/helpers/number.d.ts +5 -0
- package/helpers/number.js +2 -2
- package/helpers/number.mjs +1 -1
- package/helpers/object.d.ts +16 -0
- package/helpers/object.js +11 -11
- package/helpers/string.d.ts +7 -0
- package/helpers/string.js +4 -4
- package/helpers/templateLiteralTag.d.ts +1 -0
- package/helpers/unicode.d.ts +73 -0
- package/helpers/unicode.js +10 -5
- package/helpers/unicode.mjs +7 -2
- package/i18n/constants.js +1 -1
- package/i18n/index.d.ts +2 -0
- package/i18n/index.js +2 -0
- package/i18n/languages/de-CH.d.ts +5 -0
- package/i18n/languages/de-DE.d.ts +5 -0
- package/i18n/languages/en-US.d.ts +5 -0
- package/i18n/languages/es-MX.d.ts +5 -0
- package/i18n/languages/fr-FR.d.ts +5 -0
- package/i18n/languages/index.d.ts +35 -0
- package/i18n/languages/it-IT.d.ts +5 -0
- package/i18n/languages/ja-JP.d.ts +5 -0
- package/i18n/languages/ko-KR.d.ts +5 -0
- package/i18n/languages/lv-LV.d.ts +5 -0
- package/i18n/languages/nb-NO.d.ts +5 -0
- package/i18n/languages/nl-NL.d.ts +5 -0
- package/i18n/languages/pl-PL.d.ts +5 -0
- package/i18n/languages/pt-BR.d.ts +5 -0
- package/i18n/languages/ru-RU.d.ts +5 -0
- package/i18n/languages/zh-CN.d.ts +5 -0
- package/i18n/languages/zh-TW.d.ts +5 -0
- package/i18n/phraseFormatters/index.js +1 -1
- package/i18n/registry.d.ts +13 -0
- package/i18n/registry.js +4 -4
- package/i18n/utils.js +1 -1
- package/index.d.ts +516 -0
- package/index.js +40 -112
- package/index.mjs +17 -90
- package/package.json +101 -8
- package/pluginHooks.d.ts +255 -0
- package/pluginHooks.js +7 -1
- package/pluginHooks.mjs +7 -1
- package/plugins/autoColumnSize/autoColumnSize.d.ts +27 -0
- package/plugins/autoColumnSize/autoColumnSize.js +3 -1
- package/plugins/autoColumnSize/autoColumnSize.mjs +1 -0
- package/plugins/autoColumnSize/index.d.ts +1 -0
- package/plugins/autoColumnSize/index.js +1 -1
- package/plugins/autoRowSize/autoRowSize.d.ts +27 -0
- package/plugins/autoRowSize/autoRowSize.js +10 -4
- package/plugins/autoRowSize/autoRowSize.mjs +7 -2
- package/plugins/autoRowSize/index.d.ts +1 -0
- package/plugins/autoRowSize/index.js +1 -1
- package/plugins/autofill/autofill.d.ts +18 -0
- package/plugins/autofill/autofill.js +5 -3
- package/plugins/autofill/autofill.mjs +2 -1
- package/plugins/autofill/index.d.ts +1 -0
- package/plugins/autofill/index.js +1 -1
- package/plugins/autofill/utils.js +1 -1
- package/plugins/base/base.d.ts +21 -0
- package/plugins/base/base.js +1 -1
- package/plugins/base/index.d.ts +1 -0
- package/plugins/base/index.js +1 -1
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.d.ts +9 -0
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js +1 -1
- package/plugins/bindRowsWithHeaders/index.d.ts +1 -0
- package/plugins/bindRowsWithHeaders/index.js +1 -1
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +2 -2
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.mjs +1 -1
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +4 -2
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.mjs +2 -1
- package/plugins/collapsibleColumns/collapsibleColumns.d.ts +22 -0
- package/plugins/collapsibleColumns/collapsibleColumns.js +3 -1
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +1 -0
- package/plugins/collapsibleColumns/index.d.ts +1 -0
- package/plugins/collapsibleColumns/index.js +1 -1
- package/plugins/columnSorting/columnSorting.d.ts +30 -0
- package/plugins/columnSorting/columnSorting.js +5 -3
- package/plugins/columnSorting/columnSorting.mjs +2 -1
- package/plugins/columnSorting/columnStatesManager.js +3 -1
- package/plugins/columnSorting/columnStatesManager.mjs +2 -1
- package/plugins/columnSorting/index.d.ts +1 -0
- package/plugins/columnSorting/index.js +1 -1
- package/plugins/columnSorting/rootComparator.js +2 -0
- package/plugins/columnSorting/rootComparator.mjs +1 -0
- package/plugins/columnSorting/sortFunction/checkbox.js +1 -1
- package/plugins/columnSorting/sortFunction/date.js +1 -1
- package/plugins/columnSorting/sortFunction/default.js +4 -3
- package/plugins/columnSorting/sortFunction/default.mjs +3 -2
- package/plugins/columnSorting/sortFunction/numeric.js +1 -1
- package/plugins/columnSorting/sortService/engine.js +1 -1
- package/plugins/columnSorting/sortService/registry.js +1 -1
- package/plugins/columnSorting/utils.js +4 -4
- package/plugins/columnSorting/utils.mjs +1 -1
- package/plugins/columnSummary/columnSummary.d.ts +72 -0
- package/plugins/columnSummary/columnSummary.js +3 -3
- package/plugins/columnSummary/columnSummary.mjs +1 -1
- package/plugins/columnSummary/endpoints.js +3 -1
- package/plugins/columnSummary/endpoints.mjs +2 -1
- package/plugins/columnSummary/index.d.ts +1 -0
- package/plugins/columnSummary/index.js +1 -1
- package/plugins/comments/commentEditor.js +1 -1
- package/plugins/comments/commentEditor.mjs +1 -1
- package/plugins/comments/comments.d.ts +50 -0
- package/plugins/comments/comments.js +1 -1
- package/plugins/comments/displaySwitch.js +1 -1
- package/plugins/comments/displaySwitch.mjs +1 -1
- package/plugins/comments/index.d.ts +1 -0
- package/plugins/comments/index.js +1 -1
- package/plugins/contextMenu/commandExecutor.js +1 -1
- package/plugins/contextMenu/commandExecutor.mjs +1 -1
- package/plugins/contextMenu/contextMenu.d.ts +65 -0
- package/plugins/contextMenu/contextMenu.js +4 -3
- package/plugins/contextMenu/contextMenu.mjs +2 -1
- package/plugins/contextMenu/cursor.js +1 -1
- package/plugins/contextMenu/cursor.mjs +1 -1
- package/plugins/contextMenu/index.d.ts +1 -0
- package/plugins/contextMenu/index.js +1 -1
- package/plugins/contextMenu/itemsFactory.js +1 -1
- package/plugins/contextMenu/itemsFactory.mjs +1 -1
- package/plugins/contextMenu/menu.js +3 -3
- package/plugins/contextMenu/menu.mjs +2 -2
- package/plugins/contextMenu/predefinedItems/alignment.js +1 -1
- package/plugins/contextMenu/predefinedItems/clearColumn.js +1 -1
- package/plugins/contextMenu/predefinedItems/columnLeft.js +1 -1
- package/plugins/contextMenu/predefinedItems/columnRight.js +1 -1
- package/plugins/contextMenu/predefinedItems/noItems.js +1 -1
- package/plugins/contextMenu/predefinedItems/readOnly.js +1 -1
- package/plugins/contextMenu/predefinedItems/redo.js +1 -1
- package/plugins/contextMenu/predefinedItems/removeColumn.js +3 -1
- package/plugins/contextMenu/predefinedItems/removeColumn.mjs +1 -0
- package/plugins/contextMenu/predefinedItems/removeRow.js +3 -1
- package/plugins/contextMenu/predefinedItems/removeRow.mjs +1 -0
- package/plugins/contextMenu/predefinedItems/rowAbove.js +1 -1
- package/plugins/contextMenu/predefinedItems/rowBelow.js +1 -1
- package/plugins/contextMenu/predefinedItems/separator.js +1 -1
- package/plugins/contextMenu/predefinedItems/undo.js +1 -1
- package/plugins/contextMenu/predefinedItems.js +2 -2
- package/plugins/contextMenu/utils.js +10 -10
- package/plugins/copyPaste/clipboardData.js +3 -0
- package/plugins/copyPaste/clipboardData.mjs +3 -0
- package/plugins/copyPaste/copyPaste.d.ts +35 -0
- package/plugins/copyPaste/copyPaste.js +4 -1
- package/plugins/copyPaste/copyPaste.mjs +2 -0
- package/plugins/copyPaste/focusableElement.js +1 -2
- package/plugins/copyPaste/focusableElement.mjs +1 -2
- package/plugins/copyPaste/index.d.ts +1 -0
- package/plugins/copyPaste/index.js +1 -1
- package/plugins/copyPaste/pasteEvent.js +3 -0
- package/plugins/copyPaste/pasteEvent.mjs +3 -0
- package/plugins/customBorders/customBorders.d.ts +38 -0
- package/plugins/customBorders/customBorders.js +5 -3
- package/plugins/customBorders/customBorders.mjs +2 -1
- package/plugins/customBorders/index.d.ts +1 -0
- package/plugins/customBorders/index.js +1 -1
- package/plugins/customBorders/utils.js +3 -3
- package/plugins/dragToScroll/dragToScroll.d.ts +15 -0
- package/plugins/dragToScroll/dragToScroll.js +3 -3
- package/plugins/dragToScroll/dragToScroll.mjs +1 -1
- package/plugins/dragToScroll/index.d.ts +1 -0
- package/plugins/dragToScroll/index.js +1 -1
- package/plugins/dropdownMenu/dropdownMenu.d.ts +24 -0
- package/plugins/dropdownMenu/dropdownMenu.js +3 -3
- package/plugins/dropdownMenu/dropdownMenu.mjs +1 -1
- package/plugins/dropdownMenu/index.d.ts +1 -0
- package/plugins/dropdownMenu/index.js +1 -1
- package/plugins/exportFile/dataProvider.js +2 -4
- package/plugins/exportFile/dataProvider.mjs +2 -4
- package/plugins/exportFile/exportFile.d.ts +12 -0
- package/plugins/exportFile/exportFile.js +3 -3
- package/plugins/exportFile/exportFile.mjs +1 -1
- package/plugins/exportFile/index.d.ts +1 -0
- package/plugins/exportFile/index.js +1 -1
- package/plugins/exportFile/typeFactory.js +2 -1
- package/plugins/exportFile/typeFactory.mjs +1 -0
- package/plugins/exportFile/types/_base.js +0 -1
- package/plugins/exportFile/types/_base.mjs +0 -1
- package/plugins/exportFile/types/csv.js +2 -3
- package/plugins/exportFile/types/csv.mjs +1 -2
- package/plugins/filters/component/_base.js +1 -1
- package/plugins/filters/component/_base.mjs +1 -1
- package/plugins/filters/component/actionBar.js +3 -3
- package/plugins/filters/component/actionBar.mjs +2 -2
- package/plugins/filters/component/condition.js +5 -3
- package/plugins/filters/component/condition.mjs +3 -2
- package/plugins/filters/component/operators.js +3 -3
- package/plugins/filters/component/operators.mjs +2 -2
- package/plugins/filters/component/value.js +10 -3
- package/plugins/filters/component/value.mjs +8 -2
- package/plugins/filters/condition/beginsWith.js +4 -2
- package/plugins/filters/condition/beginsWith.mjs +2 -1
- package/plugins/filters/condition/between.js +3 -1
- package/plugins/filters/condition/between.mjs +1 -0
- package/plugins/filters/condition/byValue.js +3 -1
- package/plugins/filters/condition/byValue.mjs +1 -0
- package/plugins/filters/condition/contains.js +4 -2
- package/plugins/filters/condition/contains.mjs +2 -1
- package/plugins/filters/condition/date/after.js +3 -1
- package/plugins/filters/condition/date/after.mjs +1 -0
- package/plugins/filters/condition/date/before.js +3 -1
- package/plugins/filters/condition/date/before.mjs +1 -0
- package/plugins/filters/condition/date/today.js +1 -1
- package/plugins/filters/condition/date/tomorrow.js +1 -1
- package/plugins/filters/condition/date/yesterday.js +1 -1
- package/plugins/filters/condition/empty.js +1 -1
- package/plugins/filters/condition/endsWith.js +4 -2
- package/plugins/filters/condition/endsWith.mjs +2 -1
- package/plugins/filters/condition/equal.js +4 -2
- package/plugins/filters/condition/equal.mjs +2 -1
- package/plugins/filters/condition/false.js +1 -1
- package/plugins/filters/condition/greaterThan.js +3 -1
- package/plugins/filters/condition/greaterThan.mjs +1 -0
- package/plugins/filters/condition/greaterThanOrEqual.js +3 -1
- package/plugins/filters/condition/greaterThanOrEqual.mjs +1 -0
- package/plugins/filters/condition/lessThan.js +3 -1
- package/plugins/filters/condition/lessThan.mjs +1 -0
- package/plugins/filters/condition/lessThanOrEqual.js +3 -1
- package/plugins/filters/condition/lessThanOrEqual.mjs +1 -0
- package/plugins/filters/condition/none.js +1 -1
- package/plugins/filters/condition/notBetween.js +1 -1
- package/plugins/filters/condition/notContains.js +1 -1
- package/plugins/filters/condition/notEmpty.js +1 -1
- package/plugins/filters/condition/notEqual.js +1 -1
- package/plugins/filters/condition/true.js +1 -1
- package/plugins/filters/conditionCollection.d.ts +32 -0
- package/plugins/filters/conditionCollection.js +7 -4
- package/plugins/filters/conditionCollection.mjs +5 -3
- package/plugins/filters/conditionRegisterer.js +1 -1
- package/plugins/filters/conditionUpdateObserver.d.ts +10 -0
- package/plugins/filters/conditionUpdateObserver.js +3 -1
- package/plugins/filters/conditionUpdateObserver.mjs +2 -1
- package/plugins/filters/constants.js +2 -1
- package/plugins/filters/constants.mjs +1 -0
- package/plugins/filters/dataFilter.js +1 -1
- package/plugins/filters/dataFilter.mjs +1 -1
- package/plugins/filters/filters.d.ts +56 -0
- package/plugins/filters/filters.js +7 -3
- package/plugins/filters/filters.mjs +5 -2
- package/plugins/filters/index.d.ts +1 -0
- package/plugins/filters/index.js +1 -1
- package/plugins/filters/logicalOperationRegisterer.js +1 -1
- package/plugins/filters/logicalOperations/conjunction.js +3 -3
- package/plugins/filters/logicalOperations/conjunction.mjs +1 -0
- package/plugins/filters/logicalOperations/disjunction.js +3 -3
- package/plugins/filters/logicalOperations/disjunction.mjs +1 -0
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.js +3 -3
- package/plugins/filters/logicalOperations/disjunctionWithExtraCondition.mjs +1 -0
- package/plugins/filters/ui/_base.js +0 -1
- package/plugins/filters/ui/_base.mjs +0 -1
- package/plugins/filters/ui/input.js +1 -1
- package/plugins/filters/ui/input.mjs +1 -1
- package/plugins/filters/ui/link.js +1 -1
- package/plugins/filters/ui/link.mjs +1 -1
- package/plugins/filters/ui/multipleSelect.js +29 -3
- package/plugins/filters/ui/multipleSelect.mjs +28 -3
- package/plugins/filters/ui/radioInput.js +1 -1
- package/plugins/filters/ui/radioInput.mjs +1 -1
- package/plugins/filters/ui/select.js +1 -1
- package/plugins/filters/ui/select.mjs +1 -1
- package/plugins/filters/utils.js +3 -3
- package/plugins/formulas/engine/register.js +3 -3
- package/plugins/formulas/engine/settings.js +3 -1
- package/plugins/formulas/engine/settings.mjs +1 -0
- package/plugins/formulas/formulas.d.ts +31 -0
- package/plugins/formulas/formulas.js +5 -3
- package/plugins/formulas/formulas.mjs +2 -1
- package/plugins/formulas/index.d.ts +1 -0
- package/plugins/formulas/index.js +1 -1
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +2 -0
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.mjs +1 -0
- package/plugins/hiddenColumns/contextMenuItem/showColumn.js +4 -2
- package/plugins/hiddenColumns/contextMenuItem/showColumn.mjs +2 -1
- package/plugins/hiddenColumns/hiddenColumns.d.ts +21 -0
- package/plugins/hiddenColumns/hiddenColumns.js +1 -1
- package/plugins/hiddenColumns/index.d.ts +1 -0
- package/plugins/hiddenColumns/index.js +1 -1
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +2 -0
- package/plugins/hiddenRows/contextMenuItem/hideRow.mjs +1 -0
- package/plugins/hiddenRows/contextMenuItem/showRow.js +4 -2
- package/plugins/hiddenRows/contextMenuItem/showRow.mjs +2 -1
- package/plugins/hiddenRows/hiddenRows.d.ts +21 -0
- package/plugins/hiddenRows/hiddenRows.js +1 -1
- package/plugins/hiddenRows/index.d.ts +1 -0
- package/plugins/hiddenRows/index.js +1 -1
- package/plugins/index.d.ts +111 -0
- package/plugins/index.js +98 -58
- package/plugins/index.mjs +75 -34
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.js +2 -0
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +1 -0
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +2 -0
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +1 -0
- package/plugins/manualColumnFreeze/index.d.ts +1 -0
- package/plugins/manualColumnFreeze/index.js +1 -1
- package/plugins/manualColumnFreeze/manualColumnFreeze.d.ts +11 -0
- package/plugins/manualColumnFreeze/manualColumnFreeze.js +1 -1
- package/plugins/manualColumnMove/index.d.ts +1 -0
- package/plugins/manualColumnMove/index.js +1 -1
- package/plugins/manualColumnMove/manualColumnMove.d.ts +14 -0
- package/plugins/manualColumnMove/manualColumnMove.js +1 -1
- package/plugins/manualColumnMove/ui/backlight.js +2 -2
- package/plugins/manualColumnMove/ui/backlight.mjs +1 -1
- package/plugins/manualColumnMove/ui/guideline.js +2 -2
- package/plugins/manualColumnMove/ui/guideline.mjs +1 -1
- package/plugins/manualColumnResize/index.d.ts +1 -0
- package/plugins/manualColumnResize/index.js +1 -1
- package/plugins/manualColumnResize/manualColumnResize.d.ts +30 -0
- package/plugins/manualColumnResize/manualColumnResize.js +1 -1
- package/plugins/manualRowMove/index.d.ts +1 -0
- package/plugins/manualRowMove/index.js +1 -1
- package/plugins/manualRowMove/manualRowMove.d.ts +14 -0
- package/plugins/manualRowMove/manualRowMove.js +1 -1
- package/plugins/manualRowMove/ui/_base.js +0 -1
- package/plugins/manualRowMove/ui/_base.mjs +0 -1
- package/plugins/manualRowMove/ui/backlight.js +3 -3
- package/plugins/manualRowMove/ui/backlight.mjs +2 -2
- package/plugins/manualRowMove/ui/guideline.js +3 -3
- package/plugins/manualRowMove/ui/guideline.mjs +2 -2
- package/plugins/manualRowResize/index.d.ts +1 -0
- package/plugins/manualRowResize/index.js +1 -1
- package/plugins/manualRowResize/manualRowResize.d.ts +29 -0
- package/plugins/manualRowResize/manualRowResize.js +1 -1
- package/plugins/mergeCells/calculations/autofill.js +3 -2
- package/plugins/mergeCells/calculations/autofill.mjs +2 -2
- package/plugins/mergeCells/calculations/selection.js +1 -2
- package/plugins/mergeCells/calculations/selection.mjs +1 -2
- package/plugins/mergeCells/cellCoords.js +1 -1
- package/plugins/mergeCells/cellCoords.mjs +1 -1
- package/plugins/mergeCells/cellsCollection.js +3 -1
- package/plugins/mergeCells/cellsCollection.mjs +2 -1
- package/plugins/mergeCells/index.d.ts +1 -0
- package/plugins/mergeCells/index.js +1 -1
- package/plugins/mergeCells/mergeCells.d.ts +22 -0
- package/plugins/mergeCells/mergeCells.js +3 -1
- package/plugins/mergeCells/mergeCells.mjs +1 -0
- package/plugins/multiColumnSorting/domHelpers.js +2 -0
- package/plugins/multiColumnSorting/domHelpers.mjs +1 -0
- package/plugins/multiColumnSorting/index.d.ts +1 -0
- package/plugins/multiColumnSorting/index.js +1 -1
- package/plugins/multiColumnSorting/multiColumnSorting.d.ts +8 -0
- package/plugins/multiColumnSorting/multiColumnSorting.js +3 -3
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +1 -1
- package/plugins/multiColumnSorting/rootComparator.js +2 -0
- package/plugins/multiColumnSorting/rootComparator.mjs +1 -0
- package/plugins/multipleSelectionHandles/index.d.ts +1 -0
- package/plugins/multipleSelectionHandles/index.js +1 -1
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.d.ts +21 -0
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.js +4 -3
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +2 -1
- package/plugins/nestedHeaders/index.d.ts +1 -0
- package/plugins/nestedHeaders/index.js +1 -1
- package/plugins/nestedHeaders/nestedHeaders.d.ts +17 -0
- package/plugins/nestedHeaders/nestedHeaders.js +3 -3
- package/plugins/nestedHeaders/nestedHeaders.mjs +1 -1
- package/plugins/nestedHeaders/stateManager/headersTree.js +3 -1
- package/plugins/nestedHeaders/stateManager/headersTree.mjs +2 -1
- package/plugins/nestedHeaders/stateManager/index.js +0 -1
- package/plugins/nestedHeaders/stateManager/index.mjs +0 -1
- package/plugins/nestedHeaders/stateManager/nodeModifiers/utils/tree.js +1 -1
- package/plugins/nestedHeaders/stateManager/settingsNormalizer.js +2 -0
- package/plugins/nestedHeaders/stateManager/settingsNormalizer.mjs +1 -0
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +1 -1
- package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +1 -1
- package/plugins/nestedHeaders/utils/ghostTable.js +3 -0
- package/plugins/nestedHeaders/utils/ghostTable.mjs +3 -0
- package/plugins/nestedRows/data/dataManager.js +2 -1
- package/plugins/nestedRows/data/dataManager.mjs +1 -1
- package/plugins/nestedRows/index.d.ts +1 -0
- package/plugins/nestedRows/index.js +1 -1
- package/plugins/nestedRows/nestedRows.d.ts +12 -0
- package/plugins/nestedRows/nestedRows.js +3 -1
- package/plugins/nestedRows/nestedRows.mjs +1 -0
- package/plugins/nestedRows/ui/_base.js +1 -2
- package/plugins/nestedRows/ui/_base.mjs +1 -2
- package/plugins/nestedRows/ui/collapsing.js +5 -4
- package/plugins/nestedRows/ui/collapsing.mjs +3 -3
- package/plugins/nestedRows/ui/contextMenu.js +1 -2
- package/plugins/nestedRows/ui/contextMenu.mjs +1 -2
- package/plugins/nestedRows/ui/headers.js +3 -4
- package/plugins/nestedRows/ui/headers.mjs +2 -3
- package/plugins/nestedRows/utils/rowMoveController.js +5 -4
- package/plugins/nestedRows/utils/rowMoveController.mjs +3 -3
- package/plugins/persistentState/index.d.ts +1 -0
- package/plugins/persistentState/persistentState.d.ts +13 -0
- package/plugins/persistentState/persistentState.js +10 -2
- package/plugins/persistentState/persistentState.mjs +9 -1
- package/plugins/persistentState/storage.js +1 -1
- package/plugins/persistentState/storage.mjs +1 -1
- package/plugins/registry.d.ts +9 -0
- package/plugins/registry.js +3 -1
- package/plugins/registry.mjs +1 -0
- package/plugins/search/index.d.ts +1 -0
- package/plugins/search/search.d.ts +28 -0
- package/plugins/search/search.js +3 -3
- package/plugins/search/search.mjs +3 -3
- package/plugins/touchScroll/index.d.ts +1 -0
- package/plugins/touchScroll/touchScroll.d.ts +13 -0
- package/plugins/touchScroll/touchScroll.js +2 -2
- package/plugins/touchScroll/touchScroll.mjs +1 -1
- package/plugins/trimRows/index.d.ts +1 -0
- package/plugins/trimRows/trimRows.d.ts +17 -0
- package/plugins/undoRedo/index.d.ts +1 -0
- package/plugins/undoRedo/undoRedo.d.ts +49 -0
- package/plugins/undoRedo/undoRedo.js +12 -15
- package/plugins/undoRedo/undoRedo.mjs +10 -14
- package/registry.d.ts +6 -0
- package/registry.js +46 -0
- package/registry.mjs +27 -0
- package/renderers/autocompleteRenderer/autocompleteRenderer.d.ts +5 -0
- package/renderers/autocompleteRenderer/autocompleteRenderer.js +1 -1
- package/renderers/autocompleteRenderer/index.d.ts +1 -0
- package/renderers/base.d.ts +3 -0
- package/renderers/baseRenderer/baseRenderer.d.ts +5 -0
- package/renderers/baseRenderer/baseRenderer.js +1 -1
- package/renderers/baseRenderer/index.d.ts +1 -0
- package/renderers/checkboxRenderer/checkboxRenderer.d.ts +5 -0
- package/renderers/checkboxRenderer/checkboxRenderer.js +3 -5
- package/renderers/checkboxRenderer/checkboxRenderer.mjs +3 -4
- package/renderers/checkboxRenderer/index.d.ts +1 -0
- package/renderers/htmlRenderer/htmlRenderer.d.ts +5 -0
- package/renderers/htmlRenderer/htmlRenderer.js +1 -1
- package/renderers/htmlRenderer/index.d.ts +1 -0
- package/renderers/index.d.ts +42 -0
- package/renderers/index.js +16 -2
- package/renderers/index.mjs +22 -7
- package/renderers/numericRenderer/index.d.ts +1 -0
- package/renderers/numericRenderer/numericRenderer.d.ts +5 -0
- package/renderers/numericRenderer/numericRenderer.js +1 -1
- package/renderers/passwordRenderer/index.d.ts +1 -0
- package/renderers/passwordRenderer/passwordRenderer.d.ts +5 -0
- package/renderers/passwordRenderer/passwordRenderer.js +1 -1
- package/renderers/registry.d.ts +18 -0
- package/renderers/registry.js +3 -2
- package/renderers/textRenderer/index.d.ts +1 -0
- package/renderers/textRenderer/textRenderer.d.ts +5 -0
- package/renderers/textRenderer/textRenderer.js +1 -1
- package/selection/highlight/constants.js +1 -1
- package/selection/highlight/highlight.js +2 -0
- package/selection/highlight/highlight.mjs +1 -0
- package/selection/highlight/types/activeHeader.js +2 -0
- package/selection/highlight/types/activeHeader.mjs +1 -0
- package/selection/highlight/types/area.js +2 -0
- package/selection/highlight/types/area.mjs +1 -0
- package/selection/highlight/types/cell.js +2 -0
- package/selection/highlight/types/cell.mjs +1 -0
- package/selection/highlight/types/customSelection.js +2 -0
- package/selection/highlight/types/customSelection.mjs +1 -0
- package/selection/highlight/types/fill.js +2 -0
- package/selection/highlight/types/fill.mjs +1 -0
- package/selection/highlight/types/header.js +2 -0
- package/selection/highlight/types/header.mjs +1 -0
- package/selection/highlight/types/index.js +2 -0
- package/selection/highlight/types/index.mjs +1 -0
- package/selection/highlight/visualSelection.js +4 -2
- package/selection/highlight/visualSelection.mjs +2 -1
- package/selection/index.d.ts +5 -0
- package/selection/index.js +2 -0
- package/selection/mouseEventHandler.js +1 -1
- package/selection/range.js +2 -2
- package/selection/range.mjs +1 -1
- package/selection/selection.js +17 -8
- package/selection/selection.mjs +16 -8
- package/selection/transformation.js +3 -2
- package/selection/transformation.mjs +3 -2
- package/selection/utils.js +4 -2
- package/selection/utils.mjs +1 -0
- package/settings.d.ts +208 -0
- package/tableView.js +2 -0
- package/tableView.mjs +1 -0
- package/translations/changesObservable/observable.js +1 -0
- package/translations/changesObservable/observable.mjs +1 -0
- package/translations/changesObservable/observer.js +1 -0
- package/translations/changesObservable/observer.mjs +1 -0
- package/translations/changesObservable/utils.js +1 -0
- package/translations/changesObservable/utils.mjs +1 -0
- package/translations/index.d.ts +1 -0
- package/translations/index.js +3 -1
- package/translations/indexMapper.d.ts +45 -0
- package/translations/indexMapper.js +4 -2
- package/translations/indexMapper.mjs +2 -1
- package/translations/mapCollections/aggregatedCollection.js +2 -2
- package/translations/mapCollections/aggregatedCollection.mjs +1 -1
- package/translations/mapCollections/index.js +2 -0
- package/translations/mapCollections/mapCollection.js +1 -1
- package/translations/maps/hidingMap.js +2 -2
- package/translations/maps/hidingMap.mjs +1 -1
- package/translations/maps/indexMap.d.ts +10 -0
- package/translations/maps/indexesSequence.js +2 -2
- package/translations/maps/indexesSequence.mjs +1 -1
- package/translations/maps/linkedPhysicalIndexToValueMap.js +2 -0
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +1 -0
- package/translations/maps/physicalIndexToValueMap.js +2 -2
- package/translations/maps/physicalIndexToValueMap.mjs +1 -1
- package/translations/maps/trimmingMap.js +2 -2
- package/translations/maps/trimmingMap.mjs +1 -1
- package/translations/maps/utils/actionsOnIndexes.js +2 -0
- package/translations/maps/utils/actionsOnIndexes.mjs +1 -0
- package/translations/maps/utils/indexesSequence.js +2 -0
- package/translations/maps/utils/indexesSequence.mjs +1 -0
- package/translations/maps/utils/physicallyIndexed.js +2 -0
- package/translations/maps/utils/physicallyIndexed.mjs +1 -0
- package/utils/dataStructures/priorityMap.js +3 -1
- package/utils/dataStructures/priorityMap.mjs +1 -0
- package/utils/dataStructures/tree.js +3 -1
- package/utils/dataStructures/tree.mjs +1 -0
- package/utils/dataStructures/uniqueMap.js +2 -0
- package/utils/dataStructures/uniqueMap.mjs +1 -0
- package/utils/dataStructures/uniqueSet.js +2 -0
- package/utils/dataStructures/uniqueSet.mjs +1 -0
- package/utils/ghostTable.js +4 -3
- package/utils/ghostTable.mjs +2 -2
- package/utils/interval.js +1 -2
- package/utils/interval.mjs +0 -1
- package/utils/parseTable.d.ts +5 -0
- package/utils/parseTable.js +1 -1
- package/utils/rootInstance.js +3 -2
- package/utils/samplesGenerator.js +0 -1
- package/utils/samplesGenerator.mjs +0 -1
- package/utils/staticRegister.js +3 -1
- package/utils/staticRegister.mjs +1 -0
- package/validators/autocompleteValidator/autocompleteValidator.d.ts +5 -0
- package/validators/autocompleteValidator/autocompleteValidator.js +1 -1
- package/validators/autocompleteValidator/index.d.ts +1 -0
- package/validators/base.d.ts +6 -0
- package/validators/dateValidator/dateValidator.d.ts +5 -0
- package/validators/dateValidator/dateValidator.js +2 -2
- package/validators/dateValidator/index.d.ts +1 -0
- package/validators/index.d.ts +33 -0
- package/validators/index.js +13 -2
- package/validators/index.mjs +16 -4
- package/validators/numericValidator/index.d.ts +1 -0
- package/validators/numericValidator/numericValidator.d.ts +5 -0
- package/validators/numericValidator/numericValidator.js +1 -1
- package/validators/registry.d.ts +18 -0
- package/validators/registry.js +3 -2
- package/validators/timeValidator/index.d.ts +1 -0
- package/validators/timeValidator/timeValidator.d.ts +5 -0
- package/validators/timeValidator/timeValidator.js +3 -1
- package/validators/timeValidator/timeValidator.mjs +1 -0
- package/handsontable-general-terms.pdf +0 -0
- package/handsontable.d.ts +0 -2624
@@ -21,6 +21,7 @@ import "core-js/modules/web.dom-collections.iterator.js";
|
|
21
21
|
import "core-js/modules/es.array.slice.js";
|
22
22
|
import "core-js/modules/es.function.name.js";
|
23
23
|
import "core-js/modules/es.array.from.js";
|
24
|
+
import "core-js/modules/es.regexp.exec.js";
|
24
25
|
|
25
26
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
26
27
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
|
-
exports.
|
4
|
+
exports.RENDER_TYPE = exports.PARTIALLY_VISIBLE_TYPE = exports.FULLY_VISIBLE_TYPE = void 0;
|
5
5
|
|
6
6
|
/**
|
7
7
|
* Render type calculation calculates how many DOM nodes should be created and where placed
|
@@ -0,0 +1,18 @@
|
|
1
|
+
export class ViewportColumnsCalculator {
|
2
|
+
count: number;
|
3
|
+
startColumn: number | null;
|
4
|
+
endColumn: number | null;
|
5
|
+
startPosition: number | null;
|
6
|
+
startRow?: number;
|
7
|
+
endRow?: number;
|
8
|
+
stretchAllRatio: number;
|
9
|
+
stretchLastWidth: number;
|
10
|
+
stretch: 'none' | 'all' | 'last';
|
11
|
+
totalTargetWidth: number;
|
12
|
+
needVerifyLastColumnWidth: boolean;
|
13
|
+
stretchAllColumnsWidth: number[];
|
14
|
+
|
15
|
+
calculate(): void;
|
16
|
+
refreshStretching(totalWidth: number): void;
|
17
|
+
getStretchedColumnWidth(column: number, baseWidth: number): number | null;
|
18
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
export default class CellCoords {
|
2
|
+
constructor(row: number, column: number);
|
3
|
+
|
4
|
+
row: number;
|
5
|
+
col: number;
|
6
|
+
|
7
|
+
isValid(wot: any): boolean;
|
8
|
+
isEqual(cellCoords: CellCoords): boolean;
|
9
|
+
isSouthEastOf(testedCoords: any): boolean;
|
10
|
+
isNorthWestOf(testedCoords: any): boolean;
|
11
|
+
isSouthWestOf(testedCoords: any): boolean;
|
12
|
+
isNorthEastOf(testedCoords: any): boolean;
|
13
|
+
normalize(): CellCoords;
|
14
|
+
clone(): CellCoords;
|
15
|
+
toObject(): any;
|
16
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import CellCoords from './coords';
|
2
|
+
|
3
|
+
export default class CellRange {
|
4
|
+
constructor(highlight: CellCoords, from?: CellCoords, to?: CellCoords);
|
5
|
+
|
6
|
+
highlight: CellCoords;
|
7
|
+
from: CellCoords;
|
8
|
+
to: CellCoords;
|
9
|
+
|
10
|
+
setHighlight(coords: CellCoords): CellRange;
|
11
|
+
setFrom(coords: CellCoords): CellRange;
|
12
|
+
setTo(coords: CellCoords): CellRange;
|
13
|
+
isValid(wot: any): boolean;
|
14
|
+
isSingle(): boolean;
|
15
|
+
getOuterHeight(): number;
|
16
|
+
getOuterWidth(): number;
|
17
|
+
getHeight(): number;
|
18
|
+
getWidth(): number;
|
19
|
+
includes(cellCoords: CellCoords): boolean;
|
20
|
+
includesRange(cellRange: CellRange): boolean;
|
21
|
+
isEqual(cellRange: CellRange): boolean;
|
22
|
+
overlaps(cellRange: CellRange): boolean;
|
23
|
+
isSouthEastOf(cellRange: CellRange): boolean;
|
24
|
+
isNorthWestOf(cellRange: CellRange): boolean;
|
25
|
+
isOverlappingHorizontally(cellRange: CellRange): boolean;
|
26
|
+
isOverlappingVertically(cellRange: CellRange): boolean;
|
27
|
+
expand(cellCoords: CellCoords): boolean;
|
28
|
+
expandByRange(expandingRange: CellRange): boolean;
|
29
|
+
getDirection(): string;
|
30
|
+
setDirection(direction: string): void;
|
31
|
+
getVerticalDirection(): string;
|
32
|
+
getHorizontalDirection(): string;
|
33
|
+
flipDirectionVertically(): void;
|
34
|
+
flipDirectionHorizontally(): void;
|
35
|
+
getTopLeftCorner(): CellCoords;
|
36
|
+
getBottomRightCorner(): CellCoords;
|
37
|
+
getTopRightCorner(): CellCoords;
|
38
|
+
getBottomLeftCorner(): CellCoords;
|
39
|
+
getOuterTopLeftCorner(): CellCoords;
|
40
|
+
getOuterBottomRightCorner(): CellCoords;
|
41
|
+
getOuterTopRightCorner(): CellCoords;
|
42
|
+
getOuterBottomLeftCorner(): CellCoords;
|
43
|
+
isCorner(coords: CellCoords, expandedRange?: CellRange): boolean;
|
44
|
+
getOppositeCorner(coords: CellCoords, expandedRange?: CellRange): CellCoords;
|
45
|
+
getBordersSharedWith(range: CellRange): any[];
|
46
|
+
getInner(): any[];
|
47
|
+
getAll(): any[];
|
48
|
+
forAll(callback: (row: number, column: number) => boolean): void;
|
49
|
+
clone(): CellRange;
|
50
|
+
toObject(): any;
|
51
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export type OverlayType = 'top' | 'bottom' | 'left' | 'top_left_corner' | 'bottom_left_corner';
|
@@ -6,14 +6,14 @@ require("core-js/modules/es.object.set-prototype-of.js");
|
|
6
6
|
|
7
7
|
require("core-js/modules/es.object.get-prototype-of.js");
|
8
8
|
|
9
|
+
require("core-js/modules/es.object.to-string.js");
|
10
|
+
|
9
11
|
require("core-js/modules/es.reflect.construct.js");
|
10
12
|
|
11
13
|
require("core-js/modules/es.symbol.js");
|
12
14
|
|
13
15
|
require("core-js/modules/es.symbol.description.js");
|
14
16
|
|
15
|
-
require("core-js/modules/es.object.to-string.js");
|
16
|
-
|
17
17
|
require("core-js/modules/es.symbol.iterator.js");
|
18
18
|
|
19
19
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.symbol.js");
|
8
10
|
|
9
11
|
require("core-js/modules/es.symbol.description.js");
|
10
12
|
|
11
|
-
require("core-js/modules/es.object.to-string.js");
|
12
|
-
|
13
13
|
require("core-js/modules/es.symbol.iterator.js");
|
14
14
|
|
15
15
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
|
-
exports.CLONE_TYPES = exports.
|
4
|
+
exports.CLONE_TYPES = exports.CLONE_TOP_LEFT_CORNER = exports.CLONE_TOP = exports.CLONE_LEFT = exports.CLONE_BOTTOM_LEFT_CORNER = exports.CLONE_BOTTOM = void 0;
|
5
5
|
var CLONE_TOP = 'top';
|
6
6
|
exports.CLONE_TOP = CLONE_TOP;
|
7
7
|
var CLONE_BOTTOM = 'bottom';
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.symbol.js");
|
8
10
|
|
9
11
|
require("core-js/modules/es.symbol.description.js");
|
10
12
|
|
11
|
-
require("core-js/modules/es.object.to-string.js");
|
12
|
-
|
13
13
|
require("core-js/modules/es.symbol.iterator.js");
|
14
14
|
|
15
15
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -1,10 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
3
|
exports.__esModule = true;
|
4
|
-
exports.registerOverlayOnce = registerOverlayOnce;
|
5
4
|
exports.createOverlay = createOverlay;
|
6
5
|
exports.hasOverlay = hasOverlay;
|
7
6
|
exports.isOverlayTypeOf = isOverlayTypeOf;
|
7
|
+
exports.registerOverlayOnce = registerOverlayOnce;
|
8
8
|
|
9
9
|
require("core-js/modules/es.array.index-of.js");
|
10
10
|
|
@@ -6,14 +6,14 @@ require("core-js/modules/es.object.set-prototype-of.js");
|
|
6
6
|
|
7
7
|
require("core-js/modules/es.object.get-prototype-of.js");
|
8
8
|
|
9
|
+
require("core-js/modules/es.object.to-string.js");
|
10
|
+
|
9
11
|
require("core-js/modules/es.reflect.construct.js");
|
10
12
|
|
11
13
|
require("core-js/modules/es.symbol.js");
|
12
14
|
|
13
15
|
require("core-js/modules/es.symbol.description.js");
|
14
16
|
|
15
|
-
require("core-js/modules/es.object.to-string.js");
|
16
|
-
|
17
17
|
require("core-js/modules/es.symbol.iterator.js");
|
18
18
|
|
19
19
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.symbol.js");
|
8
10
|
|
9
11
|
require("core-js/modules/es.symbol.description.js");
|
10
12
|
|
11
|
-
require("core-js/modules/es.object.to-string.js");
|
12
|
-
|
13
13
|
require("core-js/modules/es.symbol.iterator.js");
|
14
14
|
|
15
15
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.symbol.js");
|
8
10
|
|
9
11
|
require("core-js/modules/es.symbol.description.js");
|
10
12
|
|
11
|
-
require("core-js/modules/es.object.to-string.js");
|
12
|
-
|
13
13
|
require("core-js/modules/es.symbol.iterator.js");
|
14
14
|
|
15
15
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.symbol.js");
|
8
10
|
|
9
11
|
require("core-js/modules/es.symbol.description.js");
|
10
12
|
|
11
|
-
require("core-js/modules/es.object.to-string.js");
|
12
|
-
|
13
13
|
require("core-js/modules/es.symbol.iterator.js");
|
14
14
|
|
15
15
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.array.slice.js");
|
@@ -12,8 +14,6 @@ require("core-js/modules/es.symbol.js");
|
|
12
14
|
|
13
15
|
require("core-js/modules/es.symbol.description.js");
|
14
16
|
|
15
|
-
require("core-js/modules/es.object.to-string.js");
|
16
|
-
|
17
17
|
require("core-js/modules/es.symbol.iterator.js");
|
18
18
|
|
19
19
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,12 +2,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.array.slice.js";
|
7
8
|
import "core-js/modules/es.object.freeze.js";
|
8
9
|
import "core-js/modules/es.symbol.js";
|
9
10
|
import "core-js/modules/es.symbol.description.js";
|
10
|
-
import "core-js/modules/es.object.to-string.js";
|
11
11
|
import "core-js/modules/es.symbol.iterator.js";
|
12
12
|
import "core-js/modules/es.array.iterator.js";
|
13
13
|
import "core-js/modules/es.string.iterator.js";
|
@@ -4,8 +4,6 @@ require("core-js/modules/es.symbol.js");
|
|
4
4
|
|
5
5
|
require("core-js/modules/es.symbol.description.js");
|
6
6
|
|
7
|
-
require("core-js/modules/es.object.to-string.js");
|
8
|
-
|
9
7
|
require("core-js/modules/es.symbol.iterator.js");
|
10
8
|
|
11
9
|
require("core-js/modules/es.array.iterator.js");
|
@@ -20,6 +18,8 @@ require("core-js/modules/es.function.name.js");
|
|
20
18
|
|
21
19
|
require("core-js/modules/es.array.from.js");
|
22
20
|
|
21
|
+
require("core-js/modules/es.regexp.exec.js");
|
22
|
+
|
23
23
|
exports.__esModule = true;
|
24
24
|
exports.default = void 0;
|
25
25
|
|
@@ -29,6 +29,8 @@ require("core-js/modules/es.string.includes.js");
|
|
29
29
|
|
30
30
|
require("core-js/modules/es.array.concat.js");
|
31
31
|
|
32
|
+
require("core-js/modules/es.object.to-string.js");
|
33
|
+
|
32
34
|
require("core-js/modules/web.dom-collections.for-each.js");
|
33
35
|
|
34
36
|
require("core-js/modules/es.object.values.js");
|
@@ -13,11 +13,11 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
13
13
|
import "core-js/modules/es.array.includes.js";
|
14
14
|
import "core-js/modules/es.string.includes.js";
|
15
15
|
import "core-js/modules/es.array.concat.js";
|
16
|
+
import "core-js/modules/es.object.to-string.js";
|
16
17
|
import "core-js/modules/web.dom-collections.for-each.js";
|
17
18
|
import "core-js/modules/es.object.values.js";
|
18
19
|
import "core-js/modules/es.symbol.js";
|
19
20
|
import "core-js/modules/es.symbol.description.js";
|
20
|
-
import "core-js/modules/es.object.to-string.js";
|
21
21
|
import "core-js/modules/es.symbol.iterator.js";
|
22
22
|
import "core-js/modules/es.array.iterator.js";
|
23
23
|
import "core-js/modules/es.string.iterator.js";
|
@@ -25,6 +25,7 @@ import "core-js/modules/web.dom-collections.iterator.js";
|
|
25
25
|
import "core-js/modules/es.array.slice.js";
|
26
26
|
import "core-js/modules/es.function.name.js";
|
27
27
|
import "core-js/modules/es.array.from.js";
|
28
|
+
import "core-js/modules/es.regexp.exec.js";
|
28
29
|
|
29
30
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
30
31
|
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.symbol.js");
|
8
10
|
|
9
11
|
require("core-js/modules/es.symbol.description.js");
|
10
12
|
|
11
|
-
require("core-js/modules/es.object.to-string.js");
|
12
|
-
|
13
13
|
require("core-js/modules/es.symbol.iterator.js");
|
14
14
|
|
15
15
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.symbol.js");
|
8
10
|
|
9
11
|
require("core-js/modules/es.symbol.description.js");
|
10
12
|
|
11
|
-
require("core-js/modules/es.object.to-string.js");
|
12
|
-
|
13
13
|
require("core-js/modules/es.symbol.iterator.js");
|
14
14
|
|
15
15
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.symbol.js");
|
8
10
|
|
9
11
|
require("core-js/modules/es.symbol.description.js");
|
10
12
|
|
11
|
-
require("core-js/modules/es.object.to-string.js");
|
12
|
-
|
13
13
|
require("core-js/modules/es.symbol.iterator.js");
|
14
14
|
|
15
15
|
require("core-js/modules/es.array.iterator.js");
|
@@ -2,10 +2,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
2
2
|
|
3
3
|
import "core-js/modules/es.object.set-prototype-of.js";
|
4
4
|
import "core-js/modules/es.object.get-prototype-of.js";
|
5
|
+
import "core-js/modules/es.object.to-string.js";
|
5
6
|
import "core-js/modules/es.reflect.construct.js";
|
6
7
|
import "core-js/modules/es.symbol.js";
|
7
8
|
import "core-js/modules/es.symbol.description.js";
|
8
|
-
import "core-js/modules/es.object.to-string.js";
|
9
9
|
import "core-js/modules/es.symbol.iterator.js";
|
10
10
|
import "core-js/modules/es.array.iterator.js";
|
11
11
|
import "core-js/modules/es.string.iterator.js";
|
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
4
4
|
|
5
|
+
require("core-js/modules/es.object.to-string.js");
|
6
|
+
|
5
7
|
require("core-js/modules/es.reflect.construct.js");
|
6
8
|
|
7
9
|
require("core-js/modules/es.symbol.js");
|
8
10
|
|
9
11
|
require("core-js/modules/es.symbol.description.js");
|
10
12
|
|
11
|
-
require("core-js/modules/es.object.to-string.js");
|
12
|
-
|
13
13
|
require("core-js/modules/es.symbol.iterator.js");
|
14
14
|
|
15
15
|
require("core-js/modules/es.array.iterator.js");
|
@@ -3,10 +3,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "functi
|
|
3
3
|
import "core-js/modules/es.array.includes.js";
|
4
4
|
import "core-js/modules/es.object.set-prototype-of.js";
|
5
5
|
import "core-js/modules/es.object.get-prototype-of.js";
|
6
|
+
import "core-js/modules/es.object.to-string.js";
|
6
7
|
import "core-js/modules/es.reflect.construct.js";
|
7
8
|
import "core-js/modules/es.symbol.js";
|
8
9
|
import "core-js/modules/es.symbol.description.js";
|
9
|
-
import "core-js/modules/es.object.to-string.js";
|
10
10
|
import "core-js/modules/es.symbol.iterator.js";
|
11
11
|
import "core-js/modules/es.array.iterator.js";
|
12
12
|
import "core-js/modules/es.string.iterator.js";
|