@object-ui/collaboration 3.3.0 → 3.3.2

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 +91 -0
  2. package/README.md +21 -1
  3. package/package.json +31 -7
package/CHANGELOG.md ADDED
@@ -0,0 +1,91 @@
1
+ # @object-ui/collaboration
2
+
3
+ ## 3.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - @object-ui/types@3.3.2
8
+
9
+ ## 3.3.1
10
+
11
+ ### Patch Changes
12
+
13
+ - @object-ui/types@3.3.1
14
+
15
+ ## 3.3.0
16
+
17
+ ### Patch Changes
18
+
19
+ - @object-ui/types@3.3.0
20
+
21
+ ## 3.2.0
22
+
23
+ ### Patch Changes
24
+
25
+ - @object-ui/types@3.2.0
26
+
27
+ ## 3.1.5
28
+
29
+ ### Patch Changes
30
+
31
+ - @object-ui/types@3.1.5
32
+
33
+ ## 3.1.4
34
+
35
+ ### Patch Changes
36
+
37
+ - @object-ui/types@3.1.4
38
+
39
+ ## 3.1.3
40
+
41
+ ### Patch Changes
42
+
43
+ - @object-ui/types@3.1.3
44
+
45
+ ## 3.1.2
46
+
47
+ ### Patch Changes
48
+
49
+ - @object-ui/types@3.1.2
50
+
51
+ ## 3.1.1
52
+
53
+ ### Patch Changes
54
+
55
+ - Updated dependencies
56
+ - @object-ui/types@3.1.1
57
+
58
+ ## 3.0.3
59
+
60
+ ### Patch Changes
61
+
62
+ - @object-ui/types@3.0.3
63
+
64
+ ## 3.0.2
65
+
66
+ ### Patch Changes
67
+
68
+ - @object-ui/types@3.0.2
69
+
70
+ ## 3.0.1
71
+
72
+ ### Patch Changes
73
+
74
+ - @object-ui/types@3.0.1
75
+
76
+ ## 3.0.0
77
+
78
+ ### Minor Changes
79
+
80
+ - 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
81
+ - Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
82
+ - Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
83
+ - Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
84
+ - Added gzip + brotli pre-compression via vite-plugin-compression2
85
+ - Lazy MSW loading for build:server (~150 KB gzip saved)
86
+ - Added bundle analysis with rollup-plugin-visualizer
87
+
88
+ ### Patch Changes
89
+
90
+ - Updated dependencies [87979c3]
91
+ - @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.3.0",
3
+ "version": "3.3.2",
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.3.0"
33
+ "@object-ui/types": "3.3.2"
31
34
  },
32
35
  "devDependencies": {
33
36
  "@types/react": "19.2.14",
34
37
  "react": "19.2.5",
35
- "typescript": "^6.0.2",
36
- "vitest": "^4.1.4"
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",