@adia-ai/a2ui-validator 0.5.14 → 0.5.16

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 CHANGED
@@ -6,6 +6,14 @@ Follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
6
6
 
7
7
  _No pending changes._
8
8
 
9
+ ## [0.5.16] - 2026-05-16
10
+
11
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.16 — see root CHANGELOG)._
12
+
13
+ ## [0.5.15] - 2026-05-16
14
+
15
+ _Lockstep ride-along (no source change in this package; companion to web-components v0.5.15 — see root CHANGELOG)._
16
+
9
17
  ## [0.5.14] - 2026-05-15
10
18
 
11
19
  _Lockstep ride-along (no source change in this package; companion to web-components v0.5.14 — see root CHANGELOG)._
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-validator",
3
- "version": "0.5.14",
3
+ "version": "0.5.16",
4
4
  "description": "AdiaUI A2UI validator — JSON Schema structural validation plus catalog-aware semantic validation (component exists, props match YAML). Split out from the compose engine so non-compose tooling (tests, MCP validator tools, CI gates) can depend on validation without pulling the whole generator graph.",
5
5
  "type": "module",
6
6
  "main": "./index.js",
package/validator.js CHANGED
@@ -34,15 +34,6 @@ const WEIGHTS = {
34
34
  componentsHaveRenderableContent: 6, // §165 (v0.5.4) — the 3rd safety layer
35
35
  };
36
36
 
37
- // Wiring check weights (scored separately, not affecting component score)
38
- const WIRING_WEIGHTS = {
39
- wiringControllersExist: 3,
40
- wiringHostsExist: 3,
41
- wiringHandlersExist: 3,
42
- wiringSourcesExist: 2,
43
- wiringDataPathsValid: 2,
44
- };
45
-
46
37
  /**
47
38
  * Validate an A2UI message sequence.
48
39
  *