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