@adia-ai/web-modules 0.7.2 → 0.7.4

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,27 @@
1
1
  # Changelog — @adia-ai/web-modules
2
2
 
3
+ ## [0.7.4] — 2026-06-02
4
+
5
+ ### Added
6
+
7
+ - **`@adia-ai/web-modules/css` — all-composites CSS barrel** — new generated barrel `index.css` (`@import`s all 21 primary module stylesheets; each is `@scope`'d to its tag, so loading all is conflict-free) + CDN bundle `dist/web-modules.min.css` (78 KB, via `bundle-css.mjs`), exported as `@adia-ai/web-modules/css`. Host pages link **one** stylesheet instead of hand-listing every module — supersedes the FB-53 §CSSPolicy per-module policy and its "keep this list in sync" drift trap (add-a-module → silently-unstyled, the site v1.7.3 regression class). Generated by `npm run build:modules-css-barrel`; freshness-gated by `npm run check:modules-css-barrel` (CI fails if a new module is missing from the barrel). `site/index.html` collapsed from ~21 module `<link>`s to one (verified pixel-identical render).
8
+ - **`<theme-panel>` — typographic-register switcher ("Scale Context")** — the `verse · regular · prose` register toggle now lives inside the theme menu as a reusable component affordance (a `<segmented-ui size="sm">` matching the preset-swatch buttons), moved off the docs-only topbar so any consumer embedding `<theme-panel>` gets it; sets `[verse]`/`[prose]` on the configured target mount. `theme/theme-panel/theme-panel.{js,css,yaml,d.ts,a2ui.json}`.
9
+
10
+ ### Changed
11
+
12
+ - **OD-5 `-default` token-shadowing revert (substrate sweep)** — the 12 module CSS files carrying the `var(--X, var(--X-default))` consumer-chain collapsed to single un-suffixed tokens, in lockstep with the `@adia-ai/web-components` revert (see its `[Unreleased]` for the full rationale + the four override vectors). Includes `payment-method-list`'s semantically-`-default`-named token, preserved on both declaration and read sides by the precise pair-derived rename (a blanket `--*-default` strip would have corrupted it). The 12 files span `billing/` (invoice-detail · invoice-history · payment-method-form · payment-method-list · plan-picker), `dashboard/` (dashboard-layout), `settings/` (integrations-page · notification-preferences), `theme/` (theme-panel), + the remaining module dirs. `dist/web-modules.min.css` + `everything.min.js` rebuilt. No module API change.
13
+
14
+ ### Fixed
15
+
16
+ - **`<admin-sidebar>` bare-text header/footer inset** — a plain `<span>` / `<text-ui>` placed directly in a sidebar `<admin-topbar>` / `<admin-statusbar>` (e.g. a "v1.0.0" version string) sat `--a-space-2` (8px) tighter than the nav column: the band carries only the 4px `--page-sidebar-px` inset, while nav-items and `<admin-entity-item>` provide their own +8px inner inset that bare text lacks. Added a content inset for plain text children (`span,p,small,time,text-ui,code-ui`) of sidebar topbar/statusbar so version strings align to the nav column. (admin-shell.bespoke.css; docs-QA pass)
17
+ - **`<onboarding-checklist>` font-family floor** — its toggle row used `font: inherit` with no `font-family` anchor, so it fell back to UA serif when a host page's font was broken/unset. Now floors to `var(--onboarding-checklist-font-family, var(--a-font-family-ui))`. Part of the cross-package text-bearing-primitive font-floor sweep (see `@adia-ai/web-components` Unreleased + `npm run audit:font-family-floor`).
18
+
19
+ ## [0.7.3] — 2026-06-01
20
+
21
+ ### Changed — build
22
+
23
+ - **Lockstep bump — no `@adia-ai/web-modules` source change.** `dist/everything.min.js` rebuilt to carry the `@adia-ai/web-components` parametric gap-scale + `[gap]` grammar change it bundles.
24
+
3
25
  ## [0.7.2] — 2026-06-01
4
26
 
5
27
  ### Added — `<admin-page-footer>` completes the admin-page header/body/footer triad