@kolkrabbi/kol-shell 0.32.0 → 0.34.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 +3 -3
- package/src/AppShell.jsx +6 -2
- package/src/CatalogPage.jsx +13 -1
- package/src/NavRail.jsx +6 -1
- package/src/SettingsShortcuts.jsx +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-shell",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.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-component": "^0.
|
|
23
|
+
"@kolkrabbi/kol-component": "^0.152.0",
|
|
24
24
|
"@kolkrabbi/kol-icons": "^0.25.0",
|
|
25
25
|
"@kolkrabbi/kol-framework": "^0.36.0",
|
|
26
|
-
"@kolkrabbi/kol-theme": "^0.
|
|
26
|
+
"@kolkrabbi/kol-theme": "^0.120.0"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"src",
|
package/src/AppShell.jsx
CHANGED
|
@@ -293,10 +293,14 @@ export default function AppShell({
|
|
|
293
293
|
/>
|
|
294
294
|
)}
|
|
295
295
|
{drawer && drawerOpen && (
|
|
296
|
-
|
|
296
|
+
/* A BUTTON, not a div (the OverlayScrimTapDismiss line, 2026-09-01):
|
|
297
|
+
* iOS Safari does not bubble tap-clicks from non-interactive elements,
|
|
298
|
+
* and this scrim exists ONLY on touch devices. */
|
|
299
|
+
<button
|
|
300
|
+
type="button"
|
|
301
|
+
aria-label="Close navigation"
|
|
297
302
|
className="kol-shell-drawer-scrim"
|
|
298
303
|
onClick={() => setDrawerOpen(false)}
|
|
299
|
-
aria-hidden="true"
|
|
300
304
|
/>
|
|
301
305
|
)}
|
|
302
306
|
{!navHidden && (
|
package/src/CatalogPage.jsx
CHANGED
|
@@ -111,8 +111,20 @@ export default function CatalogPage({
|
|
|
111
111
|
if (open) return null
|
|
112
112
|
const cards = rows.map((item) => toCard ? toCard(item, { view: viewMode, layout }) : { title: item.title ?? item.name, detail: item.detail })
|
|
113
113
|
const hidden = layout === 'list' ? new Set() : computeHiddenSet(rows, cards.findIndex((c) => c.expanded))
|
|
114
|
+
/* COLS IS A CEILING, NOT A COMMAND (CatalogPageMobileColumns,
|
|
115
|
+
* kol-monitor 2026-09-01) — the third home of the defect
|
|
116
|
+
* ContentCollectionMinColumnWidth and ContentGridMinColumnWidth
|
|
117
|
+
* closed, unreachable by either because this grid is drawn inline.
|
|
118
|
+
* `repeat(6, 1fr)` computed six 29px slivers at 390. Same idiom as
|
|
119
|
+
* ContentCollection:144 — up to 6 (grid) / 4 (list) columns, and a
|
|
120
|
+
* track may not go under the floor (160 grid / 240 list) nor demand
|
|
121
|
+
* more than the container. At monitor's desktop widths the sixth-
|
|
122
|
+
* share clears the floor, so nothing moves there. NB the 2×2
|
|
123
|
+
* expanded-card neighbour math (computeHiddenSet) stays a
|
|
124
|
+
* six-column ruling — below the ceiling the hide-set is
|
|
125
|
+
* desktop-only geometry. */
|
|
114
126
|
return (
|
|
115
|
-
<div style={{ display: 'grid', gridTemplateColumns: layout === 'list' ? 'repeat(4, 1fr)' : 'repeat(6, 1fr)', gap: layout === 'list' ? 8 : 24 }}>
|
|
127
|
+
<div style={{ display: 'grid', gridTemplateColumns: layout === 'list' ? 'repeat(auto-fill, minmax(min(100%, max(240px, calc((100% - 3 * 8px) / 4))), 1fr))' : 'repeat(auto-fill, minmax(min(100%, max(160px, calc((100% - 5 * 24px) / 6))), 1fr))', gap: layout === 'list' ? 8 : 24 }}>
|
|
116
128
|
{rows.map((item, i) => {
|
|
117
129
|
if (hidden.has(i)) return null
|
|
118
130
|
const c = cards[i]
|
package/src/NavRail.jsx
CHANGED
|
@@ -285,7 +285,12 @@ export default function NavRail({
|
|
|
285
285
|
return (
|
|
286
286
|
<div
|
|
287
287
|
ref={railRef}
|
|
288
|
-
|
|
288
|
+
/* drawer mode pins RIGHT (ShellDrawerOnRight, kol-chess 2026-09-01, user
|
|
289
|
+
* ruling): a left drawer put the open close-X mid-screen; on the right
|
|
290
|
+
* the trigger and the X share the top-right corner at the screen edge.
|
|
291
|
+
* The theme's off-canvas transform is +100% to match. Desktop rail
|
|
292
|
+
* unchanged. */
|
|
293
|
+
className={`kol-shell-rail bg-surface-primary fixed inset-y-0 flex flex-col items-start pt-4 pb-4 px-2 gap-2 ${drawer ? 'right-0 border-l' : 'left-0 border-r'} border-fg-08`}
|
|
289
294
|
/* A drawer takes its own width, NOT the live rail token — that token is
|
|
290
295
|
* zeroed in drawer mode so the content gets the whole viewport back. */
|
|
291
296
|
style={{ width: drawer ? 'var(--kol-shell-drawer-width, 240px)' : `var(${RAIL_W})` }}
|
|
@@ -15,6 +15,12 @@ import { SettingsRow } from '@kolkrabbi/kol-component'
|
|
|
15
15
|
* token by nature — the value cell is `whitespace-nowrap` and the label yields
|
|
16
16
|
* (SettingsShortcutsComboWrap, kol-monitor 2026-08-27: `⌘ K` broke as `⌘` over
|
|
17
17
|
* `K` in the six-column grid — the cell was squeezed to min-content, not full).
|
|
18
|
+
* `labelWidth="auto"` is what MAKES the label yield
|
|
19
|
+
* (SettingsShortcutsComboOverflow, kol-monitor 2026-09-01): the row's default
|
|
20
|
+
* is a fixed 160px label, which in this grid's ~176px columns left the combo
|
|
21
|
+
* cell 4px — every combo was painting into the 48px column gap, and the first
|
|
22
|
+
* one longer than the gap (`⌥ then 1–5`) reached the neighbour's labels. The
|
|
23
|
+
* label truncates, the combo hugs, an over-long combo clips at the column edge.
|
|
18
24
|
*
|
|
19
25
|
* @param {Array} sections `[{ section, items: [{ id, label, combo }] }]`
|
|
20
26
|
* @param {Function} comboLabel (combo) => string (default: the combo as given)
|
|
@@ -26,7 +32,7 @@ export default function SettingsShortcuts({ sections = [], comboLabel = (c) => c
|
|
|
26
32
|
<div key={section} style={{ display: 'flex', flexDirection: 'column', gap: 4 }}>
|
|
27
33
|
<span className="kol-eyebrow text-strong mb-2">{section}</span>
|
|
28
34
|
{items.map((k) => (
|
|
29
|
-
<SettingsRow key={k.id ?? k.label} label={k.label} align="fill">
|
|
35
|
+
<SettingsRow key={k.id ?? k.label} label={k.label} align="fill" labelWidth="auto">
|
|
30
36
|
<span className="text-fg-32 kol-helper-12 whitespace-nowrap">{comboLabel(k.combo)}</span>
|
|
31
37
|
</SettingsRow>
|
|
32
38
|
))}
|