@agroshine/ags-web-ui-kit 1.2.0 → 1.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.
@@ -0,0 +1,44 @@
1
+ /**
2
+ * AgroShine · Luna Nueva — tokens CSS (HSL semánticos shadcn-compatible).
3
+ * Importar desde el CSS raíz de la app si NO se usa el Tailwind preset.
4
+ *
5
+ * @import 'ags-web-ui-kit/styles/tokens.css';
6
+ *
7
+ * Las escalas full 50-900 viven en `tailwind.preset.cjs`.
8
+ */
9
+ :root {
10
+ --background: 0 0% 100%;
11
+ --foreground: 0 0% 3.9%;
12
+ --card: 0 0% 100%;
13
+ --card-foreground: 0 0% 3.9%;
14
+ --popover: 0 0% 100%;
15
+ --popover-foreground: 0 0% 3.9%;
16
+ --muted: 0 0% 96.1%;
17
+ --muted-foreground: 0 0% 45.1%;
18
+ --accent: 0 0% 96.1%;
19
+ --accent-foreground: 0 0% 9%;
20
+ --destructive: 343 91% 51%;
21
+ --destructive-foreground: 0 0% 98%;
22
+ --border: 0 0% 89.8%;
23
+ --input: 0 0% 89.8%;
24
+ --ring: 153 21% 31%;
25
+ --radius: 0.5rem; /* 8px · canon Components.html */
26
+ }
27
+
28
+ .dark {
29
+ --background: 0 0% 3.9%;
30
+ --foreground: 0 0% 98%;
31
+ --card: 0 0% 3.9%;
32
+ --card-foreground: 0 0% 98%;
33
+ --popover: 0 0% 3.9%;
34
+ --popover-foreground: 0 0% 98%;
35
+ --muted: 0 0% 14.9%;
36
+ --muted-foreground: 0 0% 63.9%;
37
+ --accent: 0 0% 14.9%;
38
+ --accent-foreground: 0 0% 98%;
39
+ --destructive: 0 62.8% 30.6%;
40
+ --destructive-foreground: 0 0% 98%;
41
+ --border: 0 0% 14.9%;
42
+ --input: 0 0% 14.9%;
43
+ --ring: 0 0% 83.1%;
44
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agroshine/ags-web-ui-kit",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "AgroShine · Luna Nueva · librería de componentes React reutilizables",
5
5
  "license": "MIT",
6
6
  "author": "AgroShine",
@@ -70,7 +70,7 @@
70
70
  "require": "./dist/lib/index.cjs"
71
71
  },
72
72
  "./tailwind.preset": "./tailwind.preset.cjs",
73
- "./styles/tokens.css": "./src/styles/tokens.css"
73
+ "./styles/tokens.css": "./dist/styles/tokens.css"
74
74
  },
75
75
  "scripts": {
76
76
  "build": "tsup",