@kolkrabbi/kol-shell 0.4.0 → 0.5.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-shell",
3
- "version": "0.4.0",
3
+ "version": "0.5.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.46.0",
23
+ "@kolkrabbi/kol-component": "^0.52.0",
24
24
  "@kolkrabbi/kol-framework": "^0.22.0",
25
- "@kolkrabbi/kol-theme": "^0.43.1",
26
- "@kolkrabbi/kol-icons": "^0.17.0"
25
+ "@kolkrabbi/kol-icons": "^0.17.0",
26
+ "@kolkrabbi/kol-theme": "^0.46.1"
27
27
  },
28
28
  "files": [
29
29
  "src",
package/src/GridCard.jsx CHANGED
@@ -39,7 +39,7 @@ export default function GridCard({ title, detail, preview, expanded, expandedCon
39
39
  gridRow: expanded ? 'span 2' : 'span 1',
40
40
  position: 'relative', overflow: 'hidden',
41
41
  display: 'flex', flexDirection: expanded ? 'row-reverse' : 'column',
42
- transition: 'all 300ms cubic-bezier(0.16, 1, 0.3, 1)',
42
+ transition: 'all 300ms var(--kol-ease-house)',
43
43
  }}
44
44
  >
45
45
  <div style={{
@@ -3,13 +3,19 @@
3
3
  * `kol-mono-14`, the newer voice) wins over monitor's `kol-text-sm`; override
4
4
  * via a wrapper if a consumer needs otherwise. Takes title/subtitle as values
5
5
  * so tab-driven headers (Settings) stop re-implementing the markup inline.
6
+ *
7
+ * The title was `kol-heading-sm` — a RETIRED t-shirt stop with NO RULE anywhere
8
+ * in kol-theme, so every page title in every shell app has been falling through
9
+ * to the browser's default h1 with no DS type on it at all (found 2026-08-15).
10
+ * Mapped to the numeric scale at `kol-sans-heading-03` (32px), the same way the
11
+ * dead `kol-mono-sm` and `kol-helper-lg` stops were mapped.
6
12
  */
7
13
  export default function PageHeader({ title, subtitle }) {
8
14
  return (
9
15
  <>
10
- {/* gap inline, never in kol-heading-sm — margin in a shared type class
16
+ {/* gap inline, never in the type class — margin in a shared type class
11
17
  leaks estate-wide (ShellHeaderFilterRefinements, 2026-08-15) */}
12
- <h1 className="text-fg-96 kol-heading-sm" style={{ marginBottom: 8 }}>{title}</h1>
18
+ <h1 className="text-fg-96 kol-sans-heading-03" style={{ marginBottom: 8 }}>{title}</h1>
13
19
  <p className="text-fg-48 kol-mono-14" style={{ marginBottom: 40 }}>{subtitle}</p>
14
20
  </>
15
21
  )