@univerjs/sheets 0.2.4 → 0.2.6

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.
Files changed (47) hide show
  1. package/lib/cjs/index.js +3 -3
  2. package/lib/es/index.js +6675 -6499
  3. package/lib/types/commands/commands/__tests__/create-command-test-bed.d.ts +1 -2
  4. package/lib/types/commands/commands/move-range.command.d.ts +1 -2
  5. package/lib/types/commands/mutations/__tests__/create-command-test-bed.d.ts +1 -2
  6. package/lib/types/commands/mutations/add-worksheet-merge.mutation.d.ts +1 -2
  7. package/lib/types/commands/mutations/delete-range-protection.mutation.d.ts +1 -2
  8. package/lib/types/commands/mutations/insert-row-col.mutation.d.ts +1 -2
  9. package/lib/types/commands/mutations/insert-sheet.mutation.d.ts +1 -2
  10. package/lib/types/commands/mutations/move-rows-cols.mutation.d.ts +1 -2
  11. package/lib/types/commands/mutations/numfmt-mutation.d.ts +1 -2
  12. package/lib/types/commands/mutations/remove-row-col.mutation.d.ts +1 -2
  13. package/lib/types/commands/mutations/remove-sheet.mutation.d.ts +1 -2
  14. package/lib/types/commands/mutations/remove-worksheet-merge.mutation.d.ts +1 -2
  15. package/lib/types/commands/mutations/set-col-visible.mutation.d.ts +1 -2
  16. package/lib/types/commands/mutations/set-frozen.mutation.d.ts +1 -2
  17. package/lib/types/commands/mutations/set-hide-gridlines.mutatiom.d.ts +1 -2
  18. package/lib/types/commands/mutations/set-range-protection.mutation.d.ts +1 -2
  19. package/lib/types/commands/mutations/set-range-values.mutation.d.ts +1 -2
  20. package/lib/types/commands/mutations/set-row-visible.mutation.d.ts +1 -2
  21. package/lib/types/commands/mutations/set-tab-color.mutation.d.ts +1 -2
  22. package/lib/types/commands/mutations/set-worksheet-col-width.mutation.d.ts +1 -2
  23. package/lib/types/commands/mutations/set-worksheet-hide.mutation.d.ts +1 -2
  24. package/lib/types/commands/mutations/set-worksheet-name.mutation.d.ts +1 -2
  25. package/lib/types/commands/mutations/set-worksheet-order.mutation.d.ts +1 -2
  26. package/lib/types/commands/mutations/set-worksheet-right-to-left.mutation.d.ts +1 -2
  27. package/lib/types/commands/mutations/set-worksheet-row-height.mutation.d.ts +1 -2
  28. package/lib/types/commands/utils/handle-merge-operation.d.ts +1 -2
  29. package/lib/types/commands/utils/handle-range-mutation.d.ts +1 -2
  30. package/lib/types/commands/utils/selection-command-util.d.ts +1 -1
  31. package/lib/types/controllers/__tests__/util.d.ts +7 -8
  32. package/lib/types/controllers/basic-worksheet.controller.d.ts +1 -2
  33. package/lib/types/controllers/merge-cell.controller.d.ts +1 -2
  34. package/lib/types/services/__tests__/util.d.ts +7 -8
  35. package/lib/types/services/border-style-manager.service.d.ts +1 -2
  36. package/lib/types/services/numfmt/type.d.ts +1 -1
  37. package/lib/types/services/permission/worksheet-permission/worksheet-permission.service.d.ts +1 -2
  38. package/lib/types/services/ref-range/__tests__/__testing__.d.ts +7 -8
  39. package/lib/types/services/ref-range/__tests__/ref-range.service.spec.d.ts +6 -6
  40. package/lib/types/services/ref-range/ref-range.service.d.ts +1 -2
  41. package/lib/types/services/selections/ref-selections.service.d.ts +1 -1
  42. package/lib/types/services/selections/selection-manager.service.d.ts +11 -0
  43. package/lib/types/services/sheet-interceptor/__tests__/create-core-test-bed.d.ts +7 -8
  44. package/lib/types/services/sheet-interceptor/sheet-interceptor.service.d.ts +1 -2
  45. package/lib/types/sheets-plugin.d.ts +1 -2
  46. package/lib/umd/index.js +3 -3
  47. package/package.json +13 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/sheets",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
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.4",
53
- "@univerjs/engine-numfmt": "0.2.4",
54
- "@univerjs/engine-formula": "0.2.4",
55
- "@univerjs/rpc": "0.2.4"
51
+ "@univerjs/core": "0.2.6",
52
+ "@univerjs/engine-formula": "0.2.6",
53
+ "@univerjs/engine-numfmt": "0.2.6",
54
+ "@univerjs/rpc": "0.2.6"
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
- "typescript": "^5.5.3",
64
- "vite": "^5.3.4",
65
- "vitest": "^2.0.3",
66
- "@univerjs/core": "0.2.4",
67
- "@univerjs/engine-formula": "0.2.4",
68
- "@univerjs/engine-numfmt": "0.2.4",
69
- "@univerjs/rpc": "0.2.4",
70
- "@univerjs/shared": "0.2.4"
61
+ "typescript": "^5.5.4",
62
+ "vite": "^5.3.5",
63
+ "vitest": "^2.0.4",
64
+ "@univerjs/core": "0.2.6",
65
+ "@univerjs/engine-formula": "0.2.6",
66
+ "@univerjs/engine-numfmt": "0.2.6",
67
+ "@univerjs/rpc": "0.2.6",
68
+ "@univerjs/shared": "0.2.6"
71
69
  },
72
70
  "univerSpace": {
73
71
  ".": {