@seed-ship/mcp-ui-solid 4.3.1 → 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 +13 -0
- 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/UIResourceRenderer.tsx +37 -5
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ 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
|
+
|
|
8
21
|
## [4.3.1] - 2026-04-11
|
|
9
22
|
|
|
10
23
|
### Added — Debug Trace Mode for Forms & PPR
|