@iloveagents/foundry-web-shell 0.2.0 → 1.0.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.
- package/CHANGELOG.md +35 -22
- package/package.json +5 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,30 @@
|
|
|
1
1
|
# @iloveagents/foundry-web-shell
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 1.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e54a336: chore(release): republish web-shell + web-ui (npm refused 1.0.0 — version was previously reserved)
|
|
8
|
+
|
|
9
|
+
No source changes. The 1.0.0 release ran successfully for
|
|
10
|
+
`@iloveagents/foundry-agent` and `@iloveagents/foundry-web-primitives`,
|
|
11
|
+
but the npm publish for `@iloveagents/foundry-web-shell@1.0.0` and
|
|
12
|
+
`@iloveagents/foundry-web-ui@1.0.0` failed with E400 "Cannot publish
|
|
13
|
+
over previously published version" — those exact version numbers
|
|
14
|
+
appear to have been reserved on the registry from an earlier
|
|
15
|
+
publish-then-unpublish cycle. Bumping the fixed group to 1.0.1 so
|
|
16
|
+
the four packages stay version-aligned and the publish goes through.
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [e54a336]
|
|
19
|
+
- @iloveagents/foundry-web-ui@1.0.1
|
|
20
|
+
- @iloveagents/foundry-agent@1.0.1
|
|
21
|
+
- @iloveagents/foundry-web-primitives@1.0.1
|
|
22
|
+
|
|
23
|
+
## 1.0.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
6
26
|
|
|
7
|
-
- shell: ChatConversationConfig API + sticky-runtime threadId
|
|
27
|
+
- 9105483: shell: ChatConversationConfig API + sticky-runtime threadId
|
|
8
28
|
|
|
9
29
|
Lets a downstream module (e.g. `@ltwlf/spaces-web-ui`) attach a
|
|
10
30
|
`ChatConversationConfig` to its `ChatModule`. The shell then:
|
|
@@ -18,28 +38,21 @@
|
|
|
18
38
|
`UrlOnlyRuntime`) so optional hooks satisfy Rules-of-Hooks across
|
|
19
39
|
multi-module config swaps.
|
|
20
40
|
|
|
41
|
+
UI: collapsible nav groups in `sidebar.tsx` with persisted state via
|
|
42
|
+
`useSyncExternalStore` + localStorage, plus stable group ordering via
|
|
43
|
+
new `priority` field in `nav-config.ts`.
|
|
44
|
+
|
|
45
|
+
`ag-ui-runtime-provider.tsx` accepts an external `threadId` and
|
|
46
|
+
`historyAdapterFactory` so the consuming app can wire its own
|
|
47
|
+
persistence (e.g. `ThreadHistoryAdapter` → REST `/api/conversations`).
|
|
48
|
+
|
|
21
49
|
### Patch Changes
|
|
22
50
|
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
a major version on every minor changeset. See the root `foundry-agent`
|
|
29
|
-
CHANGELOG entry for details.
|
|
30
|
-
|
|
31
|
-
- Updated dependencies
|
|
32
|
-
- @iloveagents/foundry-web-ui@0.2.0
|
|
33
|
-
- @iloveagents/foundry-agent@0.2.0
|
|
34
|
-
- @iloveagents/foundry-web-primitives@0.2.0
|
|
35
|
-
|
|
36
|
-
### NOTE: 1.0.1 was accidental
|
|
37
|
-
|
|
38
|
-
Version 1.0.1 was published briefly on 2026-05-27 due to the peerDep
|
|
39
|
-
cascade bug described above (1.0.0 was reserved but not published —
|
|
40
|
-
1.0.1 was the retry). It has been unpublished. Both 1.0.0 and 1.0.1
|
|
41
|
-
are now permanently reserved on npm and CANNOT be re-published. Do
|
|
42
|
-
not depend on 1.0.x.
|
|
51
|
+
- Updated dependencies [9105483]
|
|
52
|
+
- Updated dependencies [2b10540]
|
|
53
|
+
- @iloveagents/foundry-web-ui@1.0.0
|
|
54
|
+
- @iloveagents/foundry-agent@1.0.0
|
|
55
|
+
- @iloveagents/foundry-web-primitives@1.0.0
|
|
43
56
|
|
|
44
57
|
## 0.1.5
|
|
45
58
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iloveagents/foundry-web-shell",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -16,12 +16,10 @@
|
|
|
16
16
|
"react-router": "^7.0.0",
|
|
17
17
|
"@assistant-ui/react": "^0.12.25",
|
|
18
18
|
"lucide-react": ">=0.400.0",
|
|
19
|
-
"zustand": "^5.0.0"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"@iloveagents/foundry-web-
|
|
23
|
-
"@iloveagents/foundry-web-ui": "0.2.0",
|
|
24
|
-
"@iloveagents/foundry-agent": "0.2.0"
|
|
19
|
+
"zustand": "^5.0.0",
|
|
20
|
+
"@iloveagents/foundry-agent": "1.0.1",
|
|
21
|
+
"@iloveagents/foundry-web-primitives": "1.0.1",
|
|
22
|
+
"@iloveagents/foundry-web-ui": "1.0.1"
|
|
25
23
|
},
|
|
26
24
|
"devDependencies": {
|
|
27
25
|
"typescript": "~5.9.3",
|