@spothero/ui 14.7.1 → 14.7.3

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,15 @@
1
+ # 14.7.3 - 05/16/2022
2
+
3
+ ## Miscellaneous Updates
4
+ * [[147d2d6](https://github.com/spothero/fe-ui/commit/147d2d6)] - `fix:` Adjusted z-index so popover should always be on top ([#292](https://github.com/spothero/fe-ui/pull/292)) (Nathan Caraker)
5
+
6
+ # 14.7.2 - 05/16/2022
7
+
8
+ ## Miscellaneous Updates
9
+ * [[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)
10
+ * `fix:` Border color change on invalid and focused
11
+ * `fix:` Fix font size of error message to match designCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
12
+
1
13
  # 14.7.1 - 05/13/2022
2
14
 
3
15
  ## Miscellaneous Updates
package/CHANGELOG.tmp CHANGED
@@ -1,5 +1,5 @@
1
- # 14.7.1 - 05/13/2022
1
+ # 14.7.3 - 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
+ * [[147d2d6](https://github.com/spothero/fe-ui/commit/147d2d6)] - `fix:` Adjusted z-index so popover should always be on top ([#292](https://github.com/spothero/fe-ui/pull/292)) (Nathan Caraker)
5
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spothero/ui",
3
- "version": "14.7.1",
3
+ "version": "14.7.3",
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
  },
@@ -7,6 +7,7 @@ const popperStyles = ({variant}) => ({
7
7
  '--popper-arrow-shadow-color': t => t.colors.gray['100'],
8
8
  borderWidth: '1px',
9
9
  borderStyle: 'solid',
10
+ zIndex: 'layer10',
10
11
  });
11
12
 
12
13
  export default popperStyles;