@adia-ai/web-modules 0.6.50 → 0.7.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.
- package/CHANGELOG.md +10 -0
- package/dist/everything.min.js +97 -87
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog — @adia-ai/web-modules
|
|
2
2
|
|
|
3
|
+
## [0.7.0] — 2026-05-31
|
|
4
|
+
|
|
5
|
+
### Fixed — docs-QA pass (browser-verified)
|
|
6
|
+
|
|
7
|
+
- **`<plan-picker-ui>`** — plan cards stopped fighting their own `option-card-ui[layout="tile"]`: dropped the per-card `display:grid` override that stranded the radio in a collapsed gutter. Cards now use the tile flex column (radio top-right, Recommended/Current pill top-left, CTAs bottom-aligned across the row, features flush-left). Fixes the broken plan-picker layout in `billing-overview`.
|
|
8
|
+
- **`<confirm-dialog-ui>`** (`feedback/confirm-dialog`) — the icon disc rendered empty (8px padding collapsed the SVG on a border-box icon-ui) and the modal-stamped close button orphaned to the header's lower-left. The disc is now explicitly sized (`--confirm-dialog-icon-size`) with the glyph driven down from it; the close button is pinned top-right in the header grid. The **description moved out of the header into the `<section>` body** so the title row stays compact and the body band isn't empty (covers all dialog patterns). aria-describedby preserved.
|
|
9
|
+
- **`<onboarding-checklist-ui>`** — the all-done completion CTA rendered _above_ the checklist items and read "Dismiss" (opaque without context). The `[data-part="complete"]` block now renders after the item list (CTA below the list) and the button reads "Done". Its separating margin was also dead: the block is a conditional render the template engine wraps in a `<span style="display:contents">`, so the `:scope > [data-part="complete"]` child combinator never matched — converted the complete + collapsed-state rules to descendant combinators. (bug-53)
|
|
10
|
+
- **`<integrations-page-ui>`** (`settings/integrations-page`) — the no-results empty state rendered a display-size heading + crammed inline description; `#renderEmpty()` now uses `variant="heading"` + `variant="body" color="subtle"`, and the empty/sections/skeleton CSS dropped its `:scope >` child combinators (defeated by the same `display:contents` conditional-render wrapper) for descendant combinators so the centred grid layout actually applies. The status-filter `<segmented-ui>` also lost its `[selected]` contrast after a composite re-stamp — `render()` now re-invokes the segmented child's `render()` so the active pill re-paints. (bug-51, bug-52)
|
|
11
|
+
- **Demo + bundle hygiene** — `dashboard/` cluster demos swept for the dead `size="sm"` / bare `slot="action"` no-ops (gen-UI corpus hygiene); `dist/everything.min.js` regenerated for the `@adia-ai/web-components` changes it bundles (caret rename + breaking removals).
|
|
12
|
+
|
|
3
13
|
## [0.6.50] — 2026-05-30
|
|
4
14
|
|
|
5
15
|
### Changed — lockstep bump + `everything.min.js` bundle refresh
|