@khipu/design-system 0.2.0-alpha.61 → 0.2.0-alpha.63

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-19T16:33:44.315Z
14
+ * Generated: 2026-06-22T13:53:18.399Z
15
15
  *
16
16
  * To regenerate:
17
17
  * cd design-system && npm run tokens:generate
@@ -2218,6 +2218,10 @@ a.kds-btn-google:disabled {
2218
2218
  align-items: center;
2219
2219
  gap: var(--kds-spacing-1);
2220
2220
  padding: var(--kds-spacing-0-25) var(--kds-spacing-1-5);
2221
+ /* No usar el alto de botón táctil de BeerCSS (~44px): es un chip compacto,
2222
+ su alto lo define el contenido + padding. */
2223
+ block-size: auto;
2224
+ min-block-size: 0;
2221
2225
  border: none;
2222
2226
  border-radius: var(--kds-radius-button);
2223
2227
  background: var(--kds-alert-info-bg);
@@ -2231,6 +2235,13 @@ a.kds-btn-google:disabled {
2231
2235
  color var(--kds-transition-shorter) var(--kds-easing-standard);
2232
2236
  }
2233
2237
 
2238
+ /* active = hover: sin el aro de focus/active (outline morado de BeerCSS). */
2239
+ .kds-copy-button:focus,
2240
+ .kds-copy-button:focus-visible,
2241
+ .kds-copy-button:active {
2242
+ outline: none;
2243
+ }
2244
+
2234
2245
  /* value y copiedText se apilan en la MISMA celda de grid: la celda toma el
2235
2246
  ancho del texto más largo, por lo que el botón conserva su ancho al alternar
2236
2247
  entre "valor" y "copiado" (sin reflow). */