@taprootio/espalier 2.12.1 → 2.13.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 +33 -0
- package/custom-elements.json +1115 -1099
- package/dist/page/esp-page.d.ts +27 -13
- package/dist/page/esp-page.js +79 -41
- package/espalier.token-manifest.json +13 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,39 @@ 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.13.1 — Workspace allocation and centering
|
|
9
|
+
|
|
10
|
+
- Honor an explicit finite `--esp-page-main-max-width` on `kind="full"` pages.
|
|
11
|
+
- Allocate configured auxiliary defaults and retained resize preferences through
|
|
12
|
+
the same contraction-first responsive path.
|
|
13
|
+
- Contract automatic defaults against natural spare canvas without reclaiming
|
|
14
|
+
main merely to preserve them. Re-clamp a retained user choice monotonically
|
|
15
|
+
to the complete capacity available down to main's minimum instead of changing
|
|
16
|
+
policy at the minimum-fit threshold.
|
|
17
|
+
- Cap and center the complete main, preview, and in-grid help workspace on
|
|
18
|
+
ultra-wide centered layouts.
|
|
19
|
+
|
|
20
|
+
Migration: an explicit `--esp-page-main-max-width` now caps a `kind="full"`
|
|
21
|
+
page. Consumers that previously relied on `kind="full"` to ignore a shared main
|
|
22
|
+
maximum should unset that token on the full page.
|
|
23
|
+
|
|
24
|
+
## 2.13.0 — Default page workspace widths
|
|
25
|
+
|
|
26
|
+
- Add `--esp-page-preview-default-width` and
|
|
27
|
+
`--esp-page-flyout-default-width` as independent, min/max-clamped automatic
|
|
28
|
+
allocation targets without changing the legacy fixed-width aliases or the
|
|
29
|
+
established allocation when the new tokens are unset.
|
|
30
|
+
- Shrink defaulted help and preview widths toward their independent minimums,
|
|
31
|
+
in help-before-preview order, before reclaiming the main well. Apply the same
|
|
32
|
+
behavior to preview-only and help-only layouts while retaining the existing
|
|
33
|
+
minimum-fit preview hiding and help overlay ladder.
|
|
34
|
+
- Keep pointer and keyboard resize preferences authoritative over configured
|
|
35
|
+
defaults, with the existing responsive clamping, hiding, overlay recovery,
|
|
36
|
+
restoration, and independent min/max resize travel.
|
|
37
|
+
- Document the new API and add unit and browser coverage for default bounds,
|
|
38
|
+
contraction, one-pane allocation, preference precedence, responsive
|
|
39
|
+
restoration, legacy aliases, and the unset-token fallback.
|
|
40
|
+
|
|
8
41
|
## 2.12.1 — URL help flyout fixes
|
|
9
42
|
|
|
10
43
|
- Change contextual help flyouts to the normalized document title when “View
|