@iloveagents/foundry-web-ui 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +39 -21
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,10 +1,43 @@
1
1
  # @iloveagents/foundry-web-ui
2
2
 
3
- ## 0.2.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-agent@1.0.1
20
+ - @iloveagents/foundry-web-primitives@1.0.1
21
+
22
+ ## 1.0.0
4
23
 
5
24
  ### Minor Changes
6
25
 
7
- - UI: collapsible nav groups in `sidebar.tsx` with persisted state via
26
+ - 9105483: shell: ChatConversationConfig API + sticky-runtime threadId
27
+
28
+ Lets a downstream module (e.g. `@ltwlf/spaces-web-ui`) attach a
29
+ `ChatConversationConfig` to its `ChatModule`. The shell then:
30
+ - Pre-mints a fresh thread UUID via `useRef` so the AG-UI runtime's
31
+ `threadId` is defined from first render — no `undefined → defined`
32
+ remount mid-conversation when the user sends the first message.
33
+ - Calls `config.useStickyConversationId()` (when declared) and
34
+ feeds the resulting id into the runtime so the chat stays "live"
35
+ while the user browses non-chat routes (Workspaces, Jobs, etc.).
36
+ - Per-config keyed child components (`StickyAwareRuntime` vs
37
+ `UrlOnlyRuntime`) so optional hooks satisfy Rules-of-Hooks across
38
+ multi-module config swaps.
39
+
40
+ UI: collapsible nav groups in `sidebar.tsx` with persisted state via
8
41
  `useSyncExternalStore` + localStorage, plus stable group ordering via
9
42
  new `priority` field in `nav-config.ts`.
10
43
 
@@ -14,25 +47,10 @@
14
47
 
15
48
  ### Patch Changes
16
49
 
17
- - Move `@iloveagents/foundry-agent`, `-web-primitives` from
18
- `peerDependencies` to `dependencies`. They always ship together as a
19
- coordinated fixed group from this monorepo — they were never
20
- independently-versioned peers. Declaring them as peerDeps caused
21
- changesets' `shouldBumpMajor` cascade to promote the entire group to
22
- a major version on every minor changeset. See the root `foundry-agent`
23
- CHANGELOG entry for details.
24
-
25
- - Updated dependencies
26
- - @iloveagents/foundry-agent@0.2.0
27
- - @iloveagents/foundry-web-primitives@0.2.0
28
-
29
- ### NOTE: 1.0.1 was accidental
30
-
31
- Version 1.0.1 was published briefly on 2026-05-27 due to the peerDep
32
- cascade bug described above (1.0.0 was reserved but not published —
33
- 1.0.1 was the retry). It has been unpublished. Both 1.0.0 and 1.0.1
34
- are now permanently reserved on npm and CANNOT be re-published. Do
35
- not depend on 1.0.x.
50
+ - Updated dependencies [9105483]
51
+ - Updated dependencies [2b10540]
52
+ - @iloveagents/foundry-agent@1.0.0
53
+ - @iloveagents/foundry-web-primitives@1.0.0
36
54
 
37
55
  ## 0.1.5
38
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iloveagents/foundry-web-ui",
3
- "version": "0.2.0",
3
+ "version": "1.0.1",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "type": "module",
6
6
  "types": "./src/index.ts",
@@ -22,7 +22,9 @@
22
22
  "zustand": "^5.0.0",
23
23
  "lucide-react": ">=0.400.0",
24
24
  "@azure/msal-browser": "^5.0.0",
25
- "@azure/msal-react": "^5.0.0"
25
+ "@azure/msal-react": "^5.0.0",
26
+ "@iloveagents/foundry-agent": "1.0.1",
27
+ "@iloveagents/foundry-web-primitives": "1.0.1"
26
28
  },
27
29
  "peerDependenciesMeta": {
28
30
  "@azure/msal-browser": {
@@ -45,9 +47,7 @@
45
47
  "tailwind-merge": "^3.5.0",
46
48
  "react-markdown": "^10.0.0",
47
49
  "remark-gfm": "^4.0.0",
48
- "shiki": "^4.0.0",
49
- "@iloveagents/foundry-agent": "0.2.0",
50
- "@iloveagents/foundry-web-primitives": "0.2.0"
50
+ "shiki": "^4.0.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "typescript": "~5.9.3",