@spothero/ui 14.7.6-beta.2 → 14.7.6-beta.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 +16 -0
- package/CHANGELOG.tmp +10 -1
- package/dex.config.js +4 -2
- package/package.json +1 -1
- package/styles/v2/components/Select/Select.jsx +0 -4
- package/styles/v2/components/Select/Select.stories.js +1 -1
- package/v1/index.js +1 -1
- package/v1/index.js.map +1 -1
- package/v2/index.js +1 -1
- package/v2/index.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# 14.7.6-beta.3 - 05/19/2022
|
|
2
|
+
## Miscellaneous Updates
|
|
3
|
+
|
|
4
|
+
## Miscellaneous Updates
|
|
5
|
+
* [[167d9d2](https://github.com/spothero/fe-ui/commit/167d9d2)] - 14.7.6-beta.2 (sh-devtools-bot)
|
|
6
|
+
* [[c382718](https://github.com/spothero/fe-ui/commit/c382718)] - 14.7.6-beta.1 (sh-devtools-bot)
|
|
7
|
+
* [[267afec](https://github.com/spothero/fe-ui/commit/267afec)] - `fix:` Package-lock (Tyler Williams)
|
|
8
|
+
* [[7949efd](https://github.com/spothero/fe-ui/commit/7949efd)] - `fix:` Fix select story (Tyler Williams)
|
|
9
|
+
* [[10dae6d](https://github.com/spothero/fe-ui/commit/10dae6d)] - `fix:` Add library configuration to webpack (Tyler Williams)
|
|
10
|
+
* [[566919a](https://github.com/spothero/fe-ui/commit/566919a)] - `fix:` Fix path resolution for dex output (Tyler Williams)
|
|
11
|
+
* [[210027e](https://github.com/spothero/fe-ui/commit/210027e)] - `fix:` Fix component index for v1 components (Tyler Williams)
|
|
12
|
+
* [[c0e5458](https://github.com/spothero/fe-ui/commit/c0e5458)] - `fix:` Invalid version number for beta testing (Tyler Williams)
|
|
13
|
+
* [[ba476e8](https://github.com/spothero/fe-ui/commit/ba476e8)] - `test:` Test output type (Tyler Williams)
|
|
14
|
+
* [[713036c](https://github.com/spothero/fe-ui/commit/713036c)] - `chore:` Update version (Tyler Williams)
|
|
15
|
+
* [[af917d8](https://github.com/spothero/fe-ui/commit/af917d8)] - `chore:` Replace rollup with dex (Tyler Williams)
|
|
16
|
+
|
|
1
17
|
# 14.7.6-beta.2 - 05/18/2022
|
|
2
18
|
|
|
3
19
|
## Miscellaneous Updates
|
package/CHANGELOG.tmp
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
|
-
# 14.7.6-beta.
|
|
1
|
+
# 14.7.6-beta.3 - 05/19/2022
|
|
2
|
+
## Miscellaneous Updates
|
|
2
3
|
|
|
3
4
|
## Miscellaneous Updates
|
|
5
|
+
* [[167d9d2](https://github.com/spothero/fe-ui/commit/167d9d2)] - 14.7.6-beta.2 (sh-devtools-bot)
|
|
6
|
+
* [[c382718](https://github.com/spothero/fe-ui/commit/c382718)] - 14.7.6-beta.1 (sh-devtools-bot)
|
|
7
|
+
* [[267afec](https://github.com/spothero/fe-ui/commit/267afec)] - `fix:` Package-lock (Tyler Williams)
|
|
8
|
+
* [[7949efd](https://github.com/spothero/fe-ui/commit/7949efd)] - `fix:` Fix select story (Tyler Williams)
|
|
9
|
+
* [[10dae6d](https://github.com/spothero/fe-ui/commit/10dae6d)] - `fix:` Add library configuration to webpack (Tyler Williams)
|
|
4
10
|
* [[566919a](https://github.com/spothero/fe-ui/commit/566919a)] - `fix:` Fix path resolution for dex output (Tyler Williams)
|
|
5
11
|
* [[210027e](https://github.com/spothero/fe-ui/commit/210027e)] - `fix:` Fix component index for v1 components (Tyler Williams)
|
|
12
|
+
* [[c0e5458](https://github.com/spothero/fe-ui/commit/c0e5458)] - `fix:` Invalid version number for beta testing (Tyler Williams)
|
|
13
|
+
* [[ba476e8](https://github.com/spothero/fe-ui/commit/ba476e8)] - `test:` Test output type (Tyler Williams)
|
|
6
14
|
* [[713036c](https://github.com/spothero/fe-ui/commit/713036c)] - `chore:` Update version (Tyler Williams)
|
|
15
|
+
* [[af917d8](https://github.com/spothero/fe-ui/commit/af917d8)] - `chore:` Replace rollup with dex (Tyler Williams)
|
|
7
16
|
|
package/dex.config.js
CHANGED
|
@@ -2,8 +2,6 @@ const path = require('path');
|
|
|
2
2
|
|
|
3
3
|
const targetEntry = process.env.TARGET_ENTRY;
|
|
4
4
|
|
|
5
|
-
console.log(path.resolve(__dirname, '../', targetEntry));
|
|
6
|
-
|
|
7
5
|
module.exports = {
|
|
8
6
|
client: {
|
|
9
7
|
plugins: [],
|
|
@@ -14,6 +12,10 @@ module.exports = {
|
|
|
14
12
|
output: {
|
|
15
13
|
filename: 'index.js',
|
|
16
14
|
path: path.resolve(__dirname, targetEntry),
|
|
15
|
+
library: {
|
|
16
|
+
name: 'tyler-test',
|
|
17
|
+
type: 'umd',
|
|
18
|
+
},
|
|
17
19
|
},
|
|
18
20
|
},
|
|
19
21
|
},
|
package/package.json
CHANGED
|
@@ -2,10 +2,8 @@ import React, {forwardRef} from 'react';
|
|
|
2
2
|
import cn from 'classnames';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
4
|
import {Select as ChakraSelect} from '@chakra-ui/react';
|
|
5
|
-
import IconChevronDown from '@spothero/icons/chevron-down';
|
|
6
5
|
|
|
7
6
|
import FormControl from '../FormControl/FormControl';
|
|
8
|
-
import Icon from '../Icon/Icon';
|
|
9
7
|
|
|
10
8
|
const Select = forwardRef(
|
|
11
9
|
(
|
|
@@ -33,8 +31,6 @@ const Select = forwardRef(
|
|
|
33
31
|
inputId={props.id}
|
|
34
32
|
>
|
|
35
33
|
<ChakraSelect
|
|
36
|
-
icon={<Icon as={IconChevronDown} />}
|
|
37
|
-
iconSize={12}
|
|
38
34
|
fontWeight="regular"
|
|
39
35
|
fontSize="sm"
|
|
40
36
|
ref={ref}
|