@seed-ship/mcp-ui-solid 2.10.3 → 2.11.0
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 +11 -11
- package/dist/components/ScratchpadPanel.cjs +350 -247
- package/dist/components/ScratchpadPanel.cjs.map +1 -1
- package/dist/components/ScratchpadPanel.d.ts +4 -0
- package/dist/components/ScratchpadPanel.d.ts.map +1 -1
- package/dist/components/ScratchpadPanel.js +350 -247
- package/dist/components/ScratchpadPanel.js.map +1 -1
- package/dist/types/chat-bus.d.ts +11 -1
- package/dist/types/chat-bus.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/ScratchpadPanel.tsx +83 -32
- package/src/types/chat-bus.ts +7 -1
- package/tsconfig.tsbuildinfo +1 -1
package/README.md
CHANGED
|
@@ -5,17 +5,17 @@ SolidJS components + chat toolkit for MCP-generated UI. Part of the [MCP UI ecos
|
|
|
5
5
|
[](https://www.npmjs.com/package/@seed-ship/mcp-ui-solid)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
|
-
## What's New in v2.
|
|
9
|
-
|
|
10
|
-
- **HITL
|
|
11
|
-
-
|
|
12
|
-
- **
|
|
13
|
-
- **
|
|
14
|
-
- **
|
|
15
|
-
- **
|
|
16
|
-
- **
|
|
17
|
-
- **Preview auto-refresh** - `previewEndpoint` +
|
|
18
|
-
- **Chat Bus** (`@experimental`) - Bidirectional event/command bus (
|
|
8
|
+
## What's New in v2.11.0
|
|
9
|
+
|
|
10
|
+
- **Universal HITL protocol** - ScratchpadPanel as the standard interaction pattern for ALL connectors (data.gouv.fr, HubSpot, Notion, Leexi, Tavily, Google, ClinicalTrials...)
|
|
11
|
+
- **`onSubmit` callback** - Dedicated form submission handler (cleaner than onAction). All connectors use the same pattern.
|
|
12
|
+
- **Error state + retry** - `status: 'error'` with message, code, retryable flag. Handles API failures (429, timeout, auth expired).
|
|
13
|
+
- **Feedback options array** - Universal feedback with N options (icons, variants, needsComment), free-text comment
|
|
14
|
+
- **HITL multi-tour** - Turn state, progression stepper, understanding/feedback/prompt sections
|
|
15
|
+
- **Interactive filter chips** - Click to edit (text or select), "+" to add filters
|
|
16
|
+
- **Embedded forms** - FormFieldRenderer in scratchpad with depends_on reactive fields
|
|
17
|
+
- **Preview auto-refresh** - `previewEndpoint` + configurable method/headers + debounce
|
|
18
|
+
- **Chat Bus** (`@experimental`) - Bidirectional event/command bus (18 events, 11 commands)
|
|
19
19
|
- **19 component renderers** - chart, table, metric, code, map, form, modal, gallery, video, iframe + more
|
|
20
20
|
|
|
21
21
|
## Installation
|