@unitedstatespowersquadrons/components 1.4.0-5 → 1.4.0-7

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/Colors.tsx CHANGED
@@ -140,7 +140,7 @@ const specificColors = {
140
140
  },
141
141
  },
142
142
  toast: {
143
- broadcast: buttonColors.background.normal.purple,
143
+ broadcast: hoverColors.purple,
144
144
  error: "#CC0000",
145
145
  notice: "#009900",
146
146
  success: "#000099",
package/Toasts/Toast.tsx CHANGED
@@ -24,21 +24,21 @@ const isAllowedUrl = (url: string, allowedDomains?: string[]): boolean => {
24
24
 
25
25
  const useStyles = createUseStyles({
26
26
  broadcast: {
27
- borderColor: Colors.toast.broadcast,
27
+ borderColor: `${Colors.toast.broadcast} !important}`,
28
28
  color: Colors.toast.broadcast,
29
29
  },
30
30
  dismissed: { opacity: "0" },
31
31
  error: {
32
- borderColor: Colors.toast.error,
32
+ borderColor: `${Colors.toast.error} !important}`,
33
33
  color: Colors.toast.error,
34
34
  },
35
35
  italic: { fontStyle: "italic" },
36
36
  notice: {
37
- borderColor: Colors.toast.notice,
37
+ borderColor: `${Colors.toast.notice} !important}`,
38
38
  color: Colors.toast.notice,
39
39
  },
40
40
  success: {
41
- borderColor: Colors.toast.success,
41
+ borderColor: `${Colors.toast.success} !important}`,
42
42
  color: Colors.toast.success,
43
43
  },
44
44
  toast: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unitedstatespowersquadrons/components",
3
- "version": "1.4.0-5",
3
+ "version": "1.4.0-7",
4
4
  "description": "USPS shared React components library",
5
5
  "main": "index.tsx",
6
6
  "scripts": {