@atlaskit/inline-dialog 15.0.4 → 15.1.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 +14 -0
- package/dist/cjs/InlineDialog/index.js +1 -1
- package/dist/cjs/InlineDialog/node-resolver-wrapper.js +1 -1
- package/dist/es2019/InlineDialog/index.js +1 -1
- package/dist/es2019/InlineDialog/node-resolver-wrapper.js +3 -1
- package/dist/esm/InlineDialog/index.js +1 -1
- package/dist/esm/InlineDialog/node-resolver-wrapper.js +1 -1
- package/dist/types/InlineDialog/node-resolver-wrapper.d.ts +1 -1
- package/dist/types-ts4.5/InlineDialog/node-resolver-wrapper.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/inline-dialog
|
|
2
2
|
|
|
3
|
+
## 15.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#152984](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/152984)
|
|
8
|
+
[`f331091d24ea4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f331091d24ea4) -
|
|
9
|
+
Bug fix for portal logic update behind ff platform_design_system_team_portal_logic_r18_fix
|
|
10
|
+
|
|
11
|
+
## 15.0.5
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 15.0.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -68,7 +68,7 @@ var InlineDialog = /*#__PURE__*/(0, _react.memo)(function InlineDialog(_ref2) {
|
|
|
68
68
|
action: 'closed',
|
|
69
69
|
componentName: 'inlineDialog',
|
|
70
70
|
packageName: "@atlaskit/inline-dialog",
|
|
71
|
-
packageVersion: "15.0
|
|
71
|
+
packageVersion: "15.1.0"
|
|
72
72
|
});
|
|
73
73
|
|
|
74
74
|
// we put this into a ref to avoid handleCloseRequest having this as a dependency
|
|
@@ -28,7 +28,7 @@ var NodeResolverWrapper = function NodeResolverWrapper(_ref) {
|
|
|
28
28
|
}
|
|
29
29
|
return /*#__PURE__*/_react.default.createElement("div", {
|
|
30
30
|
ref: function ref(node) {
|
|
31
|
-
|
|
31
|
+
innerRef(node === null || node === void 0 ? void 0 : node.firstElementChild);
|
|
32
32
|
}
|
|
33
33
|
}, children);
|
|
34
34
|
};
|
|
@@ -50,7 +50,7 @@ const InlineDialog = /*#__PURE__*/memo(function InlineDialog({
|
|
|
50
50
|
action: 'closed',
|
|
51
51
|
componentName: 'inlineDialog',
|
|
52
52
|
packageName: "@atlaskit/inline-dialog",
|
|
53
|
-
packageVersion: "15.0
|
|
53
|
+
packageVersion: "15.1.0"
|
|
54
54
|
});
|
|
55
55
|
|
|
56
56
|
// we put this into a ref to avoid handleCloseRequest having this as a dependency
|
|
@@ -21,7 +21,9 @@ const NodeResolverWrapper = ({
|
|
|
21
21
|
}, children);
|
|
22
22
|
}
|
|
23
23
|
return /*#__PURE__*/React.createElement("div", {
|
|
24
|
-
ref: node =>
|
|
24
|
+
ref: node => {
|
|
25
|
+
innerRef(node === null || node === void 0 ? void 0 : node.firstElementChild);
|
|
26
|
+
}
|
|
25
27
|
}, children);
|
|
26
28
|
};
|
|
27
29
|
export default NodeResolverWrapper;
|
|
@@ -57,7 +57,7 @@ var InlineDialog = /*#__PURE__*/memo(function InlineDialog(_ref2) {
|
|
|
57
57
|
action: 'closed',
|
|
58
58
|
componentName: 'inlineDialog',
|
|
59
59
|
packageName: "@atlaskit/inline-dialog",
|
|
60
|
-
packageVersion: "15.0
|
|
60
|
+
packageVersion: "15.1.0"
|
|
61
61
|
});
|
|
62
62
|
|
|
63
63
|
// we put this into a ref to avoid handleCloseRequest having this as a dependency
|
|
@@ -21,7 +21,7 @@ var NodeResolverWrapper = function NodeResolverWrapper(_ref) {
|
|
|
21
21
|
}
|
|
22
22
|
return /*#__PURE__*/React.createElement("div", {
|
|
23
23
|
ref: function ref(node) {
|
|
24
|
-
|
|
24
|
+
innerRef(node === null || node === void 0 ? void 0 : node.firstElementChild);
|
|
25
25
|
}
|
|
26
26
|
}, children);
|
|
27
27
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/inline-dialog",
|
|
3
|
-
"version": "15.0
|
|
3
|
+
"version": "15.1.0",
|
|
4
4
|
"description": "An inline dialog is a pop-up container for small amounts of information. It can also contain controls.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
41
|
-
"@atlaskit/ds-lib": "^3.
|
|
42
|
-
"@atlaskit/layering": "^0.
|
|
41
|
+
"@atlaskit/ds-lib": "^3.1.0",
|
|
42
|
+
"@atlaskit/layering": "^0.6.0",
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
44
44
|
"@atlaskit/popper": "^6.3.0",
|
|
45
|
-
"@atlaskit/theme": "^13.
|
|
45
|
+
"@atlaskit/theme": "^13.1.0",
|
|
46
46
|
"@atlaskit/tokens": "^2.0.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0",
|
|
48
48
|
"@emotion/react": "^11.7.1",
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
"@af/integration-testing": "*",
|
|
58
58
|
"@af/visual-regression": "*",
|
|
59
59
|
"@atlaskit/button": "^20.2.0",
|
|
60
|
-
"@atlaskit/datetime-picker": "^15.
|
|
60
|
+
"@atlaskit/datetime-picker": "^15.4.0",
|
|
61
61
|
"@atlaskit/docs": "*",
|
|
62
|
-
"@atlaskit/dropdown-menu": "^12.
|
|
62
|
+
"@atlaskit/dropdown-menu": "^12.20.0",
|
|
63
63
|
"@atlaskit/modal-dialog": "^12.17.0",
|
|
64
64
|
"@atlaskit/section-message": "^6.6.0",
|
|
65
|
-
"@atlaskit/select": "^
|
|
65
|
+
"@atlaskit/select": "^18.1.0",
|
|
66
66
|
"@atlaskit/ssr": "*",
|
|
67
67
|
"@atlaskit/visual-regression": "*",
|
|
68
68
|
"@testing-library/react": "^12.1.5",
|