@khipu/design-system 0.2.0-alpha.48 → 0.2.0-alpha.49
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/beercss/khipu-beercss.css +18 -1
- package/dist/beercss/khipu-beercss.min.css +1 -1
- package/dist/beercss/khipu-beercss.scoped.css +18 -1
- package/dist/beercss/khipu-beercss.scoped.min.css +1 -1
- package/dist/beercss/metadata.json +5 -5
- package/dist/index.d.mts +19 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +29 -2
- package/dist/index.mjs +44 -17
- package/package.json +1 -1
|
@@ -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-
|
|
16
|
+
* Generated: 2026-06-16T20:10:13.474Z
|
|
17
17
|
*
|
|
18
18
|
* To regenerate:
|
|
19
19
|
* cd design-system && npm run tokens:generate
|
|
@@ -2568,6 +2568,23 @@
|
|
|
2568
2568
|
color: var(--error); /* Rojo error */
|
|
2569
2569
|
}
|
|
2570
2570
|
|
|
2571
|
+
/* ==========================================
|
|
2572
|
+
PASSWORD REVEAL TOGGLE (KdsTextField `revealable`)
|
|
2573
|
+
El <a role="button"> reusa el posicionamiento de icono de BeerCSS
|
|
2574
|
+
(.field > a, pointer-events: all). Aquí solo: color del icono
|
|
2575
|
+
(on-surface-variant) y un focus ring accesible para el toggle
|
|
2576
|
+
navegable por teclado (BeerCSS hace `outline: inherit` en <a>).
|
|
2577
|
+
========================================== */
|
|
2578
|
+
.kds-theme-root .field > a.kds-field-reveal {
|
|
2579
|
+
color: var(--on-surface-variant);
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
.kds-theme-root .field > a.kds-field-reveal:focus-visible {
|
|
2583
|
+
outline: 2px solid var(--primary);
|
|
2584
|
+
outline-offset: 2px;
|
|
2585
|
+
border-radius: 50%;
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2571
2588
|
/* ==========================================
|
|
2572
2589
|
LABEL COLOR
|
|
2573
2590
|
Mantener sincronizado con border
|