@khipu/design-system 0.2.0-alpha.106 → 0.2.0-alpha.108

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-07T15:29:41.602Z
14
+ * Generated: 2026-07-08T16:07:51.839Z
15
15
  *
16
16
  * To regenerate:
17
17
  * cd design-system && npm run tokens:generate
@@ -7114,6 +7114,25 @@ button.kds-btn-success::after {
7114
7114
  fill: none;
7115
7115
  }
7116
7116
 
7117
+ /* BeerCSS fuerza fill:currentcolor en todo svg, pisando el atributo de
7118
+ presentación; un SVG que declara fill="none" (ilustraciones de trazo)
7119
+ debe conservarlo. */
7120
+ svg[fill='none'] {
7121
+ fill: none;
7122
+ }
7123
+
7124
+ /* -- Bottom sheet centered content --
7125
+ Contenido escueto centrado verticalmente con altura mínima estable, para que
7126
+ el sheet no encoja cuando la vista tiene pocos elementos (p.ej. drawer de
7127
+ autorización: título + ilustración + timer). */
7128
+ .kds-bottom-sheet-centered-content {
7129
+ display: flex;
7130
+ flex-direction: column;
7131
+ align-items: center;
7132
+ justify-content: center;
7133
+ min-height: var(--kds-bottom-sheet-content-min-height, 21rem);
7134
+ }
7135
+
7117
7136
  /* -- Bottom sheet description (subtle / smaller) -- */
7118
7137
  .kds-bottom-sheet-description-subtle {
7119
7138
  color: var(--kds-color-text-secondary);