@univerjs/sheets-formula 0.1.4 → 0.1.6

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 (67) hide show
  1. package/README.md +1 -1
  2. package/lib/cjs/index.js +8 -8
  3. package/lib/es/index.js +1940 -1758
  4. package/lib/index.css +1 -1
  5. package/lib/types/commands/commands/formula-clipboard.command.d.ts +2 -16
  6. package/lib/types/commands/commands/insert-function.command.d.ts +2 -16
  7. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +10 -25
  8. package/lib/types/commands/operations/editor-formula.operation.d.ts +5 -19
  9. package/lib/types/commands/operations/help-function.operation.d.ts +2 -16
  10. package/lib/types/commands/operations/insert-function.operation.d.ts +2 -16
  11. package/lib/types/commands/operations/more-functions.operation.d.ts +2 -16
  12. package/lib/types/commands/operations/reference-absolute.operation.d.ts +2 -16
  13. package/lib/types/commands/operations/search-function.operation.d.ts +2 -16
  14. package/lib/types/common/selection.d.ts +3 -17
  15. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +3 -19
  16. package/lib/types/controllers/active-dirty.controller.d.ts +5 -18
  17. package/lib/types/controllers/array-formula-display.controller.d.ts +3 -17
  18. package/lib/types/controllers/defined-name.controller.d.ts +27 -0
  19. package/lib/types/controllers/formula-auto-fill.controller.d.ts +3 -17
  20. package/lib/types/controllers/formula-clipboard.controller.d.ts +5 -21
  21. package/lib/types/controllers/formula-editor-show.controller.d.ts +5 -19
  22. package/lib/types/controllers/formula-ui.controller.d.ts +3 -18
  23. package/lib/types/controllers/menu.d.ts +3 -17
  24. package/lib/types/controllers/numfmt-formula-display.controller.d.ts +3 -17
  25. package/lib/types/controllers/prompt.controller.d.ts +20 -25
  26. package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +2 -17
  27. package/lib/types/controllers/trigger-calculation.controller.d.ts +4 -19
  28. package/lib/types/controllers/update-formula.controller.d.ts +4 -18
  29. package/lib/types/controllers/utils/offset-formula-data.d.ts +4 -19
  30. package/lib/types/controllers/utils/redo-undo-formula-data.d.ts +4 -18
  31. package/lib/types/controllers/utils/ref-range-formula.d.ts +3 -17
  32. package/lib/types/controllers/utils/utils.d.ts +2 -16
  33. package/lib/types/formula-ui-plugin.d.ts +3 -18
  34. package/lib/types/index.d.ts +2 -0
  35. package/lib/types/services/description.service.d.ts +22 -19
  36. package/lib/types/services/formula-custom-function.service.d.ts +3 -17
  37. package/lib/types/services/formula-ref-range.service.d.ts +17 -0
  38. package/lib/types/services/function-list/array.d.ts +2 -16
  39. package/lib/types/services/function-list/compatibility.d.ts +2 -16
  40. package/lib/types/services/function-list/cube.d.ts +2 -16
  41. package/lib/types/services/function-list/database.d.ts +2 -16
  42. package/lib/types/services/function-list/date.d.ts +2 -16
  43. package/lib/types/services/function-list/engineering.d.ts +2 -16
  44. package/lib/types/services/function-list/financial.d.ts +2 -16
  45. package/lib/types/services/function-list/function-list.d.ts +2 -16
  46. package/lib/types/services/function-list/information.d.ts +2 -16
  47. package/lib/types/services/function-list/logical.d.ts +2 -16
  48. package/lib/types/services/function-list/lookup.d.ts +2 -16
  49. package/lib/types/services/function-list/math.d.ts +2 -16
  50. package/lib/types/services/function-list/statistical.d.ts +2 -16
  51. package/lib/types/services/function-list/text.d.ts +2 -16
  52. package/lib/types/services/function-list/univer.d.ts +2 -16
  53. package/lib/types/services/function-list/web.d.ts +2 -16
  54. package/lib/types/services/prompt.service.d.ts +7 -21
  55. package/lib/types/services/register-function.service.d.ts +5 -22
  56. package/lib/types/services/utils.d.ts +3 -17
  57. package/lib/types/views/FormulaPromptContainer.d.ts +2 -16
  58. package/lib/types/views/more-functions/MoreFunctions.d.ts +2 -16
  59. package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +3 -17
  60. package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +2 -16
  61. package/lib/types/views/more-functions/input-params/InputParams.d.ts +3 -17
  62. package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +3 -17
  63. package/lib/types/views/prompt/help-function/HelpFunction.d.ts +2 -16
  64. package/lib/types/views/prompt/search-function/SearchFunction.d.ts +3 -17
  65. package/lib/umd/index.js +6 -6
  66. package/package.json +24 -24
  67. package/lib/types/services/active-dirty-manager.service.d.ts +0 -48
package/README.md CHANGED
@@ -392,7 +392,7 @@ If you are developing a Univer plug-in, you can add custom formulas directly to
392
392
 
393
393
  Our internal `UniverFormulaEnginePlugin` plug-in provides a `function.service` specifically for registering formula descriptions and algorithms.
394
394
 
395
- First refer to [Custom Plugin](/en-us/guides/extend/write-a-plugin/) to create a new plug-in, and then you can start adding custom formulas.
395
+ First refer to [Custom Plugin](https://univer.ai/guides/customization/write-a-plugin/) to create a new plug-in, and then you can start adding custom formulas.
396
396
 
397
397
  1. Create a new `custom-function.ts` file in the `common` file and write all the basic modules required for the formula.
398
398