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