@a3s-lab/office 0.7.0 → 0.7.1
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 +19 -0
- package/dist/office-kernel.wasm +0 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
<a href="https://a3s-lab.github.io/Office/docs/">Documentation</a> ·
|
|
24
24
|
<a href="#quick-start">Quick start</a> ·
|
|
25
25
|
<a href="#five-format-native-surfaces">Editors</a> ·
|
|
26
|
+
<a href="#real-time-collaboration">Collaboration</a> ·
|
|
26
27
|
<a href="#native-automation">Automation</a> ·
|
|
27
28
|
<a href="#architecture">Architecture</a> ·
|
|
28
29
|
<a href="ROADMAP.md">WPS gap roadmap</a> ·
|
|
@@ -43,6 +44,8 @@ workflows, and a separate Rust automation plane.
|
|
|
43
44
|
lowest-common-denominator model.
|
|
44
45
|
- **Own the product boundary**: your application controls content, storage,
|
|
45
46
|
permissions, collaboration, and model providers.
|
|
47
|
+
- **Collaborate across every editor** with shared Yjs/Yrs content, Awareness
|
|
48
|
+
participants and remote locations, plus browser, CLI, MCP, and A3S Code peers.
|
|
46
49
|
- **Automate deterministically** through the native CLI, standard MCP server,
|
|
47
50
|
or packaged Office Skill.
|
|
48
51
|
|
|
@@ -143,6 +146,21 @@ The images below are committed visual-regression baselines from the real
|
|
|
143
146
|
review changes, retain browser/native actor attribution, and checkpoint
|
|
144
147
|
without replacing a whole Office file.
|
|
145
148
|
|
|
149
|
+
## Real-time collaboration
|
|
150
|
+
|
|
151
|
+
Document, Markdown, Spreadsheet, Presentation, and PDF expose the same
|
|
152
|
+
transport-neutral collaboration boundary. Two browser clients can edit one
|
|
153
|
+
artifact live, render an accessible participant roster, and project remote
|
|
154
|
+
text selections, cells, scene objects, pages, or annotations without moving
|
|
155
|
+
the local user's viewport or focus. Native Yrs replicas join the same state
|
|
156
|
+
through the CLI, standard MCP server, or A3S Code.
|
|
157
|
+
|
|
158
|
+
The host owns rooms, authentication, authorization, network delivery, offline
|
|
159
|
+
buffering, persistence, and the `Y.Doc`; A3S Office owns format-specific
|
|
160
|
+
bindings, local undo, validated presence, and conflict-local typed mutations.
|
|
161
|
+
See the bilingual [real-time collaboration guide](https://a3s-lab.github.io/Office/docs/components/collaboration.html)
|
|
162
|
+
for React, Vue, Web Component, reconnect, security, and native-agent setup.
|
|
163
|
+
|
|
146
164
|
## Quick start
|
|
147
165
|
|
|
148
166
|
### Try the product locally
|
|
@@ -1198,6 +1216,7 @@ without hard-coded return URLs.
|
|
|
1198
1216
|
|
|
1199
1217
|
- [Live Playground](https://a3s-lab.github.io/Office/)
|
|
1200
1218
|
- [Documentation center](https://a3s-lab.github.io/Office/docs/)
|
|
1219
|
+
- [A3S Office 0.7.1 documentation](https://a3s-lab.github.io/Office/docs/0.7.1/)
|
|
1201
1220
|
- [A3S Office 0.7.0 documentation](https://a3s-lab.github.io/Office/docs/0.7.0/)
|
|
1202
1221
|
- [A3S Office 0.6.0 documentation](https://a3s-lab.github.io/Office/docs/0.6.0/)
|
|
1203
1222
|
- [A3S Office 0.5.0 documentation](https://a3s-lab.github.io/Office/docs/0.5.0/)
|
package/dist/office-kernel.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a3s-lab/office",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"description": "Open-source browser editors for documents, Markdown, spreadsheets, presentations, and PDFs.",
|
|
3
|
+
"version": "0.7.1",
|
|
4
|
+
"description": "Open-source collaborative browser editors for documents, Markdown, spreadsheets, presentations, and PDFs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"office",
|
|
7
7
|
"document-editor",
|
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
"spreadsheet",
|
|
10
10
|
"presentation",
|
|
11
11
|
"pdf",
|
|
12
|
+
"collaboration",
|
|
13
|
+
"yjs",
|
|
12
14
|
"react",
|
|
13
15
|
"vue",
|
|
14
16
|
"web-components"
|