@adia-ai/web-components 0.8.25 → 0.8.26

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
@@ -1,5 +1,14 @@
1
1
  # Changelog — @adia-ai/web-components
2
2
 
3
+ ## [0.8.26] — 2026-08-05
4
+
5
+ ### Fixed
6
+ - **richtext link focus had no indicator at all** — the focus rule assigned the box-shadow-shaped `--a-focus-ring` token to `outline`, invalid CSS that silently resolves to `none` (gh#594, PR #595). Fixed to the canonical `outline: none` + `box-shadow: var(--a-focus-ring)` shape. The focus-handoff rule is now written into `component-token-contract.md` (never-zero / never-two indicators) and enforced by the new `check:focus-handoff` gate (negative-control proven).
7
+
8
+ ### Maintenance
9
+ - **`components/` touched in this release window** (1 file(s), e.g. `richtext/richtext.css`) — carried by the entries above.
10
+ - **`dist/` bundles rebuilt** in this cut's window (4 file(s)) — regenerated from the source changes described above, not independent edits.
11
+
3
12
  ## [0.8.25] — 2026-07-31
4
13
 
5
14
  ### Fixed
@@ -381,8 +381,13 @@
381
381
  }
382
382
 
383
383
  [data-richtext-body] a:focus-visible {
384
- outline: var(--a-focus-ring);
385
- outline-offset: 2px;
384
+ /* --a-focus-ring is a box-shadow value (two stacked shadow layers), not a
385
+ valid `outline` value — the prior `outline: var(--a-focus-ring)` was
386
+ invalid at computed-value time, which resolves outline to its initial
387
+ `none` and left focused links with ZERO indicator (gh#594). Canonical
388
+ box-shadow ring + explicit outline suppression, matching link.css. */
389
+ outline: none;
390
+ box-shadow: var(--a-focus-ring);
386
391
  border-radius: var(--a-radius-sm);
387
392
  }
388
393