@seed-ship/mcp-ui-solid 4.3.2 → 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 +15 -0
- package/dist/components/UIResourceRenderer.cjs +274 -208
- package/dist/components/UIResourceRenderer.cjs.map +1 -1
- package/dist/components/UIResourceRenderer.d.ts.map +1 -1
- package/dist/components/UIResourceRenderer.js +274 -208
- package/dist/components/UIResourceRenderer.js.map +1 -1
- package/package.json +1 -1
- package/src/components/UIResourceRenderer.tsx +72 -11
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ 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
|
+
|
|
8
23
|
## [4.3.2] - 2026-04-11
|
|
9
24
|
|
|
10
25
|
### Added — Progressive Table Pagination
|