@kolkrabbi/kol-theme 0.41.0 → 0.42.1

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.
@@ -333,6 +333,27 @@
333
333
  display: block;
334
334
  }
335
335
 
336
+ /* Media hover zoom — opt-in via `mediaHover` (SectionSplit ruling, 2026-08-15).
337
+ * The brief named "media hover treatment owned by the component", and named the
338
+ * defect: kol-website's HomeFoundry hover had been silently broken for months
339
+ * because each hand-built section re-decided it. Same numbers and the same
340
+ * reduced-motion guard as the CardFeatureItem zoom (CardFeatureHoverZoom,
341
+ * 2026-08-12) — one motion vocabulary, not two. Motion chrome is DS CSS, never
342
+ * a JSX utility (the ComponentTailwindSourceTrap law). The frame's own
343
+ * overflow-hidden + radius clip the scale. */
344
+ .kol-feature-split-visual.is-hoverable > :first-child {
345
+ transition: transform 300ms ease;
346
+ }
347
+
348
+ .kol-feature-split-visual.is-hoverable:hover > :first-child {
349
+ transform: scale(1.03);
350
+ }
351
+
352
+ @media (prefers-reduced-motion: reduce) {
353
+ .kol-feature-split-visual.is-hoverable > :first-child { transition: none; }
354
+ .kol-feature-split-visual.is-hoverable:hover > :first-child { transform: none; }
355
+ }
356
+
336
357
  .kol-feature-split-visual-veil {
337
358
  position: absolute;
338
359
  inset: 0;
package/kol-sources.css CHANGED
@@ -26,6 +26,7 @@
26
26
  @source "../kol-foundry/src";
27
27
  @source "../kol-framework/src";
28
28
  @source "../kol-icons/src";
29
+ @source "../kol-shell/src";
29
30
  @source "../kol-store/src";
30
31
  @source "../kol-styleguide/src";
31
32
  @source "../kol-workshop/src";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.41.0",
3
+ "version": "0.42.1",
4
4
  "description": "KOL (Kolkrabbi) design-system tokens + base CSS — brand-neutral. The canonical token/cascade layer every other KOL package and consumer builds on.",
5
5
  "license": "MIT",
6
6
  "type": "module",