@khipu/design-system 0.2.0-alpha.78 → 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-26T12:31:16.193Z
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
 
@@ -7090,15 +7099,14 @@
7090
7099
  }
7091
7100
 
7092
7101
  /* Invoice sticky card padding (mobile).
7093
- Top: estático 12px. Bottom: progresivo 20px (expandido) → 8px (colapsado).
7094
- El padding-bottom animado da breathing room natural cuando expandido y se
7095
- 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
7096
7104
  corte el padding abruptamente. */
7097
7105
  .kds-theme-root .kds-payment-flow .kds-card-elevated.kds-invoice-sticky {
7098
7106
  padding-top: var(--kds-spacing-1-5);
7099
7107
  padding-bottom: calc(
7100
- var(--kds-spacing-2-5)
7101
- - var(--kds-spacing-1-5) * var(--collapse-progress, 0)
7108
+ var(--kds-spacing-2)
7109
+ - var(--kds-spacing-1) * var(--collapse-progress, 0)
7102
7110
  );
7103
7111
  }
7104
7112