@spothero/ui 14.8.4 → 14.8.5
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,12 @@
|
|
|
1
|
+
# 14.8.5 - 06/22/2022
|
|
2
|
+
|
|
3
|
+
## Miscellaneous Updates
|
|
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
|
+
|
|
1
10
|
# 14.8.4 - 06/21/2022
|
|
2
11
|
## Miscellaneous Updates
|
|
3
12
|
* [[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)
|
package/CHANGELOG.tmp
CHANGED
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
# 14.8.
|
|
1
|
+
# 14.8.5 - 06/22/2022
|
|
2
|
+
|
|
2
3
|
## Miscellaneous Updates
|
|
3
|
-
* [[
|
|
4
|
-
* `
|
|
5
|
-
* `
|
|
6
|
-
*
|
|
7
|
-
* `squash:`
|
|
8
|
-
* `squash:` Cleanup stories and add focus state to close button
|
|
9
|
-
* `squash:` Story name cleanup
|
|
10
|
-
* `squash:` Design review feedback
|
|
11
|
-
* `squash:` Add jsdoc comments
|
|
12
|
-
* `squash:` Move v1 Modal to right place and export the subcomponents
|
|
13
|
-
* `squash:` Fix stylesheet import
|
|
14
|
-
* `squash:` Add hideCloseButton Prop, Render Box with header styles if header not passed in, Adjust visuals based on presence of header and close button
|
|
15
|
-
* `squash:` Proptypes type
|
|
16
|
-
* `squash:` Fixing the old modal export
|
|
17
|
-
* `squash:` Make onClose not required, tweak header styling
|
|
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>
|
|
18
9
|
|
|
@@ -54,7 +54,7 @@ var _dom = _interopRequireDefault(require("@spothero/utils/dom"));
|
|
|
54
54
|
|
|
55
55
|
var _Button = _interopRequireDefault(require("../Button/Button"));
|
|
56
56
|
|
|
57
|
-
var _Portal = _interopRequireDefault(require("Portal/Portal"));
|
|
57
|
+
var _Portal = _interopRequireDefault(require("../../../Portal/Portal"));
|
|
58
58
|
|
|
59
59
|
function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "function") return null; var cacheBabelInterop = new _WeakMap(); var cacheNodeInterop = new _WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
60
60
|
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ import IconChevronLeft from '@spothero/icons/chevron-left';
|
|
|
7
7
|
import IconTimes from '@spothero/icons/times';
|
|
8
8
|
import DOMUtils from '@spothero/utils/dom';
|
|
9
9
|
import Button from 'v1/components/Button/Button';
|
|
10
|
-
import Portal from 'Portal/Portal';
|
|
10
|
+
import Portal from '../../../Portal/Portal';
|
|
11
11
|
|
|
12
12
|
export default class Modal extends PureComponent {
|
|
13
13
|
static propTypes = {
|
|
@@ -2,7 +2,7 @@ import React, {useState} from 'react';
|
|
|
2
2
|
import Button from 'v1/components/Button/Button';
|
|
3
3
|
import Modal from '../Modal';
|
|
4
4
|
import ModalContent from '../ModalContent';
|
|
5
|
-
import ErrorBoundary from 'ErrorBoundary/ErrorBoundary';
|
|
5
|
+
import ErrorBoundary from '../../../../ErrorBoundary/ErrorBoundary';
|
|
6
6
|
import DOMUtils from '@spothero/utils/dom';
|
|
7
7
|
|
|
8
8
|
export default {
|