@khipu/design-system 0.2.0-alpha.116 → 0.2.0-alpha.118

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-07-09T20:13:31.362Z
14
+ * Generated: 2026-07-13T22:25:46.328Z
15
15
  *
16
16
  * To regenerate:
17
17
  * cd design-system && npm run tokens:generate
@@ -6134,8 +6134,7 @@ button.kds-fab:focus-visible {
6134
6134
  .kds-status-block-title {
6135
6135
  font-size: var(--kds-font-size-xl);
6136
6136
  font-weight: var(--kds-font-weight-semibold);
6137
- /* Mismo color que la descripción: título y subtítulo parejos en resultados. */
6138
- color: var(--kds-color-text-secondary);
6137
+ color: var(--kds-color-text-primary);
6139
6138
  margin: 0 0 var(--kds-spacing-1);
6140
6139
  /* El reset global :where(h2) usa estas vars con !important; así se overridea. */
6141
6140
  --kds-typography-h2-margin-block-end: var(--kds-spacing-1);
@@ -6143,7 +6142,8 @@ button.kds-fab:focus-visible {
6143
6142
 
6144
6143
  .kds-status-block-description {
6145
6144
  font-size: var(--kds-font-size-sm);
6146
- color: var(--kds-color-text-secondary);
6145
+ /* Mismo color que el título: título y subtítulo parejos en resultados. */
6146
+ color: var(--kds-color-text-primary);
6147
6147
  margin: 0;
6148
6148
  /* !important: anula el auto-espaciado de hermanos de BeerCSS
6149
6149
  (margin-block-start: 1rem, especificidad 0,5,1 imposible de igualar).
@@ -6735,8 +6735,6 @@ div.kds-invoice-header,
6735
6735
  place-items: center;
6736
6736
  color: #fff;
6737
6737
  flex-shrink: 0;
6738
- /* Clip the slightly-oversized logo (see `.kds-invoice-merchant img`) to the
6739
- rounded square so it can fully cover the deep-purple background. */
6740
6738
  overflow: hidden;
6741
6739
  }
6742
6740
 
@@ -6757,13 +6755,12 @@ div.kds-invoice-header,
6757
6755
  }
6758
6756
 
6759
6757
  .kds-invoice-merchant img {
6760
- /* Slightly larger than the container (+2px, centered by the grid) so the
6761
- logo overflows under the parent's rounded clip and the deep-purple
6762
- background never peeks through at the corners when the logo shrinks. */
6763
- width: calc(100% + 2px);
6764
- height: calc(100% + 2px);
6765
- object-fit: cover;
6766
- border-radius: var(--kds-radius-md);
6758
+ /* `contain` sobre el fondo neutro: el logo se muestra completo y las
6759
+ transparencias no quedan sobre el color de marca (KTUF-204). */
6760
+ width: 100%;
6761
+ height: 100%;
6762
+ object-fit: contain;
6763
+ padding: var(--kds-spacing-0-5);
6767
6764
  }
6768
6765
 
6769
6766
  /* -- Card Title -- */