@taprootio/espalier 2.5.0 → 2.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 +25 -0
- package/css/textures/banner-textures.css +26 -0
- package/css/textures/espalier-grain.png +0 -0
- package/css/textures/espalier-grunge.png +0 -0
- package/css/textures/espalier-paper.png +0 -0
- package/custom-elements.json +5583 -1218
- package/dist/focus-picker/esp-focus-picker.d.ts +77 -0
- package/dist/focus-picker/esp-focus-picker.js +129 -0
- 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 +37 -5
- package/dist/footer/esp-footer.js +19 -20
- package/dist/footer/index.d.ts +1 -0
- package/dist/footer/index.js +1 -1
- package/dist/image/esp-image.d.ts +225 -70
- package/dist/image/esp-image.js +408 -17
- package/dist/image/image-focus.d.ts +16 -0
- package/dist/image/image-focus.js +1 -0
- package/dist/image/image-texture-filters.js +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/root/esp-root.d.ts +59 -1
- package/dist/root/esp-root.js +2 -2
- package/dist/shared/bus-events.d.ts +12 -5
- package/dist/shared/esp-element-base.js +2 -2
- package/dist/shared/image-texture-registry.d.ts +45 -0
- package/dist/shared/image-texture-registry.js +1 -0
- package/dist/shared/root-event-subscription.js +1 -0
- package/dist/shared/visual-overlay.js +51 -0
- package/espalier.token-manifest.json +158 -2
- package/licenses/ASSET_PROVENANCE.md +3 -0
- package/licenses/asset-provenance.json +68 -1
- package/package.json +15 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,31 @@ 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.7.0 — Focal image banners and texture assets
|
|
9
|
+
|
|
10
|
+
- Add focal-point-aware banner rendering to `esp-image`, with responsive
|
|
11
|
+
ratios, content-positioned scrims, static procedural textures, semantic
|
|
12
|
+
overlay content, and resilience fallbacks.
|
|
13
|
+
- Add `esp-focus-picker` for pointer and keyboard focal authoring with live wide
|
|
14
|
+
and compact banner previews.
|
|
15
|
+
- Ship three deterministic first-party banner texture tiles, their convenience
|
|
16
|
+
stylesheet, public package subpaths, and provenance/reproducibility checks.
|
|
17
|
+
- Consolidate the footer decorative image and banner layers on one neutral
|
|
18
|
+
internal primitive without changing the footer's public styling contract.
|
|
19
|
+
|
|
20
|
+
## 2.6.0 — Scoped root events and explicit footer columns
|
|
21
|
+
|
|
22
|
+
- Add typed `esp-root.subscribeScoped()` subscriptions for scheme, seed color,
|
|
23
|
+
theme, and icon-sprite changes so nested preview roots cannot trigger handlers
|
|
24
|
+
owned by an outer application root.
|
|
25
|
+
- Make root theme events change-only: mounting a root establishes initial state
|
|
26
|
+
without broadcasting global theme events.
|
|
27
|
+
- Clean up the shared document-click bridge and correlation-owned runtime Google
|
|
28
|
+
Font links across root disconnect/reconnect cycles.
|
|
29
|
+
- Add `esp-footer-column` for creator-controlled stacks of footer link groups,
|
|
30
|
+
including ordered compact-container stacking without changing bare-group
|
|
31
|
+
auto-flow.
|
|
32
|
+
|
|
8
33
|
## 2.5.0 — Published-site header and branding contracts
|
|
9
34
|
|
|
10
35
|
- Export the `esp-header` option unions and normalize unsupported attribute or
|