@sysvale/cuida 3.0.0-beta.1 → 3.0.0-beta.3
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/@sysvale/cuida.es.js +20231 -8398
- package/dist/@sysvale/cuida.umd.js +49 -28
- package/dist/@sysvale/tokens.scss +16 -2
- package/dist/style.css +1 -1
- package/package.json +75 -70
|
@@ -25,6 +25,8 @@ $border-radius: map-merge(
|
|
|
25
25
|
|
|
26
26
|
$bg-gradient: 158.71deg, #FFFFFF -36.57%, #F1F5FB 156.92%;
|
|
27
27
|
|
|
28
|
+
$appbar-color: #576169;
|
|
29
|
+
|
|
28
30
|
$n-0: #ffffff;
|
|
29
31
|
$n-10: #FAFCFE;
|
|
30
32
|
$n-20: #F4F8FB;
|
|
@@ -297,6 +299,7 @@ $baseColors: (
|
|
|
297
299
|
'orange': $og-400,
|
|
298
300
|
'amber': $al-400,
|
|
299
301
|
'dark': $n-600,
|
|
302
|
+
'gray': $n-30,
|
|
300
303
|
'white': $n-0,
|
|
301
304
|
);
|
|
302
305
|
|
|
@@ -311,6 +314,7 @@ $disabledColors: (
|
|
|
311
314
|
'orange': $og-300,
|
|
312
315
|
'amber': $al-300,
|
|
313
316
|
'dark': $n-400,
|
|
317
|
+
'gray': $n-10,
|
|
314
318
|
'white': $n-0,
|
|
315
319
|
);
|
|
316
320
|
|
|
@@ -325,6 +329,7 @@ $mutedColors: (
|
|
|
325
329
|
'orange': $og-200,
|
|
326
330
|
'amber': $al-200,
|
|
327
331
|
'dark': $n-200,
|
|
332
|
+
'gray': $n-20,
|
|
328
333
|
'white': $n-0,
|
|
329
334
|
);
|
|
330
335
|
|
|
@@ -339,6 +344,7 @@ $hoverColors: (
|
|
|
339
344
|
'orange': $og-500,
|
|
340
345
|
'amber': $al-500,
|
|
341
346
|
'dark': $n-700,
|
|
347
|
+
'gray': $n-50,
|
|
342
348
|
'white': $n-0,
|
|
343
349
|
);
|
|
344
350
|
|
|
@@ -417,8 +423,8 @@ a {
|
|
|
417
423
|
color: inherit;
|
|
418
424
|
}
|
|
419
425
|
|
|
420
|
-
|
|
421
|
-
|
|
426
|
+
svg:focus {
|
|
427
|
+
outline: none;
|
|
422
428
|
}
|
|
423
429
|
$shadow-sm: 0px 4px 8px rgba(16, 24, 64, 0.04);
|
|
424
430
|
$shadow-md: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
@@ -653,3 +659,11 @@ $transition: map-merge(
|
|
|
653
659
|
font-weight: 650;
|
|
654
660
|
letter-spacing: 0.15px !important;
|
|
655
661
|
}
|
|
662
|
+
|
|
663
|
+
@mixin label {
|
|
664
|
+
@include caption;
|
|
665
|
+
font-weight: $font-weight-semibold;
|
|
666
|
+
color: $n-700;
|
|
667
|
+
display: block;
|
|
668
|
+
margin: mb(1);
|
|
669
|
+
}
|