@taprootio/espalier 4.13.2 → 4.14.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 +25 -0
- package/custom-elements.json +3163 -2988
- package/dist/info/esp-info.js +9 -6
- package/dist/page/esp-page.styles.js +2 -1
- package/dist/repeater/esp-repeater.d.ts +88 -9
- package/dist/repeater/esp-repeater.js +67 -17
- package/dist/status-indicator/esp-status-indicator.js +3 -0
- package/dist/tooltip/esp-tooltip.js +6 -3
- package/espalier.css-data.json +3 -3
- package/espalier.token-manifest.json +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# 4.14.1
|
|
2
|
+
|
|
3
|
+
Page motion and floating feedback retain their intended layout in real pages.
|
|
4
|
+
|
|
5
|
+
- Preserve document-driven scroll timelines through the page content well.
|
|
6
|
+
- Keep info icons inside rounded notice corners without clipping content.
|
|
7
|
+
- Wrap tooltip and status-indicator help independently of grid cell whitespace.
|
|
8
|
+
|
|
9
|
+
# 4.14.0
|
|
10
|
+
|
|
11
|
+
The repeater packs uneven cards into masonry columns, and page-scroll paging no
|
|
12
|
+
longer snaps the window back to the top.
|
|
13
|
+
|
|
14
|
+
- `esp-repeater` gains `layout="masonry"`: cards keep their order and flow into
|
|
15
|
+
the same responsive column count as `grid` (`grid-columns` and
|
|
16
|
+
`--esp-repeater-grid-columns`), but each card takes only the height it needs
|
|
17
|
+
and the next card starts directly under the shortest column, so portrait and
|
|
18
|
+
landscape images no longer leave blank space beside each other. Masonry
|
|
19
|
+
keeps every loaded item in the DOM and pages from the trailing cards, so pair
|
|
20
|
+
it with cursor paging for large collections.
|
|
21
|
+
|
|
22
|
+
- In `scroll-model="page"`, loading the next page no longer collapses the list
|
|
23
|
+
for a frame; the window keeps its scroll position instead of jumping to the
|
|
24
|
+
top when new items arrive.
|
|
25
|
+
|
|
1
26
|
# 4.13.2
|
|
2
27
|
|
|
3
28
|
Fullscreen mobile navigation keeps its close control within reach, and published
|