@khipu/design-system 0.2.0-alpha.77 → 0.2.0-alpha.79

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-26T01:07:23.777Z
16
+ * Generated: 2026-06-26T14:17:39.448Z
17
17
  *
18
18
  * To regenerate:
19
19
  * cd design-system && npm run tokens:generate
@@ -5683,6 +5683,15 @@
5683
5683
 
5684
5684
  .kds-theme-root .kds-expand-toggle i {
5685
5685
  font-size: var(--kds-font-size-base);
5686
+ /* BeerCSS estiliza el `i` bare como caja flex de 30px (height/width/min: 30px), que
5687
+ inflaba el toggle y dejaba aire vertical de más alrededor del label. La achicamos a
5688
+ 1.25em MANTENIENDO el centrado flex de BeerCSS (display:flex/align/justify) — así el
5689
+ caret queda compacto Y ópticamente centrado con el texto (no usar height:auto ni
5690
+ line-height:1: descentran el glifo). */
5691
+ width: 1.25em;
5692
+ height: 1.25em;
5693
+ min-width: 0;
5694
+ min-height: 0;
5686
5695
  transition: transform var(--kds-transition-shorter, 0.2s);
5687
5696
  }
5688
5697
 
@@ -7033,6 +7042,15 @@
7033
7042
  border-radius: var(--kds-radius-card);
7034
7043
  }
7035
7044
 
7045
+ /* Variante sin radio superior: pantallas de resultado (éxito/fallo/timeout) que van
7046
+ SIN header arriba — la body card va sola y su tope queda plano (flush) en vez de
7047
+ con esquinas redondeadas sueltas. El padding del card sigue manejando el inset. */
7048
+ .kds-theme-root .kds-screen > .kds-card-elevated.kds-card-elevated--flush-top,
7049
+ .kds-theme-root .kds-card-elevated.kds-card-elevated--flush-top {
7050
+ border-top-left-radius: 0;
7051
+ border-top-right-radius: 0;
7052
+ }
7053
+
7036
7054
  /* Payment stage — full-viewport centered wrapper.
7037
7055
  Fondo muted (gris) para que las cards blancas (header + body) y el gap entre
7038
7056
  ellas se distingan; sin esto, card blanca sobre fondo blanco se funden. */
@@ -7081,15 +7099,14 @@
7081
7099
  }
7082
7100
 
7083
7101
  /* Invoice sticky card padding (mobile).
7084
- Top: estático 12px. Bottom: progresivo 20px (expandido) → 8px (colapsado).
7085
- El padding-bottom animado da breathing room natural cuando expandido y se
7086
- reduce convencionalmente al colapsar — sin depender de que el clip-path
7102
+ Top: estático 12px. Bottom: progresivo 16px (expandido, = desktop) → 8px (colapsado).
7103
+ El padding-bottom animado se reduce al colapsar sin depender de que el clip-path
7087
7104
  corte el padding abruptamente. */
7088
7105
  .kds-theme-root .kds-payment-flow .kds-card-elevated.kds-invoice-sticky {
7089
7106
  padding-top: var(--kds-spacing-1-5);
7090
7107
  padding-bottom: calc(
7091
- var(--kds-spacing-2-5)
7092
- - var(--kds-spacing-1-5) * var(--collapse-progress, 0)
7108
+ var(--kds-spacing-2)
7109
+ - var(--kds-spacing-1) * var(--collapse-progress, 0)
7093
7110
  );
7094
7111
  }
7095
7112