@univerjs/engine-formula 0.2.2 → 0.2.4-alpha.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/README.md +11 -2
- package/lib/cjs/index.js +1 -1
- package/lib/es/index.js +4972 -4302
- package/lib/types/basics/date.d.ts +9 -15
- package/lib/types/controller/formula.controller.d.ts +1 -2
- package/lib/types/engine/analysis/__tests__/create-command-test-bed.d.ts +7 -8
- package/lib/types/engine/ast-node/function-node.d.ts +1 -1
- package/lib/types/engine/ast-node/prefix-node.d.ts +1 -2
- package/lib/types/engine/ast-node/reference-node.d.ts +1 -1
- package/lib/types/engine/ast-node/suffix-node.d.ts +1 -1
- package/lib/types/engine/reference-object/base-reference-object.d.ts +1 -0
- package/lib/types/engine/utils/prefixHandler.d.ts +1 -2
- package/lib/types/engine/value-object/array-value-object.d.ts +2 -0
- package/lib/types/engine/value-object/base-value-object.d.ts +1 -0
- package/lib/types/engine/value-object/primitive-object.d.ts +4 -1
- package/lib/types/functions/__tests__/create-function-test-bed.d.ts +7 -8
- package/lib/types/functions/custom-function.d.ts +5 -0
- package/lib/types/functions/date/function-map.d.ts +3 -1
- package/lib/types/functions/date/hour/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/hour/index.d.ts +9 -0
- package/lib/types/functions/date/minute/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/minute/index.d.ts +9 -0
- package/lib/types/functions/date/networkdays/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/networkdays/index.d.ts +8 -0
- package/lib/types/functions/date/networkdays-intl/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/networkdays-intl/index.d.ts +9 -0
- package/lib/types/functions/date/second/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/second/index.d.ts +9 -0
- package/lib/types/functions/date/weekday/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/weekday/index.d.ts +9 -0
- package/lib/types/functions/date/workday/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/workday/index.d.ts +8 -0
- package/lib/types/functions/date/workday-intl/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/workday-intl/index.d.ts +9 -0
- package/lib/types/functions/math/acoth/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/acoth/index.d.ts +8 -0
- package/lib/types/functions/math/base/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/base/index.d.ts +9 -0
- package/lib/types/functions/math/cosh/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/cosh/index.d.ts +8 -0
- package/lib/types/functions/math/cot/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/cot/index.d.ts +8 -0
- package/lib/types/functions/math/coth/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/coth/index.d.ts +8 -0
- package/lib/types/functions/math/csc/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/csc/index.d.ts +8 -0
- package/lib/types/functions/math/csch/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/csch/index.d.ts +8 -0
- package/lib/types/functions/math/function-map.d.ts +2 -1
- package/lib/types/functions/math/sin/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/sin/index.d.ts +8 -0
- package/lib/types/functions/math/sinh/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/sinh/index.d.ts +8 -0
- package/lib/types/functions/math/sumproduct/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/sumproduct/index.d.ts +8 -0
- package/lib/types/index.d.ts +1 -1
- package/lib/types/models/__tests__/create-command-test-bed.d.ts +7 -8
- package/lib/types/plugin.d.ts +1 -2
- package/lib/types/services/active-dirty-manager.service.d.ts +1 -1
- package/lib/types/services/current-data.service.d.ts +1 -1
- package/lib/types/services/defined-names.service.d.ts +1 -1
- package/lib/types/services/dependency-manager.service.d.ts +7 -1
- package/lib/types/services/feature-calculation-manager.service.d.ts +1 -1
- package/lib/types/services/function.service.d.ts +2 -3
- package/lib/types/services/other-formula-manager.service.d.ts +1 -1
- package/lib/types/services/runtime.service.d.ts +1 -1
- package/lib/types/services/super-table.service.d.ts +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +8 -10
- package/lib/types/commands/mutations/unregister-function.mutation.d.ts +0 -16
- package/lib/types/controller/register-function.controller.d.ts +0 -12
package/README.md
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
# @univerjs/engine-formula
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
## Package Overview
|
|
4
|
+
|
|
5
|
+
| Package Name | UMD Namespace | Version | License | Downloads | Contains CSS | Contains i18n locales |
|
|
6
|
+
| --- | --- | --- | --- | --- | :---: | :---: |
|
|
7
|
+
| `@univerjs/engine-formula` | `UniverEngineFormula` | [![][npm-version-shield]][npm-version-link] | ![][npm-license-shield] | ![][npm-downloads-shield] | ❌ | ❌ |
|
|
5
8
|
|
|
6
9
|
## Introduction
|
|
7
10
|
|
|
@@ -18,3 +21,9 @@ npm install @univerjs/engine-formula
|
|
|
18
21
|
# Using pnpm
|
|
19
22
|
pnpm add @univerjs/engine-formula
|
|
20
23
|
```
|
|
24
|
+
|
|
25
|
+
<!-- Links -->
|
|
26
|
+
[npm-version-shield]: https://img.shields.io/npm/v/@univerjs/engine-formula?style=flat-square
|
|
27
|
+
[npm-version-link]: https://npmjs.com/package/@univerjs/engine-formula
|
|
28
|
+
[npm-license-shield]: https://img.shields.io/npm/l/@univerjs/engine-formula?style=flat-square
|
|
29
|
+
[npm-downloads-shield]: https://img.shields.io/npm/dm/@univerjs/engine-formula?style=flat-square
|