@spothero/ui 15.1.1 → 15.1.3-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
@@ -2,28 +2,10 @@
2
2
 
3
3
  ## Miscellaneous Updates
4
4
  * [[bff3c9d](https://github.com/spothero/fe-ui/commit/bff3c9d)] - `fix:` Fix imports in v1 modal ([#302](https://github.com/spothero/fe-ui/pull/302)) (Mick Johnson)
5
- * `fix:` Fix imports in v1 modal
6
- * `publish:` Changelog update for 14.8.5-beta.0 release
7
- * 14.8.5-beta.0
8
- * `squash:` Remove beta release stuffCo-authored-by: sh-devtools-bot <sh-dev-tools-bot@spothero.com>
9
5
 
10
6
  # 14.8.4 - 06/21/2022
11
7
  ## Miscellaneous Updates
12
8
  * [[2809609](https://github.com/spothero/fe-ui/commit/2809609)] - `feature:` Add Modal to V2 ([#299](https://github.com/spothero/fe-ui/pull/299)) (Mick Johnson)
13
- * `squash:` Add new Modal component
14
- * `squash:` More specific styling and scroll behavior
15
- * `squash:` Mobile styling
16
- * `squash:` Add Accordion Story
17
- * `squash:` Cleanup stories and add focus state to close button
18
- * `squash:` Story name cleanup
19
- * `squash:` Design review feedback
20
- * `squash:` Add jsdoc comments
21
- * `squash:` Move v1 Modal to right place and export the subcomponents
22
- * `squash:` Fix stylesheet import
23
- * `squash:` Add hideCloseButton Prop, Render Box with header styles if header not passed in, Adjust visuals based on presence of header and close button
24
- * `squash:` Proptypes type
25
- * `squash:` Fixing the old modal export
26
- * `squash:` Make onClose not required, tweak header styling
27
9
 
28
10
  # 14.8.3 - 06/21/2022
29
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spothero/ui",
3
- "version": "15.1.1",
3
+ "version": "15.1.3-beta.0",
4
4
  "description": "SpotHero's React component UI library.",
5
5
  "main": "v2/index.js",
6
6
  "repository": "https://github.com/spothero/fe-monorepo",
@@ -3,5 +3,8 @@ export default {
3
3
  zIndex: 'layer8',
4
4
  justifyContent: 'center',
5
5
  alignItems: {base: 'flex-end', tablet: 'center'},
6
- overflow: 'hidden',
6
+ height: '100%',
7
+ minHeight: '-moz-available',
8
+ minHeight: '-webkit-fill-available',
9
+ minHeight: 'fill-available',
7
10
  };
@@ -23,8 +23,8 @@ const Radio = forwardRef(
23
23
  isDisabled={isDisabled}
24
24
  isFocusable={!isDisabled}
25
25
  value={value}
26
- {...props}
27
26
  alignItems="start"
27
+ {...props}
28
28
  >
29
29
  {children}
30
30
  {helperText && (
@@ -29,7 +29,7 @@ const RadioGroup = forwardRef(
29
29
  errorMessage={errorMessage}
30
30
  label={label}
31
31
  inputId={props.id}
32
- isRadio
32
+ isFieldset
33
33
  >
34
34
  <ChakraRadioGroup
35
35
  ref={ref}