@atlaskit/inline-dialog 13.4.1 → 13.4.2
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 -0
- package/dist/cjs/InlineDialog/index.js +1 -1
- package/dist/cjs/InlineDialog/styled/container.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/InlineDialog/index.js +1 -1
- package/dist/es2019/InlineDialog/styled/container.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/InlineDialog/index.js +1 -1
- package/dist/esm/InlineDialog/styled/container.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +9 -6
- package/report.api.md +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/inline-dialog
|
|
2
2
|
|
|
3
|
+
## 13.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`9de88fa1e1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9de88fa1e1e) - Internal changes to include spacing tokens in component implementations.
|
|
8
|
+
|
|
3
9
|
## 13.4.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -31,7 +31,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
31
31
|
|
|
32
32
|
/** @jsx jsx */
|
|
33
33
|
var packageName = "@atlaskit/inline-dialog";
|
|
34
|
-
var packageVersion = "13.4.
|
|
34
|
+
var packageVersion = "13.4.2";
|
|
35
35
|
|
|
36
36
|
var checkIsChildOfPortal = function checkIsChildOfPortal(node) {
|
|
37
37
|
if (!node) {
|
|
@@ -50,7 +50,7 @@ var containerStyles = (0, _react2.css)({
|
|
|
50
50
|
boxSizing: 'content-box',
|
|
51
51
|
maxWidth: "".concat(gridSize * 56, "px"),
|
|
52
52
|
maxHeight: "".concat(gridSize * 56, "px"),
|
|
53
|
-
padding: "".concat(
|
|
53
|
+
padding: "var(--ds-scale-200, 16px)".concat(" ", "var(--ds-scale-300, 24px)"),
|
|
54
54
|
zIndex: _constants.layers.dialog(),
|
|
55
55
|
background: "var(".concat(CSS_THEME_BACKGROUND, ")"),
|
|
56
56
|
borderRadius: "".concat(borderRadius, "px"),
|
package/dist/cjs/version.json
CHANGED
|
@@ -8,7 +8,7 @@ import noop from '@atlaskit/ds-lib/noop';
|
|
|
8
8
|
import { Manager, Popper, Reference } from '@atlaskit/popper';
|
|
9
9
|
import { Container } from './styled/container';
|
|
10
10
|
const packageName = "@atlaskit/inline-dialog";
|
|
11
|
-
const packageVersion = "13.4.
|
|
11
|
+
const packageVersion = "13.4.2";
|
|
12
12
|
|
|
13
13
|
const checkIsChildOfPortal = node => {
|
|
14
14
|
if (!node) {
|
|
@@ -29,7 +29,7 @@ const containerStyles = css({
|
|
|
29
29
|
boxSizing: 'content-box',
|
|
30
30
|
maxWidth: `${gridSize * 56}px`,
|
|
31
31
|
maxHeight: `${gridSize * 56}px`,
|
|
32
|
-
padding: `${
|
|
32
|
+
padding: `${"var(--ds-scale-200, 16px)"} ${"var(--ds-scale-300, 24px)"}`,
|
|
33
33
|
zIndex: layers.dialog(),
|
|
34
34
|
background: `var(${CSS_THEME_BACKGROUND})`,
|
|
35
35
|
borderRadius: `${borderRadius}px`,
|
package/dist/es2019/version.json
CHANGED
|
@@ -8,7 +8,7 @@ import noop from '@atlaskit/ds-lib/noop';
|
|
|
8
8
|
import { Manager, Popper, Reference } from '@atlaskit/popper';
|
|
9
9
|
import { Container } from './styled/container';
|
|
10
10
|
var packageName = "@atlaskit/inline-dialog";
|
|
11
|
-
var packageVersion = "13.4.
|
|
11
|
+
var packageVersion = "13.4.2";
|
|
12
12
|
|
|
13
13
|
var checkIsChildOfPortal = function checkIsChildOfPortal(node) {
|
|
14
14
|
if (!node) {
|
|
@@ -35,7 +35,7 @@ var containerStyles = css({
|
|
|
35
35
|
boxSizing: 'content-box',
|
|
36
36
|
maxWidth: "".concat(gridSize * 56, "px"),
|
|
37
37
|
maxHeight: "".concat(gridSize * 56, "px"),
|
|
38
|
-
padding: "".concat(
|
|
38
|
+
padding: "var(--ds-scale-200, 16px)".concat(" ", "var(--ds-scale-300, 24px)"),
|
|
39
39
|
zIndex: layers.dialog(),
|
|
40
40
|
background: "var(".concat(CSS_THEME_BACKGROUND, ")"),
|
|
41
41
|
borderRadius: "".concat(borderRadius, "px"),
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/inline-dialog",
|
|
3
|
-
"version": "13.4.
|
|
3
|
+
"version": "13.4.2",
|
|
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/"
|
|
@@ -15,13 +15,15 @@
|
|
|
15
15
|
"typesVersions": {
|
|
16
16
|
">=4.0 <4.5": {
|
|
17
17
|
"*": [
|
|
18
|
-
"dist/types-ts4.0/*"
|
|
18
|
+
"dist/types-ts4.0/*",
|
|
19
|
+
"dist/types-ts4.0/index.d.ts"
|
|
19
20
|
]
|
|
20
21
|
}
|
|
21
22
|
},
|
|
22
23
|
"sideEffects": false,
|
|
23
24
|
"atlaskit:src": "src/index.tsx",
|
|
24
25
|
"atlassian": {
|
|
26
|
+
"disableProductCI": true,
|
|
25
27
|
"team": "Design System Team",
|
|
26
28
|
"deprecatedAutoEntryPoints": true,
|
|
27
29
|
"releaseModel": "scheduled",
|
|
@@ -54,11 +56,11 @@
|
|
|
54
56
|
},
|
|
55
57
|
"devDependencies": {
|
|
56
58
|
"@atlaskit/button": "^16.3.0",
|
|
57
|
-
"@atlaskit/datetime-picker": "^12.
|
|
59
|
+
"@atlaskit/datetime-picker": "^12.3.0",
|
|
58
60
|
"@atlaskit/docs": "*",
|
|
59
|
-
"@atlaskit/icon": "^21.
|
|
60
|
-
"@atlaskit/modal-dialog": "^12.
|
|
61
|
-
"@atlaskit/section-message": "^6.
|
|
61
|
+
"@atlaskit/icon": "^21.11.0",
|
|
62
|
+
"@atlaskit/modal-dialog": "^12.4.0",
|
|
63
|
+
"@atlaskit/section-message": "^6.3.0",
|
|
62
64
|
"@atlaskit/select": "^15.7.0",
|
|
63
65
|
"@atlaskit/ssr": "*",
|
|
64
66
|
"@atlaskit/visual-regression": "*",
|
|
@@ -90,6 +92,7 @@
|
|
|
90
92
|
"static",
|
|
91
93
|
"emotion"
|
|
92
94
|
],
|
|
95
|
+
"design-tokens": "spacing",
|
|
93
96
|
"design-system": "v1",
|
|
94
97
|
"deprecation": "no-deprecated-imports"
|
|
95
98
|
}
|
package/report.api.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/inline-dialog"
|
|
1
|
+
## API Report File for "@atlaskit/inline-dialog".
|
|
2
2
|
|
|
3
|
-
> Do not edit this file.
|
|
3
|
+
> Do not edit this file. This report is auto-generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
[Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
|
|
4
6
|
|
|
5
7
|
```ts
|
|
6
8
|
import { default as React_2 } from 'react';
|
|
@@ -19,6 +21,7 @@ declare const _default: React_2.ForwardRefExoticComponent<
|
|
|
19
21
|
| 'content'
|
|
20
22
|
| 'children'
|
|
21
23
|
| 'testId'
|
|
24
|
+
| 'key'
|
|
22
25
|
| 'isOpen'
|
|
23
26
|
| 'onContentBlur'
|
|
24
27
|
| 'onContentClick'
|
|
@@ -26,7 +29,6 @@ declare const _default: React_2.ForwardRefExoticComponent<
|
|
|
26
29
|
| 'onClose'
|
|
27
30
|
| 'placement'
|
|
28
31
|
| 'strategy'
|
|
29
|
-
| 'key'
|
|
30
32
|
| 'analyticsContext'
|
|
31
33
|
> &
|
|
32
34
|
React_2.RefAttributes<any>
|