@kolkrabbi/kol-theme 0.7.5 → 0.7.6

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/kol-sources.css +31 -0
  2. package/package.json +1 -1
@@ -0,0 +1,31 @@
1
+ /**
2
+ * kol-sources.css — the @source manifest for every raw-JSX @kolkrabbi package.
3
+ *
4
+ * KOL packages publish raw .jsx, and Tailwind v4 skips node_modules during
5
+ * auto-detection — so utilities used INSIDE package components are never
6
+ * generated unless the consumer declares each package as a source. Forgetting
7
+ * one is silent breakage (unstyled chrome). This manifest carries the line for
8
+ * every raw-JSX package; the consumer imports it ONCE:
9
+ *
10
+ * @import "tailwindcss";
11
+ * @import "@kolkrabbi/kol-theme";
12
+ * @import "@kolkrabbi/kol-theme/kol-sources.css";
13
+ *
14
+ * `@source` resolves relative to THIS file (node_modules/@kolkrabbi/kol-theme/),
15
+ * so sibling package paths work from inside node_modules. A path that doesn't
16
+ * exist (package not installed) matches nothing — installing a subset is fine.
17
+ * New raw-JSX packages get their line added here, DS-side, so consumers never
18
+ * chase the footgun again.
19
+ */
20
+
21
+ @source "../kol-brand/src";
22
+ @source "../kol-chess/src";
23
+ @source "../kol-component/src";
24
+ @source "../kol-content/src";
25
+ @source "../kol-dashboards/src";
26
+ @source "../kol-foundry/src";
27
+ @source "../kol-framework/src";
28
+ @source "../kol-icons/src";
29
+ @source "../kol-store/src";
30
+ @source "../kol-styleguide/src";
31
+ @source "../kol-workshop/src";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
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",