@carbonid1/design-system 4.0.0 → 4.0.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 +2 -4
- package/themes/dashboard.css +4 -0
- package/themes/reader.css +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbonid1/design-system",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Shared React UI primitives + design tokens (themes, postcss config)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -67,9 +67,7 @@
|
|
|
67
67
|
"tailwindcss": "^4.2.2",
|
|
68
68
|
"vite": "^8.0.8",
|
|
69
69
|
"vitest": "^4.1.4",
|
|
70
|
-
"@carbonid1/tsconfig": "0.2.0"
|
|
71
|
-
"@carbonid1/vitest-config": "0.1.0",
|
|
72
|
-
"@carbonid1/storybook-config": "0.1.0"
|
|
70
|
+
"@carbonid1/tsconfig": "0.2.0"
|
|
73
71
|
},
|
|
74
72
|
"scripts": {
|
|
75
73
|
"storybook": "storybook dev -p 6006",
|
package/themes/dashboard.css
CHANGED
|
@@ -12,6 +12,10 @@
|
|
|
12
12
|
|
|
13
13
|
@import 'tailwindcss';
|
|
14
14
|
|
|
15
|
+
/* Scan design-system components so consumers pick up classes used inside
|
|
16
|
+
* Button/Kbd/etc. — Tailwind v4 skips node_modules by default. */
|
|
17
|
+
@source "../src/**/*.{ts,tsx}";
|
|
18
|
+
|
|
15
19
|
@custom-variant dark (&:is(.dark *));
|
|
16
20
|
|
|
17
21
|
@theme inline {
|
package/themes/reader.css
CHANGED
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
|
|
15
15
|
@import 'tailwindcss';
|
|
16
16
|
|
|
17
|
+
/* Scan design-system components so consumers pick up classes used inside
|
|
18
|
+
* Button/Kbd/etc. — Tailwind v4 skips node_modules by default. */
|
|
19
|
+
@source "../src/**/*.{ts,tsx}";
|
|
20
|
+
|
|
17
21
|
@custom-variant dark (&:is(.dark *));
|
|
18
22
|
|
|
19
23
|
@theme inline {
|