@voltro/ui 0.33.0 → 0.35.0
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/CHANGELOG.md +1968 -0
- package/dist/index.d.ts +5 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -284,11 +284,14 @@ export declare interface PresenceAvatarsProps {
|
|
|
284
284
|
}
|
|
285
285
|
|
|
286
286
|
/** Structural shape of a presence member — matches `PresenceMember` from
|
|
287
|
-
* @voltro/plugin-presence/web without coupling the kit to that package.
|
|
287
|
+
* @voltro/plugin-presence/web without coupling the kit to that package.
|
|
288
|
+
*
|
|
289
|
+
* No `lastSeen`: it used to be here, was rendered by nothing, and was the
|
|
290
|
+
* owning replica's clock — so a component that DID render it would have been
|
|
291
|
+
* wrong by the skew between two pods, with nothing to say so. */
|
|
288
292
|
export declare interface PresenceMemberLike {
|
|
289
293
|
readonly key: string;
|
|
290
294
|
readonly meta: Record<string, unknown> | null;
|
|
291
|
-
readonly lastSeen: number;
|
|
292
295
|
}
|
|
293
296
|
|
|
294
297
|
export declare function QueryFilters<Row = Record<string, unknown>>(props: QueryFiltersProps<Row>): ReactNode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voltro/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.0",
|
|
4
4
|
"description": "Schema-driven React components over Voltro's headless client bindings: AutoForm, DataTable, the widget seam, and live workflow/presence/AI surfaces.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"voltro",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"node": ">=24.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@voltro/client": "0.
|
|
36
|
+
"@voltro/client": "0.35.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"effect": "^3.22.0",
|