@seed-ship/mcp-ui-solid 2.15.0 → 3.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.
- package/README.md +5 -4
- package/dist/components/FormFieldRenderer.cjs +272 -121
- package/dist/components/FormFieldRenderer.cjs.map +1 -1
- package/dist/components/FormFieldRenderer.d.ts.map +1 -1
- package/dist/components/FormFieldRenderer.js +272 -121
- package/dist/components/FormFieldRenderer.js.map +1 -1
- package/dist/components/ScratchpadPanel.cjs +5 -5
- package/dist/components/ScratchpadPanel.cjs.map +1 -1
- package/dist/components/ScratchpadPanel.js +5 -5
- package/dist/components/ScratchpadPanel.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types.d.cts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/FormFieldRenderer.tsx +110 -0
- package/src/components/ScratchpadPanel.tsx +4 -4
- package/src/types/index.ts +4 -0
- package/tsconfig.tsbuildinfo +1 -1
package/README.md
CHANGED
|
@@ -5,11 +5,12 @@ 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
|
|
8
|
+
## What's New in v3.0.0
|
|
9
9
|
|
|
10
|
-
- **
|
|
11
|
-
- **
|
|
12
|
-
- **
|
|
10
|
+
- **18 form field types** - Added range/slider, tags/chips input, toggle switch, fieldset group. Total: text, email, password, number, date, textarea, select (multi), checkbox, radio, autocomplete (multi), range, tags, toggle, fieldset
|
|
11
|
+
- **14 scratchpad section types** - data, filter, preview, message, action, steps, form, understanding, feedback, prompt, stepper, error, source_card, diff
|
|
12
|
+
- **Smart field status** - `fieldStatus` (required/unsupported/unknown) + `statusReason`. Auto-exclude unsupported from submit.
|
|
13
|
+
- **Multi-source HITL** - sectionMode append/upsert, asyncAction, pinned, debug overlay, turn state
|
|
13
14
|
- **HITL multi-tour** - Turn state, progression stepper, understanding/feedback/prompt sections
|
|
14
15
|
- **Interactive filter chips** - Click to edit (text or select), "+" to add filters
|
|
15
16
|
- **Embedded forms** - FormFieldRenderer in scratchpad with depends_on reactive fields
|