@univerjs-pro/engine-formula 1.0.0-alpha.2 → 1.0.0-alpha.4
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 +7 -2
- package/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +1 -1
- package/lib/es/facade.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/facade.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types/controllers/external-reference-data-providers.controller.d.ts +6 -0
- package/lib/types/controllers/external-reference-rename.controller.d.ts +9 -0
- package/lib/types/controllers/external-reference-resource.controller.d.ts +6 -0
- package/lib/types/controllers/formula-reference-data-rpc.controller.d.ts +7 -0
- package/lib/types/engine/dependency-engine/dependency-engine.d.ts +11 -0
- package/lib/types/engine/dependency-engine/formula-cell-index.d.ts +1 -0
- package/lib/types/engine/dependency-engine/range-index.d.ts +1 -0
- package/lib/types/engine/dependency-engine/types.d.ts +1 -0
- package/lib/types/engine/formula-dependency.d.ts +31 -5
- package/lib/types/index.d.ts +22 -4
- package/lib/types/models/external-reference-overlay.model.d.ts +41 -0
- package/lib/types/models/external-reference.model.d.ts +91 -0
- package/lib/types/plugin.d.ts +8 -0
- package/lib/types/services/calculate-formula.service.d.ts +20 -3
- package/lib/types/services/dependency-manager.service.d.ts +7 -2
- package/lib/types/services/external-cache-reference-data.provider.d.ts +10 -0
- package/lib/types/services/external-reference-prefetch-planner.d.ts +18 -0
- package/lib/types/services/external-reference-prefetch.service.d.ts +38 -0
- package/lib/types/services/external-unit-reference-resolver.service.d.ts +8 -0
- package/lib/types/services/formula-reference-data.service.d.ts +71 -0
- package/lib/types/services/main-formula-reference-data.service.d.ts +12 -0
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +7 -6
- package/lib/types/engine/dependency-engine.d.ts +0 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs-pro/engine-formula",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Performance-enhanced formula engine plugin for Univer Pro.",
|
|
6
6
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
@@ -58,14 +58,15 @@
|
|
|
58
58
|
"lib"
|
|
59
59
|
],
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@univerjs-pro/license": "1.0.0-alpha.
|
|
62
|
-
"@univerjs/
|
|
63
|
-
"@univerjs/
|
|
61
|
+
"@univerjs-pro/license": "1.0.0-alpha.4",
|
|
62
|
+
"@univerjs/core": "1.0.0-alpha.4",
|
|
63
|
+
"@univerjs/engine-formula": "1.0.0-alpha.4",
|
|
64
|
+
"@univerjs/rpc": "1.0.0-alpha.4"
|
|
64
65
|
},
|
|
65
66
|
"devDependencies": {
|
|
66
67
|
"typescript": "^6.0.3",
|
|
67
|
-
"vitest": "^4.1.
|
|
68
|
-
"@univerjs-infra/shared": "1.0.0-alpha.
|
|
68
|
+
"vitest": "^4.1.10",
|
|
69
|
+
"@univerjs-infra/shared": "1.0.0-alpha.4"
|
|
69
70
|
},
|
|
70
71
|
"scripts": {
|
|
71
72
|
"test": "vitest run",
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export { CellCodec } from './dependency-engine/cell-codec';
|
|
2
|
-
export { DependencyEngine } from './dependency-engine/dependency-engine';
|
|
3
|
-
export { FormulaCellIndex } from './dependency-engine/formula-cell-index';
|
|
4
|
-
export { cellFormulaNode, featureCalculationNode, otherFormulaNode, } from './dependency-engine/node-helpers';
|
|
5
|
-
export { PointSubscriptionIndex } from './dependency-engine/point-subscription-index';
|
|
6
|
-
export { RangeIndex } from './dependency-engine/range-index';
|
|
7
|
-
export type { CalcNodeDeps, CalcNodeIndex, CalcNodeRef, CalculationOrderResult, CalculationOrderTree, CalculationPlanItem, CellId, CompressedSharedFormulaGroup, CompressedSharedFormulaPattern, DecodedCell, DecodedFeatureCalculationId, DecodedOtherFormulaId, DependencyEngineOptions, DynamicDependency, DynamicResolver, DynamicResolveResult, ExternalNodeId, ICalcNodeDeps, ICalcNodeRef, ICalculationOrderResult, ICalculationOrderTree, ICalculationPlanItem, ICompressedSharedFormulaGroup, ICompressedSharedFormulaPattern, IDecodedCell, IDecodedFeatureCalculationId, IDecodedOtherFormulaId, IDependencyEngineOptions, IRefRange, ISetNodeResult, RefRange, SetNodeResult, } from './dependency-engine/types';
|
|
8
|
-
export { CalcNodeType } from './dependency-engine/types';
|