@granto-umbrella/umbrella-components 2.3.17 → 2.3.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@granto-umbrella/umbrella-components",
3
- "version": "2.3.17",
3
+ "version": "2.3.18",
4
4
  "description": "Umbrella Components for React",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -108,6 +108,21 @@ const buttonVariants = {
108
108
  color: ${semanticColors.branding.text.accent.disabled};
109
109
  }
110
110
  `,
111
+
112
+ ghost_alert: css`
113
+ background: transparent;
114
+ color: ${semanticColors.danger.text.enabled};
115
+ border: none;
116
+ &:hover {
117
+ color: ${semanticColors.danger.text.hover};
118
+ }
119
+ &:active {
120
+ color: ${semanticColors.danger.text.pressed};
121
+ }
122
+ &:disabled {
123
+ color: ${semanticColors.danger.text.disabled};
124
+ }
125
+ `,
111
126
  danger: css`
112
127
  background: ${semanticColors.danger.surface.enabled};
113
128
  color: ${semanticColors.danger.text.onSurface};
@@ -8,6 +8,7 @@ export interface ButtonProps
8
8
  | "outline_ghost_disabled"
9
9
  | "danger"
10
10
  | "ghost"
11
+ | "ghost_alert"
11
12
  | "alert";
12
13
  radius?: string;
13
14
  isLoading?: boolean;