@usableapp/cardds 0.7.9 → 0.7.10

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 CHANGED
@@ -2,6 +2,12 @@
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.10 — 2026-09-25
6
+
7
+ ### Fixed
8
+ - A fill screen's bottom layer (a Walkthrough's dots · controls · CTA) has room above its first row: `padding-top`
9
+ `--sp-3` (knob `--action-bar-fill-pad-top`; was 0 — the dots touched the words scrolling under the layer).
10
+
5
11
  ## 0.7.9 — 2026-09-25
6
12
 
7
13
  ### Changed
package/css/step.css CHANGED
@@ -120,7 +120,9 @@
120
120
  position: absolute; inset-inline: 0; top: auto; bottom: var(--kb, 0rem);
121
121
  max-width: none;
122
122
  margin: 0;
123
- padding-top: 0;
123
+ /* room between its top edge and its first row (the walk's dots): since it has a ground, a 0 here put the dots against the words
124
+ running under it (Lh 2026-09-25) — the bar's own top padding */
125
+ padding-top: var(--action-bar-fill-pad-top, var(--sp-3));
124
126
  /* its GROUND (Lh 2026-09-24, timebank card 141 — was "no ground of its own"): words that run under the layer mid-scroll
125
127
  showed through the dots, the controls and the buttons. The layer lies on the screen's own surface now; a project sets
126
128
  another (or `transparent`, the old see-through) with the knob */
package/dist/cardds.css CHANGED
@@ -1723,7 +1723,9 @@ button { font: inherit; cursor: pointer; }
1723
1723
  position: absolute; inset-inline: 0; top: auto; bottom: var(--kb, 0rem);
1724
1724
  max-width: none;
1725
1725
  margin: 0;
1726
- padding-top: 0;
1726
+ /* room between its top edge and its first row (the walk's dots): since it has a ground, a 0 here put the dots against the words
1727
+ running under it (Lh 2026-09-25) — the bar's own top padding */
1728
+ padding-top: var(--action-bar-fill-pad-top, var(--sp-3));
1727
1729
  /* its GROUND (Lh 2026-09-24, timebank card 141 — was "no ground of its own"): words that run under the layer mid-scroll
1728
1730
  showed through the dots, the controls and the buttons. The layer lies on the screen's own surface now; a project sets
1729
1731
  another (or `transparent`, the old see-through) with the knob */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usableapp/cardds",
3
- "version": "0.7.9",
3
+ "version": "0.7.10",
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.",