@atlaskit/popup 4.4.3 → 4.4.4
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 +6 -8
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/popup
|
|
2
2
|
|
|
3
|
+
## 4.4.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
3
9
|
## 4.4.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -170,7 +176,6 @@
|
|
|
170
176
|
[`a832dd489aab3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a832dd489aab3) - -
|
|
171
177
|
Migrated from `@emotion/react` to `@compiled/react` in order to improve performance, align with
|
|
172
178
|
the rest of the Atlaskit techstack, and support React 18 Streaming SSR.
|
|
173
|
-
|
|
174
179
|
- Added a `className` prop for applying a focus ring to the custom popup container (Currently
|
|
175
180
|
controlled by the feature flag `platform-design-system-apply-popup-wrapper-focus`). See usage
|
|
176
181
|
example [here](https://atlassian.design/components/popup/examples#customization).
|
|
@@ -1348,12 +1353,10 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
1348
1353
|
well.
|
|
1349
1354
|
|
|
1350
1355
|
These changes have ⚙️ codemod support:
|
|
1351
|
-
|
|
1352
1356
|
- ⚙️ `offset` is no longer a string, but an array of two integers (i.e. '0px 8px' is now [0, 8])
|
|
1353
1357
|
- ⚙️ `boundariesElement` has been replaced with two props: `boundary` and `rootBoundary`. The
|
|
1354
1358
|
three supported values from the boundariesElement prop have been split between the two as
|
|
1355
1359
|
follows:
|
|
1356
|
-
|
|
1357
1360
|
- `boundariesElement = "scrollParents"` has been renamed: use `boundary = "clippingParents"`.
|
|
1358
1361
|
- `boundariesElement = "window"` has been renamed: use `rootBoundary = "document"`, and acts in
|
|
1359
1362
|
a similar fashion.
|
|
@@ -1361,7 +1364,6 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
1361
1364
|
- **✨new** the `boundary` prop now supports custom elements.
|
|
1362
1365
|
|
|
1363
1366
|
- Components passed into the `content` have a change to render props:
|
|
1364
|
-
|
|
1365
1367
|
- ⚙️ `scheduleUpdate`, for async updates, has been renamed to `update`, and now returns a
|
|
1366
1368
|
Promise.
|
|
1367
1369
|
|
|
@@ -1540,7 +1542,6 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
1540
1542
|
|
|
1541
1543
|
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
1542
1544
|
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
1543
|
-
|
|
1544
1545
|
- @atlaskit/docs@8.3.2
|
|
1545
1546
|
- @atlaskit/visual-regression@0.1.9
|
|
1546
1547
|
- @atlaskit/button@13.3.7
|
|
@@ -1574,7 +1575,6 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
1574
1575
|
### Minor Changes
|
|
1575
1576
|
|
|
1576
1577
|
- [minor][0946fdd319](https://bitbucket.org/atlassian/atlassian-frontend/commits/0946fdd319):
|
|
1577
|
-
|
|
1578
1578
|
- **BREAKING** - Changes `content` prop to expect render props instead of a component. This is
|
|
1579
1579
|
primarily to stop your components remounting when not having a stable reference.
|
|
1580
1580
|
|
|
@@ -1661,7 +1661,6 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
1661
1661
|
### Minor Changes
|
|
1662
1662
|
|
|
1663
1663
|
- [minor][6e0bcc75ac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e0bcc75ac):
|
|
1664
|
-
|
|
1665
1664
|
- Adds the ability to render class components as children of Popup.
|
|
1666
1665
|
- Removes redundatnt onOpen callback prop for Popup
|
|
1667
1666
|
|
|
@@ -1686,7 +1685,6 @@ _WRONG RELEASE TYPE - DON'T USE_
|
|
|
1686
1685
|
### Patch Changes
|
|
1687
1686
|
|
|
1688
1687
|
- [patch][28e9c65acd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/28e9c65acd):
|
|
1689
|
-
|
|
1690
1688
|
- Add multiple popups example
|
|
1691
1689
|
- Add unit tests
|
|
1692
1690
|
- Add useCloseManager
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/popup",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.4",
|
|
4
4
|
"description": "A popup displays brief content in an overlay.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"@atlaskit/popper": "^7.1.0",
|
|
40
40
|
"@atlaskit/portal": "^5.1.0",
|
|
41
41
|
"@atlaskit/primitives": "^15.0.0",
|
|
42
|
-
"@atlaskit/tokens": "^
|
|
42
|
+
"@atlaskit/tokens": "^7.0.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
|
-
"@compiled/react": "^0.18.
|
|
44
|
+
"@compiled/react": "^0.18.6",
|
|
45
45
|
"bind-event-listener": "^3.0.0",
|
|
46
46
|
"focus-trap": "^2.4.5",
|
|
47
47
|
"memoize-one": "^6.0.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@af/visual-regression": "workspace:^",
|
|
58
58
|
"@atlaskit/button": "^23.5.0",
|
|
59
59
|
"@atlaskit/code": "^17.2.0",
|
|
60
|
-
"@atlaskit/docs": "^11.
|
|
60
|
+
"@atlaskit/docs": "^11.2.0",
|
|
61
61
|
"@atlaskit/form": "^14.2.0",
|
|
62
62
|
"@atlaskit/heading": "^5.2.0",
|
|
63
63
|
"@atlaskit/icon": "^28.5.0",
|