@univerjs/sheets 0.1.14 → 0.1.16
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/lib/cjs/index.js +3 -2
- package/lib/es/index.js +4195 -3969
- package/lib/types/basics/__tests__/utils.spec.d.ts +16 -0
- package/lib/types/basics/selection.d.ts +5 -0
- package/lib/types/basics/utils.d.ts +18 -15
- package/lib/types/commands/commands/clear-selection-format.command.d.ts +1 -2
- package/lib/types/commands/commands/reorder-range.command.d.ts +11 -0
- package/lib/types/commands/commands/set-col-visible.command.d.ts +2 -1
- package/lib/types/commands/commands/set-row-visible.command.d.ts +2 -1
- package/lib/types/commands/mutations/reorder-range.mutation.d.ts +11 -0
- package/lib/types/commands/mutations/set-worksheet-row-height.mutation.d.ts +1 -2
- package/lib/types/commands/utils/handle-range-mutation.d.ts +1 -2
- package/lib/types/controllers/calculate-result-apply.controller.d.ts +0 -1
- package/lib/types/controllers/defined-name-data.controller.d.ts +2 -4
- package/lib/types/index.d.ts +6 -2
- package/lib/types/services/permission/permission-point/index.d.ts +1 -0
- package/lib/types/services/permission/workbook-permission/workbook-permission.service.d.ts +3 -1
- package/lib/types/services/permission/worksheet-permission/worksheet-permission.service.d.ts +3 -3
- package/lib/types/services/ref-range/type.d.ts +6 -1
- package/lib/types/services/ref-range/util.d.ts +7 -7
- package/lib/types/services/selection-manager.service.d.ts +2 -0
- package/lib/umd/index.js +3 -2
- package/package.json +15 -16
- package/lib/types/controllers/feature-calculation.controller.d.ts +0 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/sheets",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UniverSheet normal base-sheets",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -47,28 +47,26 @@
|
|
|
47
47
|
"lib"
|
|
48
48
|
],
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@wendellhu/redi": "0.15.
|
|
50
|
+
"@wendellhu/redi": "0.15.4",
|
|
51
51
|
"rxjs": ">=7.0.0",
|
|
52
|
-
"@univerjs/core": "0.1.
|
|
53
|
-
"@univerjs/engine-
|
|
54
|
-
"@univerjs/rpc": "0.1.
|
|
55
|
-
"@univerjs/engine-formula": "0.1.14"
|
|
52
|
+
"@univerjs/core": "0.1.16",
|
|
53
|
+
"@univerjs/engine-formula": "0.1.16",
|
|
54
|
+
"@univerjs/rpc": "0.1.16"
|
|
56
55
|
},
|
|
57
56
|
"dependencies": {
|
|
58
|
-
"@univerjs/protocol": "
|
|
57
|
+
"@univerjs/protocol": "0.1.38-alpha.6"
|
|
59
58
|
},
|
|
60
59
|
"devDependencies": {
|
|
61
|
-
"@wendellhu/redi": "0.15.
|
|
60
|
+
"@wendellhu/redi": "0.15.4",
|
|
62
61
|
"rxjs": "^7.8.1",
|
|
63
62
|
"typescript": "^5.4.5",
|
|
64
|
-
"vite": "^5.
|
|
63
|
+
"vite": "^5.3.1",
|
|
65
64
|
"vitest": "^1.6.0",
|
|
66
|
-
"@univerjs/core": "0.1.
|
|
67
|
-
"@univerjs/engine-formula": "0.1.
|
|
68
|
-
"@univerjs/
|
|
69
|
-
"@univerjs/
|
|
70
|
-
"@univerjs/
|
|
71
|
-
"@univerjs/shared": "0.1.14"
|
|
65
|
+
"@univerjs/core": "0.1.16",
|
|
66
|
+
"@univerjs/engine-formula": "0.1.16",
|
|
67
|
+
"@univerjs/rpc": "0.1.16",
|
|
68
|
+
"@univerjs/shared": "0.1.16",
|
|
69
|
+
"@univerjs/engine-numfmt": "0.1.16"
|
|
72
70
|
},
|
|
73
71
|
"univerSpace": {
|
|
74
72
|
".": {
|
|
@@ -89,6 +87,7 @@
|
|
|
89
87
|
"test:watch": "vitest",
|
|
90
88
|
"coverage": "vitest run --coverage",
|
|
91
89
|
"lint:types": "tsc --noEmit",
|
|
92
|
-
"build": "tsc && vite build"
|
|
90
|
+
"build": "tsc && vite build",
|
|
91
|
+
"sync:cnpm": "cnpm sync"
|
|
93
92
|
}
|
|
94
93
|
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Disposable, ICommandService, IUniverInstanceService } from '@univerjs/core';
|
|
2
|
-
import { FormulaDataModel, IFeatureCalculationManagerService } from '@univerjs/engine-formula';
|
|
3
|
-
|
|
4
|
-
export declare class FeatureCalculationController extends Disposable {
|
|
5
|
-
private readonly _commandService;
|
|
6
|
-
private readonly _featureCalculationManagerService;
|
|
7
|
-
private readonly _univerInstanceService;
|
|
8
|
-
private readonly _formulaDataModel;
|
|
9
|
-
constructor(_commandService: ICommandService, _featureCalculationManagerService: IFeatureCalculationManagerService, _univerInstanceService: IUniverInstanceService, _formulaDataModel: FormulaDataModel);
|
|
10
|
-
/**
|
|
11
|
-
* Test function access to the formula system example , feature calculation ,
|
|
12
|
-
* you can register a listening range and callback function ,
|
|
13
|
-
* the range will be analyzed through the dependency after the callback function execution ,
|
|
14
|
-
* the callback function to return to an execution result ,
|
|
15
|
-
* you can continue to enter the formula dependency system , to get the final result .
|
|
16
|
-
*/
|
|
17
|
-
private _initialize;
|
|
18
|
-
}
|