@spothero/ui 14.7.0 → 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 +12 -0
- package/CHANGELOG.tmp +5 -4
- package/package.json +1 -1
- package/styles/v2/components/Button/Button.jsx +0 -1
- package/styles/v2/components/Button/Button.styles.js +2 -0
- package/styles/v2/components/FormControl/FormControl.jsx +1 -1
- package/styles/v2/components/Input/styles/index.js +3 -0
- 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 +8 -6
- package/v2/index-unbundled.cjs.js.map +1 -1
- package/v2/index-unbundled.esm.js +8 -6
- package/v2/index-unbundled.esm.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
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
|
+
|
|
8
|
+
# 14.7.1 - 05/13/2022
|
|
9
|
+
|
|
10
|
+
## Miscellaneous Updates
|
|
11
|
+
* [[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)
|
|
12
|
+
|
|
1
13
|
# 14.7.0 - 05/12/2022
|
|
2
14
|
|
|
3
15
|
## New Features
|
package/CHANGELOG.tmp
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
# 14.7.
|
|
1
|
+
# 14.7.2 - 05/16/2022
|
|
2
2
|
|
|
3
|
-
##
|
|
4
|
-
* [[
|
|
5
|
-
* `
|
|
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>
|
|
6
7
|
|
package/package.json
CHANGED
|
@@ -15,7 +15,6 @@ const anchorProps = (isExternal = false) => ({
|
|
|
15
15
|
const Button = forwardRef(({asAnchor, isExternal, ...props}, ref) => (
|
|
16
16
|
<ChakraButton
|
|
17
17
|
iconSpacing={2}
|
|
18
|
-
sx={{'text-underline-offset': '1px'}}
|
|
19
18
|
{...props}
|
|
20
19
|
{...((asAnchor || props.as === 'a') && anchorProps(isExternal))}
|
|
21
20
|
ref={ref}
|
|
@@ -142,6 +142,7 @@ export const variants = {
|
|
|
142
142
|
borderRadius: 'unset',
|
|
143
143
|
color: 'primary.default',
|
|
144
144
|
textDecoration: 'underline',
|
|
145
|
+
textUnderlineOffset: '1px',
|
|
145
146
|
h: 'unset',
|
|
146
147
|
m: 'unset',
|
|
147
148
|
minW: 'unset',
|
|
@@ -164,6 +165,7 @@ export const variants = {
|
|
|
164
165
|
borderWidth: 'none',
|
|
165
166
|
color: 'white',
|
|
166
167
|
textDecoration: 'underline',
|
|
168
|
+
textUnderlineOffset: '1px',
|
|
167
169
|
h: 'unset',
|
|
168
170
|
m: 'unset',
|
|
169
171
|
minW: 'unset',
|