@univerjs-pro/collaboration 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 +6 -2
- package/lib/cjs/index.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types/controllers/board-transform/algorithms/element.algo.d.ts +5 -0
- package/lib/types/controllers/board-transform/algorithms/index.d.ts +4 -0
- package/lib/types/controllers/board-transform/algorithms/order.algo.d.ts +3 -0
- package/lib/types/controllers/board-transform/algorithms/table-resource.algo.d.ts +3 -0
- package/lib/types/controllers/board-transform/algorithms/types.d.ts +8 -0
- package/lib/types/controllers/board-transform/board-transform.controller.d.ts +9 -0
- package/lib/types/controllers/sheet-transform/sheet-transform.controller.d.ts +1 -1
- package/lib/types/controllers/slide-transform/algorithms/index.d.ts +4 -4
- package/lib/types/index.d.ts +15 -19
- package/lib/types/models/changeset.d.ts +4 -4
- package/lib/types/services/snapshot/snapshot-loading.service.d.ts +37 -0
- package/lib/types/services/snapshot/snapshot-save.service.d.ts +4 -0
- package/lib/types/services/snapshot/snapshot-transform.d.ts +9 -0
- package/lib/types/services/snapshot/snapshot-utils.d.ts +3 -0
- package/lib/types/services/snapshot/snapshot.service.d.ts +19 -6
- package/lib/types/services/validation/doc-changeset-validation.d.ts +2 -1
- package/lib/umd/index.js +1 -1
- package/package.json +30 -22
package/README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# @univerjs-pro/collaboration
|
|
2
2
|
|
|
3
3
|
[](https://npmjs.com/package/@univerjs-pro/collaboration)
|
|
4
|
+
[](https://npmjs.com/package/@univerjs-pro/collaboration)
|
|
4
5
|
[](https://npmjs.com/package/@univerjs-pro/collaboration)
|
|
5
6
|
|
|
6
|
-
`@univerjs-pro/collaboration`
|
|
7
|
+
`@univerjs-pro/collaboration` is part of Univer Pro. Shared collaboration models, resources, and services for Univer Pro.
|
|
7
8
|
|
|
8
9
|
## Package Overview
|
|
9
10
|
|
|
@@ -29,8 +30,11 @@ import { UniverCollaborationPlugin } from '@univerjs-pro/collaboration';
|
|
|
29
30
|
univer.registerPlugin(UniverCollaborationPlugin);
|
|
30
31
|
```
|
|
31
32
|
|
|
33
|
+
## Integration Notes
|
|
34
|
+
|
|
35
|
+
- Keep this package on the same version as the other `@univerjs/*` and `@univerjs-pro/*` packages in your application.
|
|
36
|
+
|
|
32
37
|
## Resources
|
|
33
38
|
|
|
34
39
|
- [Documentation](https://docs.univer.ai/guides/pro)
|
|
35
40
|
- [NPM package](https://npmjs.com/package/@univerjs-pro/collaboration)
|
|
36
|
-
|