@atlaskit/color-picker 3.2.17 → 3.2.18
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 +9 -0
- package/dist/cjs/components/ColorCard.js +29 -6
- package/dist/cjs/components/ColorPaletteMenu.js +2 -2
- package/dist/cjs/components/ColorPicker.js +1 -1
- package/dist/cjs/messages.js +0 -5
- package/dist/es2019/components/ColorCard.js +29 -7
- package/dist/es2019/components/ColorPaletteMenu.js +2 -2
- package/dist/es2019/components/ColorPicker.js +1 -1
- package/dist/es2019/messages.js +0 -5
- package/dist/esm/components/ColorCard.js +29 -6
- package/dist/esm/components/ColorPaletteMenu.js +2 -2
- package/dist/esm/components/ColorPicker.js +1 -1
- package/dist/esm/messages.js +0 -5
- package/dist/types/messages.d.ts +0 -5
- package/dist/types-ts4.5/messages.d.ts +0 -5
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/color-picker
|
|
2
2
|
|
|
3
|
+
## 3.2.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#112744](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112744)
|
|
8
|
+
[`1fc633df8a651`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1fc633df8a651) -
|
|
9
|
+
excluded aria-decribedby from tooltipProps for color option in ColorCard component
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 3.2.17
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -6,15 +6,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
8
|
exports.default = void 0;
|
|
9
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
9
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
10
11
|
var _done = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/done"));
|
|
11
12
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
12
13
|
var _constants = require("../constants");
|
|
13
14
|
var _react2 = require("@emotion/react");
|
|
14
|
-
var _reactIntlNext = require("react-intl-next");
|
|
15
15
|
var _colors = require("@atlaskit/theme/colors");
|
|
16
16
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
17
|
-
var
|
|
17
|
+
var _useCallbackRef = require("use-callback-ref");
|
|
18
18
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
19
19
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
20
20
|
/** @jsx jsx */
|
|
@@ -32,8 +32,6 @@ var ColorCard = function ColorCard(props) {
|
|
|
32
32
|
onClick = props.onClick,
|
|
33
33
|
onKeyDown = props.onKeyDown;
|
|
34
34
|
var ref = (0, _react.useRef)(null);
|
|
35
|
-
var _useIntl = (0, _reactIntlNext.useIntl)(),
|
|
36
|
-
formatMessage = _useIntl.formatMessage;
|
|
37
35
|
var handleMouseDown = (0, _react.useCallback)(function (event) {
|
|
38
36
|
event.preventDefault();
|
|
39
37
|
}, []);
|
|
@@ -68,14 +66,39 @@ var ColorCard = function ColorCard(props) {
|
|
|
68
66
|
}, []);
|
|
69
67
|
return (0, _react2.jsx)(_tooltip.default, {
|
|
70
68
|
content: label
|
|
71
|
-
}, (0,
|
|
69
|
+
}, (0, _platformFeatureFlags.getBooleanFF)('platform.jca11y-2997-remove-duplicate-screen-reader-announcements_fz13s') ? function (tooltipProps) {
|
|
70
|
+
delete tooltipProps['aria-describedby'];
|
|
71
|
+
return (0, _react2.jsx)("div", (0, _extends2.default)({}, tooltipProps, {
|
|
72
|
+
css: [sharedColorContainerStyles, (isTabbing === undefined || isTabbing) && colorCardOptionTabbingStyles, focused && !isTabbing && colorCardOptionFocusedStyles],
|
|
73
|
+
onClick: handleClick,
|
|
74
|
+
onMouseDown: handleMouseDown,
|
|
75
|
+
onKeyDown: handleKeyDown,
|
|
76
|
+
role: "radio",
|
|
77
|
+
"aria-checked": selected,
|
|
78
|
+
"aria-label": label,
|
|
79
|
+
tabIndex: 0,
|
|
80
|
+
ref: (0, _useCallbackRef.mergeRefs)([ref, tooltipProps.ref])
|
|
81
|
+
}), (0, _react2.jsx)("div", {
|
|
82
|
+
css: colorCardWrapperStyles
|
|
83
|
+
}, (0, _react2.jsx)("div", {
|
|
84
|
+
css: colorCardContentStyles,
|
|
85
|
+
style: {
|
|
86
|
+
background: value || 'transparent'
|
|
87
|
+
}
|
|
88
|
+
}, selected && (0, _react2.jsx)("div", {
|
|
89
|
+
css: colorCardContentCheckMarkStyles
|
|
90
|
+
}, (0, _react2.jsx)(_done.default, {
|
|
91
|
+
primaryColor: checkMarkColor,
|
|
92
|
+
label: ""
|
|
93
|
+
})))));
|
|
94
|
+
} : (0, _react2.jsx)("div", {
|
|
72
95
|
css: [sharedColorContainerStyles, (isTabbing === undefined || isTabbing) && colorCardOptionTabbingStyles, focused && !isTabbing && colorCardOptionFocusedStyles],
|
|
73
96
|
onClick: handleClick,
|
|
74
97
|
onMouseDown: handleMouseDown,
|
|
75
98
|
onKeyDown: handleKeyDown,
|
|
76
99
|
role: "radio",
|
|
77
100
|
"aria-checked": selected,
|
|
78
|
-
"aria-label":
|
|
101
|
+
"aria-label": label,
|
|
79
102
|
tabIndex: 0,
|
|
80
103
|
ref: ref
|
|
81
104
|
}, (0, _react2.jsx)("div", {
|
|
@@ -36,7 +36,7 @@ var ColorPaletteMenuWithoutAnalytics = exports.ColorPaletteMenuWithoutAnalytics
|
|
|
36
36
|
attributes: {
|
|
37
37
|
componentName: 'color-picker',
|
|
38
38
|
packageName: "@atlaskit/color-picker",
|
|
39
|
-
packageVersion: "3.2.
|
|
39
|
+
packageVersion: "3.2.18"
|
|
40
40
|
}
|
|
41
41
|
})(createAnalyticsEvent);
|
|
42
42
|
}
|
|
@@ -83,7 +83,7 @@ var ColorPaletteMenuWithoutAnalytics = exports.ColorPaletteMenuWithoutAnalytics
|
|
|
83
83
|
var _default = exports.default = (0, _analyticsNext.withAnalyticsContext)({
|
|
84
84
|
componentName: 'color-picker',
|
|
85
85
|
packageName: "@atlaskit/color-picker",
|
|
86
|
-
packageVersion: "3.2.
|
|
86
|
+
packageVersion: "3.2.18"
|
|
87
87
|
})((0, _analyticsNext.withAnalyticsEvents)()(ColorPaletteMenuWithoutAnalytics));
|
|
88
88
|
var colorCardWrapperStyles = (0, _react.css)({
|
|
89
89
|
display: 'flex',
|
|
@@ -39,7 +39,7 @@ var defaultPopperProps = {
|
|
|
39
39
|
placement: 'bottom-start'
|
|
40
40
|
};
|
|
41
41
|
var packageName = "@atlaskit/color-picker";
|
|
42
|
-
var packageVersion = "3.2.
|
|
42
|
+
var packageVersion = "3.2.18";
|
|
43
43
|
var ColorPickerWithoutAnalyticsBase = /*#__PURE__*/function (_React$Component) {
|
|
44
44
|
(0, _inherits2.default)(ColorPickerWithoutAnalyticsBase, _React$Component);
|
|
45
45
|
var _super = _createSuper(ColorPickerWithoutAnalyticsBase);
|
package/dist/cjs/messages.js
CHANGED
|
@@ -10,10 +10,5 @@ var _default = exports.default = (0, _reactIntlNext.defineMessages)({
|
|
|
10
10
|
id: 'jira.color-picker.src.color-picker-aria-label',
|
|
11
11
|
defaultMessage: '{color} selected, {message}',
|
|
12
12
|
description: 'This text is used as aria-label text in color picker component'
|
|
13
|
-
},
|
|
14
|
-
colorCardRadioItemLabel: {
|
|
15
|
-
id: 'jira.color-picker.src.color-card-radio-item-label',
|
|
16
|
-
defaultMessage: 'color option',
|
|
17
|
-
description: 'This text is used as aria-label text in color card component for radio item'
|
|
18
13
|
}
|
|
19
14
|
});
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
1
2
|
/** @jsx jsx */
|
|
2
3
|
import React, { useCallback, useEffect, useRef } from 'react';
|
|
3
4
|
import EditorDoneIcon from '@atlaskit/icon/glyph/editor/done';
|
|
@@ -5,10 +6,9 @@ import Tooltip from '@atlaskit/tooltip';
|
|
|
5
6
|
import { KEY_ENTER, KEY_SPACE } from '../constants';
|
|
6
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
7
8
|
import { css, jsx } from '@emotion/react';
|
|
8
|
-
import { useIntl } from 'react-intl-next';
|
|
9
9
|
import { N0, DN600A, B75 } from '@atlaskit/theme/colors';
|
|
10
10
|
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
11
|
-
import
|
|
11
|
+
import { mergeRefs } from 'use-callback-ref';
|
|
12
12
|
const ColorCard = props => {
|
|
13
13
|
const {
|
|
14
14
|
value,
|
|
@@ -21,9 +21,6 @@ const ColorCard = props => {
|
|
|
21
21
|
onKeyDown
|
|
22
22
|
} = props;
|
|
23
23
|
const ref = useRef(null);
|
|
24
|
-
const {
|
|
25
|
-
formatMessage
|
|
26
|
-
} = useIntl();
|
|
27
24
|
const handleMouseDown = useCallback(event => {
|
|
28
25
|
event.preventDefault();
|
|
29
26
|
}, []);
|
|
@@ -60,14 +57,39 @@ const ColorCard = props => {
|
|
|
60
57
|
}, []);
|
|
61
58
|
return jsx(Tooltip, {
|
|
62
59
|
content: label
|
|
63
|
-
},
|
|
60
|
+
}, getBooleanFF('platform.jca11y-2997-remove-duplicate-screen-reader-announcements_fz13s') ? tooltipProps => {
|
|
61
|
+
delete tooltipProps['aria-describedby'];
|
|
62
|
+
return jsx("div", _extends({}, tooltipProps, {
|
|
63
|
+
css: [sharedColorContainerStyles, (isTabbing === undefined || isTabbing) && colorCardOptionTabbingStyles, focused && !isTabbing && colorCardOptionFocusedStyles],
|
|
64
|
+
onClick: handleClick,
|
|
65
|
+
onMouseDown: handleMouseDown,
|
|
66
|
+
onKeyDown: handleKeyDown,
|
|
67
|
+
role: "radio",
|
|
68
|
+
"aria-checked": selected,
|
|
69
|
+
"aria-label": label,
|
|
70
|
+
tabIndex: 0,
|
|
71
|
+
ref: mergeRefs([ref, tooltipProps.ref])
|
|
72
|
+
}), jsx("div", {
|
|
73
|
+
css: colorCardWrapperStyles
|
|
74
|
+
}, jsx("div", {
|
|
75
|
+
css: colorCardContentStyles,
|
|
76
|
+
style: {
|
|
77
|
+
background: value || 'transparent'
|
|
78
|
+
}
|
|
79
|
+
}, selected && jsx("div", {
|
|
80
|
+
css: colorCardContentCheckMarkStyles
|
|
81
|
+
}, jsx(EditorDoneIcon, {
|
|
82
|
+
primaryColor: checkMarkColor,
|
|
83
|
+
label: ""
|
|
84
|
+
})))));
|
|
85
|
+
} : jsx("div", {
|
|
64
86
|
css: [sharedColorContainerStyles, (isTabbing === undefined || isTabbing) && colorCardOptionTabbingStyles, focused && !isTabbing && colorCardOptionFocusedStyles],
|
|
65
87
|
onClick: handleClick,
|
|
66
88
|
onMouseDown: handleMouseDown,
|
|
67
89
|
onKeyDown: handleKeyDown,
|
|
68
90
|
role: "radio",
|
|
69
91
|
"aria-checked": selected,
|
|
70
|
-
"aria-label":
|
|
92
|
+
"aria-label": label,
|
|
71
93
|
tabIndex: 0,
|
|
72
94
|
ref: ref
|
|
73
95
|
}, jsx("div", {
|
|
@@ -25,7 +25,7 @@ export const ColorPaletteMenuWithoutAnalytics = ({
|
|
|
25
25
|
attributes: {
|
|
26
26
|
componentName: 'color-picker',
|
|
27
27
|
packageName: "@atlaskit/color-picker",
|
|
28
|
-
packageVersion: "3.2.
|
|
28
|
+
packageVersion: "3.2.18"
|
|
29
29
|
}
|
|
30
30
|
})(createAnalyticsEvent);
|
|
31
31
|
}
|
|
@@ -72,7 +72,7 @@ export const ColorPaletteMenuWithoutAnalytics = ({
|
|
|
72
72
|
export default withAnalyticsContext({
|
|
73
73
|
componentName: 'color-picker',
|
|
74
74
|
packageName: "@atlaskit/color-picker",
|
|
75
|
-
packageVersion: "3.2.
|
|
75
|
+
packageVersion: "3.2.18"
|
|
76
76
|
})(withAnalyticsEvents()(ColorPaletteMenuWithoutAnalytics));
|
|
77
77
|
const colorCardWrapperStyles = css({
|
|
78
78
|
display: 'flex',
|
|
@@ -23,7 +23,7 @@ const defaultPopperProps = {
|
|
|
23
23
|
placement: 'bottom-start'
|
|
24
24
|
};
|
|
25
25
|
const packageName = "@atlaskit/color-picker";
|
|
26
|
-
const packageVersion = "3.2.
|
|
26
|
+
const packageVersion = "3.2.18";
|
|
27
27
|
class ColorPickerWithoutAnalyticsBase extends React.Component {
|
|
28
28
|
constructor(...args) {
|
|
29
29
|
super(...args);
|
package/dist/es2019/messages.js
CHANGED
|
@@ -4,10 +4,5 @@ export default defineMessages({
|
|
|
4
4
|
id: 'jira.color-picker.src.color-picker-aria-label',
|
|
5
5
|
defaultMessage: '{color} selected, {message}',
|
|
6
6
|
description: 'This text is used as aria-label text in color picker component'
|
|
7
|
-
},
|
|
8
|
-
colorCardRadioItemLabel: {
|
|
9
|
-
id: 'jira.color-picker.src.color-card-radio-item-label',
|
|
10
|
-
defaultMessage: 'color option',
|
|
11
|
-
description: 'This text is used as aria-label text in color card component for radio item'
|
|
12
7
|
}
|
|
13
8
|
});
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
1
2
|
/** @jsx jsx */
|
|
2
3
|
import React, { useCallback, useEffect, useRef } from 'react';
|
|
3
4
|
import EditorDoneIcon from '@atlaskit/icon/glyph/editor/done';
|
|
@@ -5,10 +6,9 @@ import Tooltip from '@atlaskit/tooltip';
|
|
|
5
6
|
import { KEY_ENTER, KEY_SPACE } from '../constants';
|
|
6
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
7
8
|
import { css, jsx } from '@emotion/react';
|
|
8
|
-
import { useIntl } from 'react-intl-next';
|
|
9
9
|
import { N0, DN600A, B75 } from '@atlaskit/theme/colors';
|
|
10
10
|
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
11
|
-
import
|
|
11
|
+
import { mergeRefs } from 'use-callback-ref';
|
|
12
12
|
var ColorCard = function ColorCard(props) {
|
|
13
13
|
var value = props.value,
|
|
14
14
|
label = props.label,
|
|
@@ -20,8 +20,6 @@ var ColorCard = function ColorCard(props) {
|
|
|
20
20
|
onClick = props.onClick,
|
|
21
21
|
onKeyDown = props.onKeyDown;
|
|
22
22
|
var ref = useRef(null);
|
|
23
|
-
var _useIntl = useIntl(),
|
|
24
|
-
formatMessage = _useIntl.formatMessage;
|
|
25
23
|
var handleMouseDown = useCallback(function (event) {
|
|
26
24
|
event.preventDefault();
|
|
27
25
|
}, []);
|
|
@@ -56,14 +54,39 @@ var ColorCard = function ColorCard(props) {
|
|
|
56
54
|
}, []);
|
|
57
55
|
return jsx(Tooltip, {
|
|
58
56
|
content: label
|
|
59
|
-
},
|
|
57
|
+
}, getBooleanFF('platform.jca11y-2997-remove-duplicate-screen-reader-announcements_fz13s') ? function (tooltipProps) {
|
|
58
|
+
delete tooltipProps['aria-describedby'];
|
|
59
|
+
return jsx("div", _extends({}, tooltipProps, {
|
|
60
|
+
css: [sharedColorContainerStyles, (isTabbing === undefined || isTabbing) && colorCardOptionTabbingStyles, focused && !isTabbing && colorCardOptionFocusedStyles],
|
|
61
|
+
onClick: handleClick,
|
|
62
|
+
onMouseDown: handleMouseDown,
|
|
63
|
+
onKeyDown: handleKeyDown,
|
|
64
|
+
role: "radio",
|
|
65
|
+
"aria-checked": selected,
|
|
66
|
+
"aria-label": label,
|
|
67
|
+
tabIndex: 0,
|
|
68
|
+
ref: mergeRefs([ref, tooltipProps.ref])
|
|
69
|
+
}), jsx("div", {
|
|
70
|
+
css: colorCardWrapperStyles
|
|
71
|
+
}, jsx("div", {
|
|
72
|
+
css: colorCardContentStyles,
|
|
73
|
+
style: {
|
|
74
|
+
background: value || 'transparent'
|
|
75
|
+
}
|
|
76
|
+
}, selected && jsx("div", {
|
|
77
|
+
css: colorCardContentCheckMarkStyles
|
|
78
|
+
}, jsx(EditorDoneIcon, {
|
|
79
|
+
primaryColor: checkMarkColor,
|
|
80
|
+
label: ""
|
|
81
|
+
})))));
|
|
82
|
+
} : jsx("div", {
|
|
60
83
|
css: [sharedColorContainerStyles, (isTabbing === undefined || isTabbing) && colorCardOptionTabbingStyles, focused && !isTabbing && colorCardOptionFocusedStyles],
|
|
61
84
|
onClick: handleClick,
|
|
62
85
|
onMouseDown: handleMouseDown,
|
|
63
86
|
onKeyDown: handleKeyDown,
|
|
64
87
|
role: "radio",
|
|
65
88
|
"aria-checked": selected,
|
|
66
|
-
"aria-label":
|
|
89
|
+
"aria-label": label,
|
|
67
90
|
tabIndex: 0,
|
|
68
91
|
ref: ref
|
|
69
92
|
}, jsx("div", {
|
|
@@ -27,7 +27,7 @@ export var ColorPaletteMenuWithoutAnalytics = function ColorPaletteMenuWithoutAn
|
|
|
27
27
|
attributes: {
|
|
28
28
|
componentName: 'color-picker',
|
|
29
29
|
packageName: "@atlaskit/color-picker",
|
|
30
|
-
packageVersion: "3.2.
|
|
30
|
+
packageVersion: "3.2.18"
|
|
31
31
|
}
|
|
32
32
|
})(createAnalyticsEvent);
|
|
33
33
|
}
|
|
@@ -74,7 +74,7 @@ export var ColorPaletteMenuWithoutAnalytics = function ColorPaletteMenuWithoutAn
|
|
|
74
74
|
export default withAnalyticsContext({
|
|
75
75
|
componentName: 'color-picker',
|
|
76
76
|
packageName: "@atlaskit/color-picker",
|
|
77
|
-
packageVersion: "3.2.
|
|
77
|
+
packageVersion: "3.2.18"
|
|
78
78
|
})(withAnalyticsEvents()(ColorPaletteMenuWithoutAnalytics));
|
|
79
79
|
var colorCardWrapperStyles = css({
|
|
80
80
|
display: 'flex',
|
|
@@ -31,7 +31,7 @@ var defaultPopperProps = {
|
|
|
31
31
|
placement: 'bottom-start'
|
|
32
32
|
};
|
|
33
33
|
var packageName = "@atlaskit/color-picker";
|
|
34
|
-
var packageVersion = "3.2.
|
|
34
|
+
var packageVersion = "3.2.18";
|
|
35
35
|
var ColorPickerWithoutAnalyticsBase = /*#__PURE__*/function (_React$Component) {
|
|
36
36
|
_inherits(ColorPickerWithoutAnalyticsBase, _React$Component);
|
|
37
37
|
var _super = _createSuper(ColorPickerWithoutAnalyticsBase);
|
package/dist/esm/messages.js
CHANGED
|
@@ -4,10 +4,5 @@ export default defineMessages({
|
|
|
4
4
|
id: 'jira.color-picker.src.color-picker-aria-label',
|
|
5
5
|
defaultMessage: '{color} selected, {message}',
|
|
6
6
|
description: 'This text is used as aria-label text in color picker component'
|
|
7
|
-
},
|
|
8
|
-
colorCardRadioItemLabel: {
|
|
9
|
-
id: 'jira.color-picker.src.color-card-radio-item-label',
|
|
10
|
-
defaultMessage: 'color option',
|
|
11
|
-
description: 'This text is used as aria-label text in color card component for radio item'
|
|
12
7
|
}
|
|
13
8
|
});
|
package/dist/types/messages.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/color-picker",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.18",
|
|
4
4
|
"description": "Jira Color Picker Component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,20 +36,21 @@
|
|
|
36
36
|
"@atlaskit/icon": "^22.4.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^0.2.5",
|
|
38
38
|
"@atlaskit/select": "^17.11.0",
|
|
39
|
-
"@atlaskit/theme": "^12.
|
|
40
|
-
"@atlaskit/tokens": "^1.
|
|
39
|
+
"@atlaskit/theme": "^12.11.0",
|
|
40
|
+
"@atlaskit/tokens": "^1.52.0",
|
|
41
41
|
"@atlaskit/tooltip": "^18.5.0",
|
|
42
42
|
"@babel/runtime": "^7.0.0",
|
|
43
43
|
"@emotion/react": "^11.7.1",
|
|
44
44
|
"memoize-one": "^6.0.0",
|
|
45
|
-
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
45
|
+
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
46
|
+
"use-callback-ref": "^1.2.3"
|
|
46
47
|
},
|
|
47
48
|
"peerDependencies": {
|
|
48
49
|
"react": "^16.8.0"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
52
|
"@af/visual-regression": "*",
|
|
52
|
-
"@atlaskit/primitives": "^
|
|
53
|
+
"@atlaskit/primitives": "^8.0.0",
|
|
53
54
|
"@atlaskit/visual-regression": "*",
|
|
54
55
|
"@testing-library/react": "^12.1.5",
|
|
55
56
|
"@testing-library/user-event": "^14.4.3",
|