@kolkrabbi/kol-shell 0.6.0 → 0.6.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-shell",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
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.53.0",
24
- "@kolkrabbi/kol-framework": "^0.22.0",
25
- "@kolkrabbi/kol-icons": "^0.17.0",
26
- "@kolkrabbi/kol-theme": "^0.46.1"
23
+ "@kolkrabbi/kol-component": "^0.69.1",
24
+ "@kolkrabbi/kol-framework": "^0.24.0",
25
+ "@kolkrabbi/kol-icons": "^0.18.0",
26
+ "@kolkrabbi/kol-theme": "^0.53.0"
27
27
  },
28
28
  "files": [
29
29
  "src",
package/src/GridCard.jsx CHANGED
@@ -1,4 +1,10 @@
1
1
  /**
2
+ * @deprecated 2026-08-26 — absorbed by `ContentCard variant="catalog" (row: ContentRow variant="catalog")` in @kolkrabbi/kol-component
3
+ * (the Content Set, 2026-08-15). Step 1 of the retirement wave: this export
4
+ * stays and renders unchanged until the next major, then it is removed.
5
+ * Consumers: swap on your next bump. Map + row-by-row diff:
6
+ * docs/documentation/03-components/06-content-card-system.md.
7
+ *
2
8
  * GridCard — A4-ratio card for catalog grids (monitor's full cut: expanded
3
9
  * 2×2 mode + previewFit). Preview clipped on top, label plate at bottom;
4
10
  * `variant="list"` renders the compact 36px row.
@@ -36,11 +36,21 @@ export default function PageHeader({ eyebrow, title, subtitle, size = 'md', clas
36
36
  class, which leaks estate-wide (ShellHeaderFilterRefinements, 2026-08-15) */
37
37
  <header className={`flex flex-col ${className}`.trim()} style={{ marginBottom: 40 }}>
38
38
  {eyebrow && (
39
- <p className="text-fg-48 kol-mono-12" style={{ marginBottom: 12 }}>{eyebrow}</p>
39
+ /* HELPER, not mono (user ruling 2026-08-15). An eyebrow is single-line
40
+ chrome — that is the whole definition of the `kol-helper-*` ramp, and
41
+ it carries its own tracking, so no inline letter-spacing here.
42
+ Uppercase, and off `fg-48`: under half the ink read as disabled
43
+ rather than quiet, and this is a live label, not a footnote. */
44
+ <p
45
+ className="text-oq-64 kol-helper-12"
46
+ style={{ marginBottom: 12, textTransform: 'uppercase' }}
47
+ >
48
+ {eyebrow}
49
+ </p>
40
50
  )}
41
51
  <h1 className={`text-fg-96 ${TITLE[size] ?? TITLE.md}`}>{title}</h1>
42
52
  {subtitle && (
43
- <p className="text-fg-48 kol-mono-14" style={{ marginTop: 12 }}>{subtitle}</p>
53
+ <p className="text-oq-64 kol-mono-14" style={{ marginTop: 12 }}>{subtitle}</p>
44
54
  )}
45
55
  </header>
46
56
  )