@univerjs/sheets-formula 0.1.4 → 0.1.5
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/README.md +1 -1
- package/lib/cjs/index.js +8 -8
- package/lib/es/index.js +1205 -1215
- package/lib/types/commands/commands/formula-clipboard.command.d.ts +2 -16
- package/lib/types/commands/commands/insert-function.command.d.ts +2 -16
- package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +10 -25
- package/lib/types/commands/operations/editor-formula.operation.d.ts +5 -19
- package/lib/types/commands/operations/help-function.operation.d.ts +2 -16
- package/lib/types/commands/operations/insert-function.operation.d.ts +2 -16
- package/lib/types/commands/operations/more-functions.operation.d.ts +2 -16
- package/lib/types/commands/operations/reference-absolute.operation.d.ts +2 -16
- package/lib/types/commands/operations/search-function.operation.d.ts +2 -16
- package/lib/types/common/selection.d.ts +3 -17
- package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +3 -19
- package/lib/types/controllers/active-dirty.controller.d.ts +2 -17
- package/lib/types/controllers/array-formula-display.controller.d.ts +3 -17
- package/lib/types/controllers/formula-auto-fill.controller.d.ts +3 -17
- package/lib/types/controllers/formula-clipboard.controller.d.ts +4 -21
- package/lib/types/controllers/formula-editor-show.controller.d.ts +5 -19
- package/lib/types/controllers/formula-ui.controller.d.ts +3 -18
- package/lib/types/controllers/menu.d.ts +3 -17
- package/lib/types/controllers/numfmt-formula-display.controller.d.ts +3 -17
- package/lib/types/controllers/prompt.controller.d.ts +20 -25
- package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +2 -17
- package/lib/types/controllers/trigger-calculation.controller.d.ts +4 -19
- package/lib/types/controllers/update-formula.controller.d.ts +4 -18
- package/lib/types/controllers/utils/offset-formula-data.d.ts +4 -19
- package/lib/types/controllers/utils/redo-undo-formula-data.d.ts +4 -18
- package/lib/types/controllers/utils/ref-range-formula.d.ts +3 -17
- package/lib/types/controllers/utils/utils.d.ts +2 -16
- package/lib/types/formula-ui-plugin.d.ts +3 -18
- package/lib/types/services/description.service.d.ts +4 -19
- package/lib/types/services/formula-custom-function.service.d.ts +3 -17
- package/lib/types/services/function-list/array.d.ts +2 -16
- package/lib/types/services/function-list/compatibility.d.ts +2 -16
- package/lib/types/services/function-list/cube.d.ts +2 -16
- package/lib/types/services/function-list/database.d.ts +2 -16
- package/lib/types/services/function-list/date.d.ts +2 -16
- package/lib/types/services/function-list/engineering.d.ts +2 -16
- package/lib/types/services/function-list/financial.d.ts +2 -16
- package/lib/types/services/function-list/function-list.d.ts +2 -16
- package/lib/types/services/function-list/information.d.ts +2 -16
- package/lib/types/services/function-list/logical.d.ts +2 -16
- package/lib/types/services/function-list/lookup.d.ts +2 -16
- package/lib/types/services/function-list/math.d.ts +2 -16
- package/lib/types/services/function-list/statistical.d.ts +2 -16
- package/lib/types/services/function-list/text.d.ts +2 -16
- package/lib/types/services/function-list/univer.d.ts +2 -16
- package/lib/types/services/function-list/web.d.ts +2 -16
- package/lib/types/services/prompt.service.d.ts +7 -21
- package/lib/types/services/register-function.service.d.ts +5 -22
- package/lib/types/services/utils.d.ts +3 -17
- package/lib/types/views/FormulaPromptContainer.d.ts +2 -16
- package/lib/types/views/more-functions/MoreFunctions.d.ts +2 -16
- package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +3 -17
- package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +2 -16
- package/lib/types/views/more-functions/input-params/InputParams.d.ts +3 -17
- package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +3 -17
- package/lib/types/views/prompt/help-function/HelpFunction.d.ts +2 -16
- package/lib/types/views/prompt/search-function/SearchFunction.d.ts +3 -17
- package/lib/umd/index.js +6 -6
- package/package.json +23 -23
- 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](/
|
|
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
|
|