@univerjs/sheets-formula-ui 0.4.2 → 0.5.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/index.js +9 -7
- package/lib/cjs/locale/en-US.js +40 -0
- package/lib/cjs/locale/fa-IR.js +40 -0
- package/lib/cjs/locale/ru-RU.js +40 -0
- package/lib/cjs/locale/vi-VN.js +37 -0
- package/lib/cjs/locale/zh-CN.js +38 -0
- package/lib/cjs/locale/zh-TW.js +38 -0
- package/lib/es/index.js +3431 -2453
- package/lib/es/locale/en-US.js +7684 -0
- package/lib/es/locale/fa-IR.js +7684 -0
- package/lib/es/locale/ru-RU.js +7683 -0
- package/lib/es/locale/vi-VN.js +7467 -0
- package/lib/es/locale/zh-CN.js +7661 -0
- package/lib/es/locale/zh-TW.js +7661 -0
- package/lib/index.css +1 -1
- package/lib/types/common/selection.d.ts +1 -1
- package/lib/types/controllers/config.schema.d.ts +1 -1
- package/lib/types/controllers/formula-editor-show.controller.d.ts +7 -3
- package/lib/types/index.d.ts +1 -0
- package/lib/types/locale/en-US.d.ts +344 -156
- package/lib/types/locale/fa-IR.d.ts +344 -156
- package/lib/types/locale/function-list/compatibility/en-US.d.ts +106 -30
- package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +106 -30
- package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +106 -30
- package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +106 -30
- package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +106 -30
- package/lib/types/locale/function-list/lookup/en-US.d.ts +1 -5
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +1 -5
- package/lib/types/locale/function-list/lookup/vi-VN.d.ts +14 -0
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +1 -5
- package/lib/types/locale/function-list/lookup/zh-TW.d.ts +1 -5
- package/lib/types/locale/function-list/statistical/en-US.d.ts +173 -93
- package/lib/types/locale/function-list/statistical/ja-JP.d.ts +173 -93
- package/lib/types/locale/function-list/statistical/vi-VN.d.ts +983 -57
- package/lib/types/locale/function-list/statistical/zh-CN.d.ts +173 -93
- package/lib/types/locale/function-list/statistical/zh-TW.d.ts +173 -93
- package/lib/types/locale/function-list/text/en-US.d.ts +64 -28
- package/lib/types/locale/function-list/text/ja-JP.d.ts +64 -28
- package/lib/types/locale/function-list/text/ru-RU.d.ts +220 -106
- package/lib/types/locale/function-list/text/vi-VN.d.ts +124 -14
- package/lib/types/locale/function-list/text/zh-CN.d.ts +64 -28
- package/lib/types/locale/function-list/text/zh-TW.d.ts +64 -28
- package/lib/types/locale/ru-RU.d.ts +500 -234
- package/lib/types/locale/vi-VN.d.ts +1231 -105
- package/lib/types/locale/zh-CN.d.ts +344 -156
- package/lib/types/locale/zh-TW.d.ts +344 -156
- package/lib/types/services/render-services/ref-selections.render-service.d.ts +28 -4
- package/lib/types/sheets-formula-ui.plugin.d.ts +0 -1
- package/lib/types/views/formula-editor/help-function/HelpFunction.d.ts +11 -0
- package/lib/types/views/formula-editor/hooks/useFormulaDescribe.d.ts +7 -0
- package/lib/types/views/formula-editor/hooks/useFormulaSearch.d.ts +12 -0
- package/lib/types/views/formula-editor/hooks/useResizeScrollObserver.d.ts +18 -0
- package/lib/types/views/formula-editor/hooks/useSelectionAdd.d.ts +19 -0
- package/lib/types/views/formula-editor/hooks/useSheetSelectionChange.d.ts +3 -0
- package/lib/types/views/formula-editor/hooks/useStateRef.d.ts +18 -0
- package/lib/types/views/formula-editor/hooks/useVerify.d.ts +2 -0
- package/lib/types/views/formula-editor/index.d.ts +17 -0
- package/lib/types/views/formula-editor/search-function/SearchFunction.d.ts +12 -0
- package/lib/types/{controllers/utils/__tests__/ref-range-formula.spec.d.ts → views/formula-editor/utils/getFormulaText.d.ts} +1 -1
- package/lib/types/views/range-selector/hooks/useEmitChange.d.ts +3 -0
- package/lib/types/views/range-selector/hooks/useFirstHighlightDoc.d.ts +3 -0
- package/lib/types/views/range-selector/hooks/useFocus.d.ts +2 -0
- package/lib/types/views/range-selector/hooks/useFormulaToken.d.ts +2 -4
- package/lib/types/views/range-selector/hooks/useHighlight.d.ts +4 -2
- package/lib/types/views/range-selector/hooks/useLeftAndRightArrow.d.ts +2 -0
- package/lib/types/views/range-selector/hooks/useOnlyOneRange.d.ts +16 -0
- package/lib/types/views/range-selector/hooks/useRefactorEffect.d.ts +1 -1
- package/lib/types/{controllers/utils/__tests__/offset-formula-data.spec.d.ts → views/range-selector/hooks/useRefocus.d.ts} +1 -1
- package/lib/types/views/range-selector/hooks/useResetSelection.d.ts +16 -0
- package/lib/types/views/range-selector/hooks/useSheetSelectionChange.d.ts +1 -1
- package/lib/types/views/range-selector/hooks/useSwitchSheet.d.ts +16 -0
- package/lib/types/views/range-selector/hooks/useVerify.d.ts +2 -2
- package/lib/types/views/range-selector/index.d.ts +1 -5
- package/lib/types/views/range-selector/utils/unitRangesToText.d.ts +1 -1
- package/lib/umd/index.js +9 -7
- package/lib/umd/locale/en-US.js +40 -0
- package/lib/umd/locale/fa-IR.js +40 -0
- package/lib/umd/locale/ru-RU.js +40 -0
- package/lib/umd/locale/vi-VN.js +37 -0
- package/lib/umd/locale/zh-CN.js +38 -0
- package/lib/umd/locale/zh-TW.js +38 -0
- package/package.json +33 -27
- package/lib/locale/en-US.json +0 -11054
- package/lib/locale/fa-IR.json +0 -11054
- package/lib/locale/ru-RU.json +0 -10969
- package/lib/locale/vi-VN.json +0 -9678
- package/lib/locale/zh-CN.json +0 -11054
- package/lib/locale/zh-TW.json +0 -11054
- package/lib/types/controllers/utils/offset-formula-data.d.ts +0 -15
- package/lib/types/controllers/utils/ref-range-formula.d.ts +0 -71
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.