@iloveagents/foundry-web-ui 0.7.0 → 0.7.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/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Feature modules (like SPACES) plug into `@iloveagents/foundry-web-ui` via regist
|
|
|
47
47
|
- **Citation handler** — handles `[n]` citation clicks in markdown
|
|
48
48
|
- **Tool UI** — custom rendering for agent tools via `makeAssistantToolUI`
|
|
49
49
|
|
|
50
|
-
See [AGENTS.md](
|
|
50
|
+
See [AGENTS.md](https://github.com/iLoveAgents/foundry-ui/blob/main/packages/web-ui/AGENTS.md) for architecture details and import boundary rules.
|
|
@@ -14,7 +14,7 @@ export interface BrandLockup {
|
|
|
14
14
|
*
|
|
15
15
|
* The rule worth stating: whether the name is printed depends on the *shape*
|
|
16
16
|
* of the brand image. A wordmark already spells the brand out, so pairing it
|
|
17
|
-
* with `appName` stutters ("
|
|
17
|
+
* with `appName` stutters ("Acme Acme"). An icon says nothing on its
|
|
18
18
|
* own, so it needs the name to complete the lockup. Hence an icon wins over a
|
|
19
19
|
* wordmark when both are set — supplying an icon is an explicit request for
|
|
20
20
|
* "<mark> Product Name", which is what a tenant whose product name differs
|
|
@@ -9,7 +9,7 @@ import { useThemeRuntime } from "./theme-runtime-provider.js";
|
|
|
9
9
|
*
|
|
10
10
|
* The rule worth stating: whether the name is printed depends on the *shape*
|
|
11
11
|
* of the brand image. A wordmark already spells the brand out, so pairing it
|
|
12
|
-
* with `appName` stutters ("
|
|
12
|
+
* with `appName` stutters ("Acme Acme"). An icon says nothing on its
|
|
13
13
|
* own, so it needs the name to complete the lockup. Hence an icon wins over a
|
|
14
14
|
* wordmark when both are set — supplying an icon is an explicit request for
|
|
15
15
|
* "<mark> Product Name", which is what a tenant whose product name differs
|
|
@@ -8,8 +8,8 @@ export interface ChatContentProps {
|
|
|
8
8
|
/**
|
|
9
9
|
* Starter prompts shown when the thread is empty. Defaults to
|
|
10
10
|
* `DEFAULT_STARTER_SUGGESTIONS`. Pass an empty array to hide the
|
|
11
|
-
* suggestion buttons entirely.
|
|
12
|
-
*
|
|
11
|
+
* suggestion buttons entirely. Downstream apps can pass a
|
|
12
|
+
* workspace-aware list derived from app context.
|
|
13
13
|
*/
|
|
14
14
|
starterSuggestions?: string[];
|
|
15
15
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iloveagents/foundry-web-ui",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"license": "MIT",
|
|
5
|
+
"description": "React agent UI core for Foundry UI — chat, composer, AG-UI adapter for assistant-ui, tool cards, panels, sidebar, theme runtime, and UI stores.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react",
|
|
8
|
+
"ag-ui",
|
|
9
|
+
"assistant-ui",
|
|
10
|
+
"chat",
|
|
11
|
+
"agent",
|
|
12
|
+
"foundry-ui",
|
|
13
|
+
"agent-framework"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/iLoveAgents/foundry-ui.git",
|
|
18
|
+
"directory": "packages/web-ui"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/iLoveAgents/foundry-ui/tree/main/packages/web-ui#readme",
|
|
21
|
+
"bugs": "https://github.com/iLoveAgents/foundry-ui/issues",
|
|
5
22
|
"type": "module",
|
|
6
23
|
"main": "./dist/index.js",
|
|
7
24
|
"types": "./dist/index.d.ts",
|
|
@@ -53,8 +70,8 @@
|
|
|
53
70
|
"tailwind-merge": "^3.5.0",
|
|
54
71
|
"react-markdown": "^10.0.0",
|
|
55
72
|
"remark-gfm": "^4.0.0",
|
|
56
|
-
"@iloveagents/foundry-agent": "^0.7.
|
|
57
|
-
"@iloveagents/foundry-web-primitives": "^0.7.
|
|
73
|
+
"@iloveagents/foundry-agent": "^0.7.1",
|
|
74
|
+
"@iloveagents/foundry-web-primitives": "^0.7.1"
|
|
58
75
|
},
|
|
59
76
|
"devDependencies": {
|
|
60
77
|
"@ag-ui/client": "^0.0.52",
|