@atlaskit/modal-dialog 15.2.5 → 15.2.7
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,20 @@
|
|
|
1
1
|
# @atlaskit/modal-dialog
|
|
2
2
|
|
|
3
|
+
## 15.2.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e5b4070f51a93`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e5b4070f51a93) -
|
|
8
|
+
Remove Top Layer compatibility aliases and expose close-event helpers from the `dialog` and
|
|
9
|
+
`popover` entry points.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 15.2.6
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 15.2.5
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -30,7 +30,6 @@ var _portal = _interopRequireDefault(require("@atlaskit/portal"));
|
|
|
30
30
|
var _combine = require("@atlaskit/pragmatic-drag-and-drop/combine");
|
|
31
31
|
var _constants = require("@atlaskit/theme/constants");
|
|
32
32
|
var _animations = require("@atlaskit/top-layer/animations");
|
|
33
|
-
var _createCloseEvent = require("@atlaskit/top-layer/create-close-event");
|
|
34
33
|
var _dialog = require("@atlaskit/top-layer/dialog");
|
|
35
34
|
var _dialogScrollLock = require("@atlaskit/top-layer/dialog-scroll-lock");
|
|
36
35
|
var _context = require("../context");
|
|
@@ -115,7 +114,7 @@ var InternalModalWrapper = /*#__PURE__*/(0, _react.forwardRef)(function (props,
|
|
|
115
114
|
action: 'closed',
|
|
116
115
|
componentName: 'modalDialog',
|
|
117
116
|
packageName: "@atlaskit/modal-dialog",
|
|
118
|
-
packageVersion: "15.2.
|
|
117
|
+
packageVersion: "15.2.6"
|
|
119
118
|
});
|
|
120
119
|
var onBlanketClicked = (0, _react.useCallback)(function (e) {
|
|
121
120
|
if (shouldCloseOnOverlayClick) {
|
|
@@ -210,12 +209,12 @@ var InternalModalWrapper = /*#__PURE__*/(0, _react.forwardRef)(function (props,
|
|
|
210
209
|
var onDialogClose = (0, _react.useCallback)(function (_ref) {
|
|
211
210
|
var reason = _ref.reason;
|
|
212
211
|
if (reason === 'escape' && shouldCloseOnEscapePress) {
|
|
213
|
-
onCloseHandler((0,
|
|
212
|
+
onCloseHandler((0, _dialog.createCloseEvent)({
|
|
214
213
|
reason: reason
|
|
215
214
|
}));
|
|
216
215
|
}
|
|
217
216
|
if (reason === 'overlay-click' && shouldCloseOnOverlayClick) {
|
|
218
|
-
onCloseHandler((0,
|
|
217
|
+
onCloseHandler((0, _dialog.createCloseEvent)({
|
|
219
218
|
reason: reason
|
|
220
219
|
}));
|
|
221
220
|
}
|
|
@@ -21,8 +21,7 @@ import Portal from '@atlaskit/portal';
|
|
|
21
21
|
import { combine } from '@atlaskit/pragmatic-drag-and-drop/combine';
|
|
22
22
|
import { layers } from '@atlaskit/theme/constants';
|
|
23
23
|
import { dialogSlideUpAndFade } from '@atlaskit/top-layer/animations';
|
|
24
|
-
import { createCloseEvent } from '@atlaskit/top-layer/
|
|
25
|
-
import { Dialog } from '@atlaskit/top-layer/dialog';
|
|
24
|
+
import { createCloseEvent, Dialog } from '@atlaskit/top-layer/dialog';
|
|
26
25
|
import { DialogScrollLock } from '@atlaskit/top-layer/dialog-scroll-lock';
|
|
27
26
|
import { ModalContext, ScrollContext } from '../context';
|
|
28
27
|
import useModalStack from '../hooks/use-modal-stack';
|
|
@@ -101,7 +100,7 @@ const InternalModalWrapper = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
101
100
|
action: 'closed',
|
|
102
101
|
componentName: 'modalDialog',
|
|
103
102
|
packageName: "@atlaskit/modal-dialog",
|
|
104
|
-
packageVersion: "15.2.
|
|
103
|
+
packageVersion: "15.2.6"
|
|
105
104
|
});
|
|
106
105
|
const onBlanketClicked = useCallback(e => {
|
|
107
106
|
if (shouldCloseOnOverlayClick) {
|
|
@@ -22,8 +22,7 @@ import Portal from '@atlaskit/portal';
|
|
|
22
22
|
import { combine } from '@atlaskit/pragmatic-drag-and-drop/combine';
|
|
23
23
|
import { layers } from '@atlaskit/theme/constants';
|
|
24
24
|
import { dialogSlideUpAndFade } from '@atlaskit/top-layer/animations';
|
|
25
|
-
import { createCloseEvent } from '@atlaskit/top-layer/
|
|
26
|
-
import { Dialog } from '@atlaskit/top-layer/dialog';
|
|
25
|
+
import { createCloseEvent, Dialog } from '@atlaskit/top-layer/dialog';
|
|
27
26
|
import { DialogScrollLock } from '@atlaskit/top-layer/dialog-scroll-lock';
|
|
28
27
|
import { ModalContext, ScrollContext } from '../context';
|
|
29
28
|
import useModalStack from '../hooks/use-modal-stack';
|
|
@@ -106,7 +105,7 @@ var InternalModalWrapper = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
106
105
|
action: 'closed',
|
|
107
106
|
componentName: 'modalDialog',
|
|
108
107
|
packageName: "@atlaskit/modal-dialog",
|
|
109
|
-
packageVersion: "15.2.
|
|
108
|
+
packageVersion: "15.2.6"
|
|
110
109
|
});
|
|
111
110
|
var onBlanketClicked = useCallback(function (e) {
|
|
112
111
|
if (shouldCloseOnOverlayClick) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/modal-dialog",
|
|
3
|
-
"version": "15.2.
|
|
3
|
+
"version": "15.2.7",
|
|
4
4
|
"description": "A modal dialog displays content that requires user interaction, in a layer above the page.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
"watch": "tsc --watch --noEmit --project './tsconfig.json'"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@atlaskit/analytics-next": "^11.
|
|
37
|
+
"@atlaskit/analytics-next": "^11.3.0",
|
|
38
38
|
"@atlaskit/blanket": "^15.0.0",
|
|
39
39
|
"@atlaskit/button": "^23.11.0",
|
|
40
40
|
"@atlaskit/css": "^0.19.0",
|
|
41
41
|
"@atlaskit/ds-lib": "^7.0.0",
|
|
42
42
|
"@atlaskit/icon": "^35.4.0",
|
|
43
|
-
"@atlaskit/layering": "^3.
|
|
43
|
+
"@atlaskit/layering": "^3.8.0",
|
|
44
44
|
"@atlaskit/motion": "^6.2.0",
|
|
45
45
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
46
46
|
"@atlaskit/portal": "^5.5.0",
|
|
47
47
|
"@atlaskit/pragmatic-drag-and-drop": "^1.8.0",
|
|
48
48
|
"@atlaskit/primitives": "^19.0.0",
|
|
49
49
|
"@atlaskit/theme": "^25.0.0",
|
|
50
|
-
"@atlaskit/tokens": "^13.
|
|
51
|
-
"@atlaskit/top-layer": "^0.
|
|
50
|
+
"@atlaskit/tokens": "^13.3.0",
|
|
51
|
+
"@atlaskit/top-layer": "^0.15.0",
|
|
52
52
|
"@babel/runtime": "^7.0.0",
|
|
53
53
|
"@compiled/react": "^0.20.0",
|
|
54
54
|
"bind-event-listener": "^3.0.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"@atlaskit/datetime-picker": "^17.9.0",
|
|
73
73
|
"@atlaskit/docs": "^11.8.0",
|
|
74
74
|
"@atlaskit/dropdown-menu": "^16.10.0",
|
|
75
|
-
"@atlaskit/flag": "^17.
|
|
75
|
+
"@atlaskit/flag": "^17.13.0",
|
|
76
76
|
"@atlaskit/form": "^15.5.0",
|
|
77
77
|
"@atlaskit/heading": "^5.4.0",
|
|
78
78
|
"@atlaskit/link": "^3.4.0",
|