@taprootio/espalier 2.3.0 → 2.4.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 +30 -0
- package/custom-elements.json +7707 -5044
- package/dist/breadcrumbs/esp-breadcrumbs.d.ts +1 -1
- package/dist/breadcrumbs/esp-breadcrumbs.js +6 -9
- package/dist/button/action-state-lightness.js +1 -0
- package/dist/button/esp-button.js +22 -10
- package/dist/data-cell/esp-data-cell.js +1 -1
- package/dist/footer/esp-footer-link-group.d.ts +40 -0
- package/dist/footer/esp-footer-link-group.js +57 -0
- package/dist/footer/esp-footer.d.ts +186 -0
- package/dist/footer/esp-footer.js +300 -0
- package/dist/footer/index.d.ts +2 -0
- package/dist/footer/index.js +1 -0
- package/dist/header/esp-header.js +10 -11
- package/dist/image/esp-image.js +8 -8
- package/dist/image/image-dimensions.js +1 -0
- package/dist/image-upload/esp-image-upload.js +20 -22
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/lightbox/esp-lightbox.d.ts +4 -3
- package/dist/lightbox/esp-lightbox.js +250 -235
- package/dist/menu/esp-menu.d.ts +14 -1
- package/dist/menu/esp-menu.js +3 -4
- package/dist/page/esp-page.d.ts +9 -6
- package/dist/page/esp-page.js +33 -11
- package/dist/progress/esp-progress.d.ts +2 -1
- package/dist/progress/esp-progress.js +13 -7
- package/dist/shared/configured-brand.js +4 -0
- package/dist/shared/slot-content.js +1 -0
- package/dist/slider/esp-slider.js +2 -2
- package/espalier.token-manifest.json +146 -2
- package/package.json +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,36 @@ 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.4.0 — Customizable footer and page-shell refinements
|
|
9
|
+
|
|
10
|
+
- Add `esp-footer` and `esp-footer-link-group` with responsive brand, media,
|
|
11
|
+
link-group, aside, bottom, background-pattern, and large-image regions.
|
|
12
|
+
- Align footer content to `esp-page` surfaces while keeping footer backgrounds
|
|
13
|
+
full-bleed, with an explicit full-bleed content opt-out.
|
|
14
|
+
- Keep expanded inline sidebar navigation reachable through ordinary document
|
|
15
|
+
scrolling instead of requiring a separate pointer-hovered rail scroller.
|
|
16
|
+
|
|
17
|
+
### Migration note
|
|
18
|
+
|
|
19
|
+
Inline `esp-menu mode="vertical"` rails no longer cap themselves to the
|
|
20
|
+
viewport or create an internal vertical scroller. This lets page shells move a
|
|
21
|
+
tall rail naturally as the document scrolls. Standalone menus in fixed-height
|
|
22
|
+
or overflow-hidden shells can retain the old bounded presentation by setting
|
|
23
|
+
`max-height` and `overflow-y: auto` on the `esp-menu` host.
|
|
24
|
+
|
|
25
|
+
## 2.3.1 — Lightbox reliability and semantic contrast
|
|
26
|
+
|
|
27
|
+
- Keep projected lightbox images constrained across repeated close and reopen
|
|
28
|
+
cycles, including projected `<picture>` and bare `<img>` sources.
|
|
29
|
+
- Size portrait, landscape, square, and panoramic lightbox images explicitly to
|
|
30
|
+
their largest contained box and advertise the visible width to responsive
|
|
31
|
+
image selection across viewport changes.
|
|
32
|
+
- Keep lightbox focus, scroll locking, observers, captions, and gallery
|
|
33
|
+
navigation synchronized across lifecycle and source-gallery changes.
|
|
34
|
+
- Increase the default contrast of breadcrumb separators, image-upload drop
|
|
35
|
+
boundaries, and progress fills in light and dark themes while preserving
|
|
36
|
+
public CSS overrides.
|
|
37
|
+
|
|
8
38
|
## 2.0.0 — Initial public release
|
|
9
39
|
|
|
10
40
|
The first public release of Espalier, Taproot's enterprise-grade web component
|