@kolkrabbi/kol-shell 0.34.0 → 0.35.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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/NavRail.jsx +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-shell",
3
- "version": "0.34.0",
3
+ "version": "0.35.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",
@@ -21,9 +21,9 @@
21
21
  },
22
22
  "devDependencies": {
23
23
  "@kolkrabbi/kol-component": "^0.152.0",
24
- "@kolkrabbi/kol-icons": "^0.25.0",
25
24
  "@kolkrabbi/kol-framework": "^0.36.0",
26
- "@kolkrabbi/kol-theme": "^0.120.0"
25
+ "@kolkrabbi/kol-icons": "^0.25.0",
26
+ "@kolkrabbi/kol-theme": "^0.121.0"
27
27
  },
28
28
  "files": [
29
29
  "src",
package/src/NavRail.jsx CHANGED
@@ -285,12 +285,12 @@ export default function NavRail({
285
285
  return (
286
286
  <div
287
287
  ref={railRef}
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`}
288
+ /* ONE SIDE, ALWAYS LEFT (ShellDrawerSideCorrection, kol-chess 2026-09-01).
289
+ * 0.34.0 mirrored the panel to fix a button: the complaint was the
290
+ * trigger travelling to mid-screen, never the navigation's side. The
291
+ * trigger is now pinned top-right in both states, so a left panel has
292
+ * nothing to collide with and the drawer opens where the rail lives. */
293
+ className="kol-shell-rail bg-surface-primary fixed inset-y-0 left-0 flex flex-col items-start pt-4 pb-4 px-2 gap-2 border-r border-fg-08"
294
294
  /* A drawer takes its own width, NOT the live rail token — that token is
295
295
  * zeroed in drawer mode so the content gets the whole viewport back. */
296
296
  style={{ width: drawer ? 'var(--kol-shell-drawer-width, 240px)' : `var(${RAIL_W})` }}