@adia-ai/web-modules 0.6.32 → 0.6.33
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 +6 -0
- package/dist/everything.min.js +31 -31
- package/dist/icons-manifest.js +9091 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog — @adia-ai/web-modules
|
|
2
2
|
|
|
3
|
+
## [0.6.33] — 2026-05-23
|
|
4
|
+
|
|
5
|
+
### Fixed — CDN icons-manifest now co-shipped in `web-modules/dist/` (FB-53 §1)
|
|
6
|
+
|
|
7
|
+
- **`packages/web-modules/dist/everything.min.js` does `import("./icons-manifest.js")`** as the non-Vite (CDN) icons fallback. The relative spec resolves to `web-modules@X/dist/icons-manifest.js` against the bundle's own module URL — but the manifest only shipped in `web-components/dist/`, producing a 404 for every CDN consumer using the canonical three-tag bootstrap. Symptom: `<search-ui>` rendered the literal text `magnifying-glass Search…` instead of the icon; `<select-ui>` chevrons rendered as 0×0 elements. Fix: `scripts/build/bundle-js.mjs` `generateIconsManifest()` now writes the manifest to BOTH `packages/web-components/dist/icons-manifest.js` AND `packages/web-modules/dist/icons-manifest.js` (byte-identical 256 KB output). `web-modules/package.json` `files:` already includes `dist/`, so tarball pickup is automatic. CDN consumers on v0.6.33+ no longer need the importmap workaround documented for ≤ v0.6.32. Files: `scripts/build/bundle-js.mjs`, `packages/web-modules/dist/icons-manifest.js` (new file).
|
|
8
|
+
|
|
3
9
|
## [0.6.32] — 2026-05-23
|
|
4
10
|
|
|
5
11
|
### Fixed (P0) — `[data-col]` / `[data-row]` / `[data-grid]` global CSS collision closed
|