@seed-ship/mcp-ui-solid 4.3.1 → 4.3.3
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 +28 -0
- package/dist/components/UIResourceRenderer.cjs +295 -193
- package/dist/components/UIResourceRenderer.cjs.map +1 -1
- package/dist/components/UIResourceRenderer.d.ts.map +1 -1
- package/dist/components/UIResourceRenderer.js +295 -193
- package/dist/components/UIResourceRenderer.js.map +1 -1
- package/package.json +1 -1
- package/src/components/UIResourceRenderer.tsx +104 -11
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,34 @@ 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.3] - 2026-04-11
|
|
9
|
+
|
|
10
|
+
### Added — Table Search Filter
|
|
11
|
+
|
|
12
|
+
#### `searchable` prop on table params
|
|
13
|
+
- Text input above the table for real-time client-side filtering
|
|
14
|
+
- Searches across ALL columns, case-insensitive and accent-insensitive (NFD normalization)
|
|
15
|
+
- 200ms debounce to avoid filtering on every keystroke
|
|
16
|
+
- Clear button (×) to reset search
|
|
17
|
+
- Result count shown when filtering ("N results on M")
|
|
18
|
+
- Pagination applies AFTER filtering — filter narrows the dataset, then paginates
|
|
19
|
+
- Auto-enabled when `rows.length > 10` (unless `searchable: false`)
|
|
20
|
+
- Custom placeholder via `searchPlaceholder` prop
|
|
21
|
+
- Sort resets search pagination to first page/batch
|
|
22
|
+
|
|
23
|
+
## [4.3.2] - 2026-04-11
|
|
24
|
+
|
|
25
|
+
### Added — Progressive Table Pagination
|
|
26
|
+
|
|
27
|
+
#### `showAllLabel` prop enables progressive "show more" mode
|
|
28
|
+
- When `showAllLabel` is set on table params, pagination switches from paged (Prev/Next) to progressive (append)
|
|
29
|
+
- Shows first `pageSize` rows, then "Afficher plus (N suivantes)" button
|
|
30
|
+
- Each click appends the next batch — no page navigation
|
|
31
|
+
- Button disappears when all rows are visible
|
|
32
|
+
- Sort resets progressive state to first batch
|
|
33
|
+
- Backward-compatible: without `showAllLabel`, existing paged pagination unchanged
|
|
34
|
+
- Server just needs `{ pageSize: 25, showAllLabel: 'Afficher plus' }` when rows > 25
|
|
35
|
+
|
|
8
36
|
## [4.3.1] - 2026-04-11
|
|
9
37
|
|
|
10
38
|
### Added — Debug Trace Mode for Forms & PPR
|