@khipu/design-system 0.2.0-alpha.37 → 0.2.0-alpha.39

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-06-09T21:03:55.063Z
14
+ * Generated: 2026-06-10T13:47:19.938Z
15
15
  *
16
16
  * To regenerate:
17
17
  * cd design-system && npm run tokens:generate
@@ -989,7 +989,7 @@ a.kds-btn-text {
989
989
 
990
990
  button.kds-btn-text:hover:not(:disabled),
991
991
  a.kds-btn-text:hover:not(:disabled) {
992
- background: var(--kds-color-primary-hover); /* rgba(131, 71, 173, 0.04) */
992
+ color: var(--kds-color-primary-dark);
993
993
  }
994
994
 
995
995
  button.kds-btn-text:disabled,
@@ -2098,6 +2098,28 @@ a.kds-btn-google:disabled {
2098
2098
  height: var(--kds-spacing-button-icon-size);
2099
2099
  }
2100
2100
 
2101
+ /* ========================================
2102
+ KDS LINEAR PROGRESS
2103
+ Native <progress> (KdsLinearProgress). Additive over BeerCSS `progress`,
2104
+ scoped to .kds-progress so other consumers are unaffected.
2105
+ ======================================== */
2106
+
2107
+ /* `progress` is inline-block by default → leaves a baseline (descender) gap
2108
+ below the bar. Block removes that gap so it sits flush with siblings. */
2109
+ .kds-progress {
2110
+ display: block;
2111
+ }
2112
+
2113
+ /* Animate the filled value when it changes (e.g. advancing a step). BeerCSS
2114
+ sets the value background but no transition, so the width jumps abruptly. */
2115
+ .kds-progress::-webkit-progress-value {
2116
+ transition: width var(--kds-transition-shorter) var(--kds-easing-standard);
2117
+ }
2118
+
2119
+ .kds-progress::-moz-progress-bar {
2120
+ transition: width var(--kds-transition-shorter) var(--kds-easing-standard);
2121
+ }
2122
+
2101
2123
  /* ========================================
2102
2124
  Link Styles
2103
2125
  ======================================== */