@adia-ai/web-components 0.8.1 → 0.8.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
@@ -1,4 +1,14 @@
1
1
  # Changelog — @adia-ai/web-components
2
+ ## [0.8.2] — 2026-07-16
3
+
4
+ ### Fixed
5
+ - **`button-ui` label ellipsis could never fire** (`components/button/button.css`): `white-space: nowrap` made the `[text]` label part of the button's min-content, so content-sized contexts (flex column cross-axis, row items, grid auto tracks) grew the whole button past its container instead of shrinking the label. `max-width: 100%` on the host caps it (the `img { max-width: 100% }` class of rule); the `::after` ellipsis rules now actually reach. Verified live on the deployed long-text demo before landing. Known residue: child-text buttons clip without an ellipsis (CSS can't reach anonymous text nodes) — the yaml already steers to `text=`.
6
+
7
+ ### Added
8
+ - **`MIGRATION.md` ships in the tarball** — a generated, CI-gated copy of the framework's migration guide, so consumer repos can read the breaking-change/sweep/verify recipes for exactly the version they installed (`node_modules/@adia-ai/web-components/MIGRATION.md`). Previously the guide existed only inside the framework monorepo.
9
+
10
+ ### Maintenance
11
+ - **`dist/` CSS-carrying bundles rebuilt** for the button fix (`web-components.min.css`, `web-components.sheet.js`, `theme-provider.min.js`).
2
12
  ## [0.8.1] — 2026-07-15
3
13
 
4
14
  ### Added