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

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-07T14:02:38.498Z
14
+ * Generated: 2026-07-07T15:18:13.257Z
15
15
  *
16
16
  * To regenerate:
17
17
  * cd design-system && npm run tokens:generate
@@ -1549,6 +1549,31 @@ a.kds-btn.kds-btn-md {
1549
1549
  align-self: center;
1550
1550
  }
1551
1551
 
1552
+ /* Botón "pelado": neutraliza el chrome de button de BeerCSS (pill 2.5rem,
1553
+ radius, fondo y hover) para botones de terceros con su propio look,
1554
+ p.ej. los share buttons de react-share (ícono circular). */
1555
+ .kds-btn-bare,
1556
+ .kds-btn-bare:hover,
1557
+ .kds-btn-bare:focus,
1558
+ .kds-btn-bare:active {
1559
+ background: none !important;
1560
+ block-size: auto !important;
1561
+ inline-size: auto !important;
1562
+ min-inline-size: 0 !important;
1563
+ padding: 0 !important;
1564
+ margin: 0 !important;
1565
+ border: 0 !important;
1566
+ border-radius: var(--kds-radius-full) !important;
1567
+ box-sizing: border-box !important;
1568
+ box-shadow: none !important;
1569
+ transform: none !important;
1570
+ }
1571
+
1572
+ .kds-btn-bare::before,
1573
+ .kds-btn-bare::after {
1574
+ display: none !important;
1575
+ }
1576
+
1552
1577
  /* Gap utilities */
1553
1578
  .kds-gap-1 { gap: var(--kds-spacing-1); }
1554
1579
  .kds-gap-2 { gap: var(--kds-spacing-2); }
@@ -6050,7 +6075,7 @@ button.kds-fab:focus-visible {
6050
6075
 
6051
6076
  .kds-status-block-title {
6052
6077
  font-size: var(--kds-font-size-xl);
6053
- font-weight: var(--kds-font-weight-bold);
6078
+ font-weight: var(--kds-font-weight-semibold);
6054
6079
  color: var(--kds-color-text-primary);
6055
6080
  margin: 0 0 var(--kds-spacing-1);
6056
6081
  /* El reset global :where(h2) usa estas vars con !important; así se overridea. */