@khipu/design-system 0.2.0-alpha.101 → 0.2.0-alpha.102
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-07T13:
|
|
14
|
+
* Generated: 2026-07-07T13:35:39.708Z
|
|
15
15
|
*
|
|
16
16
|
* To regenerate:
|
|
17
17
|
* cd design-system && npm run tokens:generate
|
|
@@ -2168,6 +2168,9 @@ a.kds-btn-google:disabled {
|
|
|
2168
2168
|
|
|
2169
2169
|
.kds-secure-loader-message {
|
|
2170
2170
|
margin: 0;
|
|
2171
|
+
/* !important: anula el auto-espaciado de hermanos de BeerCSS (0,5,1);
|
|
2172
|
+
la separación con el título la da el gap del contenedor (spacing-0-25). */
|
|
2173
|
+
margin-top: 0 !important;
|
|
2171
2174
|
font-family: var(--kds-font-family-secondary);
|
|
2172
2175
|
font-size: var(--kds-font-size-body1);
|
|
2173
2176
|
line-height: var(--kds-line-height-normal);
|
|
@@ -2184,12 +2187,13 @@ a.kds-btn-google:disabled {
|
|
|
2184
2187
|
block-size: var(--kds-secure-loader-size, 6.25rem);
|
|
2185
2188
|
}
|
|
2186
2189
|
|
|
2187
|
-
/* Anillo: SVG nativo con arco vía stroke-dasharray
|
|
2188
|
-
|
|
2190
|
+
/* Anillo: SVG nativo con arco vía stroke-dasharray. Replica el CircularProgress
|
|
2191
|
+
original (viewBox 44u, thickness 2, arco ~63%, disableShrink). El giro se anima
|
|
2192
|
+
con stroke-dashoffset (el círculo queda estático y nítido); rotar el SVG con
|
|
2193
|
+
transform rasteriza el anillo y se ve irregular durante el giro. */
|
|
2189
2194
|
.kds-secure-loader-ring {
|
|
2190
2195
|
inline-size: var(--kds-secure-loader-size, 6.25rem);
|
|
2191
2196
|
block-size: var(--kds-secure-loader-size, 6.25rem);
|
|
2192
|
-
animation: kds-secure-loader-spin 1.2s linear infinite;
|
|
2193
2197
|
}
|
|
2194
2198
|
|
|
2195
2199
|
.kds-secure-loader-ring circle {
|
|
@@ -2197,13 +2201,14 @@ a.kds-btn-google:disabled {
|
|
|
2197
2201
|
stroke: var(--kds-color-primary-main);
|
|
2198
2202
|
stroke-width: 2;
|
|
2199
2203
|
stroke-linecap: round;
|
|
2200
|
-
/* circunferencia
|
|
2201
|
-
stroke-dasharray: 80
|
|
2204
|
+
/* circunferencia = 2π·20.2 ≈ 126.92; arco visible 80 (~63%) + hueco 46.92 */
|
|
2205
|
+
stroke-dasharray: 80 46.92;
|
|
2206
|
+
animation: kds-secure-loader-dash 1.2s linear infinite;
|
|
2202
2207
|
}
|
|
2203
2208
|
|
|
2204
|
-
@keyframes kds-secure-loader-
|
|
2209
|
+
@keyframes kds-secure-loader-dash {
|
|
2205
2210
|
to {
|
|
2206
|
-
|
|
2211
|
+
stroke-dashoffset: -126.92;
|
|
2207
2212
|
}
|
|
2208
2213
|
}
|
|
2209
2214
|
|