@seed-ship/mcp-ui-spec 3.2.0 → 5.0.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +53 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,59 @@ 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
+ ## [5.0.0] - 2026-04-14
9
+
10
+ ### Major release — synchronized with `@seed-ship/mcp-ui-solid` 5.0.0
11
+
12
+ No schema breaking changes in this package. The major bump aligns the three
13
+ monorepo packages on a single version line so consumers can pin a single major.
14
+
15
+ ### Changed
16
+ - Version bump 3.2.0 → 5.0.0 (synchronized with `@seed-ship/mcp-ui-solid` v5.0.0 and `@seed-ship/mcp-ui-cli` v5.0.0).
17
+
18
+ ## [3.2.0] - 2026-04-11
19
+
20
+ ### Added — Prefill Enhancements (Phase B)
21
+ - `FormFieldSchema.prefillMode` — `'exact' | 'resolve'` for autocomplete client-side resolution.
22
+ - `FormFieldSchema.valueFormat` — optional regex pattern for strict value format validation.
23
+ - `FormFieldSchema.valueFormatHint` — human-readable error message for `valueFormat` failures.
24
+
25
+ ## [3.1.0] - 2026-04-11
26
+
27
+ ### Added — Prefilled Forms (Phase A)
28
+ - `PrefillSourceSchema` enum (`user | detected | inferred | default`).
29
+ - `FormFieldSchema.prefill` (string | string[]) — pre-populated value.
30
+ - `FormFieldSchema.displayHint` — human-readable caption below the field.
31
+ - `FormFieldSchema.source` — tracks how the value was obtained, drives source badges.
32
+ - `FormFieldSchema.muted` — compact styling hint for high-confidence prefills.
33
+ - `FormComponentParamsSchema.autoSubmitDelay` — countdown in ms (1000–30000).
34
+
35
+ ## [3.0.0] - 2026-04-06
36
+
37
+ ### Major release — synchronized with `@seed-ship/mcp-ui-solid` 3.0.0
38
+
39
+ All three packages bumped to 3.0.0 to mark the "complete HITL chat toolkit"
40
+ milestone. Spec additions over the 2.x series:
41
+ - Form field types: `range`, `tags`, `toggle`, `fieldset` alongside existing 14 types.
42
+ - `fieldStatus` (`required | optional | unsupported | unknown`) + `statusReason`.
43
+ - `showWhen` conditional visibility with 13 operators.
44
+ - `dependsOn` reactive field options.
45
+ - `preview` live-refresh config on form components.
46
+ - Multi-select (`multiple: true`) on `select` fields.
47
+ - Autocomplete schema (`apiUrl`, `searchParam`, `labelField`, `valueField`, `extraParams`, `minChars`, `debounceMs`).
48
+
49
+ ## [2.2.0] - 2026-04-06
50
+
51
+ ### Added
52
+ - `fieldStatus` and `statusReason` on `FormFieldSchema` — per-field API capability indicator aligned with `mcp-ui-solid` v2.12.0.
53
+
54
+ ## [2.0.0] - 2026-03-31
55
+
56
+ ### Major release — synchronized with `mcp-ui-solid` v2.0.0
57
+ - Expanded `ComponentTypeSchema` to cover 19 component types (added `code`, `map`, `form`, `modal`, `action-group`, `image-gallery`, `video` among others).
58
+ - Per-component schema definitions aligned with the `@seed-ship/mcp-ui-cli` registry validator.
59
+ - Scatter/bubble/time-series chart validation — labels optional for point-based charts.
60
+
8
61
  ## [1.2.0] - 2025-11-25
9
62
 
10
63
  ### Changed - Phase 5.0 Quick Wins
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seed-ship/mcp-ui-spec",
3
- "version": "3.2.0",
3
+ "version": "5.0.0",
4
4
  "description": "Component registry specification and JSON Schemas for MCP UI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",