@khipu/design-system 0.2.0-alpha.90 → 0.2.0-alpha.91

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-07-02T21:31:49.446Z
16
+ * Generated: 2026-07-03T17:19:01.966Z
17
17
  *
18
18
  * To regenerate:
19
19
  * cd design-system && npm run tokens:generate
@@ -6044,6 +6044,12 @@
6044
6044
  margin: 0;
6045
6045
  }
6046
6046
 
6047
+ /* Los hijos llevan kds-margin-0 (escape del auto-espaciado de BeerCSS); estas
6048
+ reglas compuestas (mayor especificidad) restauran el rhythm de diseño. */
6049
+ .kds-theme-root .kds-status-block .kds-status-block-title {
6050
+ margin: 0 0 var(--kds-spacing-1);
6051
+ }
6052
+
6047
6053
  /* Variant: success */
6048
6054
  .kds-theme-root .kds-status-block[data-status="success"] .kds-status-block-icon {
6049
6055
  background: var(--kds-color-success-soft);
@@ -8390,6 +8396,24 @@
8390
8396
  .kds-theme-root .kds-col-lg-12 { grid-area: auto/span 12; }
8391
8397
  }
8392
8398
 
8399
+ /* ========================================
8400
+ Resets de composición (layouts con gap)
8401
+ ======================================== */
8402
+
8403
+ /* Anulan el espaciado propio del elemento cuando el layout lo gestiona el
8404
+ contenedor (flex + gap). "margin" en el nombre es deliberado: BeerCSS exime
8405
+ a [class*='margin'] de su regla de auto-espaciado entre hermanos
8406
+ (margin-block-start: 1rem), que de otro modo gana por especificidad.
8407
+ Van al final del archivo para ganar los empates de especificidad. */
8408
+ .kds-theme-root .kds-margin-0 {
8409
+ margin: 0;
8410
+ }
8411
+
8412
+ .kds-theme-root .kds-py-0 {
8413
+ padding-top: 0;
8414
+ padding-bottom: 0;
8415
+ }
8416
+
8393
8417
 
8394
8418
  /* coexistence: scope wrapper must not impose layout on the host */
8395
8419
  .kds-theme-root{display:contents}