@adia-ai/web-modules 0.6.35 → 0.6.37
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 +47 -0
- package/dist/everything.min.js +123 -111
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# Changelog — @adia-ai/web-modules
|
|
2
2
|
|
|
3
|
+
## [0.6.37] — 2026-05-25
|
|
4
|
+
|
|
5
|
+
### Changed — Wave 3 + Wave 4 pattern demos shipped
|
|
6
|
+
|
|
7
|
+
- **Wave 3** new patterns: changelog-feed (in-app "What's new" surface, #142), audit-log (timestamped actor/action/resource table, #139), export-flow (standalone export-request form, #287), inline-dialog (anchored non-modal, #96), timezone-selector (IANA picker, #380), toast-undo (#345), pagination server-side wiring demo (#122).
|
|
8
|
+
- **Wave 4** new patterns: alert-dialog destructive-confirm (#199), context-menu right-click variant (#92), table-ui column-resize / sticky-header / virtualized demos (#103), atoms: visually-hidden-ui + skip-nav-ui + truncate flip (#36-#38).
|
|
9
|
+
- **Brand chrome canonicals updated** (FB-71 substrate): brand-chrome + user-identity patterns now teach `admin-entity-item` canonical via Pattern A / multi-tenant.
|
|
10
|
+
|
|
11
|
+
### Fixed — pattern-side polish across the v0.6.37 window
|
|
12
|
+
|
|
13
|
+
- `<integration-card>` + `<segmented>` console warnings silenced in integrations-page.
|
|
14
|
+
- `<patterns/changelog-feed>`: section-grouped layout (was cluttered).
|
|
15
|
+
- `<patterns/audit-log>`: native `<code>` for inline IDs (not block code-ui).
|
|
16
|
+
- `<patterns/export-flow>`: radio stacking + dynamic submit-label.
|
|
17
|
+
- `<table-ui>` flat-by-default + audit-log full-width.
|
|
18
|
+
- `<feed-ui>` items size to own content — one-line toasts no longer stretch.
|
|
19
|
+
- `<toast-ui>` `[dismissible]` forwarded + Show Closable demo fixed.
|
|
20
|
+
|
|
21
|
+
### Changed — `dist/everything.min.js` + `dist/shell/admin-shell.min.js` + `dist/icons-manifest.js` rebuilt
|
|
22
|
+
|
|
23
|
+
- Bundle pass absorbs Wave 1-4 component additions + many in-cycle fixes.
|
|
24
|
+
|
|
25
|
+
## [0.6.36] — 2026-05-24
|
|
26
|
+
|
|
27
|
+
### Added — Wave A+B+C+D module demos rebuilt via authoring v1.8.0 Mode 8
|
|
28
|
+
|
|
29
|
+
- **Wave A+B+C+D complete** (commit `fbe33e6af`): grandfather allowlist eliminated; all composite/module demos re-authored against the v1.8.0 §CompositeDemoAuthoring protocol. `billing-overview` (pilot, commit `15f3f1c65`), `invoice-history` (commit `721b9b4b5`), and downstream Wave demos all NAILED per the design-plan + canonical-anatomy + Pattern-source-cited discipline.
|
|
30
|
+
- **5 v0.6.35 module demos** authored (commit `1c7d2b7aa`); `date-range-picker` centered popover landed alongside.
|
|
31
|
+
|
|
32
|
+
### Fixed — `<payment-method-form>` self-bubbled-change infinite recursion guard
|
|
33
|
+
|
|
34
|
+
- **Commit `b5bca8779`**: `<payment-method-form>` previously re-emitted `change` events that bubbled back into its own handler, recursing until the event loop hit a stack-overflow. NEW guard short-circuits self-bubbled events. Vitest coverage added.
|
|
35
|
+
|
|
36
|
+
### Fixed — `<payment-method-list>` rows rewritten with `card-ui` native grammar
|
|
37
|
+
|
|
38
|
+
- **Commit `4e86400c9`**: list rows were nested raw `<div>` constructs that broke `card-ui` body-slot expectations under the OD-5 themability sweep. Rewritten using canonical `<card-ui><section>` row grammar.
|
|
39
|
+
|
|
40
|
+
### Fixed — `<billing-overview>` empty-state display + dashboard-layout minmax
|
|
41
|
+
|
|
42
|
+
- **`empty-state-ui` display override** (commit `4223a4147`) — outer container clobbered the flex layout; restored.
|
|
43
|
+
- **`<dashboard-layout>` minmax(min, 1fr) dropped** (commit `94d497557`) — container queries now manage responsive; minmax was fighting them.
|
|
44
|
+
- **Toolbar size mismatch** (commit `1298fb064`) — `<search-ui>` rendered taller than sibling buttons; aligned.
|
|
45
|
+
|
|
46
|
+
### Changed — `dist/everything.min.js` + `dist/shell/admin-shell.min.js` + `dist/icons-manifest.js` rebuilt
|
|
47
|
+
|
|
48
|
+
- Bundle pass absorbed the 21 web-components fixes + 31 web-modules updates landing this cycle.
|
|
49
|
+
|
|
3
50
|
## [0.6.35] — 2026-05-24
|
|
4
51
|
|
|
5
52
|
### Fixed — `<admin-shell>` warns at first click when `AdminSidebar` / `AdminCommand` is not registered (FB-55)
|