@univerjs/sheets 0.2.4 → 0.2.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/lib/cjs/index.js +3 -3
- package/lib/es/index.js +110 -111
- package/lib/types/commands/commands/__tests__/create-command-test-bed.d.ts +1 -2
- package/lib/types/commands/commands/move-range.command.d.ts +1 -2
- package/lib/types/commands/mutations/__tests__/create-command-test-bed.d.ts +1 -2
- package/lib/types/commands/mutations/add-worksheet-merge.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/delete-range-protection.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/insert-row-col.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/insert-sheet.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/move-rows-cols.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/numfmt-mutation.d.ts +1 -2
- package/lib/types/commands/mutations/remove-row-col.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/remove-sheet.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/remove-worksheet-merge.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-col-visible.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-frozen.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-hide-gridlines.mutatiom.d.ts +1 -2
- package/lib/types/commands/mutations/set-range-protection.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-range-values.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-row-visible.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-tab-color.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-worksheet-col-width.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-worksheet-hide.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-worksheet-name.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-worksheet-order.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-worksheet-right-to-left.mutation.d.ts +1 -2
- package/lib/types/commands/mutations/set-worksheet-row-height.mutation.d.ts +1 -2
- package/lib/types/commands/utils/handle-merge-operation.d.ts +1 -2
- package/lib/types/commands/utils/handle-range-mutation.d.ts +1 -2
- package/lib/types/commands/utils/selection-command-util.d.ts +1 -1
- package/lib/types/controllers/__tests__/util.d.ts +7 -8
- package/lib/types/controllers/basic-worksheet.controller.d.ts +1 -2
- package/lib/types/controllers/merge-cell.controller.d.ts +1 -2
- package/lib/types/services/__tests__/util.d.ts +7 -8
- package/lib/types/services/border-style-manager.service.d.ts +1 -2
- package/lib/types/services/numfmt/type.d.ts +1 -1
- package/lib/types/services/permission/worksheet-permission/worksheet-permission.service.d.ts +1 -2
- package/lib/types/services/ref-range/__tests__/__testing__.d.ts +7 -8
- package/lib/types/services/ref-range/__tests__/ref-range.service.spec.d.ts +6 -6
- package/lib/types/services/ref-range/ref-range.service.d.ts +1 -2
- package/lib/types/services/selections/ref-selections.service.d.ts +1 -1
- package/lib/types/services/sheet-interceptor/__tests__/create-core-test-bed.d.ts +7 -8
- package/lib/types/services/sheet-interceptor/sheet-interceptor.service.d.ts +1 -2
- package/lib/types/sheets-plugin.d.ts +1 -2
- package/lib/umd/index.js +3 -3
- package/package.json +10 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/sheets",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UniverSheet normal base-sheets",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -47,27 +47,25 @@
|
|
|
47
47
|
"lib"
|
|
48
48
|
],
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@wendellhu/redi": "0.16.0",
|
|
51
50
|
"rxjs": ">=7.0.0",
|
|
52
|
-
"@univerjs/core": "0.2.
|
|
53
|
-
"@univerjs/engine-
|
|
54
|
-
"@univerjs/engine-
|
|
55
|
-
"@univerjs/rpc": "0.2.
|
|
51
|
+
"@univerjs/core": "0.2.5",
|
|
52
|
+
"@univerjs/engine-formula": "0.2.5",
|
|
53
|
+
"@univerjs/engine-numfmt": "0.2.5",
|
|
54
|
+
"@univerjs/rpc": "0.2.5"
|
|
56
55
|
},
|
|
57
56
|
"dependencies": {
|
|
58
57
|
"@univerjs/protocol": "0.1.38-alpha.23"
|
|
59
58
|
},
|
|
60
59
|
"devDependencies": {
|
|
61
|
-
"@wendellhu/redi": "0.16.0",
|
|
62
60
|
"rxjs": "^7.8.1",
|
|
63
61
|
"typescript": "^5.5.3",
|
|
64
62
|
"vite": "^5.3.4",
|
|
65
63
|
"vitest": "^2.0.3",
|
|
66
|
-
"@univerjs/core": "0.2.
|
|
67
|
-
"@univerjs/
|
|
68
|
-
"@univerjs/engine-
|
|
69
|
-
"@univerjs/
|
|
70
|
-
"@univerjs/
|
|
64
|
+
"@univerjs/core": "0.2.5",
|
|
65
|
+
"@univerjs/rpc": "0.2.5",
|
|
66
|
+
"@univerjs/engine-formula": "0.2.5",
|
|
67
|
+
"@univerjs/shared": "0.2.5",
|
|
68
|
+
"@univerjs/engine-numfmt": "0.2.5"
|
|
71
69
|
},
|
|
72
70
|
"univerSpace": {
|
|
73
71
|
".": {
|