@khipu/design-system 0.2.0-alpha.119 → 0.2.0-alpha.120

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-14T13:18:31.041Z
14
+ * Generated: 2026-07-15T15:13:33.736Z
15
15
  *
16
16
  * To regenerate:
17
17
  * cd design-system && npm run tokens:generate
@@ -75,6 +75,7 @@
75
75
  --kds-color-background-paper: #FFFFFF;
76
76
  --kds-color-background-elevated: #FAFAFA;
77
77
  --kds-color-background-muted: #F4F4F7;
78
+ --kds-color-background-brand-subtle: #F0F0FA;
78
79
 
79
80
  /* Action colors */
80
81
  --kds-color-action-active: rgba(0, 0, 0, 0.56);
@@ -8547,3 +8548,64 @@ a.kds-copy-all-btn.copied:hover {
8547
8548
  .kds-col-lg-12 { grid-area: auto/span 12; }
8548
8549
  }
8549
8550
 
8551
+ /* === Form icon chip ================================================== */
8552
+ /* Chip cuadrado con el icono del formulario (SecureForm, headers OIDC). */
8553
+
8554
+ .kds-form-icon-container {
8555
+ align-items: center;
8556
+ align-self: stretch;
8557
+ display: flex;
8558
+ flex-direction: column;
8559
+ gap: 10px;
8560
+ justify-content: center;
8561
+ padding: 0 var(--kds-spacing-2-5);
8562
+ }
8563
+
8564
+ .kds-form-icon-box {
8565
+ align-items: center;
8566
+ background: var(--kds-color-background-brand-subtle, #f0f0fa);
8567
+ border-radius: 10px;
8568
+ display: flex;
8569
+ height: 52px;
8570
+ justify-content: center;
8571
+ padding: 10px;
8572
+ width: 52px;
8573
+ }
8574
+
8575
+ .kds-form-icon-box .kds-form-icon,
8576
+ .kds-form-icon-box > img,
8577
+ .kds-form-icon-box > svg {
8578
+ aspect-ratio: 1 / 1;
8579
+ flex-shrink: 0;
8580
+ height: 32px;
8581
+ width: 32px;
8582
+ }
8583
+
8584
+ @media (min-width: 600px) {
8585
+ .kds-form-icon-box {
8586
+ height: 56px;
8587
+ width: 56px;
8588
+ }
8589
+
8590
+ .kds-form-icon-box .kds-form-icon,
8591
+ .kds-form-icon-box > img,
8592
+ .kds-form-icon-box > svg {
8593
+ height: 30px;
8594
+ width: 30px;
8595
+ }
8596
+ }
8597
+
8598
+ @media (min-width: 900px) {
8599
+ .kds-form-icon-box {
8600
+ height: 60px;
8601
+ width: 60px;
8602
+ }
8603
+
8604
+ .kds-form-icon-box .kds-form-icon,
8605
+ .kds-form-icon-box > img,
8606
+ .kds-form-icon-box > svg {
8607
+ height: 32px;
8608
+ width: 32px;
8609
+ }
8610
+ }
8611
+