@taprootio/espalier 2.3.0 → 2.3.1
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 +13 -0
- package/custom-elements.json +3028 -2087
- 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/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/lightbox/esp-lightbox.d.ts +4 -3
- package/dist/lightbox/esp-lightbox.js +250 -235
- package/dist/progress/esp-progress.d.ts +2 -1
- package/dist/progress/esp-progress.js +13 -7
- package/espalier.token-manifest.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ 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.3.1 — Lightbox reliability and semantic contrast
|
|
9
|
+
|
|
10
|
+
- Keep projected lightbox images constrained across repeated close and reopen
|
|
11
|
+
cycles, including projected `<picture>` and bare `<img>` sources.
|
|
12
|
+
- Size portrait, landscape, square, and panoramic lightbox images explicitly to
|
|
13
|
+
their largest contained box and advertise the visible width to responsive
|
|
14
|
+
image selection across viewport changes.
|
|
15
|
+
- Keep lightbox focus, scroll locking, observers, captions, and gallery
|
|
16
|
+
navigation synchronized across lifecycle and source-gallery changes.
|
|
17
|
+
- Increase the default contrast of breadcrumb separators, image-upload drop
|
|
18
|
+
boundaries, and progress fills in light and dark themes while preserving
|
|
19
|
+
public CSS overrides.
|
|
20
|
+
|
|
8
21
|
## 2.0.0 — Initial public release
|
|
9
22
|
|
|
10
23
|
The first public release of Espalier, Taproot's enterprise-grade web component
|