@khipu/design-system 0.2.0-alpha.80 → 0.2.0-alpha.81
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.
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*
|
|
14
14
|
* AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
|
|
15
15
|
* Source: design-system/src/tokens/tokens.json
|
|
16
|
-
* Generated: 2026-06-30T16:
|
|
16
|
+
* Generated: 2026-06-30T16:44:56.587Z
|
|
17
17
|
*
|
|
18
18
|
* To regenerate:
|
|
19
19
|
* cd design-system && npm run tokens:generate
|
|
@@ -2420,6 +2420,16 @@
|
|
|
2420
2420
|
margin-right: var(--kds-spacing-2);
|
|
2421
2421
|
}
|
|
2422
2422
|
|
|
2423
|
+
/* Ícono(s) en color primary. Para íconos MUI/SVG dentro del scope que, por el reset
|
|
2424
|
+
`.kds-theme-root svg { fill: currentColor }`, terminan heredando el color de texto
|
|
2425
|
+
(#333) en vez de su color propio — el `color="primary"` de MUI no le gana al contexto.
|
|
2426
|
+
Aplica al contenedor y a sus i/svg hijos. */
|
|
2427
|
+
.kds-theme-root .kds-icon-primary,
|
|
2428
|
+
.kds-theme-root .kds-icon-primary i,
|
|
2429
|
+
.kds-theme-root .kds-icon-primary svg {
|
|
2430
|
+
color: var(--kds-color-primary-main);
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2423
2433
|
/* Section title icon */
|
|
2424
2434
|
.kds-theme-root .kds-stage-section-title i {
|
|
2425
2435
|
vertical-align: middle;
|
|
@@ -2462,6 +2472,14 @@
|
|
|
2462
2472
|
padding-block-start: 1.5rem;
|
|
2463
2473
|
}
|
|
2464
2474
|
|
|
2475
|
+
/* Field con .suffix (endIcon): el label en reposo no debe deslizarse bajo el ícono de la
|
|
2476
|
+
derecha. BeerCSS reserva el lado izquierdo para .prefix (--_start:3rem) pero NO el derecho
|
|
2477
|
+
para .suffix, así que un label largo se superponía con el ícono. Reservamos el ancho del
|
|
2478
|
+
ícono en el inset-inline-end (mismo valor que el padding que .prefix da al input). */
|
|
2479
|
+
.kds-theme-root .field.label.suffix > label {
|
|
2480
|
+
inset-inline-end: 2.9375rem;
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2465
2483
|
/* ==========================================
|
|
2466
2484
|
NOTCH VISIBILITY (opacity)
|
|
2467
2485
|
========================================== */
|