@sector.siit/mlz-components 1.0.8 → 1.0.9
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/dist/variables.css +58 -0
- package/package.json +3 -3
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/* Variables CSS de mlz-components */
|
|
2
|
+
:root {
|
|
3
|
+
/* Colores primarios */
|
|
4
|
+
--mlz-primary-50: #eff6ff;
|
|
5
|
+
--mlz-primary-100: #E5F0F9;
|
|
6
|
+
--mlz-primary-200: #bfdbfe;
|
|
7
|
+
--mlz-primary-300: #94C6E5;
|
|
8
|
+
--mlz-primary-400: #5BA8D5;
|
|
9
|
+
--mlz-primary-500: #3b82f6;
|
|
10
|
+
--mlz-primary-600: #236999;
|
|
11
|
+
--mlz-primary-700: #1d4ed8;
|
|
12
|
+
--mlz-primary-800: #1e40af;
|
|
13
|
+
--mlz-primary-900: #1e3a8a;
|
|
14
|
+
--mlz-primary-950: #172554;
|
|
15
|
+
|
|
16
|
+
--mlz-semantic-info: #006EFF;
|
|
17
|
+
--mlz-semantic-error-600: #EF284C;
|
|
18
|
+
|
|
19
|
+
/* Colores secundarios */
|
|
20
|
+
--mlz-secondary-50: #f8fafc;
|
|
21
|
+
--mlz-secondary-100: #f1f5f9;
|
|
22
|
+
--mlz-secondary-200: #e2e8f0;
|
|
23
|
+
--mlz-secondary-300: #cbd5e1;
|
|
24
|
+
--mlz-secondary-400: #94a3b8;
|
|
25
|
+
--mlz-secondary-500: #64748b;
|
|
26
|
+
--mlz-secondary-600: #475569;
|
|
27
|
+
--mlz-secondary-700: #334155;
|
|
28
|
+
--mlz-secondary-800: #1e293b;
|
|
29
|
+
--mlz-secondary-900: #0f172a;
|
|
30
|
+
--mlz-secondary-950: #020617;
|
|
31
|
+
|
|
32
|
+
/* Variables específicas para Input */
|
|
33
|
+
--mlz-input-border-color: #d1d5db;
|
|
34
|
+
--mlz-input-label-color: #374151;
|
|
35
|
+
--mlz-input-helper-color: #6b7280;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.mlz-label-textarea {
|
|
39
|
+
font-family: var(--font-geometria, "Geometria", sans-serif);
|
|
40
|
+
font-weight: 700;
|
|
41
|
+
font-style: normal;
|
|
42
|
+
font-size: 16px;
|
|
43
|
+
line-height: 100%;
|
|
44
|
+
letter-spacing: 0%;
|
|
45
|
+
vertical-align: middle;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.mlz-error-color {
|
|
49
|
+
color: var(--mlz-semantic-error-600, #EF284C);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.mlz-error-border {
|
|
53
|
+
border-color: var(--mlz-semantic-error-600, #EF284C);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.mlz-error-bg {
|
|
57
|
+
background-color: var(--mlz-semantic-error-600, #EF284C);
|
|
58
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sector.siit/mlz-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Una librería de componentes React con Tailwind CSS y variables CSS customizables",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"import": "./dist/index.esm.js",
|
|
13
13
|
"require": "./dist/index.js"
|
|
14
14
|
},
|
|
15
|
-
"./
|
|
16
|
-
"./
|
|
15
|
+
"./variables.css": "./dist/variables.css",
|
|
16
|
+
"./dist/variables.css": "./dist/variables.css"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist",
|