@khipu/design-system 0.2.0-alpha.101 → 0.2.0-alpha.103

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-07T13:09:45.086Z
14
+ * Generated: 2026-07-07T14:02:38.498Z
15
15
  *
16
16
  * To regenerate:
17
17
  * cd design-system && npm run tokens:generate
@@ -699,7 +699,8 @@ body.dark {
699
699
  --kds-color-danger-soft: var(--kds-alert-error-bg); /* #FEF2F2 */
700
700
 
701
701
  /* Bottom Sheet */
702
- --kds-bottom-sheet-max-width: 480px;
702
+ /* Mismo ancho que la card principal del flujo (stage narrow). */
703
+ --kds-bottom-sheet-max-width: var(--kds-stage-narrow-max-width);
703
704
  --kds-bottom-sheet-shadow: 0 -8px var(--kds-spacing-3-5) rgba(0, 0, 0, 0.18);
704
705
 
705
706
  /* Status Block */
@@ -2168,6 +2169,9 @@ a.kds-btn-google:disabled {
2168
2169
 
2169
2170
  .kds-secure-loader-message {
2170
2171
  margin: 0;
2172
+ /* !important: anula el auto-espaciado de hermanos de BeerCSS (0,5,1);
2173
+ la separación con el título la da el gap del contenedor (spacing-0-25). */
2174
+ margin-top: 0 !important;
2171
2175
  font-family: var(--kds-font-family-secondary);
2172
2176
  font-size: var(--kds-font-size-body1);
2173
2177
  line-height: var(--kds-line-height-normal);
@@ -2184,12 +2188,13 @@ a.kds-btn-google:disabled {
2184
2188
  block-size: var(--kds-secure-loader-size, 6.25rem);
2185
2189
  }
2186
2190
 
2187
- /* Anillo: SVG nativo con arco vía stroke-dasharray, rotando. Replica el
2188
- CircularProgress original (viewBox 44u, thickness 2, arco ~63%, disableShrink). */
2191
+ /* Anillo: SVG nativo con arco vía stroke-dasharray. Replica el CircularProgress
2192
+ original (viewBox 44u, thickness 2, arco ~63%, disableShrink). El giro se anima
2193
+ con stroke-dashoffset (el círculo queda estático y nítido); rotar el SVG con
2194
+ transform rasteriza el anillo y se ve irregular durante el giro. */
2189
2195
  .kds-secure-loader-ring {
2190
2196
  inline-size: var(--kds-secure-loader-size, 6.25rem);
2191
2197
  block-size: var(--kds-secure-loader-size, 6.25rem);
2192
- animation: kds-secure-loader-spin 1.2s linear infinite;
2193
2198
  }
2194
2199
 
2195
2200
  .kds-secure-loader-ring circle {
@@ -2197,13 +2202,14 @@ a.kds-btn-google:disabled {
2197
2202
  stroke: var(--kds-color-primary-main);
2198
2203
  stroke-width: 2;
2199
2204
  stroke-linecap: round;
2200
- /* circunferencia 2π·20.2 ≈ 127; arco visible 80 (~63%) */
2201
- stroke-dasharray: 80 127;
2205
+ /* circunferencia = 2π·20.2 ≈ 126.92; arco visible 80 (~63%) + hueco 46.92 */
2206
+ stroke-dasharray: 80 46.92;
2207
+ animation: kds-secure-loader-dash 1.2s linear infinite;
2202
2208
  }
2203
2209
 
2204
- @keyframes kds-secure-loader-spin {
2210
+ @keyframes kds-secure-loader-dash {
2205
2211
  to {
2206
- transform: rotate(360deg);
2212
+ stroke-dashoffset: -126.92;
2207
2213
  }
2208
2214
  }
2209
2215