@atlaskit/modal-dialog 12.17.4 → 12.17.6
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/internal/constants.js +1 -2
- package/dist/cjs/modal-body.js +4 -4
- package/dist/cjs/modal-footer.js +5 -4
- package/dist/cjs/modal-header.js +4 -3
- package/dist/cjs/modal-wrapper.js +1 -1
- package/dist/es2019/internal/constants.js +0 -1
- package/dist/es2019/modal-body.js +5 -5
- package/dist/es2019/modal-footer.js +6 -5
- package/dist/es2019/modal-header.js +5 -4
- package/dist/es2019/modal-wrapper.js +1 -1
- package/dist/esm/internal/constants.js +0 -1
- package/dist/esm/modal-body.js +5 -5
- package/dist/esm/modal-footer.js +6 -5
- package/dist/esm/modal-header.js +5 -4
- package/dist/esm/modal-wrapper.js +1 -1
- package/dist/types/internal/constants.d.ts +0 -1
- package/dist/types-ts4.5/internal/constants.d.ts +0 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/modal-dialog
|
|
2
2
|
|
|
3
|
+
## 12.17.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 12.17.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#146685](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/146685)
|
|
14
|
+
[`1cb9d5ae0361d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1cb9d5ae0361d) -
|
|
15
|
+
[ux] Reduce spacing between body header, body and footer content.
|
|
16
|
+
|
|
3
17
|
## 12.17.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.width = exports.verticalOffset = exports.textColor = exports.
|
|
6
|
+
exports.width = exports.verticalOffset = exports.textColor = exports.keylineHeight = exports.keylineColor = exports.iconColor = exports.gutter = exports.borderRadius = void 0;
|
|
7
7
|
var _colors = require("@atlaskit/theme/colors");
|
|
8
8
|
var _constants = require("@atlaskit/theme/constants");
|
|
9
9
|
var width = exports.width = {
|
|
@@ -20,7 +20,6 @@ var gutter = exports.gutter = 60;
|
|
|
20
20
|
var gridSize = (0, _constants.gridSize)();
|
|
21
21
|
var borderRadius = exports.borderRadius = (0, _constants.borderRadius)();
|
|
22
22
|
var verticalOffset = exports.verticalOffset = gridSize * 2;
|
|
23
|
-
var padding = exports.padding = gridSize * 3;
|
|
24
23
|
var keylineHeight = exports.keylineHeight = 2;
|
|
25
24
|
var keylineColor = exports.keylineColor = "var(--ds-border, ".concat(_colors.N30, ")");
|
|
26
25
|
var textColor = exports.textColor = "var(--ds-text, ".concat(_colors.N900, ")");
|
package/dist/cjs/modal-body.js
CHANGED
|
@@ -27,11 +27,12 @@ var bodyStyles = (0, _react2.css)({
|
|
|
27
27
|
/**
|
|
28
28
|
* Adding the padding here avoids cropping the keyline on its sides.
|
|
29
29
|
* The combined vertical spacing is maintained by subtracting the
|
|
30
|
-
* keyline height from header and footer.
|
|
30
|
+
* keyline height from header and footer using negative margins.
|
|
31
31
|
*/
|
|
32
32
|
var bodyScrollStyles = (0, _react2.css)({
|
|
33
33
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
34
|
-
|
|
34
|
+
paddingBlock: _constants.keylineHeight,
|
|
35
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
35
36
|
});
|
|
36
37
|
|
|
37
38
|
/**
|
|
@@ -39,8 +40,7 @@ var bodyScrollStyles = (0, _react2.css)({
|
|
|
39
40
|
* not account for them in this case.
|
|
40
41
|
*/
|
|
41
42
|
var viewportScrollStyles = (0, _react2.css)({
|
|
42
|
-
|
|
43
|
-
padding: "0px ".concat(_constants.padding, "px")
|
|
43
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
44
44
|
});
|
|
45
45
|
/**
|
|
46
46
|
* __Modal body__
|
package/dist/cjs/modal-footer.js
CHANGED
|
@@ -16,14 +16,15 @@ var _constants = require("./internal/constants");
|
|
|
16
16
|
|
|
17
17
|
var footerStyles = (0, _react.css)({
|
|
18
18
|
display: 'flex',
|
|
19
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
20
|
-
padding: _constants.padding,
|
|
21
19
|
position: 'relative',
|
|
22
20
|
alignItems: 'center',
|
|
23
21
|
justifyContent: 'flex-end',
|
|
24
22
|
gap: "var(--ds-space-100, 8px)",
|
|
25
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
26
|
-
|
|
23
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
24
|
+
marginBlockStart: -_constants.keylineHeight,
|
|
25
|
+
paddingBlockEnd: "var(--ds-space-300, 24px)",
|
|
26
|
+
paddingBlockStart: "var(--ds-space-200, 16px)",
|
|
27
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
27
28
|
});
|
|
28
29
|
/**
|
|
29
30
|
* __Modal footer__
|
package/dist/cjs/modal-header.js
CHANGED
|
@@ -18,13 +18,14 @@ var _constants = require("./internal/constants");
|
|
|
18
18
|
|
|
19
19
|
var headerStyles = (0, _react2.css)({
|
|
20
20
|
display: 'flex',
|
|
21
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
22
|
-
padding: _constants.padding,
|
|
23
21
|
position: 'relative',
|
|
24
22
|
alignItems: 'center',
|
|
25
23
|
justifyContent: 'space-between',
|
|
26
24
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
27
|
-
|
|
25
|
+
marginBlockEnd: -_constants.keylineHeight,
|
|
26
|
+
paddingBlockEnd: "var(--ds-space-200, 16px)",
|
|
27
|
+
paddingBlockStart: "var(--ds-space-300, 24px)",
|
|
28
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
28
29
|
});
|
|
29
30
|
/**
|
|
30
31
|
* __Modal header__
|
|
@@ -102,7 +102,7 @@ var ModalWrapper = function ModalWrapper(props) {
|
|
|
102
102
|
action: 'closed',
|
|
103
103
|
componentName: 'modalDialog',
|
|
104
104
|
packageName: "@atlaskit/modal-dialog",
|
|
105
|
-
packageVersion: "12.17.
|
|
105
|
+
packageVersion: "12.17.6"
|
|
106
106
|
});
|
|
107
107
|
var onBlanketClicked = (0, _react.useCallback)(function (e) {
|
|
108
108
|
if (shouldCloseOnOverlayClick) {
|
|
@@ -16,7 +16,6 @@ export const gutter = 60;
|
|
|
16
16
|
const gridSize = getGridSize();
|
|
17
17
|
export const borderRadius = getBorderRadius();
|
|
18
18
|
export const verticalOffset = gridSize * 2;
|
|
19
|
-
export const padding = gridSize * 3;
|
|
20
19
|
export const keylineHeight = 2;
|
|
21
20
|
export const keylineColor = `var(--ds-border, ${N30})`;
|
|
22
21
|
export const textColor = `var(--ds-text, ${N900})`;
|
|
@@ -10,7 +10,7 @@ import { css, jsx } from '@emotion/react';
|
|
|
10
10
|
import { TouchScrollable } from 'react-scrolllock';
|
|
11
11
|
import { useModal } from './hooks';
|
|
12
12
|
import ScrollContainer from './internal/components/scroll-container';
|
|
13
|
-
import { keylineHeight
|
|
13
|
+
import { keylineHeight } from './internal/constants';
|
|
14
14
|
import useScroll from './internal/hooks/use-scroll';
|
|
15
15
|
const bodyStyles = css({
|
|
16
16
|
/* This ensures the body fills the whole space between header and footer. */
|
|
@@ -20,11 +20,12 @@ const bodyStyles = css({
|
|
|
20
20
|
/**
|
|
21
21
|
* Adding the padding here avoids cropping the keyline on its sides.
|
|
22
22
|
* The combined vertical spacing is maintained by subtracting the
|
|
23
|
-
* keyline height from header and footer.
|
|
23
|
+
* keyline height from header and footer using negative margins.
|
|
24
24
|
*/
|
|
25
25
|
const bodyScrollStyles = css({
|
|
26
26
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
27
|
-
|
|
27
|
+
paddingBlock: keylineHeight,
|
|
28
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
28
29
|
});
|
|
29
30
|
|
|
30
31
|
/**
|
|
@@ -32,8 +33,7 @@ const bodyScrollStyles = css({
|
|
|
32
33
|
* not account for them in this case.
|
|
33
34
|
*/
|
|
34
35
|
const viewportScrollStyles = css({
|
|
35
|
-
|
|
36
|
-
padding: `0px ${padding}px`
|
|
36
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
37
37
|
});
|
|
38
38
|
/**
|
|
39
39
|
* __Modal body__
|
|
@@ -6,17 +6,18 @@
|
|
|
6
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
7
7
|
import { css, jsx } from '@emotion/react';
|
|
8
8
|
import { useModal } from './hooks';
|
|
9
|
-
import { keylineHeight
|
|
9
|
+
import { keylineHeight } from './internal/constants';
|
|
10
10
|
const footerStyles = css({
|
|
11
11
|
display: 'flex',
|
|
12
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
13
|
-
padding: padding,
|
|
14
12
|
position: 'relative',
|
|
15
13
|
alignItems: 'center',
|
|
16
14
|
justifyContent: 'flex-end',
|
|
17
15
|
gap: "var(--ds-space-100, 8px)",
|
|
18
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
19
|
-
|
|
16
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
17
|
+
marginBlockStart: -keylineHeight,
|
|
18
|
+
paddingBlockEnd: "var(--ds-space-300, 24px)",
|
|
19
|
+
paddingBlockStart: "var(--ds-space-200, 16px)",
|
|
20
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
20
21
|
});
|
|
21
22
|
/**
|
|
22
23
|
* __Modal footer__
|
|
@@ -7,16 +7,17 @@ import React from 'react';
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import { useModal } from './hooks';
|
|
10
|
-
import { keylineHeight
|
|
10
|
+
import { keylineHeight } from './internal/constants';
|
|
11
11
|
const headerStyles = css({
|
|
12
12
|
display: 'flex',
|
|
13
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
14
|
-
padding: padding,
|
|
15
13
|
position: 'relative',
|
|
16
14
|
alignItems: 'center',
|
|
17
15
|
justifyContent: 'space-between',
|
|
18
16
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
19
|
-
|
|
17
|
+
marginBlockEnd: -keylineHeight,
|
|
18
|
+
paddingBlockEnd: "var(--ds-space-200, 16px)",
|
|
19
|
+
paddingBlockStart: "var(--ds-space-300, 24px)",
|
|
20
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
20
21
|
});
|
|
21
22
|
/**
|
|
22
23
|
* __Modal header__
|
|
@@ -87,7 +87,7 @@ const ModalWrapper = props => {
|
|
|
87
87
|
action: 'closed',
|
|
88
88
|
componentName: 'modalDialog',
|
|
89
89
|
packageName: "@atlaskit/modal-dialog",
|
|
90
|
-
packageVersion: "12.17.
|
|
90
|
+
packageVersion: "12.17.6"
|
|
91
91
|
});
|
|
92
92
|
const onBlanketClicked = useCallback(e => {
|
|
93
93
|
if (shouldCloseOnOverlayClick) {
|
|
@@ -16,7 +16,6 @@ export var gutter = 60;
|
|
|
16
16
|
var gridSize = getGridSize();
|
|
17
17
|
export var borderRadius = getBorderRadius();
|
|
18
18
|
export var verticalOffset = gridSize * 2;
|
|
19
|
-
export var padding = gridSize * 3;
|
|
20
19
|
export var keylineHeight = 2;
|
|
21
20
|
export var keylineColor = "var(--ds-border, ".concat(N30, ")");
|
|
22
21
|
export var textColor = "var(--ds-text, ".concat(N900, ")");
|
package/dist/esm/modal-body.js
CHANGED
|
@@ -10,7 +10,7 @@ import { css, jsx } from '@emotion/react';
|
|
|
10
10
|
import { TouchScrollable } from 'react-scrolllock';
|
|
11
11
|
import { useModal } from './hooks';
|
|
12
12
|
import ScrollContainer from './internal/components/scroll-container';
|
|
13
|
-
import { keylineHeight
|
|
13
|
+
import { keylineHeight } from './internal/constants';
|
|
14
14
|
import useScroll from './internal/hooks/use-scroll';
|
|
15
15
|
var bodyStyles = css({
|
|
16
16
|
/* This ensures the body fills the whole space between header and footer. */
|
|
@@ -20,11 +20,12 @@ var bodyStyles = css({
|
|
|
20
20
|
/**
|
|
21
21
|
* Adding the padding here avoids cropping the keyline on its sides.
|
|
22
22
|
* The combined vertical spacing is maintained by subtracting the
|
|
23
|
-
* keyline height from header and footer.
|
|
23
|
+
* keyline height from header and footer using negative margins.
|
|
24
24
|
*/
|
|
25
25
|
var bodyScrollStyles = css({
|
|
26
26
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
27
|
-
|
|
27
|
+
paddingBlock: keylineHeight,
|
|
28
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
28
29
|
});
|
|
29
30
|
|
|
30
31
|
/**
|
|
@@ -32,8 +33,7 @@ var bodyScrollStyles = css({
|
|
|
32
33
|
* not account for them in this case.
|
|
33
34
|
*/
|
|
34
35
|
var viewportScrollStyles = css({
|
|
35
|
-
|
|
36
|
-
padding: "0px ".concat(padding, "px")
|
|
36
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
37
37
|
});
|
|
38
38
|
/**
|
|
39
39
|
* __Modal body__
|
package/dist/esm/modal-footer.js
CHANGED
|
@@ -6,17 +6,18 @@
|
|
|
6
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
7
7
|
import { css, jsx } from '@emotion/react';
|
|
8
8
|
import { useModal } from './hooks';
|
|
9
|
-
import { keylineHeight
|
|
9
|
+
import { keylineHeight } from './internal/constants';
|
|
10
10
|
var footerStyles = css({
|
|
11
11
|
display: 'flex',
|
|
12
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
13
|
-
padding: padding,
|
|
14
12
|
position: 'relative',
|
|
15
13
|
alignItems: 'center',
|
|
16
14
|
justifyContent: 'flex-end',
|
|
17
15
|
gap: "var(--ds-space-100, 8px)",
|
|
18
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
19
|
-
|
|
16
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
17
|
+
marginBlockStart: -keylineHeight,
|
|
18
|
+
paddingBlockEnd: "var(--ds-space-300, 24px)",
|
|
19
|
+
paddingBlockStart: "var(--ds-space-200, 16px)",
|
|
20
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
20
21
|
});
|
|
21
22
|
/**
|
|
22
23
|
* __Modal footer__
|
package/dist/esm/modal-header.js
CHANGED
|
@@ -7,16 +7,17 @@ import React from 'react';
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import { useModal } from './hooks';
|
|
10
|
-
import { keylineHeight
|
|
10
|
+
import { keylineHeight } from './internal/constants';
|
|
11
11
|
var headerStyles = css({
|
|
12
12
|
display: 'flex',
|
|
13
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
14
|
-
padding: padding,
|
|
15
13
|
position: 'relative',
|
|
16
14
|
alignItems: 'center',
|
|
17
15
|
justifyContent: 'space-between',
|
|
18
16
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
19
|
-
|
|
17
|
+
marginBlockEnd: -keylineHeight,
|
|
18
|
+
paddingBlockEnd: "var(--ds-space-200, 16px)",
|
|
19
|
+
paddingBlockStart: "var(--ds-space-300, 24px)",
|
|
20
|
+
paddingInline: "var(--ds-space-300, 24px)"
|
|
20
21
|
});
|
|
21
22
|
/**
|
|
22
23
|
* __Modal header__
|
|
@@ -92,7 +92,7 @@ var ModalWrapper = function ModalWrapper(props) {
|
|
|
92
92
|
action: 'closed',
|
|
93
93
|
componentName: 'modalDialog',
|
|
94
94
|
packageName: "@atlaskit/modal-dialog",
|
|
95
|
-
packageVersion: "12.17.
|
|
95
|
+
packageVersion: "12.17.6"
|
|
96
96
|
});
|
|
97
97
|
var onBlanketClicked = useCallback(function (e) {
|
|
98
98
|
if (shouldCloseOnOverlayClick) {
|
|
@@ -12,7 +12,6 @@ export declare const width: Width;
|
|
|
12
12
|
export declare const gutter = 60;
|
|
13
13
|
export declare const borderRadius: number;
|
|
14
14
|
export declare const verticalOffset: number;
|
|
15
|
-
export declare const padding: number;
|
|
16
15
|
export declare const keylineHeight = 2;
|
|
17
16
|
export declare const keylineColor: "var(--ds-border)";
|
|
18
17
|
export declare const textColor: "var(--ds-text)";
|
|
@@ -12,7 +12,6 @@ export declare const width: Width;
|
|
|
12
12
|
export declare const gutter = 60;
|
|
13
13
|
export declare const borderRadius: number;
|
|
14
14
|
export declare const verticalOffset: number;
|
|
15
|
-
export declare const padding: number;
|
|
16
15
|
export declare const keylineHeight = 2;
|
|
17
16
|
export declare const keylineColor: "var(--ds-border)";
|
|
18
17
|
export declare const textColor: "var(--ds-text)";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/modal-dialog",
|
|
3
|
-
"version": "12.17.
|
|
3
|
+
"version": "12.17.6",
|
|
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/"
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
30
30
|
"@atlaskit/blanket": "^13.3.0",
|
|
31
31
|
"@atlaskit/codemod-utils": "^4.2.0",
|
|
32
|
-
"@atlaskit/ds-lib": "^3.
|
|
32
|
+
"@atlaskit/ds-lib": "^3.1.0",
|
|
33
33
|
"@atlaskit/focus-ring": "^1.6.0",
|
|
34
|
-
"@atlaskit/icon": "^22.
|
|
35
|
-
"@atlaskit/layering": "^0.
|
|
34
|
+
"@atlaskit/icon": "^22.22.0",
|
|
35
|
+
"@atlaskit/layering": "^0.6.0",
|
|
36
36
|
"@atlaskit/motion": "^1.9.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
38
38
|
"@atlaskit/portal": "^4.9.0",
|
|
39
|
-
"@atlaskit/pragmatic-drag-and-drop": "^1.
|
|
39
|
+
"@atlaskit/pragmatic-drag-and-drop": "^1.4.0",
|
|
40
40
|
"@atlaskit/primitives": "^12.2.0",
|
|
41
41
|
"@atlaskit/theme": "^13.0.0",
|
|
42
42
|
"@atlaskit/tokens": "^2.0.0",
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
"@af/visual-regression": "*",
|
|
58
58
|
"@atlaskit/button": "*",
|
|
59
59
|
"@atlaskit/checkbox": "^14.0.0",
|
|
60
|
-
"@atlaskit/dropdown-menu": "^12.
|
|
60
|
+
"@atlaskit/dropdown-menu": "^12.20.0",
|
|
61
61
|
"@atlaskit/popup": "^1.28.0",
|
|
62
62
|
"@atlaskit/radio": "^6.5.0",
|
|
63
|
-
"@atlaskit/select": "^
|
|
63
|
+
"@atlaskit/select": "^18.1.0",
|
|
64
64
|
"@atlaskit/ssr": "*",
|
|
65
65
|
"@atlaskit/textfield": "^6.5.0",
|
|
66
66
|
"@atlaskit/tooltip": "^18.8.0",
|