@spothero/ui 14.7.1 → 14.7.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # 14.7.2 - 05/16/2022
2
+
3
+ ## Miscellaneous Updates
4
+ * [[d967c18](https://github.com/spothero/fe-ui/commit/d967c18)] - `fix:` border color change on invalid and focused ([#290](https://github.com/spothero/fe-ui/pull/290)) (annaliarosed)
5
+ * `fix:` Border color change on invalid and focused
6
+ * `fix:` Fix font size of error message to match designCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
7
+
1
8
  # 14.7.1 - 05/13/2022
2
9
 
3
10
  ## Miscellaneous Updates
package/CHANGELOG.tmp CHANGED
@@ -1,5 +1,7 @@
1
- # 14.7.1 - 05/13/2022
1
+ # 14.7.2 - 05/16/2022
2
2
 
3
3
  ## Miscellaneous Updates
4
- * [[7141cca](https://github.com/spothero/fe-ui/commit/7141cca)] - `fix:` Kebab case style property was throwing terminal warning ([#289](https://github.com/spothero/fe-ui/pull/289)) (Mick Johnson)
4
+ * [[d967c18](https://github.com/spothero/fe-ui/commit/d967c18)] - `fix:` border color change on invalid and focused ([#290](https://github.com/spothero/fe-ui/pull/290)) (annaliarosed)
5
+ * `fix:` Border color change on invalid and focused
6
+ * `fix:` Fix font size of error message to match designCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
5
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spothero/ui",
3
- "version": "14.7.1",
3
+ "version": "14.7.2",
4
4
  "description": "SpotHero's React component UI library.",
5
5
  "main": "v2/index-bundled.cjs.js",
6
6
  "module": "v2/index.js",
@@ -27,7 +27,7 @@ const FormControl = forwardRef(
27
27
  {helperText}
28
28
  </FormHelperText>
29
29
  )}
30
- <FormErrorMessage color="error" mt={1} fontSize="xs">
30
+ <FormErrorMessage color="error" mt={1} fontSize="sm">
31
31
  {errorMessage}
32
32
  </FormErrorMessage>
33
33
  </ChakraFormControl>
@@ -25,6 +25,9 @@ const variants = {
25
25
  },
26
26
  _invalid: {
27
27
  borderColor: 'error',
28
+ _focus: {
29
+ borderColor: 'error',
30
+ },
28
31
  },
29
32
  },
30
33
  },