@seed-ship/mcp-ui-solid 4.3.0 → 4.3.2
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/CHANGELOG.md +26 -0
- package/dist/components/ScratchpadPanel.cjs +500 -250
- package/dist/components/ScratchpadPanel.cjs.map +1 -1
- package/dist/components/ScratchpadPanel.d.ts +2 -0
- package/dist/components/ScratchpadPanel.d.ts.map +1 -1
- package/dist/components/ScratchpadPanel.js +500 -250
- package/dist/components/ScratchpadPanel.js.map +1 -1
- package/dist/components/UIResourceRenderer.cjs +201 -165
- package/dist/components/UIResourceRenderer.cjs.map +1 -1
- package/dist/components/UIResourceRenderer.d.ts.map +1 -1
- package/dist/components/UIResourceRenderer.js +201 -165
- package/dist/components/UIResourceRenderer.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ScratchpadPanel.tsx +139 -1
- package/src/components/UIResourceRenderer.tsx +37 -5
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [4.3.2] - 2026-04-11
|
|
9
|
+
|
|
10
|
+
### Added — Progressive Table Pagination
|
|
11
|
+
|
|
12
|
+
#### `showAllLabel` prop enables progressive "show more" mode
|
|
13
|
+
- When `showAllLabel` is set on table params, pagination switches from paged (Prev/Next) to progressive (append)
|
|
14
|
+
- Shows first `pageSize` rows, then "Afficher plus (N suivantes)" button
|
|
15
|
+
- Each click appends the next batch — no page navigation
|
|
16
|
+
- Button disappears when all rows are visible
|
|
17
|
+
- Sort resets progressive state to first batch
|
|
18
|
+
- Backward-compatible: without `showAllLabel`, existing paged pagination unchanged
|
|
19
|
+
- Server just needs `{ pageSize: 25, showAllLabel: 'Afficher plus' }` when rows > 25
|
|
20
|
+
|
|
21
|
+
## [4.3.1] - 2026-04-11
|
|
22
|
+
|
|
23
|
+
### Added — Debug Trace Mode for Forms & PPR
|
|
24
|
+
|
|
25
|
+
#### `debugTrace` prop on ScratchpadPanel
|
|
26
|
+
- Collapsible debug panel below each form section
|
|
27
|
+
- Per-field trace: prefill, source, displayHint, muted, prefillMode, valueFormat
|
|
28
|
+
- Submitted values display with success/empty indicators
|
|
29
|
+
- Auto-submit decision trace with reason (missing fields, user interaction, etc.)
|
|
30
|
+
- Server `_debug` data display (resolvers, routing, missing fields) when present
|
|
31
|
+
- Raw SSE payload viewer (collapsible JSON)
|
|
32
|
+
- Zero impact when disabled — no extra rendering or state
|
|
33
|
+
|
|
8
34
|
## [4.3.0] - 2026-04-11
|
|
9
35
|
|
|
10
36
|
### Added — Prefill Enhancements (Phase B)
|