@object-ui/collaboration 3.1.5 → 3.3.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +85 -0
  2. package/README.md +21 -1
  3. package/package.json +32 -8
package/CHANGELOG.md ADDED
@@ -0,0 +1,85 @@
1
+ # @object-ui/collaboration
2
+
3
+ ## 3.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - @object-ui/types@3.3.1
8
+
9
+ ## 3.3.0
10
+
11
+ ### Patch Changes
12
+
13
+ - @object-ui/types@3.3.0
14
+
15
+ ## 3.2.0
16
+
17
+ ### Patch Changes
18
+
19
+ - @object-ui/types@3.2.0
20
+
21
+ ## 3.1.5
22
+
23
+ ### Patch Changes
24
+
25
+ - @object-ui/types@3.1.5
26
+
27
+ ## 3.1.4
28
+
29
+ ### Patch Changes
30
+
31
+ - @object-ui/types@3.1.4
32
+
33
+ ## 3.1.3
34
+
35
+ ### Patch Changes
36
+
37
+ - @object-ui/types@3.1.3
38
+
39
+ ## 3.1.2
40
+
41
+ ### Patch Changes
42
+
43
+ - @object-ui/types@3.1.2
44
+
45
+ ## 3.1.1
46
+
47
+ ### Patch Changes
48
+
49
+ - Updated dependencies
50
+ - @object-ui/types@3.1.1
51
+
52
+ ## 3.0.3
53
+
54
+ ### Patch Changes
55
+
56
+ - @object-ui/types@3.0.3
57
+
58
+ ## 3.0.2
59
+
60
+ ### Patch Changes
61
+
62
+ - @object-ui/types@3.0.2
63
+
64
+ ## 3.0.1
65
+
66
+ ### Patch Changes
67
+
68
+ - @object-ui/types@3.0.1
69
+
70
+ ## 3.0.0
71
+
72
+ ### Minor Changes
73
+
74
+ - 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
75
+ - Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
76
+ - Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
77
+ - Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
78
+ - Added gzip + brotli pre-compression via vite-plugin-compression2
79
+ - Lazy MSW loading for build:server (~150 KB gzip saved)
80
+ - Added bundle analysis with rollup-plugin-visualizer
81
+
82
+ ### Patch Changes
83
+
84
+ - Updated dependencies [87979c3]
85
+ - @object-ui/types@3.0.0
package/README.md CHANGED
@@ -116,6 +116,26 @@ Threaded comment component with @mentions:
116
116
  />
117
117
  ```
118
118
 
119
+ <!-- release-metadata:v3.3.0 -->
120
+
121
+ ## Compatibility
122
+
123
+ - **React:** 18.x or 19.x
124
+ - **Node.js:** ≥ 18
125
+ - **TypeScript:** ≥ 5.0 (strict mode)
126
+ - **`@objectstack/spec`:** ^3.3.0
127
+ - **`@objectstack/client`:** ^3.3.0
128
+ - **Tailwind CSS:** ≥ 3.4 (for packages with UI)
129
+
130
+ ## Links
131
+
132
+ - 📚 [Documentation](https://www.objectui.org/docs/packages/collaboration)
133
+ - 📦 [npm package](https://www.npmjs.com/package/@object-ui/collaboration)
134
+ - 📝 [Changelog](./CHANGELOG.md)
135
+ - 🐛 [Report an issue](https://github.com/objectstack-ai/objectui/issues)
136
+ - 🤝 [Contributing Guide](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md)
137
+ - 🗺️ [Roadmap](https://github.com/objectstack-ai/objectui/blob/main/ROADMAP.md)
138
+
119
139
  ## License
120
140
 
121
- MIT
141
+ MIT — see [LICENSE](./LICENSE).
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@object-ui/collaboration",
3
- "version": "3.1.5",
3
+ "version": "3.3.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Real-time collaboration for Object UI with presence tracking, live cursors, conflict resolution, and comment threads.",
7
- "homepage": "https://www.objectui.org",
7
+ "homepage": "https://www.objectui.org/docs/packages/collaboration",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "https://github.com/objectstack-ai/objectui.git",
10
+ "url": "git+https://github.com/objectstack-ai/objectui.git",
11
11
  "directory": "packages/collaboration"
12
12
  },
13
13
  "main": "./dist/index.js",
@@ -21,19 +21,43 @@
21
21
  }
22
22
  },
23
23
  "files": [
24
- "dist"
24
+ "dist",
25
+ "README.md",
26
+ "CHANGELOG.md",
27
+ "LICENSE"
25
28
  ],
26
29
  "peerDependencies": {
27
30
  "react": "^18.0.0 || ^19.0.0"
28
31
  },
29
32
  "dependencies": {
30
- "@object-ui/types": "3.1.5"
33
+ "@object-ui/types": "3.3.1"
31
34
  },
32
35
  "devDependencies": {
33
36
  "@types/react": "19.2.14",
34
- "react": "19.2.4",
35
- "typescript": "^5.9.3",
36
- "vitest": "^4.1.0"
37
+ "react": "19.2.5",
38
+ "typescript": "^6.0.3",
39
+ "vitest": "^4.1.5"
40
+ },
41
+ "keywords": [
42
+ "objectui",
43
+ "sdui",
44
+ "schema-driven-ui",
45
+ "react",
46
+ "tailwind",
47
+ "shadcn",
48
+ "objectstack",
49
+ "collaboration",
50
+ "presence",
51
+ "realtime",
52
+ "webrtc",
53
+ "yjs"
54
+ ],
55
+ "author": "ObjectStack Team <team@objectstack.ai>",
56
+ "bugs": {
57
+ "url": "https://github.com/objectstack-ai/objectui/issues"
58
+ },
59
+ "publishConfig": {
60
+ "access": "public"
37
61
  },
38
62
  "scripts": {
39
63
  "build": "tsc",