handsontable 9.0.1 → 11.0.1
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 +3 -1
- package/3rdparty/walkontable/src/border.mjs +2 -1
- 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 +3 -3
- package/3rdparty/walkontable/src/overlay/bottom.mjs +2 -2
- package/3rdparty/walkontable/src/overlay/bottomLeftCorner.js +3 -3
- package/3rdparty/walkontable/src/overlay/bottomLeftCorner.mjs +2 -2
- 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 +3 -3
- package/3rdparty/walkontable/src/overlay/left.mjs +2 -2
- package/3rdparty/walkontable/src/overlay/registerer.js +1 -1
- package/3rdparty/walkontable/src/overlay/top.js +3 -3
- package/3rdparty/walkontable/src/overlay/top.mjs +2 -2
- package/3rdparty/walkontable/src/overlay/topLeftCorner.js +3 -3
- package/3rdparty/walkontable/src/overlay/topLeftCorner.mjs +2 -2
- package/3rdparty/walkontable/src/overlays.js +2 -0
- package/3rdparty/walkontable/src/overlays.mjs +1 -0
- package/3rdparty/walkontable/src/renderer/cells.js +1 -1
- package/3rdparty/walkontable/src/renderer/cells.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/colGroup.js +3 -3
- package/3rdparty/walkontable/src/renderer/colGroup.mjs +2 -2
- package/3rdparty/walkontable/src/renderer/columnHeaders.js +3 -3
- package/3rdparty/walkontable/src/renderer/columnHeaders.mjs +2 -2
- package/3rdparty/walkontable/src/renderer/rowHeaders.js +1 -1
- package/3rdparty/walkontable/src/renderer/rowHeaders.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/rows.js +3 -3
- package/3rdparty/walkontable/src/renderer/rows.mjs +2 -2
- package/3rdparty/walkontable/src/selection.js +5 -3
- package/3rdparty/walkontable/src/selection.mjs +3 -2
- package/3rdparty/walkontable/src/table/bottom.js +3 -3
- package/3rdparty/walkontable/src/table/bottom.mjs +2 -2
- package/3rdparty/walkontable/src/table/bottomLeftCorner.js +3 -3
- package/3rdparty/walkontable/src/table/bottomLeftCorner.mjs +2 -2
- package/3rdparty/walkontable/src/table/left.js +3 -3
- package/3rdparty/walkontable/src/table/left.mjs +2 -2
- package/3rdparty/walkontable/src/table/master.js +3 -3
- package/3rdparty/walkontable/src/table/master.mjs +2 -2
- package/3rdparty/walkontable/src/table/top.js +3 -3
- package/3rdparty/walkontable/src/table/top.mjs +2 -2
- package/3rdparty/walkontable/src/table/topLeftCorner.js +3 -3
- package/3rdparty/walkontable/src/table/topLeftCorner.mjs +2 -2
- package/3rdparty/walkontable/src/table.js +5 -3
- package/3rdparty/walkontable/src/table.mjs +3 -2
- package/3rdparty/walkontable/src/utils/orderView/constants.js +1 -1
- package/3rdparty/walkontable/src/utils/orderView/sharedView.js +3 -3
- package/3rdparty/walkontable/src/utils/orderView/sharedView.mjs +2 -2
- package/CHANGELOG.md +72 -0
- package/LICENSE.txt +19 -22
- package/README.md +2 -1
- 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 +143 -103
- package/core.mjs +141 -103
- package/{dataMap.js → dataMap/dataMap.js} +37 -35
- package/{dataMap.mjs → dataMap/dataMap.mjs} +37 -35
- package/dataMap/index.js +5 -1
- package/dataMap/index.mjs +3 -2
- package/dataMap/metaManager/index.js +54 -6
- package/dataMap/metaManager/index.mjs +51 -6
- package/dataMap/metaManager/lazyFactoryMap.js +3 -3
- package/dataMap/metaManager/lazyFactoryMap.mjs +3 -3
- package/dataMap/metaManager/metaLayers/cellMeta.js +2 -0
- package/dataMap/metaManager/metaLayers/cellMeta.mjs +1 -0
- package/dataMap/metaManager/metaLayers/globalMeta.js +2 -1
- package/dataMap/metaManager/metaLayers/globalMeta.mjs +2 -1
- package/dataMap/metaManager/metaSchema.js +2331 -871
- package/dataMap/metaManager/metaSchema.mjs +2331 -871
- package/dataMap/metaManager/mods/dynamicCellMeta.js +136 -0
- package/dataMap/metaManager/mods/dynamicCellMeta.mjs +119 -0
- package/dataMap/metaManager/utils.js +3 -3
- package/dataSource.js +2 -0
- package/dataSource.mjs +1 -0
- package/dist/handsontable.css +309 -303
- package/dist/handsontable.full.css +309 -303
- package/dist/handsontable.full.js +50435 -45020
- package/dist/handsontable.full.min.css +25 -28
- package/dist/handsontable.full.min.js +181 -164
- package/dist/handsontable.js +31234 -28030
- package/dist/handsontable.min.css +25 -28
- package/dist/handsontable.min.js +22 -25
- package/editorManager.js +15 -12
- package/editorManager.mjs +15 -13
- package/editors/autocompleteEditor/autocompleteEditor.d.ts +29 -0
- package/editors/autocompleteEditor/autocompleteEditor.js +91 -87
- package/editors/autocompleteEditor/autocompleteEditor.mjs +89 -84
- 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 +8 -7
- package/editors/baseEditor/baseEditor.mjs +5 -5
- 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 +4 -4
- package/editors/checkboxEditor/checkboxEditor.mjs +2 -2
- 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 +20 -20
- package/editors/dateEditor/dateEditor.mjs +19 -19
- 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 +5 -5
- package/editors/dropdownEditor/dropdownEditor.mjs +3 -3
- 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 +4 -4
- package/editors/handsontableEditor/handsontableEditor.mjs +3 -3
- 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 +3 -3
- package/editors/numericEditor/numericEditor.mjs +2 -2
- package/editors/passwordEditor/index.d.ts +1 -0
- package/editors/passwordEditor/passwordEditor.d.ts +7 -0
- package/editors/passwordEditor/passwordEditor.js +4 -4
- package/editors/passwordEditor/passwordEditor.mjs +3 -3
- 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 +4 -4
- package/editors/selectEditor/selectEditor.mjs +3 -3
- package/editors/textEditor/index.d.ts +1 -0
- package/editors/textEditor/textEditor.d.ts +24 -0
- package/editors/textEditor/textEditor.js +4 -4
- package/editors/textEditor/textEditor.mjs +3 -3
- 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 +44 -45
- package/helpers/dom/element.mjs +7 -8
- 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 +43 -5
- package/helpers/function.mjs +35 -0
- 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 +96 -17
- package/helpers/number.mjs +85 -17
- 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 +49 -33
- package/helpers/unicode.mjs +44 -27
- 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/mixins/localHooks.js +17 -14
- package/mixins/localHooks.mjs +16 -13
- package/package.json +103 -10
- package/pluginHooks.d.ts +255 -0
- package/pluginHooks.js +132 -57
- package/pluginHooks.mjs +131 -57
- package/plugins/autoColumnSize/autoColumnSize.d.ts +27 -0
- package/plugins/autoColumnSize/autoColumnSize.js +20 -13
- package/plugins/autoColumnSize/autoColumnSize.mjs +18 -12
- 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 +22 -14
- package/plugins/autoRowSize/autoRowSize.mjs +19 -12
- 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 +10 -19
- package/plugins/autofill/autofill.mjs +7 -16
- 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 +2 -2
- package/plugins/base/base.mjs +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 +4 -3
- package/plugins/bindRowsWithHeaders/bindRowsWithHeaders.mjs +3 -2
- package/plugins/bindRowsWithHeaders/index.d.ts +1 -0
- package/plugins/bindRowsWithHeaders/index.js +1 -1
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.js +4 -4
- package/plugins/bindRowsWithHeaders/maps/looseBindsMap.mjs +3 -3
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.js +6 -4
- package/plugins/bindRowsWithHeaders/maps/strictBindsMap.mjs +4 -3
- package/plugins/collapsibleColumns/collapsibleColumns.d.ts +22 -0
- package/plugins/collapsibleColumns/collapsibleColumns.js +13 -6
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +11 -5
- 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 +19 -14
- package/plugins/columnSorting/columnSorting.mjs +16 -12
- package/plugins/columnSorting/columnStatesManager.js +5 -3
- package/plugins/columnSorting/columnStatesManager.mjs +4 -3
- 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 +31 -12
- package/plugins/columnSummary/columnSummary.mjs +29 -10
- package/plugins/columnSummary/endpoints.js +6 -4
- package/plugins/columnSummary/endpoints.mjs +5 -4
- 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 +11 -6
- package/plugins/comments/comments.mjs +10 -5
- 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 +8 -7
- package/plugins/contextMenu/contextMenu.mjs +6 -5
- 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 +4 -4
- package/plugins/contextMenu/menu.mjs +3 -3
- 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 +4 -2
- package/plugins/contextMenu/predefinedItems/removeColumn.mjs +2 -1
- package/plugins/contextMenu/predefinedItems/removeRow.js +4 -2
- package/plugins/contextMenu/predefinedItems/removeRow.mjs +2 -1
- 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 +13 -10
- package/plugins/copyPaste/copyPaste.mjs +11 -9
- 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 +11 -9
- package/plugins/customBorders/customBorders.mjs +8 -7
- 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 +5 -5
- package/plugins/dragToScroll/dragToScroll.mjs +3 -3
- 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 +9 -9
- package/plugins/dropdownMenu/dropdownMenu.mjs +7 -7
- package/plugins/dropdownMenu/index.d.ts +1 -0
- package/plugins/dropdownMenu/index.js +1 -1
- package/plugins/exportFile/dataProvider.js +3 -5
- package/plugins/exportFile/dataProvider.mjs +3 -5
- package/plugins/exportFile/exportFile.d.ts +12 -0
- package/plugins/exportFile/exportFile.js +6 -5
- package/plugins/exportFile/exportFile.mjs +4 -3
- 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 +3 -4
- package/plugins/exportFile/types/csv.mjs +2 -3
- package/plugins/filters/component/_base.js +1 -1
- package/plugins/filters/component/_base.mjs +1 -1
- package/plugins/filters/component/actionBar.js +4 -4
- package/plugins/filters/component/actionBar.mjs +3 -3
- package/plugins/filters/component/condition.js +7 -5
- package/plugins/filters/component/condition.mjs +5 -4
- package/plugins/filters/component/operators.js +4 -4
- package/plugins/filters/component/operators.mjs +3 -3
- package/plugins/filters/component/value.js +13 -6
- package/plugins/filters/component/value.mjs +11 -5
- package/plugins/filters/condition/beginsWith.js +5 -3
- package/plugins/filters/condition/beginsWith.mjs +3 -2
- package/plugins/filters/condition/between.js +4 -2
- package/plugins/filters/condition/between.mjs +2 -1
- package/plugins/filters/condition/byValue.js +4 -2
- package/plugins/filters/condition/byValue.mjs +2 -1
- package/plugins/filters/condition/contains.js +5 -3
- package/plugins/filters/condition/contains.mjs +3 -2
- package/plugins/filters/condition/date/after.js +4 -2
- package/plugins/filters/condition/date/after.mjs +2 -1
- package/plugins/filters/condition/date/before.js +4 -2
- package/plugins/filters/condition/date/before.mjs +2 -1
- 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 +5 -3
- package/plugins/filters/condition/endsWith.mjs +3 -2
- package/plugins/filters/condition/equal.js +5 -3
- package/plugins/filters/condition/equal.mjs +3 -2
- package/plugins/filters/condition/false.js +1 -1
- package/plugins/filters/condition/greaterThan.js +4 -2
- package/plugins/filters/condition/greaterThan.mjs +2 -1
- package/plugins/filters/condition/greaterThanOrEqual.js +4 -2
- package/plugins/filters/condition/greaterThanOrEqual.mjs +2 -1
- package/plugins/filters/condition/lessThan.js +4 -2
- package/plugins/filters/condition/lessThan.mjs +2 -1
- package/plugins/filters/condition/lessThanOrEqual.js +4 -2
- package/plugins/filters/condition/lessThanOrEqual.mjs +2 -1
- 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 +8 -5
- package/plugins/filters/conditionCollection.mjs +6 -4
- 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 +19 -14
- package/plugins/filters/filters.mjs +17 -13
- 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 +2 -3
- package/plugins/filters/ui/_base.mjs +2 -3
- package/plugins/filters/ui/input.js +3 -3
- package/plugins/filters/ui/input.mjs +3 -3
- package/plugins/filters/ui/link.js +3 -3
- package/plugins/filters/ui/link.mjs +3 -3
- package/plugins/filters/ui/multipleSelect.js +31 -5
- package/plugins/filters/ui/multipleSelect.mjs +30 -5
- package/plugins/filters/ui/radioInput.js +3 -3
- package/plugins/filters/ui/radioInput.mjs +3 -3
- package/plugins/filters/ui/select.js +3 -3
- package/plugins/filters/ui/select.mjs +3 -3
- package/plugins/filters/utils.js +3 -3
- package/plugins/formulas/engine/register.js +3 -3
- package/plugins/formulas/engine/settings.js +4 -4
- package/plugins/formulas/engine/settings.mjs +2 -3
- package/plugins/formulas/formulas.d.ts +31 -0
- package/plugins/formulas/formulas.js +286 -89
- package/plugins/formulas/formulas.mjs +279 -86
- package/plugins/formulas/index.d.ts +1 -0
- package/plugins/formulas/index.js +1 -1
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.js +3 -1
- package/plugins/hiddenColumns/contextMenuItem/hideColumn.mjs +2 -1
- 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 +37 -24
- package/plugins/hiddenColumns/hiddenColumns.mjs +36 -23
- package/plugins/hiddenColumns/index.d.ts +1 -0
- package/plugins/hiddenColumns/index.js +1 -1
- package/plugins/hiddenRows/contextMenuItem/hideRow.js +3 -1
- package/plugins/hiddenRows/contextMenuItem/hideRow.mjs +2 -1
- 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 +37 -25
- package/plugins/hiddenRows/hiddenRows.mjs +36 -24
- 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 +3 -1
- package/plugins/manualColumnFreeze/contextMenuItem/freezeColumn.mjs +2 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.js +3 -1
- package/plugins/manualColumnFreeze/contextMenuItem/unfreezeColumn.mjs +2 -1
- 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 +11 -6
- package/plugins/manualColumnFreeze/manualColumnFreeze.mjs +10 -5
- 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 +28 -23
- package/plugins/manualColumnMove/manualColumnMove.mjs +27 -22
- package/plugins/manualColumnMove/ui/_base.js +1 -1
- package/plugins/manualColumnMove/ui/_base.mjs +1 -1
- package/plugins/manualColumnMove/ui/backlight.js +4 -4
- package/plugins/manualColumnMove/ui/backlight.mjs +3 -3
- package/plugins/manualColumnMove/ui/guideline.js +4 -4
- package/plugins/manualColumnMove/ui/guideline.mjs +3 -3
- 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 +7 -6
- package/plugins/manualColumnResize/manualColumnResize.mjs +6 -5
- 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 +25 -22
- package/plugins/manualRowMove/manualRowMove.mjs +24 -21
- package/plugins/manualRowMove/ui/_base.js +1 -2
- package/plugins/manualRowMove/ui/_base.mjs +1 -2
- package/plugins/manualRowMove/ui/backlight.js +5 -5
- package/plugins/manualRowMove/ui/backlight.mjs +4 -4
- package/plugins/manualRowMove/ui/guideline.js +5 -5
- package/plugins/manualRowMove/ui/guideline.mjs +4 -4
- 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 +6 -5
- package/plugins/manualRowResize/manualRowResize.mjs +5 -4
- package/plugins/mergeCells/calculations/autofill.js +4 -3
- package/plugins/mergeCells/calculations/autofill.mjs +3 -3
- 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 +5 -3
- package/plugins/mergeCells/cellsCollection.mjs +4 -3
- 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 +7 -4
- package/plugins/mergeCells/mergeCells.mjs +5 -3
- 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 +11 -8
- package/plugins/multiColumnSorting/multiColumnSorting.mjs +9 -6
- 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 +7 -5
- package/plugins/multipleSelectionHandles/multipleSelectionHandles.mjs +5 -3
- 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 +41 -21
- package/plugins/nestedHeaders/nestedHeaders.mjs +38 -19
- package/plugins/nestedHeaders/stateManager/headersTree.js +11 -5
- package/plugins/nestedHeaders/stateManager/headersTree.mjs +10 -5
- package/plugins/nestedHeaders/stateManager/index.js +9 -6
- package/plugins/nestedHeaders/stateManager/index.mjs +9 -6
- 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 +8 -4
- package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +8 -4
- package/plugins/nestedHeaders/utils/ghostTable.js +10 -2
- package/plugins/nestedHeaders/utils/ghostTable.mjs +10 -2
- package/plugins/nestedRows/data/dataManager.js +40 -14
- package/plugins/nestedRows/data/dataManager.mjs +38 -13
- 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 +48 -34
- package/plugins/nestedRows/nestedRows.mjs +43 -32
- package/plugins/nestedRows/ui/_base.js +1 -2
- package/plugins/nestedRows/ui/_base.mjs +1 -2
- package/plugins/nestedRows/ui/collapsing.js +6 -5
- package/plugins/nestedRows/ui/collapsing.mjs +4 -4
- package/plugins/nestedRows/ui/contextMenu.js +2 -3
- package/plugins/nestedRows/ui/contextMenu.mjs +2 -3
- package/plugins/nestedRows/ui/headers.js +4 -5
- package/plugins/nestedRows/ui/headers.mjs +3 -4
- package/plugins/nestedRows/utils/rowMoveController.js +10 -9
- package/plugins/nestedRows/utils/rowMoveController.mjs +8 -8
- package/plugins/persistentState/index.d.ts +1 -0
- package/plugins/persistentState/persistentState.d.ts +13 -0
- package/plugins/persistentState/persistentState.js +13 -4
- package/plugins/persistentState/persistentState.mjs +12 -3
- 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 +4 -2
- package/plugins/registry.mjs +2 -1
- package/plugins/search/index.d.ts +1 -0
- package/plugins/search/search.d.ts +28 -0
- package/plugins/search/search.js +7 -6
- package/plugins/search/search.mjs +7 -6
- package/plugins/touchScroll/index.d.ts +1 -0
- package/plugins/touchScroll/touchScroll.d.ts +13 -0
- package/plugins/touchScroll/touchScroll.js +9 -9
- package/plugins/touchScroll/touchScroll.mjs +8 -8
- package/plugins/trimRows/index.d.ts +1 -0
- package/plugins/trimRows/trimRows.d.ts +17 -0
- package/plugins/trimRows/trimRows.js +3 -2
- package/plugins/trimRows/trimRows.mjs +3 -2
- package/plugins/undoRedo/index.d.ts +1 -0
- package/plugins/undoRedo/undoRedo.d.ts +49 -0
- package/plugins/undoRedo/undoRedo.js +28 -30
- package/plugins/undoRedo/undoRedo.mjs +26 -29
- 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 +7 -5
- package/selection/highlight/highlight.mjs +5 -4
- 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 +7 -5
- package/selection/highlight/visualSelection.mjs +5 -4
- package/selection/index.d.ts +5 -0
- package/selection/index.js +2 -0
- package/selection/mouseEventHandler.js +4 -4
- package/selection/mouseEventHandler.mjs +3 -3
- package/selection/range.js +5 -5
- package/selection/range.mjs +4 -4
- package/selection/selection.js +18 -9
- package/selection/selection.mjs +17 -9
- package/selection/transformation.js +3 -2
- package/selection/transformation.mjs +3 -2
- package/selection/utils.js +6 -4
- package/selection/utils.mjs +3 -2
- package/settings.d.ts +208 -0
- package/tableView.js +20 -14
- package/tableView.mjs +19 -14
- package/translations/changesObservable/observable.js +10 -5
- package/translations/changesObservable/observable.mjs +10 -5
- package/translations/changesObservable/observer.js +6 -1
- package/translations/changesObservable/observer.mjs +6 -1
- 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 +8 -3
- package/translations/indexMapper.mjs +6 -2
- package/translations/mapCollections/aggregatedCollection.js +3 -3
- package/translations/mapCollections/aggregatedCollection.mjs +2 -2
- package/translations/mapCollections/index.js +2 -0
- package/translations/mapCollections/mapCollection.js +1 -1
- package/translations/maps/hidingMap.js +3 -3
- package/translations/maps/hidingMap.mjs +2 -2
- package/translations/maps/indexMap.d.ts +10 -0
- package/translations/maps/indexesSequence.js +4 -4
- package/translations/maps/indexesSequence.mjs +3 -3
- package/translations/maps/linkedPhysicalIndexToValueMap.js +4 -2
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +3 -2
- package/translations/maps/physicalIndexToValueMap.js +4 -4
- package/translations/maps/physicalIndexToValueMap.mjs +3 -3
- package/translations/maps/trimmingMap.js +3 -3
- package/translations/maps/trimmingMap.mjs +2 -2
- 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 +4 -2
- package/utils/dataStructures/priorityMap.mjs +2 -1
- package/utils/dataStructures/tree.js +3 -1
- package/utils/dataStructures/tree.mjs +1 -0
- package/utils/dataStructures/uniqueMap.js +3 -1
- package/utils/dataStructures/uniqueMap.mjs +2 -1
- package/utils/dataStructures/uniqueSet.js +2 -0
- package/utils/dataStructures/uniqueSet.mjs +1 -0
- package/utils/ghostTable.js +5 -4
- package/utils/ghostTable.mjs +3 -3
- package/utils/interval.js +1 -2
- package/utils/interval.mjs +0 -1
- package/utils/parseTable.d.ts +5 -0
- package/utils/parseTable.js +2 -2
- package/utils/parseTable.mjs +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 -2616
- package/plugins/formulas/autofill.js +0 -180
- package/plugins/formulas/autofill.mjs +0 -172
package/package.json
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
"url": "https://github.com/handsontable/handsontable/issues"
|
11
11
|
},
|
12
12
|
"author": "Handsoncode <hello@handsontable.com>",
|
13
|
-
"version": "
|
13
|
+
"version": "11.0.1",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -40,8 +40,6 @@
|
|
40
40
|
"pikaday": "1.8.0"
|
41
41
|
},
|
42
42
|
"devDependencies": {
|
43
|
-
"@actions/core": "^1.2.6",
|
44
|
-
"@actions/github": "^4.0.0",
|
45
43
|
"@babel/cli": "^7.8.3",
|
46
44
|
"@babel/core": "^7.11.4",
|
47
45
|
"@babel/eslint-parser": "^7.13.14",
|
@@ -67,6 +65,7 @@
|
|
67
65
|
"cpy-cli": "^3.1.1",
|
68
66
|
"cross-env": "^5.0.1",
|
69
67
|
"css-loader": "^2.1.1",
|
68
|
+
"dtslint": "^4.2.0",
|
70
69
|
"ecstatic": "^4.1.4",
|
71
70
|
"env-cmd": "^9.0.3",
|
72
71
|
"eslint": "^7.25.0",
|
@@ -80,7 +79,6 @@
|
|
80
79
|
"html-parse-stringify": "^2.0.3",
|
81
80
|
"html-webpack-plugin": "^3.2.0",
|
82
81
|
"http-server": "^0.12.3",
|
83
|
-
"inquirer": "^7.3.3",
|
84
82
|
"jasmine-co": "^1.2.2",
|
85
83
|
"jasmine-console-reporter": "^3.1.0",
|
86
84
|
"jasmine-core": "^3.4.0",
|
@@ -96,10 +94,9 @@
|
|
96
94
|
"on-build-webpack": "^0.1.0",
|
97
95
|
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
98
96
|
"progress-bar-webpack-plugin": "^1.10.0",
|
99
|
-
"puppeteer": "^2.
|
97
|
+
"puppeteer": "^10.2.0",
|
100
98
|
"replace-in-file": "^6.1.0",
|
101
99
|
"rimraf": "^2.5.4",
|
102
|
-
"semver": "^5.7.1",
|
103
100
|
"spawn-command": "0.0.2",
|
104
101
|
"string-replace-webpack-plugin": "^0.1.3",
|
105
102
|
"style-loader": "^0.18.2",
|
@@ -108,59 +105,69 @@
|
|
108
105
|
"tree-kill": "^1.2.2",
|
109
106
|
"typescript": "3.8.2",
|
110
107
|
"webpack": "^4.44.1",
|
111
|
-
"webpack-cli": "^3.3.0"
|
112
|
-
"yargs": "^16.2.0"
|
108
|
+
"webpack-cli": "^3.3.0"
|
113
109
|
},
|
114
110
|
"optionalDependencies": {
|
115
|
-
"hyperformula": "
|
111
|
+
"hyperformula": "^1.2.0"
|
116
112
|
},
|
117
113
|
"license": "SEE LICENSE IN LICENSE.txt",
|
118
|
-
"typings": "./
|
114
|
+
"typings": "./index.d.ts",
|
119
115
|
"sideEffects": [
|
120
116
|
"**/*.css",
|
121
117
|
"./languages/*"
|
122
118
|
],
|
123
119
|
"exports": {
|
120
|
+
"./cellTypes/autocompleteType/index.d.ts": "./cellTypes/autocompleteType/index.d.ts",
|
124
121
|
"./cellTypes/autocompleteType": {
|
125
122
|
"require": "./cellTypes/autocompleteType/index.js",
|
126
123
|
"import": "./cellTypes/autocompleteType/index.mjs"
|
127
124
|
},
|
125
|
+
"./cellTypes/checkboxType/index.d.ts": "./cellTypes/checkboxType/index.d.ts",
|
128
126
|
"./cellTypes/checkboxType": {
|
129
127
|
"require": "./cellTypes/checkboxType/index.js",
|
130
128
|
"import": "./cellTypes/checkboxType/index.mjs"
|
131
129
|
},
|
130
|
+
"./cellTypes/dateType/index.d.ts": "./cellTypes/dateType/index.d.ts",
|
132
131
|
"./cellTypes/dateType": {
|
133
132
|
"require": "./cellTypes/dateType/index.js",
|
134
133
|
"import": "./cellTypes/dateType/index.mjs"
|
135
134
|
},
|
135
|
+
"./cellTypes/dropdownType/index.d.ts": "./cellTypes/dropdownType/index.d.ts",
|
136
136
|
"./cellTypes/dropdownType": {
|
137
137
|
"require": "./cellTypes/dropdownType/index.js",
|
138
138
|
"import": "./cellTypes/dropdownType/index.mjs"
|
139
139
|
},
|
140
|
+
"./cellTypes/handsontableType/index.d.ts": "./cellTypes/handsontableType/index.d.ts",
|
140
141
|
"./cellTypes/handsontableType": {
|
141
142
|
"require": "./cellTypes/handsontableType/index.js",
|
142
143
|
"import": "./cellTypes/handsontableType/index.mjs"
|
143
144
|
},
|
145
|
+
"./cellTypes/numericType/index.d.ts": "./cellTypes/numericType/index.d.ts",
|
144
146
|
"./cellTypes/numericType": {
|
145
147
|
"require": "./cellTypes/numericType/index.js",
|
146
148
|
"import": "./cellTypes/numericType/index.mjs"
|
147
149
|
},
|
150
|
+
"./cellTypes/passwordType/index.d.ts": "./cellTypes/passwordType/index.d.ts",
|
148
151
|
"./cellTypes/passwordType": {
|
149
152
|
"require": "./cellTypes/passwordType/index.js",
|
150
153
|
"import": "./cellTypes/passwordType/index.mjs"
|
151
154
|
},
|
155
|
+
"./cellTypes/textType/index.d.ts": "./cellTypes/textType/index.d.ts",
|
152
156
|
"./cellTypes/textType": {
|
153
157
|
"require": "./cellTypes/textType/index.js",
|
154
158
|
"import": "./cellTypes/textType/index.mjs"
|
155
159
|
},
|
160
|
+
"./cellTypes/timeType/index.d.ts": "./cellTypes/timeType/index.d.ts",
|
156
161
|
"./cellTypes/timeType": {
|
157
162
|
"require": "./cellTypes/timeType/index.js",
|
158
163
|
"import": "./cellTypes/timeType/index.mjs"
|
159
164
|
},
|
165
|
+
"./cellTypes/index.d.ts": "./cellTypes/index.d.ts",
|
160
166
|
"./cellTypes": {
|
161
167
|
"require": "./cellTypes/index.js",
|
162
168
|
"import": "./cellTypes/index.mjs"
|
163
169
|
},
|
170
|
+
"./cellTypes/registry.d.ts": "./cellTypes/registry.d.ts",
|
164
171
|
"./cellTypes/registry": {
|
165
172
|
"require": "./cellTypes/registry.js",
|
166
173
|
"import": "./cellTypes/registry.mjs"
|
@@ -233,330 +240,412 @@
|
|
233
240
|
"require": "./languages/zh-TW.js",
|
234
241
|
"import": "./languages/zh-TW.mjs"
|
235
242
|
},
|
243
|
+
"./editors/autocompleteEditor/index.d.ts": "./editors/autocompleteEditor/index.d.ts",
|
236
244
|
"./editors/autocompleteEditor": {
|
237
245
|
"require": "./editors/autocompleteEditor/index.js",
|
238
246
|
"import": "./editors/autocompleteEditor/index.mjs"
|
239
247
|
},
|
248
|
+
"./editors/baseEditor/index.d.ts": "./editors/baseEditor/index.d.ts",
|
240
249
|
"./editors/baseEditor": {
|
241
250
|
"require": "./editors/baseEditor/index.js",
|
242
251
|
"import": "./editors/baseEditor/index.mjs"
|
243
252
|
},
|
253
|
+
"./editors/checkboxEditor/index.d.ts": "./editors/checkboxEditor/index.d.ts",
|
244
254
|
"./editors/checkboxEditor": {
|
245
255
|
"require": "./editors/checkboxEditor/index.js",
|
246
256
|
"import": "./editors/checkboxEditor/index.mjs"
|
247
257
|
},
|
258
|
+
"./editors/dateEditor/index.d.ts": "./editors/dateEditor/index.d.ts",
|
248
259
|
"./editors/dateEditor": {
|
249
260
|
"require": "./editors/dateEditor/index.js",
|
250
261
|
"import": "./editors/dateEditor/index.mjs"
|
251
262
|
},
|
263
|
+
"./editors/dropdownEditor/index.d.ts": "./editors/dropdownEditor/index.d.ts",
|
252
264
|
"./editors/dropdownEditor": {
|
253
265
|
"require": "./editors/dropdownEditor/index.js",
|
254
266
|
"import": "./editors/dropdownEditor/index.mjs"
|
255
267
|
},
|
268
|
+
"./editors/handsontableEditor/index.d.ts": "./editors/handsontableEditor/index.d.ts",
|
256
269
|
"./editors/handsontableEditor": {
|
257
270
|
"require": "./editors/handsontableEditor/index.js",
|
258
271
|
"import": "./editors/handsontableEditor/index.mjs"
|
259
272
|
},
|
273
|
+
"./editors/numericEditor/index.d.ts": "./editors/numericEditor/index.d.ts",
|
260
274
|
"./editors/numericEditor": {
|
261
275
|
"require": "./editors/numericEditor/index.js",
|
262
276
|
"import": "./editors/numericEditor/index.mjs"
|
263
277
|
},
|
278
|
+
"./editors/passwordEditor/index.d.ts": "./editors/passwordEditor/index.d.ts",
|
264
279
|
"./editors/passwordEditor": {
|
265
280
|
"require": "./editors/passwordEditor/index.js",
|
266
281
|
"import": "./editors/passwordEditor/index.mjs"
|
267
282
|
},
|
283
|
+
"./editors/selectEditor/index.d.ts": "./editors/selectEditor/index.d.ts",
|
268
284
|
"./editors/selectEditor": {
|
269
285
|
"require": "./editors/selectEditor/index.js",
|
270
286
|
"import": "./editors/selectEditor/index.mjs"
|
271
287
|
},
|
288
|
+
"./editors/textEditor/index.d.ts": "./editors/textEditor/index.d.ts",
|
272
289
|
"./editors/textEditor": {
|
273
290
|
"require": "./editors/textEditor/index.js",
|
274
291
|
"import": "./editors/textEditor/index.mjs"
|
275
292
|
},
|
293
|
+
"./editors/index.d.ts": "./editors/index.d.ts",
|
276
294
|
"./editors": {
|
277
295
|
"require": "./editors/index.js",
|
278
296
|
"import": "./editors/index.mjs"
|
279
297
|
},
|
298
|
+
"./editors/registry.d.ts": "./editors/registry.d.ts",
|
280
299
|
"./editors/registry": {
|
281
300
|
"require": "./editors/registry.js",
|
282
301
|
"import": "./editors/registry.mjs"
|
283
302
|
},
|
303
|
+
"./plugins/autoColumnSize/index.d.ts": "./plugins/autoColumnSize/index.d.ts",
|
284
304
|
"./plugins/autoColumnSize": {
|
285
305
|
"require": "./plugins/autoColumnSize/index.js",
|
286
306
|
"import": "./plugins/autoColumnSize/index.mjs"
|
287
307
|
},
|
308
|
+
"./plugins/autofill/index.d.ts": "./plugins/autofill/index.d.ts",
|
288
309
|
"./plugins/autofill": {
|
289
310
|
"require": "./plugins/autofill/index.js",
|
290
311
|
"import": "./plugins/autofill/index.mjs"
|
291
312
|
},
|
313
|
+
"./plugins/autoRowSize/index.d.ts": "./plugins/autoRowSize/index.d.ts",
|
292
314
|
"./plugins/autoRowSize": {
|
293
315
|
"require": "./plugins/autoRowSize/index.js",
|
294
316
|
"import": "./plugins/autoRowSize/index.mjs"
|
295
317
|
},
|
318
|
+
"./plugins/base/index.d.ts": "./plugins/base/index.d.ts",
|
296
319
|
"./plugins/base": {
|
297
320
|
"require": "./plugins/base/index.js",
|
298
321
|
"import": "./plugins/base/index.mjs"
|
299
322
|
},
|
323
|
+
"./plugins/bindRowsWithHeaders/index.d.ts": "./plugins/bindRowsWithHeaders/index.d.ts",
|
300
324
|
"./plugins/bindRowsWithHeaders": {
|
301
325
|
"require": "./plugins/bindRowsWithHeaders/index.js",
|
302
326
|
"import": "./plugins/bindRowsWithHeaders/index.mjs"
|
303
327
|
},
|
328
|
+
"./plugins/collapsibleColumns/index.d.ts": "./plugins/collapsibleColumns/index.d.ts",
|
304
329
|
"./plugins/collapsibleColumns": {
|
305
330
|
"require": "./plugins/collapsibleColumns/index.js",
|
306
331
|
"import": "./plugins/collapsibleColumns/index.mjs"
|
307
332
|
},
|
333
|
+
"./plugins/columnSorting/index.d.ts": "./plugins/columnSorting/index.d.ts",
|
308
334
|
"./plugins/columnSorting": {
|
309
335
|
"require": "./plugins/columnSorting/index.js",
|
310
336
|
"import": "./plugins/columnSorting/index.mjs"
|
311
337
|
},
|
338
|
+
"./plugins/columnSummary/index.d.ts": "./plugins/columnSummary/index.d.ts",
|
312
339
|
"./plugins/columnSummary": {
|
313
340
|
"require": "./plugins/columnSummary/index.js",
|
314
341
|
"import": "./plugins/columnSummary/index.mjs"
|
315
342
|
},
|
343
|
+
"./plugins/comments/index.d.ts": "./plugins/comments/index.d.ts",
|
316
344
|
"./plugins/comments": {
|
317
345
|
"require": "./plugins/comments/index.js",
|
318
346
|
"import": "./plugins/comments/index.mjs"
|
319
347
|
},
|
348
|
+
"./plugins/contextMenu/index.d.ts": "./plugins/contextMenu/index.d.ts",
|
320
349
|
"./plugins/contextMenu": {
|
321
350
|
"require": "./plugins/contextMenu/index.js",
|
322
351
|
"import": "./plugins/contextMenu/index.mjs"
|
323
352
|
},
|
353
|
+
"./plugins/copyPaste/index.d.ts": "./plugins/copyPaste/index.d.ts",
|
324
354
|
"./plugins/copyPaste": {
|
325
355
|
"require": "./plugins/copyPaste/index.js",
|
326
356
|
"import": "./plugins/copyPaste/index.mjs"
|
327
357
|
},
|
358
|
+
"./plugins/customBorders/index.d.ts": "./plugins/customBorders/index.d.ts",
|
328
359
|
"./plugins/customBorders": {
|
329
360
|
"require": "./plugins/customBorders/index.js",
|
330
361
|
"import": "./plugins/customBorders/index.mjs"
|
331
362
|
},
|
363
|
+
"./plugins/dragToScroll/index.d.ts": "./plugins/dragToScroll/index.d.ts",
|
332
364
|
"./plugins/dragToScroll": {
|
333
365
|
"require": "./plugins/dragToScroll/index.js",
|
334
366
|
"import": "./plugins/dragToScroll/index.mjs"
|
335
367
|
},
|
368
|
+
"./plugins/dropdownMenu/index.d.ts": "./plugins/dropdownMenu/index.d.ts",
|
336
369
|
"./plugins/dropdownMenu": {
|
337
370
|
"require": "./plugins/dropdownMenu/index.js",
|
338
371
|
"import": "./plugins/dropdownMenu/index.mjs"
|
339
372
|
},
|
373
|
+
"./plugins/exportFile/index.d.ts": "./plugins/exportFile/index.d.ts",
|
340
374
|
"./plugins/exportFile": {
|
341
375
|
"require": "./plugins/exportFile/index.js",
|
342
376
|
"import": "./plugins/exportFile/index.mjs"
|
343
377
|
},
|
378
|
+
"./plugins/filters/index.d.ts": "./plugins/filters/index.d.ts",
|
344
379
|
"./plugins/filters": {
|
345
380
|
"require": "./plugins/filters/index.js",
|
346
381
|
"import": "./plugins/filters/index.mjs"
|
347
382
|
},
|
383
|
+
"./plugins/formulas/index.d.ts": "./plugins/formulas/index.d.ts",
|
348
384
|
"./plugins/formulas": {
|
349
385
|
"require": "./plugins/formulas/index.js",
|
350
386
|
"import": "./plugins/formulas/index.mjs"
|
351
387
|
},
|
388
|
+
"./plugins/hiddenColumns/index.d.ts": "./plugins/hiddenColumns/index.d.ts",
|
352
389
|
"./plugins/hiddenColumns": {
|
353
390
|
"require": "./plugins/hiddenColumns/index.js",
|
354
391
|
"import": "./plugins/hiddenColumns/index.mjs"
|
355
392
|
},
|
393
|
+
"./plugins/hiddenRows/index.d.ts": "./plugins/hiddenRows/index.d.ts",
|
356
394
|
"./plugins/hiddenRows": {
|
357
395
|
"require": "./plugins/hiddenRows/index.js",
|
358
396
|
"import": "./plugins/hiddenRows/index.mjs"
|
359
397
|
},
|
398
|
+
"./plugins/manualColumnFreeze/index.d.ts": "./plugins/manualColumnFreeze/index.d.ts",
|
360
399
|
"./plugins/manualColumnFreeze": {
|
361
400
|
"require": "./plugins/manualColumnFreeze/index.js",
|
362
401
|
"import": "./plugins/manualColumnFreeze/index.mjs"
|
363
402
|
},
|
403
|
+
"./plugins/manualColumnMove/index.d.ts": "./plugins/manualColumnMove/index.d.ts",
|
364
404
|
"./plugins/manualColumnMove": {
|
365
405
|
"require": "./plugins/manualColumnMove/index.js",
|
366
406
|
"import": "./plugins/manualColumnMove/index.mjs"
|
367
407
|
},
|
408
|
+
"./plugins/manualColumnResize/index.d.ts": "./plugins/manualColumnResize/index.d.ts",
|
368
409
|
"./plugins/manualColumnResize": {
|
369
410
|
"require": "./plugins/manualColumnResize/index.js",
|
370
411
|
"import": "./plugins/manualColumnResize/index.mjs"
|
371
412
|
},
|
413
|
+
"./plugins/manualRowMove/index.d.ts": "./plugins/manualRowMove/index.d.ts",
|
372
414
|
"./plugins/manualRowMove": {
|
373
415
|
"require": "./plugins/manualRowMove/index.js",
|
374
416
|
"import": "./plugins/manualRowMove/index.mjs"
|
375
417
|
},
|
418
|
+
"./plugins/manualRowResize/index.d.ts": "./plugins/manualRowResize/index.d.ts",
|
376
419
|
"./plugins/manualRowResize": {
|
377
420
|
"require": "./plugins/manualRowResize/index.js",
|
378
421
|
"import": "./plugins/manualRowResize/index.mjs"
|
379
422
|
},
|
423
|
+
"./plugins/mergeCells/index.d.ts": "./plugins/mergeCells/index.d.ts",
|
380
424
|
"./plugins/mergeCells": {
|
381
425
|
"require": "./plugins/mergeCells/index.js",
|
382
426
|
"import": "./plugins/mergeCells/index.mjs"
|
383
427
|
},
|
428
|
+
"./plugins/multiColumnSorting/index.d.ts": "./plugins/multiColumnSorting/index.d.ts",
|
384
429
|
"./plugins/multiColumnSorting": {
|
385
430
|
"require": "./plugins/multiColumnSorting/index.js",
|
386
431
|
"import": "./plugins/multiColumnSorting/index.mjs"
|
387
432
|
},
|
433
|
+
"./plugins/multipleSelectionHandles/index.d.ts": "./plugins/multipleSelectionHandles/index.d.ts",
|
388
434
|
"./plugins/multipleSelectionHandles": {
|
389
435
|
"require": "./plugins/multipleSelectionHandles/index.js",
|
390
436
|
"import": "./plugins/multipleSelectionHandles/index.mjs"
|
391
437
|
},
|
438
|
+
"./plugins/nestedHeaders/index.d.ts": "./plugins/nestedHeaders/index.d.ts",
|
392
439
|
"./plugins/nestedHeaders": {
|
393
440
|
"require": "./plugins/nestedHeaders/index.js",
|
394
441
|
"import": "./plugins/nestedHeaders/index.mjs"
|
395
442
|
},
|
443
|
+
"./plugins/nestedRows/index.d.ts": "./plugins/nestedRows/index.d.ts",
|
396
444
|
"./plugins/nestedRows": {
|
397
445
|
"require": "./plugins/nestedRows/index.js",
|
398
446
|
"import": "./plugins/nestedRows/index.mjs"
|
399
447
|
},
|
448
|
+
"./plugins/persistentState/index.d.ts": "./plugins/persistentState/index.d.ts",
|
400
449
|
"./plugins/persistentState": {
|
401
450
|
"require": "./plugins/persistentState/index.js",
|
402
451
|
"import": "./plugins/persistentState/index.mjs"
|
403
452
|
},
|
453
|
+
"./plugins/search/index.d.ts": "./plugins/search/index.d.ts",
|
404
454
|
"./plugins/search": {
|
405
455
|
"require": "./plugins/search/index.js",
|
406
456
|
"import": "./plugins/search/index.mjs"
|
407
457
|
},
|
458
|
+
"./plugins/touchScroll/index.d.ts": "./plugins/touchScroll/index.d.ts",
|
408
459
|
"./plugins/touchScroll": {
|
409
460
|
"require": "./plugins/touchScroll/index.js",
|
410
461
|
"import": "./plugins/touchScroll/index.mjs"
|
411
462
|
},
|
463
|
+
"./plugins/trimRows/index.d.ts": "./plugins/trimRows/index.d.ts",
|
412
464
|
"./plugins/trimRows": {
|
413
465
|
"require": "./plugins/trimRows/index.js",
|
414
466
|
"import": "./plugins/trimRows/index.mjs"
|
415
467
|
},
|
468
|
+
"./plugins/undoRedo/index.d.ts": "./plugins/undoRedo/index.d.ts",
|
416
469
|
"./plugins/undoRedo": {
|
417
470
|
"require": "./plugins/undoRedo/index.js",
|
418
471
|
"import": "./plugins/undoRedo/index.mjs"
|
419
472
|
},
|
473
|
+
"./plugins/index.d.ts": "./plugins/index.d.ts",
|
420
474
|
"./plugins": {
|
421
475
|
"require": "./plugins/index.js",
|
422
476
|
"import": "./plugins/index.mjs"
|
423
477
|
},
|
478
|
+
"./plugins/registry.d.ts": "./plugins/registry.d.ts",
|
424
479
|
"./plugins/registry": {
|
425
480
|
"require": "./plugins/registry.js",
|
426
481
|
"import": "./plugins/registry.mjs"
|
427
482
|
},
|
483
|
+
"./renderers/autocompleteRenderer/index.d.ts": "./renderers/autocompleteRenderer/index.d.ts",
|
428
484
|
"./renderers/autocompleteRenderer": {
|
429
485
|
"require": "./renderers/autocompleteRenderer/index.js",
|
430
486
|
"import": "./renderers/autocompleteRenderer/index.mjs"
|
431
487
|
},
|
488
|
+
"./renderers/baseRenderer/index.d.ts": "./renderers/baseRenderer/index.d.ts",
|
432
489
|
"./renderers/baseRenderer": {
|
433
490
|
"require": "./renderers/baseRenderer/index.js",
|
434
491
|
"import": "./renderers/baseRenderer/index.mjs"
|
435
492
|
},
|
493
|
+
"./renderers/checkboxRenderer/index.d.ts": "./renderers/checkboxRenderer/index.d.ts",
|
436
494
|
"./renderers/checkboxRenderer": {
|
437
495
|
"require": "./renderers/checkboxRenderer/index.js",
|
438
496
|
"import": "./renderers/checkboxRenderer/index.mjs"
|
439
497
|
},
|
498
|
+
"./renderers/htmlRenderer/index.d.ts": "./renderers/htmlRenderer/index.d.ts",
|
440
499
|
"./renderers/htmlRenderer": {
|
441
500
|
"require": "./renderers/htmlRenderer/index.js",
|
442
501
|
"import": "./renderers/htmlRenderer/index.mjs"
|
443
502
|
},
|
503
|
+
"./renderers/numericRenderer/index.d.ts": "./renderers/numericRenderer/index.d.ts",
|
444
504
|
"./renderers/numericRenderer": {
|
445
505
|
"require": "./renderers/numericRenderer/index.js",
|
446
506
|
"import": "./renderers/numericRenderer/index.mjs"
|
447
507
|
},
|
508
|
+
"./renderers/passwordRenderer/index.d.ts": "./renderers/passwordRenderer/index.d.ts",
|
448
509
|
"./renderers/passwordRenderer": {
|
449
510
|
"require": "./renderers/passwordRenderer/index.js",
|
450
511
|
"import": "./renderers/passwordRenderer/index.mjs"
|
451
512
|
},
|
513
|
+
"./renderers/textRenderer/index.d.ts": "./renderers/textRenderer/index.d.ts",
|
452
514
|
"./renderers/textRenderer": {
|
453
515
|
"require": "./renderers/textRenderer/index.js",
|
454
516
|
"import": "./renderers/textRenderer/index.mjs"
|
455
517
|
},
|
518
|
+
"./renderers/index.d.ts": "./renderers/index.d.ts",
|
456
519
|
"./renderers": {
|
457
520
|
"require": "./renderers/index.js",
|
458
521
|
"import": "./renderers/index.mjs"
|
459
522
|
},
|
523
|
+
"./renderers/registry.d.ts": "./renderers/registry.d.ts",
|
460
524
|
"./renderers/registry": {
|
461
525
|
"require": "./renderers/registry.js",
|
462
526
|
"import": "./renderers/registry.mjs"
|
463
527
|
},
|
528
|
+
"./validators/autocompleteValidator/index.d.ts": "./validators/autocompleteValidator/index.d.ts",
|
464
529
|
"./validators/autocompleteValidator": {
|
465
530
|
"require": "./validators/autocompleteValidator/index.js",
|
466
531
|
"import": "./validators/autocompleteValidator/index.mjs"
|
467
532
|
},
|
533
|
+
"./validators/dateValidator/index.d.ts": "./validators/dateValidator/index.d.ts",
|
468
534
|
"./validators/dateValidator": {
|
469
535
|
"require": "./validators/dateValidator/index.js",
|
470
536
|
"import": "./validators/dateValidator/index.mjs"
|
471
537
|
},
|
538
|
+
"./validators/numericValidator/index.d.ts": "./validators/numericValidator/index.d.ts",
|
472
539
|
"./validators/numericValidator": {
|
473
540
|
"require": "./validators/numericValidator/index.js",
|
474
541
|
"import": "./validators/numericValidator/index.mjs"
|
475
542
|
},
|
543
|
+
"./validators/timeValidator/index.d.ts": "./validators/timeValidator/index.d.ts",
|
476
544
|
"./validators/timeValidator": {
|
477
545
|
"require": "./validators/timeValidator/index.js",
|
478
546
|
"import": "./validators/timeValidator/index.mjs"
|
479
547
|
},
|
548
|
+
"./validators/index.d.ts": "./validators/index.d.ts",
|
480
549
|
"./validators": {
|
481
550
|
"require": "./validators/index.js",
|
482
551
|
"import": "./validators/index.mjs"
|
483
552
|
},
|
553
|
+
"./validators/registry.d.ts": "./validators/registry.d.ts",
|
484
554
|
"./validators/registry": {
|
485
555
|
"require": "./validators/registry.js",
|
486
556
|
"import": "./validators/registry.mjs"
|
487
557
|
},
|
558
|
+
"./i18n/index.d.ts": "./i18n/index.d.ts",
|
488
559
|
"./i18n": {
|
489
560
|
"require": "./i18n/index.js",
|
490
561
|
"import": "./i18n/index.mjs"
|
491
562
|
},
|
563
|
+
"./i18n/registry.d.ts": "./i18n/registry.d.ts",
|
492
564
|
"./i18n/registry": {
|
493
565
|
"require": "./i18n/registry.js",
|
494
566
|
"import": "./i18n/registry.mjs"
|
495
567
|
},
|
568
|
+
"./i18n/languages/de-CH.d.ts": "./i18n/languages/de-CH.d.ts",
|
496
569
|
"./i18n/languages/de-CH": {
|
497
570
|
"require": "./i18n/languages/de-CH.js",
|
498
571
|
"import": "./i18n/languages/de-CH.mjs"
|
499
572
|
},
|
573
|
+
"./i18n/languages/de-DE.d.ts": "./i18n/languages/de-DE.d.ts",
|
500
574
|
"./i18n/languages/de-DE": {
|
501
575
|
"require": "./i18n/languages/de-DE.js",
|
502
576
|
"import": "./i18n/languages/de-DE.mjs"
|
503
577
|
},
|
578
|
+
"./i18n/languages/en-US.d.ts": "./i18n/languages/en-US.d.ts",
|
504
579
|
"./i18n/languages/en-US": {
|
505
580
|
"require": "./i18n/languages/en-US.js",
|
506
581
|
"import": "./i18n/languages/en-US.mjs"
|
507
582
|
},
|
583
|
+
"./i18n/languages/es-MX.d.ts": "./i18n/languages/es-MX.d.ts",
|
508
584
|
"./i18n/languages/es-MX": {
|
509
585
|
"require": "./i18n/languages/es-MX.js",
|
510
586
|
"import": "./i18n/languages/es-MX.mjs"
|
511
587
|
},
|
588
|
+
"./i18n/languages/fr-FR.d.ts": "./i18n/languages/fr-FR.d.ts",
|
512
589
|
"./i18n/languages/fr-FR": {
|
513
590
|
"require": "./i18n/languages/fr-FR.js",
|
514
591
|
"import": "./i18n/languages/fr-FR.mjs"
|
515
592
|
},
|
593
|
+
"./i18n/languages/index.d.ts": "./i18n/languages/index.d.ts",
|
516
594
|
"./i18n/languages": {
|
517
595
|
"require": "./i18n/languages/index.js",
|
518
596
|
"import": "./i18n/languages/index.mjs"
|
519
597
|
},
|
598
|
+
"./i18n/languages/it-IT.d.ts": "./i18n/languages/it-IT.d.ts",
|
520
599
|
"./i18n/languages/it-IT": {
|
521
600
|
"require": "./i18n/languages/it-IT.js",
|
522
601
|
"import": "./i18n/languages/it-IT.mjs"
|
523
602
|
},
|
603
|
+
"./i18n/languages/ja-JP.d.ts": "./i18n/languages/ja-JP.d.ts",
|
524
604
|
"./i18n/languages/ja-JP": {
|
525
605
|
"require": "./i18n/languages/ja-JP.js",
|
526
606
|
"import": "./i18n/languages/ja-JP.mjs"
|
527
607
|
},
|
608
|
+
"./i18n/languages/ko-KR.d.ts": "./i18n/languages/ko-KR.d.ts",
|
528
609
|
"./i18n/languages/ko-KR": {
|
529
610
|
"require": "./i18n/languages/ko-KR.js",
|
530
611
|
"import": "./i18n/languages/ko-KR.mjs"
|
531
612
|
},
|
613
|
+
"./i18n/languages/lv-LV.d.ts": "./i18n/languages/lv-LV.d.ts",
|
532
614
|
"./i18n/languages/lv-LV": {
|
533
615
|
"require": "./i18n/languages/lv-LV.js",
|
534
616
|
"import": "./i18n/languages/lv-LV.mjs"
|
535
617
|
},
|
618
|
+
"./i18n/languages/nb-NO.d.ts": "./i18n/languages/nb-NO.d.ts",
|
536
619
|
"./i18n/languages/nb-NO": {
|
537
620
|
"require": "./i18n/languages/nb-NO.js",
|
538
621
|
"import": "./i18n/languages/nb-NO.mjs"
|
539
622
|
},
|
623
|
+
"./i18n/languages/nl-NL.d.ts": "./i18n/languages/nl-NL.d.ts",
|
540
624
|
"./i18n/languages/nl-NL": {
|
541
625
|
"require": "./i18n/languages/nl-NL.js",
|
542
626
|
"import": "./i18n/languages/nl-NL.mjs"
|
543
627
|
},
|
628
|
+
"./i18n/languages/pl-PL.d.ts": "./i18n/languages/pl-PL.d.ts",
|
544
629
|
"./i18n/languages/pl-PL": {
|
545
630
|
"require": "./i18n/languages/pl-PL.js",
|
546
631
|
"import": "./i18n/languages/pl-PL.mjs"
|
547
632
|
},
|
633
|
+
"./i18n/languages/pt-BR.d.ts": "./i18n/languages/pt-BR.d.ts",
|
548
634
|
"./i18n/languages/pt-BR": {
|
549
635
|
"require": "./i18n/languages/pt-BR.js",
|
550
636
|
"import": "./i18n/languages/pt-BR.mjs"
|
551
637
|
},
|
638
|
+
"./i18n/languages/ru-RU.d.ts": "./i18n/languages/ru-RU.d.ts",
|
552
639
|
"./i18n/languages/ru-RU": {
|
553
640
|
"require": "./i18n/languages/ru-RU.js",
|
554
641
|
"import": "./i18n/languages/ru-RU.mjs"
|
555
642
|
},
|
643
|
+
"./i18n/languages/zh-CN.d.ts": "./i18n/languages/zh-CN.d.ts",
|
556
644
|
"./i18n/languages/zh-CN": {
|
557
645
|
"require": "./i18n/languages/zh-CN.js",
|
558
646
|
"import": "./i18n/languages/zh-CN.mjs"
|
559
647
|
},
|
648
|
+
"./i18n/languages/zh-TW.d.ts": "./i18n/languages/zh-TW.d.ts",
|
560
649
|
"./i18n/languages/zh-TW": {
|
561
650
|
"require": "./i18n/languages/zh-TW.js",
|
562
651
|
"import": "./i18n/languages/zh-TW.mjs"
|
@@ -614,6 +703,10 @@
|
|
614
703
|
"./languages/all": {
|
615
704
|
"import": "./languages/index.mjs",
|
616
705
|
"require": "./languages/all.js"
|
706
|
+
},
|
707
|
+
"./registry": {
|
708
|
+
"import": "./registry.mjs",
|
709
|
+
"require": "./registry.js"
|
617
710
|
}
|
618
711
|
}
|
619
712
|
}
|