@seed-ship/mcp-ui-solid 2.10.3 → 2.12.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 +10 -11
- package/dist/components/FormFieldRenderer.cjs +261 -223
- package/dist/components/FormFieldRenderer.cjs.map +1 -1
- package/dist/components/FormFieldRenderer.d.ts.map +1 -1
- package/dist/components/FormFieldRenderer.js +262 -224
- package/dist/components/FormFieldRenderer.js.map +1 -1
- package/dist/components/ScratchpadPanel.cjs +354 -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 +354 -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/dist/types/index.d.ts +4 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types.d.cts +4 -0
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
- package/src/components/FormFieldRenderer.tsx +25 -3
- package/src/components/ScratchpadPanel.tsx +93 -32
- package/src/types/chat-bus.ts +7 -1
- package/src/types/index.ts +6 -0
- package/tsconfig.tsbuildinfo +1 -1
package/README.md
CHANGED
|
@@ -5,17 +5,16 @@ 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
|
-
- **
|
|
11
|
-
- **
|
|
12
|
-
-
|
|
13
|
-
- **
|
|
14
|
-
- **Interactive filter chips** - Click to edit
|
|
15
|
-
- **Embedded forms** -
|
|
16
|
-
- **
|
|
17
|
-
- **
|
|
18
|
-
- **Chat Bus** (`@experimental`) - Bidirectional event/command bus (17 events, 11 commands incl. updateScratchpad)
|
|
8
|
+
## What's New in v2.12.0
|
|
9
|
+
|
|
10
|
+
- **Smart field status** - `fieldStatus` per field: `required` (blocks submit), `unsupported` (disabled + badge), `unknown` (yellow badge). `statusReason` explains why. Unsupported fields auto-excluded from submit.
|
|
11
|
+
- **Universal HITL protocol** - ScratchpadPanel as the standard interaction pattern for ALL connectors
|
|
12
|
+
- **`onSubmit` + error + retry** - Dedicated form submit, error state with retry, feedback options array
|
|
13
|
+
- **HITL multi-tour** - Turn state, progression stepper, understanding/feedback/prompt sections
|
|
14
|
+
- **Interactive filter chips** - Click to edit (text or select), "+" to add filters
|
|
15
|
+
- **Embedded forms** - FormFieldRenderer in scratchpad with depends_on reactive fields
|
|
16
|
+
- **Preview auto-refresh** - `previewEndpoint` + configurable method/headers + debounce
|
|
17
|
+
- **Chat Bus** (`@experimental`) - Bidirectional event/command bus (18 events, 11 commands)
|
|
19
18
|
- **19 component renderers** - chart, table, metric, code, map, form, modal, gallery, video, iframe + more
|
|
20
19
|
|
|
21
20
|
## Installation
|