@taprootio/espalier 2.4.0 → 2.6.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 +22 -0
- package/custom-elements.json +20111 -17330
- package/dist/footer/esp-footer-column.d.ts +47 -0
- package/dist/footer/esp-footer-column.js +8 -0
- package/dist/footer/esp-footer.d.ts +67 -6
- package/dist/footer/esp-footer.js +22 -11
- package/dist/footer/index.d.ts +1 -0
- package/dist/footer/index.js +1 -1
- package/dist/header/esp-header.d.ts +59 -6
- package/dist/header/esp-header.js +13 -14
- package/dist/root/esp-root.d.ts +39 -1
- package/dist/root/esp-root.js +2 -2
- package/dist/shared/bus-events.d.ts +12 -5
- package/dist/shared/configured-brand.js +4 -4
- package/dist/shared/esp-element-base.js +2 -2
- package/dist/shared/events.d.ts +7 -0
- package/dist/shared/events.js +1 -1
- package/dist/shared/root-event-subscription.js +1 -0
- package/espalier.token-manifest.json +1 -1
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,28 @@ here. This file ships in the published npm package. It is a curated public
|
|
|
5
5
|
record and intentionally does not mirror the private `taproot-controls`
|
|
6
6
|
development history.
|
|
7
7
|
|
|
8
|
+
## 2.6.0 — Scoped root events and explicit footer columns
|
|
9
|
+
|
|
10
|
+
- Add typed `esp-root.subscribeScoped()` subscriptions for scheme, seed color,
|
|
11
|
+
theme, and icon-sprite changes so nested preview roots cannot trigger handlers
|
|
12
|
+
owned by an outer application root.
|
|
13
|
+
- Make root theme events change-only: mounting a root establishes initial state
|
|
14
|
+
without broadcasting global theme events.
|
|
15
|
+
- Clean up the shared document-click bridge and correlation-owned runtime Google
|
|
16
|
+
Font links across root disconnect/reconnect cycles.
|
|
17
|
+
- Add `esp-footer-column` for creator-controlled stacks of footer link groups,
|
|
18
|
+
including ordered compact-container stacking without changing bare-group
|
|
19
|
+
auto-flow.
|
|
20
|
+
|
|
21
|
+
## 2.5.0 — Published-site header and branding contracts
|
|
22
|
+
|
|
23
|
+
- Export the `esp-header` option unions and normalize unsupported attribute or
|
|
24
|
+
property values to their documented reflected defaults.
|
|
25
|
+
- Add light/dark configured logos and brand colors to `esp-header` and
|
|
26
|
+
`esp-footer`, with reactive scheme selection and generic fallbacks.
|
|
27
|
+
- Emit `esp-theme-toggle` only when a visitor activates the header's built-in
|
|
28
|
+
theme control, allowing hosts to persist explicit choices safely.
|
|
29
|
+
|
|
8
30
|
## 2.4.0 — Customizable footer and page-shell refinements
|
|
9
31
|
|
|
10
32
|
- Add `esp-footer` and `esp-footer-link-group` with responsive brand, media,
|