@taprootio/espalier 3.1.0 → 3.2.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 +27 -0
- package/custom-elements.json +13674 -10749
- package/dist/box/esp-box.d.ts +10 -0
- package/dist/box/esp-box.js +4 -4
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/page/esp-page.d.ts +23 -7
- package/dist/page/esp-page.js +37 -10
- package/dist/root/esp-root.d.ts +24 -1
- package/dist/root/esp-root.js +3 -3
- package/dist/row/esp-row.d.ts +64 -0
- package/dist/row/esp-row.js +67 -0
- package/dist/section/esp-section.d.ts +55 -0
- package/dist/section/esp-section.js +22 -0
- package/dist/shared/esp-element-base.js +1 -1
- package/dist/shared/scale-engine.js +1 -1
- package/dist/shared/theme.d.ts +2 -1
- package/dist/shared/theme.js +1 -1
- package/dist/stack/esp-stack.d.ts +62 -0
- package/dist/stack/esp-stack.js +56 -0
- package/espalier.token-manifest.json +84 -1
- package/package.json +29 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# 3.2.0
|
|
2
|
+
|
|
3
|
+
Website-tier layout: the pieces a real marketing page proved were
|
|
4
|
+
missing (measured: a 297-line style block, 48% layout, none of it
|
|
5
|
+
novel).
|
|
6
|
+
|
|
7
|
+
- `esp-page kind="site"`: sections run edge to edge and the header,
|
|
8
|
+
footer, and every section well share one centered column via
|
|
9
|
+
`--esp-page-well-max-width` (default 72rem).
|
|
10
|
+
- `esp-section`: the full-bleed band with a centered well — and the
|
|
11
|
+
natural `context` zone host, with no card identity to neutralize.
|
|
12
|
+
Rhythm defaults to the new fluid `--esp-size-section` step.
|
|
13
|
+
- `esp-stack` and `esp-row`: column and wrapping-row flow with
|
|
14
|
+
space-scale gaps. Stacks stretch like block flow while slotted
|
|
15
|
+
buttons keep their natural width — the pairing a plain flex column
|
|
16
|
+
cannot express.
|
|
17
|
+
- Layout tokens: `--esp-measure` / `--esp-measure-wide`,
|
|
18
|
+
`--esp-size-section`, `--esp-shadow-1..3` (elevation; level 1 is
|
|
19
|
+
exactly the shadow `esp-box` always painted, now overridable via
|
|
20
|
+
`--esp-box-shadow`), and `--esp-card-min` for the auto-fit card-grid
|
|
21
|
+
recipe.
|
|
22
|
+
- `esp-root` accepts theme objects directly: `root.lightTheme = {...}`
|
|
23
|
+
/ `root.darkTheme = {...}` encode through the same pipeline as the
|
|
24
|
+
`light-theme` / `dark-theme` attributes.
|
|
25
|
+
- New export subpaths: `./section`, `./stack`, `./row`, and dedicated
|
|
26
|
+
entries for `./flyout`, `./progress`, `./toaster`, `./tooltip`.
|
|
27
|
+
|
|
1
28
|
# Changelog
|
|
2
29
|
|
|
3
30
|
All notable changes to the public `@taprootio/espalier` package are documented
|