@atlaskit/flag 15.0.11 → 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 +16 -0
- package/dist/cjs/auto-dismiss-flag.js +1 -1
- package/dist/cjs/constants.js +2 -4
- package/dist/cjs/flag-actions.js +1 -4
- package/dist/cjs/flag.js +1 -1
- package/dist/cjs/theme.js +1 -9
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/auto-dismiss-flag.js +1 -1
- package/dist/es2019/constants.js +1 -2
- package/dist/es2019/flag-actions.js +3 -7
- package/dist/es2019/flag.js +1 -1
- package/dist/es2019/theme.js +1 -8
- package/dist/es2019/version.json +1 -1
- package/dist/esm/auto-dismiss-flag.js +1 -1
- package/dist/esm/constants.js +1 -2
- package/dist/esm/flag-actions.js +3 -6
- package/dist/esm/flag.js +1 -1
- package/dist/esm/theme.js +1 -8
- package/dist/esm/version.json +1 -1
- package/dist/types/constants.d.ts +0 -1
- package/dist/types/theme.d.ts +0 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/flag
|
|
2
2
|
|
|
3
|
+
## 15.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`be1170b4b1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be1170b4b1f) - Removes custom appearance styles for focus. Now uses `color.border.focused` token consistenly across all appearances..
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 15.0.12
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 15.0.11
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -15,7 +15,7 @@ var _flagGroup = require("./flag-group");
|
|
|
15
15
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
16
16
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
17
|
var packageName = "@atlaskit/flag";
|
|
18
|
-
var packageVersion = "15.0
|
|
18
|
+
var packageVersion = "15.1.0";
|
|
19
19
|
var AUTO_DISMISS_SECONDS = 8;
|
|
20
20
|
|
|
21
21
|
/**
|
package/dist/cjs/constants.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.VAR_COLOR = exports.VAR_BG_COLOR_HOVER = exports.VAR_BG_COLOR_ACTIVE = exports.VAR_BG_COLOR = exports.DEFAULT_APPEARANCE = void 0;
|
|
7
7
|
var DEFAULT_APPEARANCE = 'normal';
|
|
8
8
|
exports.DEFAULT_APPEARANCE = DEFAULT_APPEARANCE;
|
|
9
9
|
var VAR_COLOR = '--color';
|
|
@@ -13,6 +13,4 @@ exports.VAR_BG_COLOR = VAR_BG_COLOR;
|
|
|
13
13
|
var VAR_BG_COLOR_HOVER = '--bg-color-hover';
|
|
14
14
|
exports.VAR_BG_COLOR_HOVER = VAR_BG_COLOR_HOVER;
|
|
15
15
|
var VAR_BG_COLOR_ACTIVE = '--bg-color-active';
|
|
16
|
-
exports.VAR_BG_COLOR_ACTIVE = VAR_BG_COLOR_ACTIVE;
|
|
17
|
-
var VAR_FOCUS_COLOR = '--focus-color';
|
|
18
|
-
exports.VAR_FOCUS_COLOR = VAR_FOCUS_COLOR;
|
|
16
|
+
exports.VAR_BG_COLOR_ACTIVE = VAR_BG_COLOR_ACTIVE;
|
package/dist/cjs/flag-actions.js
CHANGED
|
@@ -22,9 +22,6 @@ var buttonStyles = (0, _react.css)({
|
|
|
22
22
|
color: "var(".concat(_constants.VAR_COLOR, ") !important"),
|
|
23
23
|
fontWeight: "var(--ds-font-weight-medium, 500)"
|
|
24
24
|
},
|
|
25
|
-
'&&:focus, a&&:focus': {
|
|
26
|
-
boxShadow: "0 0 0 2px var(".concat(_constants.VAR_FOCUS_COLOR, ")")
|
|
27
|
-
},
|
|
28
25
|
'&&:hover, &&:active, a&&:hover, a&&:active': {
|
|
29
26
|
textDecoration: 'underline'
|
|
30
27
|
},
|
|
@@ -76,7 +73,7 @@ var FlagActions = function FlagActions(props) {
|
|
|
76
73
|
spacing: "compact",
|
|
77
74
|
testId: action.testId,
|
|
78
75
|
key: index,
|
|
79
|
-
style: (_ref = {}, (0, _defineProperty2.default)(_ref, _constants.VAR_COLOR, _theme.actionTextColor[appearance]), (0, _defineProperty2.default)(_ref, _constants.VAR_BG_COLOR, _theme.actionBackgroundColor[appearance].default), (0, _defineProperty2.default)(_ref, _constants.VAR_BG_COLOR_HOVER, _theme.actionBackgroundColor[appearance].pressed), (0, _defineProperty2.default)(_ref, _constants.VAR_BG_COLOR_ACTIVE, _theme.actionBackgroundColor[appearance].active),
|
|
76
|
+
style: (_ref = {}, (0, _defineProperty2.default)(_ref, _constants.VAR_COLOR, _theme.actionTextColor[appearance]), (0, _defineProperty2.default)(_ref, _constants.VAR_BG_COLOR, _theme.actionBackgroundColor[appearance].default), (0, _defineProperty2.default)(_ref, _constants.VAR_BG_COLOR_HOVER, _theme.actionBackgroundColor[appearance].pressed), (0, _defineProperty2.default)(_ref, _constants.VAR_BG_COLOR_ACTIVE, _theme.actionBackgroundColor[appearance].active), _ref),
|
|
80
77
|
css: [buttonStyles, appearance === _constants.DEFAULT_APPEARANCE && appearanceNormalButtonStyles]
|
|
81
78
|
}, action.content);
|
|
82
79
|
})));
|
package/dist/cjs/flag.js
CHANGED
|
@@ -26,7 +26,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
26
26
|
var analyticsAttributes = {
|
|
27
27
|
componentName: 'flag',
|
|
28
28
|
packageName: "@atlaskit/flag",
|
|
29
|
-
packageVersion: "15.0
|
|
29
|
+
packageVersion: "15.1.0"
|
|
30
30
|
};
|
|
31
31
|
var transitionStyles = (0, _react2.css)({
|
|
32
32
|
flexGrow: 1,
|
package/dist/cjs/theme.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.flagTextColorToken = exports.flagTextColor = exports.flagIconColor = exports.
|
|
6
|
+
exports.flagTextColorToken = exports.flagTextColor = exports.flagIconColor = exports.flagBackgroundColor = exports.actionTextColor = exports.actionBackgroundColor = void 0;
|
|
7
7
|
var _colors = require("@atlaskit/theme/colors");
|
|
8
8
|
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage */
|
|
9
9
|
|
|
@@ -41,14 +41,6 @@ var flagTextColorToken = {
|
|
|
41
41
|
warning: "var(--ds-text-warning-inverse, ".concat(_colors.N700, ")")
|
|
42
42
|
};
|
|
43
43
|
exports.flagTextColorToken = flagTextColorToken;
|
|
44
|
-
var flagFocusRingColor = {
|
|
45
|
-
error: "var(--ds-border-focused, ".concat(_colors.N40, ")"),
|
|
46
|
-
info: "var(--ds-border-focused, ".concat(_colors.N40, ")"),
|
|
47
|
-
normal: "var(--ds-border-focused, ".concat(_colors.B100, ")"),
|
|
48
|
-
success: "var(--ds-border-focused, ".concat(_colors.N40, ")"),
|
|
49
|
-
warning: "var(--ds-border-focused, ".concat(_colors.N200, ")")
|
|
50
|
-
};
|
|
51
|
-
exports.flagFocusRingColor = flagFocusRingColor;
|
|
52
44
|
// TODO: DSP-2519 Interaction tokens should be used for hovered and pressed states
|
|
53
45
|
// https://product-fabric.atlassian.net/browse/DSP-2519
|
|
54
46
|
var actionBackgroundColor = {
|
package/dist/cjs/version.json
CHANGED
|
@@ -5,7 +5,7 @@ import noop from '@atlaskit/ds-lib/noop';
|
|
|
5
5
|
import Flag from './flag';
|
|
6
6
|
import { useFlagGroup } from './flag-group';
|
|
7
7
|
const packageName = "@atlaskit/flag";
|
|
8
|
-
const packageVersion = "15.0
|
|
8
|
+
const packageVersion = "15.1.0";
|
|
9
9
|
export const AUTO_DISMISS_SECONDS = 8;
|
|
10
10
|
|
|
11
11
|
/**
|
package/dist/es2019/constants.js
CHANGED
|
@@ -2,5 +2,4 @@ export const DEFAULT_APPEARANCE = 'normal';
|
|
|
2
2
|
export const VAR_COLOR = '--color';
|
|
3
3
|
export const VAR_BG_COLOR = '--bg-color';
|
|
4
4
|
export const VAR_BG_COLOR_HOVER = '--bg-color-hover';
|
|
5
|
-
export const VAR_BG_COLOR_ACTIVE = '--bg-color-active';
|
|
6
|
-
export const VAR_FOCUS_COLOR = '--focus-color';
|
|
5
|
+
export const VAR_BG_COLOR_ACTIVE = '--bg-color-active';
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
import { css, jsx } from '@emotion/react';
|
|
5
5
|
import Button from '@atlaskit/button/custom-theme-button';
|
|
6
6
|
import Inline from '@atlaskit/primitives/inline';
|
|
7
|
-
import { DEFAULT_APPEARANCE, VAR_COLOR, VAR_BG_COLOR, VAR_BG_COLOR_HOVER, VAR_BG_COLOR_ACTIVE
|
|
8
|
-
import {
|
|
7
|
+
import { DEFAULT_APPEARANCE, VAR_COLOR, VAR_BG_COLOR, VAR_BG_COLOR_HOVER, VAR_BG_COLOR_ACTIVE } from './constants';
|
|
8
|
+
import { actionBackgroundColor, actionTextColor } from './theme';
|
|
9
9
|
const buttonStyles = css({
|
|
10
10
|
'&&, a&&': {
|
|
11
11
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
@@ -14,9 +14,6 @@ const buttonStyles = css({
|
|
|
14
14
|
color: `var(${VAR_COLOR}) !important`,
|
|
15
15
|
fontWeight: "var(--ds-font-weight-medium, 500)"
|
|
16
16
|
},
|
|
17
|
-
'&&:focus, a&&:focus': {
|
|
18
|
-
boxShadow: `0 0 0 2px var(${VAR_FOCUS_COLOR})`
|
|
19
|
-
},
|
|
20
17
|
'&&:hover, &&:active, a&&:hover, a&&:active': {
|
|
21
18
|
textDecoration: 'underline'
|
|
22
19
|
},
|
|
@@ -70,8 +67,7 @@ const FlagActions = props => {
|
|
|
70
67
|
[VAR_COLOR]: actionTextColor[appearance],
|
|
71
68
|
[VAR_BG_COLOR]: actionBackgroundColor[appearance].default,
|
|
72
69
|
[VAR_BG_COLOR_HOVER]: actionBackgroundColor[appearance].pressed,
|
|
73
|
-
[VAR_BG_COLOR_ACTIVE]: actionBackgroundColor[appearance].active
|
|
74
|
-
[VAR_FOCUS_COLOR]: flagFocusRingColor[appearance]
|
|
70
|
+
[VAR_BG_COLOR_ACTIVE]: actionBackgroundColor[appearance].active
|
|
75
71
|
},
|
|
76
72
|
css: [buttonStyles, appearance === DEFAULT_APPEARANCE && appearanceNormalButtonStyles]
|
|
77
73
|
}, action.content))));
|
package/dist/es2019/flag.js
CHANGED
package/dist/es2019/theme.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage */
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { B400, N0, N30A, N500, N700 } from '@atlaskit/theme/colors';
|
|
4
4
|
export const flagBackgroundColor = {
|
|
5
5
|
error: 'danger.bold',
|
|
6
6
|
info: 'neutral.bold',
|
|
@@ -31,13 +31,6 @@ export const flagTextColorToken = {
|
|
|
31
31
|
success: `var(--ds-text-inverse, ${N0})`,
|
|
32
32
|
warning: `var(--ds-text-warning-inverse, ${N700})`
|
|
33
33
|
};
|
|
34
|
-
export const flagFocusRingColor = {
|
|
35
|
-
error: `var(--ds-border-focused, ${N40})`,
|
|
36
|
-
info: `var(--ds-border-focused, ${N40})`,
|
|
37
|
-
normal: `var(--ds-border-focused, ${B100})`,
|
|
38
|
-
success: `var(--ds-border-focused, ${N40})`,
|
|
39
|
-
warning: `var(--ds-border-focused, ${N200})`
|
|
40
|
-
};
|
|
41
34
|
// TODO: DSP-2519 Interaction tokens should be used for hovered and pressed states
|
|
42
35
|
// https://product-fabric.atlassian.net/browse/DSP-2519
|
|
43
36
|
export const actionBackgroundColor = {
|
package/dist/es2019/version.json
CHANGED
|
@@ -5,7 +5,7 @@ import noop from '@atlaskit/ds-lib/noop';
|
|
|
5
5
|
import Flag from './flag';
|
|
6
6
|
import { useFlagGroup } from './flag-group';
|
|
7
7
|
var packageName = "@atlaskit/flag";
|
|
8
|
-
var packageVersion = "15.0
|
|
8
|
+
var packageVersion = "15.1.0";
|
|
9
9
|
export var AUTO_DISMISS_SECONDS = 8;
|
|
10
10
|
|
|
11
11
|
/**
|
package/dist/esm/constants.js
CHANGED
|
@@ -2,5 +2,4 @@ export var DEFAULT_APPEARANCE = 'normal';
|
|
|
2
2
|
export var VAR_COLOR = '--color';
|
|
3
3
|
export var VAR_BG_COLOR = '--bg-color';
|
|
4
4
|
export var VAR_BG_COLOR_HOVER = '--bg-color-hover';
|
|
5
|
-
export var VAR_BG_COLOR_ACTIVE = '--bg-color-active';
|
|
6
|
-
export var VAR_FOCUS_COLOR = '--focus-color';
|
|
5
|
+
export var VAR_BG_COLOR_ACTIVE = '--bg-color-active';
|
package/dist/esm/flag-actions.js
CHANGED
|
@@ -5,8 +5,8 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
5
5
|
import { css, jsx } from '@emotion/react';
|
|
6
6
|
import Button from '@atlaskit/button/custom-theme-button';
|
|
7
7
|
import Inline from '@atlaskit/primitives/inline';
|
|
8
|
-
import { DEFAULT_APPEARANCE, VAR_COLOR, VAR_BG_COLOR, VAR_BG_COLOR_HOVER, VAR_BG_COLOR_ACTIVE
|
|
9
|
-
import {
|
|
8
|
+
import { DEFAULT_APPEARANCE, VAR_COLOR, VAR_BG_COLOR, VAR_BG_COLOR_HOVER, VAR_BG_COLOR_ACTIVE } from './constants';
|
|
9
|
+
import { actionBackgroundColor, actionTextColor } from './theme';
|
|
10
10
|
var buttonStyles = css({
|
|
11
11
|
'&&, a&&': {
|
|
12
12
|
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
@@ -15,9 +15,6 @@ var buttonStyles = css({
|
|
|
15
15
|
color: "var(".concat(VAR_COLOR, ") !important"),
|
|
16
16
|
fontWeight: "var(--ds-font-weight-medium, 500)"
|
|
17
17
|
},
|
|
18
|
-
'&&:focus, a&&:focus': {
|
|
19
|
-
boxShadow: "0 0 0 2px var(".concat(VAR_FOCUS_COLOR, ")")
|
|
20
|
-
},
|
|
21
18
|
'&&:hover, &&:active, a&&:hover, a&&:active': {
|
|
22
19
|
textDecoration: 'underline'
|
|
23
20
|
},
|
|
@@ -69,7 +66,7 @@ var FlagActions = function FlagActions(props) {
|
|
|
69
66
|
spacing: "compact",
|
|
70
67
|
testId: action.testId,
|
|
71
68
|
key: index,
|
|
72
|
-
style: (_ref = {}, _defineProperty(_ref, VAR_COLOR, actionTextColor[appearance]), _defineProperty(_ref, VAR_BG_COLOR, actionBackgroundColor[appearance].default), _defineProperty(_ref, VAR_BG_COLOR_HOVER, actionBackgroundColor[appearance].pressed), _defineProperty(_ref, VAR_BG_COLOR_ACTIVE, actionBackgroundColor[appearance].active),
|
|
69
|
+
style: (_ref = {}, _defineProperty(_ref, VAR_COLOR, actionTextColor[appearance]), _defineProperty(_ref, VAR_BG_COLOR, actionBackgroundColor[appearance].default), _defineProperty(_ref, VAR_BG_COLOR_HOVER, actionBackgroundColor[appearance].pressed), _defineProperty(_ref, VAR_BG_COLOR_ACTIVE, actionBackgroundColor[appearance].active), _ref),
|
|
73
70
|
css: [buttonStyles, appearance === DEFAULT_APPEARANCE && appearanceNormalButtonStyles]
|
|
74
71
|
}, action.content);
|
|
75
72
|
})));
|
package/dist/esm/flag.js
CHANGED
package/dist/esm/theme.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage */
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { B400, N0, N30A, N500, N700 } from '@atlaskit/theme/colors';
|
|
4
4
|
export var flagBackgroundColor = {
|
|
5
5
|
error: 'danger.bold',
|
|
6
6
|
info: 'neutral.bold',
|
|
@@ -31,13 +31,6 @@ export var flagTextColorToken = {
|
|
|
31
31
|
success: "var(--ds-text-inverse, ".concat(N0, ")"),
|
|
32
32
|
warning: "var(--ds-text-warning-inverse, ".concat(N700, ")")
|
|
33
33
|
};
|
|
34
|
-
export var flagFocusRingColor = {
|
|
35
|
-
error: "var(--ds-border-focused, ".concat(N40, ")"),
|
|
36
|
-
info: "var(--ds-border-focused, ".concat(N40, ")"),
|
|
37
|
-
normal: "var(--ds-border-focused, ".concat(B100, ")"),
|
|
38
|
-
success: "var(--ds-border-focused, ".concat(N40, ")"),
|
|
39
|
-
warning: "var(--ds-border-focused, ".concat(N200, ")")
|
|
40
|
-
};
|
|
41
34
|
// TODO: DSP-2519 Interaction tokens should be used for hovered and pressed states
|
|
42
35
|
// https://product-fabric.atlassian.net/browse/DSP-2519
|
|
43
36
|
export var actionBackgroundColor = {
|
package/dist/esm/version.json
CHANGED
|
@@ -4,4 +4,3 @@ export declare const VAR_COLOR = "--color";
|
|
|
4
4
|
export declare const VAR_BG_COLOR = "--bg-color";
|
|
5
5
|
export declare const VAR_BG_COLOR_HOVER = "--bg-color-hover";
|
|
6
6
|
export declare const VAR_BG_COLOR_ACTIVE = "--bg-color-active";
|
|
7
|
-
export declare const VAR_FOCUS_COLOR = "--focus-color";
|
package/dist/types/theme.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ export declare const flagTextColorToken: {
|
|
|
10
10
|
success: "var(--ds-text-inverse)";
|
|
11
11
|
warning: "var(--ds-text-warning-inverse)";
|
|
12
12
|
};
|
|
13
|
-
export declare const flagFocusRingColor: Record<AppearanceTypes, string>;
|
|
14
13
|
declare type ActionBackgroundColor = Record<Exclude<AppearanceTypes, 'normal'>, {
|
|
15
14
|
default: 'var(--ds-background-inverse-subtle)';
|
|
16
15
|
active: 'var(--ds-background-inverse-subtle-pressed)';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/flag",
|
|
3
|
-
"version": "15.0
|
|
3
|
+
"version": "15.1.0",
|
|
4
4
|
"description": "A flag is used for confirmations, alerts, and acknowledgments that require minimal user interaction, often displayed using a flag group.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@atlaskit/analytics-next": "^9.0.0",
|
|
38
|
-
"@atlaskit/button": "^16.
|
|
38
|
+
"@atlaskit/button": "^16.6.0",
|
|
39
39
|
"@atlaskit/ds-explorations": "^2.0.0",
|
|
40
40
|
"@atlaskit/ds-lib": "^2.1.0",
|
|
41
41
|
"@atlaskit/focus-ring": "^1.2.0",
|
|
42
42
|
"@atlaskit/icon": "^21.11.0",
|
|
43
43
|
"@atlaskit/motion": "^1.3.0",
|
|
44
44
|
"@atlaskit/portal": "^4.0.0",
|
|
45
|
-
"@atlaskit/primitives": "^0.
|
|
45
|
+
"@atlaskit/primitives": "^0.4.0",
|
|
46
46
|
"@atlaskit/theme": "^12.3.0",
|
|
47
47
|
"@atlaskit/tokens": "^1.2.0",
|
|
48
48
|
"@atlaskit/visually-hidden": "^1.1.0",
|