@usableapp/cardds 0.7.17 → 0.7.18
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 +5 -0
- package/css/step.css +4 -2
- package/dist/cardds.css +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
> For: a project that consumes `@usableapp/cardds` and its AI — what changed between versions, written as before → after, so a screen can be brought up to date without reading the source. Newest first. A consumer never edits cardds; if something here leaves you without a way to do what you did before, report the gap.
|
|
4
4
|
|
|
5
|
+
## 0.7.18 — 2026-09-27
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- A lone `Page` in a `Step` on a fill `Screen` with a `bottom` now ends with the bottom layer's room (`--bottom-h`), as a walk's page always did. Before: its last words (a closing `Link`) lay under the `ActionBar` and could not be tapped (timebank onboard-04, 2026-09-24). Now: the page scrolls only when the layer would cover its words, just far enough to clear them; with no bottom nothing moves. Nothing to change in a screen.
|
|
9
|
+
|
|
5
10
|
## 0.7.17 — 2026-09-27
|
|
6
11
|
|
|
7
12
|
Second refactor pass (what the first skipped). Most of it is internal; these can touch a screen:
|
package/css/step.css
CHANGED
|
@@ -91,8 +91,10 @@
|
|
|
91
91
|
overscroll-behavior: contain;
|
|
92
92
|
}
|
|
93
93
|
/* a lone .page carries the margin a walk's .pages does not (its own .page children do, below) —
|
|
94
|
-
the screen's gap, moved in here from above the step; the inset, taken back from the bleed
|
|
95
|
-
|
|
94
|
+
the screen's gap, moved in here from above the step; the inset, taken back from the bleed.
|
|
95
|
+
It ends with the bottom layer's room, as a walk's page does: it scrolls only when the layer would cover its words
|
|
96
|
+
(timebank onboard-04, 2026-09-27 — its last Link lay under the bar; Lh: same rule as the walk) */
|
|
97
|
+
.step > .page { margin: var(--_lead, 0) var(--screen-pad) 0; padding-bottom: var(--bottom-h, 0rem); }
|
|
96
98
|
|
|
97
99
|
/* a WALK (Pages of Page) — Lh 2026-09-23, third call: no top; the picture and the words are ONE run that scrolls up together
|
|
98
100
|
(the picture is never pinned). Each page starts at the screen's lead and ends with the same room under it — the lead as
|
package/dist/cardds.css
CHANGED
|
@@ -1787,8 +1787,10 @@ button:enabled { cursor: pointer; } /* a disabled one keeps the arrow */
|
|
|
1787
1787
|
overscroll-behavior: contain;
|
|
1788
1788
|
}
|
|
1789
1789
|
/* a lone .page carries the margin a walk's .pages does not (its own .page children do, below) —
|
|
1790
|
-
the screen's gap, moved in here from above the step; the inset, taken back from the bleed
|
|
1791
|
-
|
|
1790
|
+
the screen's gap, moved in here from above the step; the inset, taken back from the bleed.
|
|
1791
|
+
It ends with the bottom layer's room, as a walk's page does: it scrolls only when the layer would cover its words
|
|
1792
|
+
(timebank onboard-04, 2026-09-27 — its last Link lay under the bar; Lh: same rule as the walk) */
|
|
1793
|
+
.step > .page { margin: var(--_lead, 0) var(--screen-pad) 0; padding-bottom: var(--bottom-h, 0rem); }
|
|
1792
1794
|
|
|
1793
1795
|
/* a WALK (Pages of Page) — Lh 2026-09-23, third call: no top; the picture and the words are ONE run that scrolls up together
|
|
1794
1796
|
(the picture is never pinned). Each page starts at the screen's lead and ends with the same room under it — the lead as
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usableapp/cardds",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.18",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "card-first mobile design system, React-first: the components in src/ are thin wrappers over the CSS contract (css/*.css stays the only truth); gallery/ shows every story live (npm run dev), tests/ measures the geometry.",
|