@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.
Files changed (90) hide show
  1. package/lib/cjs/index.js +9 -7
  2. package/lib/cjs/locale/en-US.js +40 -0
  3. package/lib/cjs/locale/fa-IR.js +40 -0
  4. package/lib/cjs/locale/ru-RU.js +40 -0
  5. package/lib/cjs/locale/vi-VN.js +37 -0
  6. package/lib/cjs/locale/zh-CN.js +38 -0
  7. package/lib/cjs/locale/zh-TW.js +38 -0
  8. package/lib/es/index.js +3431 -2453
  9. package/lib/es/locale/en-US.js +7684 -0
  10. package/lib/es/locale/fa-IR.js +7684 -0
  11. package/lib/es/locale/ru-RU.js +7683 -0
  12. package/lib/es/locale/vi-VN.js +7467 -0
  13. package/lib/es/locale/zh-CN.js +7661 -0
  14. package/lib/es/locale/zh-TW.js +7661 -0
  15. package/lib/index.css +1 -1
  16. package/lib/types/common/selection.d.ts +1 -1
  17. package/lib/types/controllers/config.schema.d.ts +1 -1
  18. package/lib/types/controllers/formula-editor-show.controller.d.ts +7 -3
  19. package/lib/types/index.d.ts +1 -0
  20. package/lib/types/locale/en-US.d.ts +344 -156
  21. package/lib/types/locale/fa-IR.d.ts +344 -156
  22. package/lib/types/locale/function-list/compatibility/en-US.d.ts +106 -30
  23. package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +106 -30
  24. package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +106 -30
  25. package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +106 -30
  26. package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +106 -30
  27. package/lib/types/locale/function-list/lookup/en-US.d.ts +1 -5
  28. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +1 -5
  29. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +14 -0
  30. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +1 -5
  31. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +1 -5
  32. package/lib/types/locale/function-list/statistical/en-US.d.ts +173 -93
  33. package/lib/types/locale/function-list/statistical/ja-JP.d.ts +173 -93
  34. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +983 -57
  35. package/lib/types/locale/function-list/statistical/zh-CN.d.ts +173 -93
  36. package/lib/types/locale/function-list/statistical/zh-TW.d.ts +173 -93
  37. package/lib/types/locale/function-list/text/en-US.d.ts +64 -28
  38. package/lib/types/locale/function-list/text/ja-JP.d.ts +64 -28
  39. package/lib/types/locale/function-list/text/ru-RU.d.ts +220 -106
  40. package/lib/types/locale/function-list/text/vi-VN.d.ts +124 -14
  41. package/lib/types/locale/function-list/text/zh-CN.d.ts +64 -28
  42. package/lib/types/locale/function-list/text/zh-TW.d.ts +64 -28
  43. package/lib/types/locale/ru-RU.d.ts +500 -234
  44. package/lib/types/locale/vi-VN.d.ts +1231 -105
  45. package/lib/types/locale/zh-CN.d.ts +344 -156
  46. package/lib/types/locale/zh-TW.d.ts +344 -156
  47. package/lib/types/services/render-services/ref-selections.render-service.d.ts +28 -4
  48. package/lib/types/sheets-formula-ui.plugin.d.ts +0 -1
  49. package/lib/types/views/formula-editor/help-function/HelpFunction.d.ts +11 -0
  50. package/lib/types/views/formula-editor/hooks/useFormulaDescribe.d.ts +7 -0
  51. package/lib/types/views/formula-editor/hooks/useFormulaSearch.d.ts +12 -0
  52. package/lib/types/views/formula-editor/hooks/useResizeScrollObserver.d.ts +18 -0
  53. package/lib/types/views/formula-editor/hooks/useSelectionAdd.d.ts +19 -0
  54. package/lib/types/views/formula-editor/hooks/useSheetSelectionChange.d.ts +3 -0
  55. package/lib/types/views/formula-editor/hooks/useStateRef.d.ts +18 -0
  56. package/lib/types/views/formula-editor/hooks/useVerify.d.ts +2 -0
  57. package/lib/types/views/formula-editor/index.d.ts +17 -0
  58. package/lib/types/views/formula-editor/search-function/SearchFunction.d.ts +12 -0
  59. package/lib/types/{controllers/utils/__tests__/ref-range-formula.spec.d.ts → views/formula-editor/utils/getFormulaText.d.ts} +1 -1
  60. package/lib/types/views/range-selector/hooks/useEmitChange.d.ts +3 -0
  61. package/lib/types/views/range-selector/hooks/useFirstHighlightDoc.d.ts +3 -0
  62. package/lib/types/views/range-selector/hooks/useFocus.d.ts +2 -0
  63. package/lib/types/views/range-selector/hooks/useFormulaToken.d.ts +2 -4
  64. package/lib/types/views/range-selector/hooks/useHighlight.d.ts +4 -2
  65. package/lib/types/views/range-selector/hooks/useLeftAndRightArrow.d.ts +2 -0
  66. package/lib/types/views/range-selector/hooks/useOnlyOneRange.d.ts +16 -0
  67. package/lib/types/views/range-selector/hooks/useRefactorEffect.d.ts +1 -1
  68. package/lib/types/{controllers/utils/__tests__/offset-formula-data.spec.d.ts → views/range-selector/hooks/useRefocus.d.ts} +1 -1
  69. package/lib/types/views/range-selector/hooks/useResetSelection.d.ts +16 -0
  70. package/lib/types/views/range-selector/hooks/useSheetSelectionChange.d.ts +1 -1
  71. package/lib/types/views/range-selector/hooks/useSwitchSheet.d.ts +16 -0
  72. package/lib/types/views/range-selector/hooks/useVerify.d.ts +2 -2
  73. package/lib/types/views/range-selector/index.d.ts +1 -5
  74. package/lib/types/views/range-selector/utils/unitRangesToText.d.ts +1 -1
  75. package/lib/umd/index.js +9 -7
  76. package/lib/umd/locale/en-US.js +40 -0
  77. package/lib/umd/locale/fa-IR.js +40 -0
  78. package/lib/umd/locale/ru-RU.js +40 -0
  79. package/lib/umd/locale/vi-VN.js +37 -0
  80. package/lib/umd/locale/zh-CN.js +38 -0
  81. package/lib/umd/locale/zh-TW.js +38 -0
  82. package/package.json +33 -27
  83. package/lib/locale/en-US.json +0 -11054
  84. package/lib/locale/fa-IR.json +0 -11054
  85. package/lib/locale/ru-RU.json +0 -10969
  86. package/lib/locale/vi-VN.json +0 -9678
  87. package/lib/locale/zh-CN.json +0 -11054
  88. package/lib/locale/zh-TW.json +0 -11054
  89. package/lib/types/controllers/utils/offset-formula-data.d.ts +0 -15
  90. 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.