@taprootio/espalier 4.10.0 → 4.12.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 +14 -0
- package/custom-elements.json +13640 -12174
- package/dist/image-picker/esp-image-picker.d.ts +97 -0
- package/dist/image-picker/esp-image-picker.js +74 -0
- package/dist/image-upload/esp-image-upload.d.ts +7 -0
- package/dist/image-upload/esp-image-upload.js +29 -29
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/pickers/esp-pick-one.js +4 -3
- package/dist/pickers/esp-picker-base.js +3 -3
- package/dist/pickers/esp-picker-menu.js +9 -9
- package/dist/shared/events.d.ts +5 -0
- package/dist/shared/justified-layout.d.ts +60 -0
- package/dist/shared/justified-layout.js +1 -1
- package/espalier.css-data.json +12 -0
- package/espalier.token-manifest.json +18 -0
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# 4.12.0
|
|
2
|
+
|
|
3
|
+
Image selections can now use a reusable, accessible image picker.
|
|
4
|
+
|
|
5
|
+
- `esp-image-picker` presents large uncropped image choices with optional labels, a large selected-image preview above the control by default (or a compact beside layout), an Automatic choice, loading and empty states, and form participation while reporting the selected image ID through `esp-value-changed`.
|
|
6
|
+
|
|
7
|
+
# 4.11.0
|
|
8
|
+
|
|
9
|
+
Album previews support taller justified rows and restrained partial rows.
|
|
10
|
+
|
|
11
|
+
- Configure maximum album row height as a percentage of the viewport, defaulting to 90%.
|
|
12
|
+
- Fill completed rows across the available width; preserve partial-row photo proportions without enlarging them beyond earlier rows.
|
|
13
|
+
- Share explicit album cell geometry with published gallery consumers and update it on viewport resize.
|
|
14
|
+
|
|
1
15
|
# 4.10.0
|
|
2
16
|
|
|
3
17
|
Photo galleries can keep preview rows compact and predictable.
|