@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 +12 -0
- package/CHANGELOG.tmp +2 -3
- package/package.json +1 -1
- package/styles/v2/components/Input/styles/index.js +1 -1
- package/styles/v2/components/Select/Select.jsx +1 -2
- package/v1/index-bundled.cjs.js +1 -1
- package/v1/index-bundled.cjs.js.map +1 -1
- package/v1/index-bundled.esm.js +1 -1
- package/v1/index-bundled.esm.js.map +1 -1
- package/v1/index-unbundled.cjs.js +35 -35
- package/v1/index-unbundled.esm.js +35 -35
- package/v2/index-bundled.cjs.js +1 -1
- package/v2/index-bundled.cjs.js.map +1 -1
- package/v2/index-bundled.esm.js +1 -1
- package/v2/index-bundled.esm.js.map +1 -1
- package/v2/index-unbundled.cjs.js +159 -159
- package/v2/index-unbundled.cjs.js.map +1 -1
- package/v2/index-unbundled.esm.js +159 -159
- package/v2/index-unbundled.esm.js.map +1 -1
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.
|
|
1
|
+
# 14.7.6-beta.0 - 05/17/2022
|
|
2
2
|
|
|
3
3
|
## Miscellaneous Updates
|
|
4
|
-
* [[
|
|
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,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
|
(
|