@spothero/ui 14.7.4 → 14.7.6-beta.0

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.6-beta.0 - 05/17/2022
2
+
3
+ ## Miscellaneous Updates
4
+ * [[a9d0a6b](https://github.com/spothero/fe-ui/commit/a9d0a6b)] - `fix:` Updated Icon import to use chakra instead of local (Nathan)
5
+
6
+ # 14.7.5 - 05/17/2022
7
+
8
+ ## Miscellaneous Updates
9
+ * [[20382aa](https://github.com/spothero/fe-ui/commit/20382aa)] - `fix:` Make font weight normal in Input ([#293](https://github.com/spothero/fe-ui/pull/293)) (annaliarosed)
10
+ * `fix:` Make font weight normal in Input
11
+ * `refactor:` Explicitely write out font weight normalCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
12
+
1
13
  # 14.7.4 - 05/17/2022
2
14
 
3
15
  ## Miscellaneous Updates
package/CHANGELOG.tmp CHANGED
@@ -1,6 +1,5 @@
1
- # 14.7.4 - 05/17/2022
1
+ # 14.7.6-beta.0 - 05/17/2022
2
2
 
3
3
  ## Miscellaneous Updates
4
- * [[4adc1b1](https://github.com/spothero/fe-ui/commit/4adc1b1)] - `fix:` Icon inside select updated to match design file ([#291](https://github.com/spothero/fe-ui/pull/291)) (annaliarosed)
5
- * `Co-authored-by:` Annalia Destefano <annalia.destefano@spothero.com>
4
+ * [[a9d0a6b](https://github.com/spothero/fe-ui/commit/a9d0a6b)] - `fix:` Updated Icon import to use chakra instead of local (Nathan)
6
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spothero/ui",
3
- "version": "14.7.4",
3
+ "version": "14.7.6-beta.0",
4
4
  "description": "SpotHero's React component UI library.",
5
5
  "main": "v2/index-bundled.cjs.js",
6
6
  "module": "v2/index.js",
@@ -10,7 +10,7 @@ const variants = {
10
10
  paddingLeft: 3,
11
11
  paddingRight: 3,
12
12
  bg: 'inherit',
13
- fontWeight: 'semibold',
13
+ fontWeight: 'normal',
14
14
  boxShadow: 'none !important',
15
15
  _placeholder: {color: 'gray.600', fontWeight: 'normal'},
16
16
  _focus: {
@@ -1,11 +1,10 @@
1
1
  import React, {forwardRef} from 'react';
2
2
  import cn from 'classnames';
3
3
  import PropTypes from 'prop-types';
4
- import {Select as ChakraSelect} from '@chakra-ui/react';
4
+ import {Select as ChakraSelect, Icon} from '@chakra-ui/react';
5
5
  import IconChevronDown from '@spothero/icons/chevron-down';
6
6
 
7
7
  import FormControl from '../FormControl/FormControl';
8
- import Icon from '../Icon/Icon';
9
8
 
10
9
  const Select = forwardRef(
11
10
  (