@atlaskit/popup 4.8.3 → 4.9.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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/popup
|
|
2
2
|
|
|
3
|
+
## 4.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`a910081d920cc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a910081d920cc) -
|
|
8
|
+
Adds a header (with a close button), body, and footer as slot subcomponents of flyout menu item
|
|
9
|
+
content, and adjusts for body scrolling
|
|
10
|
+
|
|
3
11
|
## 4.8.3
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -41,7 +41,7 @@ var DefaultPopupComponent = /*#__PURE__*/(0, _react.forwardRef)(function (props,
|
|
|
41
41
|
children = props.children,
|
|
42
42
|
appearance = props.appearance,
|
|
43
43
|
className = props.className,
|
|
44
|
-
|
|
44
|
+
_isReferenceHidden = props.isReferenceHidden,
|
|
45
45
|
htmlAttributes = (0, _objectWithoutProperties2.default)(props, _excluded);
|
|
46
46
|
return /*#__PURE__*/React.createElement("div", (0, _extends2.default)({
|
|
47
47
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
@@ -29,7 +29,7 @@ const DefaultPopupComponent = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
29
29
|
children,
|
|
30
30
|
appearance,
|
|
31
31
|
className,
|
|
32
|
-
isReferenceHidden,
|
|
32
|
+
isReferenceHidden: _isReferenceHidden,
|
|
33
33
|
...htmlAttributes
|
|
34
34
|
} = props;
|
|
35
35
|
return /*#__PURE__*/React.createElement("div", _extends({
|
|
@@ -32,7 +32,7 @@ var DefaultPopupComponent = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
32
32
|
children = props.children,
|
|
33
33
|
appearance = props.appearance,
|
|
34
34
|
className = props.className,
|
|
35
|
-
|
|
35
|
+
_isReferenceHidden = props.isReferenceHidden,
|
|
36
36
|
htmlAttributes = _objectWithoutProperties(props, _excluded);
|
|
37
37
|
return /*#__PURE__*/React.createElement("div", _extends({
|
|
38
38
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|