@adia-ai/web-components 0.6.0 → 0.6.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
CHANGED
|
@@ -11,6 +11,25 @@ runtime ships in the sibling `@adia-ai/a2ui-runtime` package
|
|
|
11
11
|
|
|
12
12
|
_No pending changes._
|
|
13
13
|
|
|
14
|
+
## [0.6.2] - 2026-05-18
|
|
15
|
+
|
|
16
|
+
### v0.6.2 — Lockstep ride-along
|
|
17
|
+
|
|
18
|
+
TS Phase 4: retrieval (§356) + mcp (§357) `.ts` sources + TS-MIG-001 closed.
|
|
19
|
+
No source changes in this package. Internal dep ranges stay at `^0.6.0`.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## [0.6.1] - 2026-05-18
|
|
24
|
+
|
|
25
|
+
### v0.6.1 §354 — `<link-ui>` `--link-color-*` → `--link-fg-*` token rename
|
|
26
|
+
|
|
27
|
+
**BREAKING** for consumers overriding `--link-color`, `--link-color-hover`, or
|
|
28
|
+
`--link-color-visited`. Renamed to `--link-fg`, `--link-fg-hover`, `--link-fg-visited`.
|
|
29
|
+
No in-tree consumer references found. Internal dep ranges stay at `^0.6.0`.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
14
33
|
## [0.6.0] - 2026-05-18
|
|
15
34
|
|
|
16
35
|
_Lockstep ride-along (no source change in this package; companion to web-components v0.6.0 — see root CHANGELOG)._
|
|
@@ -158,13 +158,13 @@
|
|
|
158
158
|
},
|
|
159
159
|
"tag": "link-ui",
|
|
160
160
|
"tokens": {
|
|
161
|
-
"--link-
|
|
161
|
+
"--link-fg": {
|
|
162
162
|
"description": "Resting link color. Default `var(--a-link)`."
|
|
163
163
|
},
|
|
164
|
-
"--link-
|
|
164
|
+
"--link-fg-hover": {
|
|
165
165
|
"description": "Hover-state color. Default `var(--a-link-hover)`."
|
|
166
166
|
},
|
|
167
|
-
"--link-
|
|
167
|
+
"--link-fg-visited": {
|
|
168
168
|
"description": "Visited-state color. Default `var(--a-link-visited)`."
|
|
169
169
|
},
|
|
170
170
|
"--link-underline-offset": {
|
package/components/link/link.css
CHANGED
|
@@ -7,16 +7,16 @@
|
|
|
7
7
|
|
|
8
8
|
@scope (link-ui) {
|
|
9
9
|
:where(:scope) {
|
|
10
|
-
--link-
|
|
11
|
-
--link-
|
|
12
|
-
--link-
|
|
10
|
+
--link-fg: var(--a-link);
|
|
11
|
+
--link-fg-hover: var(--a-link-hover);
|
|
12
|
+
--link-fg-visited: var(--a-link-visited);
|
|
13
13
|
--link-underline-offset: 2px;
|
|
14
14
|
--link-focus-ring: var(--a-focus-ring);
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
:scope {
|
|
18
18
|
display: inline;
|
|
19
|
-
color: var(--link-
|
|
19
|
+
color: var(--link-fg);
|
|
20
20
|
/* The text-decoration is on the inner <a>, not the host, so that
|
|
21
21
|
host-level color overrides cascade correctly. */
|
|
22
22
|
}
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
:scope > a:hover {
|
|
41
|
-
color: var(--link-
|
|
41
|
+
color: var(--link-fg-hover);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
:scope > a:visited {
|
|
45
|
-
color: var(--link-
|
|
45
|
+
color: var(--link-fg-visited);
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
/* Focus ring on the anchor (the actual focusable element). */
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
affordance is implied by hover behavior + cursor. For "Already
|
|
68
68
|
have an account?" type prose where the link role is contextual. */
|
|
69
69
|
:scope[variant="quiet"] {
|
|
70
|
-
--link-
|
|
71
|
-
--link-
|
|
70
|
+
--link-fg: inherit;
|
|
71
|
+
--link-fg-hover: var(--a-link-hover);
|
|
72
72
|
}
|
|
73
73
|
:scope[variant="quiet"] > a {
|
|
74
74
|
text-decoration: none;
|
|
@@ -126,11 +126,11 @@ states:
|
|
|
126
126
|
|
|
127
127
|
traits: []
|
|
128
128
|
tokens:
|
|
129
|
-
--link-
|
|
129
|
+
--link-fg:
|
|
130
130
|
description: Resting link color. Default `var(--a-link)`.
|
|
131
|
-
--link-
|
|
131
|
+
--link-fg-hover:
|
|
132
132
|
description: Hover-state color. Default `var(--a-link-hover)`.
|
|
133
|
-
--link-
|
|
133
|
+
--link-fg-visited:
|
|
134
134
|
description: Visited-state color. Default `var(--a-link-visited)`.
|
|
135
135
|
--link-underline-offset:
|
|
136
136
|
description: Distance between baseline and underline. Default `2px`.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/web-components",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"description": "AdiaUI web components
|
|
3
|
+
"version": "0.6.2",
|
|
4
|
+
"description": "AdiaUI web components \u2014 vanilla custom elements. A2UI runtime (renderer, registry, streams, wiring) lives in @adia-ai/a2ui-runtime.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./index.d.ts",
|
|
7
7
|
"exports": {
|