@roomful/vue 1.1.0 → 1.1.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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @roomful/vue
2
2
 
3
- Vue 3 bindings for [Roomful](https://github.com/erayates/roomful) — a plugin and composables that integrate real-time collaboration with Vue's reactivity system.
3
+ Vue 3 bindings for [Roomful](https://github.com/erayates/roomful) — a plugin and composables that integrate real-time collaboration (presence, cursors, shared state, awareness, events, viewport sync, laser pointer, locks, comments, and history) with Vue's reactivity system.
4
4
 
5
- > **Stable — v1.0.** The API is stable and ready for production.
5
+ > **Stable — v1.5.** Realtime presence, cursors, and shared state, plus the collaboration primitives (`useViewport`, `useLocks`, `usePointer`, `useComments`, `useHistory`). The API is stable and ready for production.
6
6
 
7
7
  ## Install
8
8
 
@@ -31,7 +31,7 @@ const [count, setCount] = useSharedState('count', { initialValue: 0 });
31
31
  </script>
32
32
  ```
33
33
 
34
- Composables: `usePresence`, `useCursors`, `useSharedState`, `useAwareness`, `useEvent`, `useConnectionStatus` (plus the `v-roomful-cursors` directive). `RoomfulPlugin` also accepts `onConnect`, `onDisconnect`, and `onError` lifecycle callbacks.
34
+ Composables: `usePresence`, `useCursors`, `useSharedState`, `useAwareness`, `useEvent`, `useConnectionStatus` (plus the `v-roomful-cursors` directive). v1.5 collaboration primitives: `useViewport`, `useLocks` (plus `useLockState`), `usePointer`, `useComments`, `useHistory` — see the [reference docs](https://github.com/erayates/roomful/blob/main/docs/reference/adapters-vue.md). `RoomfulPlugin` also accepts `onConnect`, `onDisconnect`, and `onError` lifecycle callbacks.
35
35
 
36
36
  ## Documentation
37
37
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@roomful/vue",
3
- "version": "1.1.0",
3
+ "description": "Vue plugin and composables for Roomful — realtime presence, cursors, shared state, viewport, locking, pointer, comments, and history.",
4
+ "version": "1.1.1",
4
5
  "private": false,
5
6
  "type": "module",
6
7
  "main": "dist/index.js",
@@ -21,7 +22,7 @@
21
22
  },
22
23
  "sideEffects": false,
23
24
  "dependencies": {
24
- "@roomful/core": "1.1.0"
25
+ "@roomful/core": "1.1.1"
25
26
  },
26
27
  "devDependencies": {
27
28
  "@vue/test-utils": "^2.4.6",