@khipu/design-system 0.2.0-alpha.34 → 0.2.0-alpha.35
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.
- package/dist/beercss/khipu-beercss.css +34 -1
- package/dist/beercss/khipu-beercss.min.css +1 -1
- package/dist/beercss/khipu-beercss.scoped.css +34 -1
- package/dist/beercss/khipu-beercss.scoped.min.css +1 -1
- package/dist/beercss/metadata.json +5 -5
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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-09T19:35:12.251Z
|
|
17
17
|
*
|
|
18
18
|
* To regenerate:
|
|
19
19
|
* cd design-system && npm run tokens:generate
|
|
@@ -6250,6 +6250,39 @@
|
|
|
6250
6250
|
display: none;
|
|
6251
6251
|
}
|
|
6252
6252
|
|
|
6253
|
+
/* -- Button Error (red / destructive CTA) -- */
|
|
6254
|
+
.kds-theme-root button.kds-btn-error,
|
|
6255
|
+
.kds-theme-root a.kds-btn-error {
|
|
6256
|
+
background: var(--kds-color-error-main);
|
|
6257
|
+
color: var(--kds-color-error-contrast);
|
|
6258
|
+
border: none;
|
|
6259
|
+
}
|
|
6260
|
+
|
|
6261
|
+
.kds-theme-root button.kds-btn-error:hover:not(:disabled),
|
|
6262
|
+
.kds-theme-root a.kds-btn-error:hover:not(:disabled) {
|
|
6263
|
+
background: var(--kds-color-error-dark);
|
|
6264
|
+
}
|
|
6265
|
+
|
|
6266
|
+
.kds-theme-root button.kds-btn-error:active:not(:disabled),
|
|
6267
|
+
.kds-theme-root button.kds-btn-error:focus-visible:not(:disabled),
|
|
6268
|
+
.kds-theme-root a.kds-btn-error:active:not(:disabled),
|
|
6269
|
+
.kds-theme-root a.kds-btn-error:focus-visible:not(:disabled) {
|
|
6270
|
+
background: var(--kds-color-error-dark);
|
|
6271
|
+
outline: 2px solid var(--kds-color-error-main);
|
|
6272
|
+
outline-offset: 2px;
|
|
6273
|
+
}
|
|
6274
|
+
|
|
6275
|
+
.kds-theme-root button.kds-btn-error:disabled,
|
|
6276
|
+
.kds-theme-root a.kds-btn-error:disabled {
|
|
6277
|
+
background-color: var(--kds-color-action-disabled-bg);
|
|
6278
|
+
color: var(--kds-color-action-disabled);
|
|
6279
|
+
box-shadow: none;
|
|
6280
|
+
}
|
|
6281
|
+
|
|
6282
|
+
.kds-theme-root button.kds-btn-error::after {
|
|
6283
|
+
display: none;
|
|
6284
|
+
}
|
|
6285
|
+
|
|
6253
6286
|
/* -- Field Helper Text -- */
|
|
6254
6287
|
.kds-theme-root .kds-field-helper {
|
|
6255
6288
|
font-size: var(--kds-font-size-xs);
|