pi-weave 0.1.15 → 0.1.16
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/package.json +1 -1
- package/src/core/cache/workspace.ts +0 -3
- package/src/web/client/dist/app.js +27 -27
- package/src/web/client/graph/positions.ts +0 -11
- package/src/web/client/graph/renderer.dom.ts +1 -36
- package/src/web/client/graph/renderer.ts +13 -129
- package/src/web/client/shell/Columns.tsx +16 -17
- package/src/web/client/shell/Divider.tsx +2 -5
- package/src/web/client/shell/Shell.tsx +5 -2
- package/src/web/client/shell/drag.model.ts +7 -15
- package/src/web/client/shell/layout.model.ts +0 -6
- package/src/web/client/shell/shell.model.ts +1 -17
- package/src/web/client/shell/cssvars.ts +0 -8
- package/src/web/client/shell/viewport.ts +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-weave",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "An agent-native knowledge workspace for your life and your code. Smart notepad + repository exploration, readable by humans and agents alike.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -53,8 +53,6 @@ export interface WorkspaceSnapshot {
|
|
|
53
53
|
* caller mutating it would corrupt the next build.
|
|
54
54
|
*/
|
|
55
55
|
notes: readonly Note[];
|
|
56
|
-
/** Exactly the HTML artifacts represented by the graph. */
|
|
57
|
-
artifacts: readonly HtmlArtifact[];
|
|
58
56
|
}
|
|
59
57
|
|
|
60
58
|
/** Cumulative counters, from construction. Callers take deltas. */
|
|
@@ -408,7 +406,6 @@ export class WorkspaceCache {
|
|
|
408
406
|
const snapshot: WorkspaceSnapshot = {
|
|
409
407
|
model: buildGraph(input),
|
|
410
408
|
notes: Object.freeze(kept),
|
|
411
|
-
artifacts: Object.freeze(input.artifacts ?? []),
|
|
412
409
|
};
|
|
413
410
|
this.lastSnapshot = snapshot;
|
|
414
411
|
return snapshot;
|