@iloveagents/foundry-web-primitives 0.1.5 → 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 +41 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @iloveagents/foundry-web-primitives
2
2
 
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
+ ## 1.0.0
19
+
20
+ ### Minor Changes
21
+
22
+ - 9105483: shell: ChatConversationConfig API + sticky-runtime threadId
23
+
24
+ Lets a downstream module (e.g. `@ltwlf/spaces-web-ui`) attach a
25
+ `ChatConversationConfig` to its `ChatModule`. The shell then:
26
+ - Pre-mints a fresh thread UUID via `useRef` so the AG-UI runtime's
27
+ `threadId` is defined from first render — no `undefined → defined`
28
+ remount mid-conversation when the user sends the first message.
29
+ - Calls `config.useStickyConversationId()` (when declared) and
30
+ feeds the resulting id into the runtime so the chat stays "live"
31
+ while the user browses non-chat routes (Workspaces, Jobs, etc.).
32
+ - Per-config keyed child components (`StickyAwareRuntime` vs
33
+ `UrlOnlyRuntime`) so optional hooks satisfy Rules-of-Hooks across
34
+ multi-module config swaps.
35
+
36
+ UI: collapsible nav groups in `sidebar.tsx` with persisted state via
37
+ `useSyncExternalStore` + localStorage, plus stable group ordering via
38
+ new `priority` field in `nav-config.ts`.
39
+
40
+ `ag-ui-runtime-provider.tsx` accepts an external `threadId` and
41
+ `historyAdapterFactory` so the consuming app can wire its own
42
+ persistence (e.g. `ThreadHistoryAdapter` → REST `/api/conversations`).
43
+
3
44
  ## 0.1.5
4
45
 
5
46
  ## 0.1.4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iloveagents/foundry-web-primitives",
3
- "version": "0.1.5",
3
+ "version": "1.0.1",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "type": "module",
6
6
  "types": "./src/index.ts",