@carbonid1/design-system 5.2.0 → 5.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carbonid1/design-system",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "description": "Shared React UI primitives + design tokens (themes, postcss config)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,8 +18,10 @@
18
18
  @import 'tailwindcss';
19
19
 
20
20
  /* Scan design-system components so consumers pick up classes used inside
21
- * Button/Kbd/etc. — Tailwind v4 skips node_modules by default. */
22
- @source "../src/**/*.{ts,tsx}";
21
+ * Button/Kbd/etc. — Tailwind v4 skips node_modules by default. Point at the
22
+ * shipped `dist/` (the only source that lands in installed `node_modules`),
23
+ * not `src/` which isn't in the published `files`. */
24
+ @source "../dist/**/*.js";
23
25
 
24
26
  @custom-variant dark (&:is(.dark *));
25
27
 
package/themes/reader.css CHANGED
@@ -40,8 +40,10 @@
40
40
  @import 'tailwindcss';
41
41
 
42
42
  /* Scan design-system components so consumers pick up classes used inside
43
- * Button/Kbd/etc. — Tailwind v4 skips node_modules by default. */
44
- @source "../src/**/*.{ts,tsx}";
43
+ * Button/Kbd/etc. — Tailwind v4 skips node_modules by default. Point at the
44
+ * shipped `dist/` (the only source that lands in installed `node_modules`),
45
+ * not `src/` which isn't in the published `files`. */
46
+ @source "../dist/**/*.js";
45
47
 
46
48
  @custom-variant dark (&:is(.dark *));
47
49