@khipu/design-system 0.3.5-alpha.23 → 0.3.5-alpha.24

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-09-10T14:19:43.832Z
16
+ * Generated: 2026-09-10T15:52:45.564Z
17
17
  *
18
18
  * To regenerate:
19
19
  * cd design-system && npm run tokens:generate
@@ -6982,6 +6982,15 @@ button.kds-fab:active:not(:disabled) {
6982
6982
  }
6983
6983
 
6984
6984
  /* Auto-managed tab panels: hidden attribute must win over any display rule */
6985
+ /* `hidden` es semantica de plataforma: si el atributo esta, el elemento no se
6986
+ renderiza. El UA lo aplica con display:none, pero cualquier regla de autor con
6987
+ display lo pisa — .kds-btn y .kds-btn-stack son flex, asi que un boton con
6988
+ hidden seguia ocupando lugar. El !important es deliberado: ninguna regla de
6989
+ componente deberia poder anular el atributo. */
6990
+ [hidden] {
6991
+ display: none !important;
6992
+ }
6993
+
6985
6994
  [data-kds-tab-panel][hidden] {
6986
6995
  display: none;
6987
6996
  }