@usableapp/cardds 0.7.5 → 0.7.6
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 +8 -0
- package/css/sheet.css +2 -2
- package/css/step.css +5 -1
- package/dist/cardds.css +7 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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.6 — 2026-09-24
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- The bottom layer of a `Screen fill` (the `ActionBar` — a Walkthrough's dots, controls, CTA row and link) now lies on
|
|
9
|
+
the screen's surface. Before: it had no ground, so long words scrolling under it mid-scroll showed through and could
|
|
10
|
+
not be read. Knob `--action-bar-bg` (default `var(--surface)`; `transparent` = the old see-through).
|
|
11
|
+
- `SheetSteps`: the cursor holder field's size is `1rem` (was 16px); no raw px left in sheet.css.
|
|
12
|
+
|
|
5
13
|
## 0.7.5 — 2026-09-24
|
|
6
14
|
|
|
7
15
|
### Errors in a form (new)
|
package/css/sheet.css
CHANGED
|
@@ -380,8 +380,8 @@
|
|
|
380
380
|
bottom of the body, each its title line. Every step has a thin rule on top. A step opens and folds as a 1fr ↔ 0fr grid row, so the pile rises and
|
|
381
381
|
falls — no height is written. Nothing fades: done and next read at full ink. */
|
|
382
382
|
.sheet__body:has(> .sheet-steps) { display: flex; flex-direction: column; }
|
|
383
|
-
.sheet-steps { flex-shrink: 0; min-height: calc(100% + var(--kb,
|
|
384
|
-
.sheet-steps__holder { position: absolute; top: 0; left: 0; width: 1px; height: 1px; padding: 0; border: 0; opacity: 0; pointer-events: none; font-size:
|
|
383
|
+
.sheet-steps { flex-shrink: 0; min-height: calc(100% + var(--kb, 0rem)); /* the keyboard's height more: the pile of next steps stays under the keyboard, it never rises with it */ display: flex; flex-direction: column; touch-action: pan-y; }
|
|
384
|
+
.sheet-steps__holder { position: absolute; top: 0; left: 0; width: 1px; height: 1px; padding: 0; border: 0; opacity: 0; pointer-events: none; font-size: 1rem; } /* holds the cursor (and the phone's keyboard) while a step folds; 1rem (16px at the browser's size) so iOS does not zoom to it */
|
|
385
385
|
.sheet-steps { position: relative; }
|
|
386
386
|
.sheet-steps__track { list-style: none; margin: 0; padding: 0; flex: 1; display: flex; flex-direction: column; }
|
|
387
387
|
|
package/css/step.css
CHANGED
|
@@ -120,7 +120,11 @@
|
|
|
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
|
+
padding-top: 0;
|
|
124
|
+
/* its GROUND (Lh 2026-09-24, timebank card 141 — was "no ground of its own"): words that run under the layer mid-scroll
|
|
125
|
+
showed through the dots, the controls and the buttons. The layer lies on the screen's own surface now; a project sets
|
|
126
|
+
another (or `transparent`, the old see-through) with the knob */
|
|
127
|
+
background: var(--action-bar-bg, var(--surface));
|
|
124
128
|
}
|
|
125
129
|
/* the walk's dots are the BOTTOM layer's too (Lh 2026-09-23): a row of the bar, over its buttons, centred */
|
|
126
130
|
.action-bar > .pager__at, .action-bar__tier > .pager__at { align-self: center; }
|
package/dist/cardds.css
CHANGED
|
@@ -1557,8 +1557,8 @@ button { font: inherit; cursor: pointer; }
|
|
|
1557
1557
|
bottom of the body, each its title line. Every step has a thin rule on top. A step opens and folds as a 1fr ↔ 0fr grid row, so the pile rises and
|
|
1558
1558
|
falls — no height is written. Nothing fades: done and next read at full ink. */
|
|
1559
1559
|
.sheet__body:has(> .sheet-steps) { display: flex; flex-direction: column; }
|
|
1560
|
-
.sheet-steps { flex-shrink: 0; min-height: calc(100% + var(--kb,
|
|
1561
|
-
.sheet-steps__holder { position: absolute; top: 0; left: 0; width: 1px; height: 1px; padding: 0; border: 0; opacity: 0; pointer-events: none; font-size:
|
|
1560
|
+
.sheet-steps { flex-shrink: 0; min-height: calc(100% + var(--kb, 0rem)); /* the keyboard's height more: the pile of next steps stays under the keyboard, it never rises with it */ display: flex; flex-direction: column; touch-action: pan-y; }
|
|
1561
|
+
.sheet-steps__holder { position: absolute; top: 0; left: 0; width: 1px; height: 1px; padding: 0; border: 0; opacity: 0; pointer-events: none; font-size: 1rem; } /* holds the cursor (and the phone's keyboard) while a step folds; 1rem (16px at the browser's size) so iOS does not zoom to it */
|
|
1562
1562
|
.sheet-steps { position: relative; }
|
|
1563
1563
|
.sheet-steps__track { list-style: none; margin: 0; padding: 0; flex: 1; display: flex; flex-direction: column; }
|
|
1564
1564
|
|
|
@@ -1712,7 +1712,11 @@ button { font: inherit; cursor: pointer; }
|
|
|
1712
1712
|
position: absolute; inset-inline: 0; top: auto; bottom: var(--kb, 0rem);
|
|
1713
1713
|
max-width: none;
|
|
1714
1714
|
margin: 0;
|
|
1715
|
-
padding-top: 0;
|
|
1715
|
+
padding-top: 0;
|
|
1716
|
+
/* its GROUND (Lh 2026-09-24, timebank card 141 — was "no ground of its own"): words that run under the layer mid-scroll
|
|
1717
|
+
showed through the dots, the controls and the buttons. The layer lies on the screen's own surface now; a project sets
|
|
1718
|
+
another (or `transparent`, the old see-through) with the knob */
|
|
1719
|
+
background: var(--action-bar-bg, var(--surface));
|
|
1716
1720
|
}
|
|
1717
1721
|
/* the walk's dots are the BOTTOM layer's too (Lh 2026-09-23): a row of the bar, over its buttons, centred */
|
|
1718
1722
|
.action-bar > .pager__at, .action-bar__tier > .pager__at { align-self: center; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usableapp/cardds",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.6",
|
|
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.",
|