@unitedstatespowersquadrons/components 1.2.28 → 1.2.29

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/ActionButton.tsx CHANGED
@@ -12,6 +12,8 @@ const useStyles = createUseStyles({
12
12
  blueColored: { ...Styles.colorizeButton("blue") },
13
13
  blueGray: { ...Styles.blue },
14
14
  button: { ...Styles.button },
15
+ darkGrayColored: { ...Styles.colorizeButton("darkGray") },
16
+ darkGrayGray: { ...Styles.darkGray },
15
17
  grayColored: { ...Styles.colorizeButton("gray") },
16
18
  grayGray: { ...Styles.gray },
17
19
  greenColored: { ...Styles.colorizeButton("green") },
package/Colors.tsx CHANGED
@@ -75,6 +75,7 @@ const shadesLegacy = {
75
75
 
76
76
  export type ButtonColorName =
77
77
  | "blue"
78
+ | "darkGray"
78
79
  | "gray"
79
80
  | "green"
80
81
  | "orange"
@@ -90,7 +91,8 @@ const specificColors = {
90
91
  background: {
91
92
  hover: {
92
93
  blue: "#5588EE",
93
- gray: "#BBBBBB",
94
+ darkGray: shades._8,
95
+ gray: shades._b,
94
96
  green: "#55BB55",
95
97
  orange: "#EE8833",
96
98
  purple: "#8844EE",
@@ -98,7 +100,8 @@ const specificColors = {
98
100
  },
99
101
  normal: {
100
102
  blue: "#6699FF",
101
- gray: shadesLegacy.veryLightGray,
103
+ darkGray: shades._9,
104
+ gray: shades._c,
102
105
  green: "#66CC66",
103
106
  orange: "#FF9944",
104
107
  purple: "#9955FF",
@@ -106,7 +109,8 @@ const specificColors = {
106
109
  },
107
110
  shadow: {
108
111
  blue: "#4477DD",
109
- gray: "#AAAAAA",
112
+ darkGray: shades._7,
113
+ gray: shades._a,
110
114
  green: "#44AA44",
111
115
  orange: "#DD7722",
112
116
  purple: "#7733DD",
@@ -115,7 +119,7 @@ const specificColors = {
115
119
  },
116
120
  border: "gray",
117
121
  glow: "rgba(0, 200, 200, 0.5)",
118
- shadow: "#AAAAAA",
122
+ shadow: shades._a,
119
123
  },
120
124
  exam: {
121
125
  dragging: "#00CCCC",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unitedstatespowersquadrons/components",
3
- "version": "1.2.28",
3
+ "version": "1.2.29",
4
4
  "description": "USPS shared React components library",
5
5
  "main": "index.tsx",
6
6
  "scripts": {