@khipu/design-system 0.2.0-alpha.35 → 0.2.0-alpha.36

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-09T19:35:12.251Z
14
+ * Generated: 2026-06-09T20:29:44.508Z
15
15
  *
16
16
  * To regenerate:
17
17
  * cd design-system && npm run tokens:generate
@@ -996,6 +996,30 @@ a.kds-btn-text:disabled {
996
996
  box-shadow: none;
997
997
  }
998
998
 
999
+ /* Error text (destructive, ghost) — red text, no fill/border. Para acciones
1000
+ destructivas secundarias que no deben competir con el CTA primario. */
1001
+ button.kds-btn-error-text,
1002
+ a.kds-btn-error-text {
1003
+ background: transparent;
1004
+ color: var(--kds-color-error-main);
1005
+ border: none;
1006
+ padding: 6px var(--kds-spacing-2);
1007
+ min-height: 32px;
1008
+ box-shadow: none;
1009
+ }
1010
+
1011
+ button.kds-btn-error-text:hover:not(:disabled),
1012
+ a.kds-btn-error-text:hover:not(:disabled) {
1013
+ background: var(--kds-color-action-hover);
1014
+ }
1015
+
1016
+ button.kds-btn-error-text:disabled,
1017
+ a.kds-btn-error-text:disabled {
1018
+ background: transparent;
1019
+ color: var(--kds-color-action-disabled);
1020
+ box-shadow: none;
1021
+ }
1022
+
999
1023
  /* Icon wrapper - control size via span container */
1000
1024
  button.kds-btn > .kds-icon,
1001
1025
  a.kds-btn > .kds-icon {