@kolkrabbi/kol-shell 0.37.1 → 0.38.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/package.json +4 -4
- package/src/NavRail.jsx +29 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-shell",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.38.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "KOL application shell — fixed 48px NavRail + AppShell layout root, PageShell/PageHeader scaffolds, ContentFilters catalog organism, GridCard, SettingsScaffold, WalkthroughPanel, ShortcutsOverlay. App chrome (kol-framework owns site chrome). Nav items, content, shortcuts and settings are consumer-injected. Sits above @kolkrabbi/kol-{theme,component,framework}.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"react-dom": "^18.3.0 || ^19.0.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@kolkrabbi/kol-
|
|
24
|
-
"@kolkrabbi/kol-component": "^0.156.0",
|
|
23
|
+
"@kolkrabbi/kol-theme": "^0.123.0",
|
|
25
24
|
"@kolkrabbi/kol-icons": "^0.25.0",
|
|
26
|
-
"@kolkrabbi/kol-
|
|
25
|
+
"@kolkrabbi/kol-component": "^0.156.0",
|
|
26
|
+
"@kolkrabbi/kol-framework": "^0.36.0"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"src",
|
package/src/NavRail.jsx
CHANGED
|
@@ -119,7 +119,9 @@ function useRailDrag(railRef, grabRef, onSnap, snapRef, enabled = true) {
|
|
|
119
119
|
* a consumer setting `--kol-shell-rail-width` from outside widens the rail
|
|
120
120
|
* but leaves `railOpen` false, and the L2 rows render behind it: a wide,
|
|
121
121
|
* EMPTY rail, worse than the dead press this fixes. */
|
|
122
|
-
|
|
122
|
+
/* `(false)` closes, anything else opens — the same seam the L2 rows use
|
|
123
|
+
* to open, now also the tap opener's toggle */
|
|
124
|
+
if (snapRef) snapRef.current = (open = true) => snapTo(open === false ? CLOSED : openWidth())
|
|
123
125
|
const onDown = (e) => {
|
|
124
126
|
strip.setPointerCapture(e.pointerId)
|
|
125
127
|
gsap.killTweensOf(root)
|
|
@@ -295,7 +297,32 @@ export default function NavRail({
|
|
|
295
297
|
* zeroed in drawer mode so the content gets the whole viewport back. */
|
|
296
298
|
style={{ width: drawer ? 'var(--kol-shell-drawer-width, 240px)' : `var(${RAIL_W})` }}
|
|
297
299
|
>
|
|
298
|
-
{!drawer &&
|
|
300
|
+
{!drawer && (
|
|
301
|
+
/* A BUTTON, with a glyph a thumb can find (ShellRailCollapsedWithTapOpen,
|
|
302
|
+
* kol-mirror 2026-09-01 — user: "i means collapsed variant not
|
|
303
|
+
* expanded"): `touch="shell"` is the only mode that keeps the 48px rail
|
|
304
|
+
* visible, and its only opener was this 8px strip, invisible until a
|
|
305
|
+
* pointer HOVERED near it — a thumb never does, so on a phone the rail
|
|
306
|
+
* could not be opened at all. The strip already toggled on a click (a
|
|
307
|
+
* press with no travel); it just had no affordance and no hit area on
|
|
308
|
+
* touch. Under `(pointer: coarse)` the theme shows `.kol-rail-grab-tap`
|
|
309
|
+
* — a 24px disc on the line — and widens the strip to it; on a fine
|
|
310
|
+
* pointer nothing changes, the ruled grab stays. The drag hook binds
|
|
311
|
+
* pointer events, so a button works exactly as the div did, and it now
|
|
312
|
+
* says what it is. Enter/Space toggle for the keyboard. */
|
|
313
|
+
<button
|
|
314
|
+
type="button"
|
|
315
|
+
ref={grabRef}
|
|
316
|
+
className="kol-rail-grab"
|
|
317
|
+
aria-label={railOpen ? 'Collapse navigation' : 'Expand navigation'}
|
|
318
|
+
aria-expanded={railOpen}
|
|
319
|
+
onKeyDown={(e) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); snapOpenRef.current?.(!railOpen) } }}
|
|
320
|
+
>
|
|
321
|
+
<span className="kol-rail-grab-tap" aria-hidden="true">
|
|
322
|
+
<IconAt name={railOpen ? 'chevron-left' : 'chevron-right'} size={12} component={iconComponent} />
|
|
323
|
+
</span>
|
|
324
|
+
</button>
|
|
325
|
+
)}
|
|
299
326
|
{logomark && (
|
|
300
327
|
/* the mark, and the app name beside it when open — uppercase like the
|
|
301
328
|
* rows (user 2026-08-28: "uppercase CONSISTENCY"). The `w-8` centring box
|