@atlaskit/radio 6.0.2 → 6.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/radio-group.js +2 -2
- package/dist/cjs/radio.js +11 -8
- package/dist/es2019/radio.js +12 -9
- package/dist/esm/radio.js +12 -9
- package/dist/types/radio-group.d.ts +1 -1
- package/dist/types/types.d.ts +2 -2
- package/dist/types-ts4.5/radio-group.d.ts +1 -1
- package/dist/types-ts4.5/types.d.ts +2 -2
- package/package.json +2 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/radio
|
|
2
2
|
|
|
3
|
+
## 6.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#80805](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80805) [`427c2dd9e0d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/427c2dd9e0d6) - [ux] update border with from 2px to 1px with darker color to meet 3:1 color contrast for accessibility improvement
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 6.0.3
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#78598](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78598) [`cabae83473c3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cabae83473c3) - [ux] Focus styles for Checkbox and Radio components
|
|
18
|
+
|
|
3
19
|
## 6.0.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/cjs/radio-group.js
CHANGED
|
@@ -12,8 +12,8 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
|
|
|
12
12
|
var _react = _interopRequireWildcard(require("react"));
|
|
13
13
|
var _noop = _interopRequireDefault(require("@atlaskit/ds-lib/noop"));
|
|
14
14
|
var _radio = _interopRequireDefault(require("./radio"));
|
|
15
|
-
function _getRequireWildcardCache(
|
|
16
|
-
function _interopRequireWildcard(
|
|
15
|
+
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); }
|
|
16
|
+
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; }
|
|
17
17
|
var noOptions = [];
|
|
18
18
|
function RadioGroup(props) {
|
|
19
19
|
var onChange = props.onChange,
|
package/dist/cjs/radio.js
CHANGED
|
@@ -11,13 +11,12 @@ var _react = require("react");
|
|
|
11
11
|
var _react2 = require("@emotion/react");
|
|
12
12
|
var _usePlatformLeafEventHandler = require("@atlaskit/analytics-next/usePlatformLeafEventHandler");
|
|
13
13
|
var _noop = _interopRequireDefault(require("@atlaskit/ds-lib/noop"));
|
|
14
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
15
14
|
var _colors = require("@atlaskit/theme/colors");
|
|
16
15
|
var _constants = require("@atlaskit/theme/constants");
|
|
17
16
|
var _excluded = ["ariaLabel", "isDisabled", "isRequired", "isInvalid", "isChecked", "label", "name", "onChange", "value", "testId", "analyticsContext"];
|
|
18
17
|
/** @jsx jsx */
|
|
19
18
|
var packageName = "@atlaskit/radio";
|
|
20
|
-
var packageVersion = "6.0
|
|
19
|
+
var packageVersion = "6.1.0";
|
|
21
20
|
var fontFamily = (0, _constants.fontFamily)();
|
|
22
21
|
var noop = _noop.default;
|
|
23
22
|
var labelPaddingStyles = (0, _react2.css)({
|
|
@@ -56,7 +55,7 @@ var radioStyles = (0, _react2.css)({
|
|
|
56
55
|
backgroundColor: 'var(--radio-background-color)',
|
|
57
56
|
/* Border should multiply by 24/14 to offset scale, a scale of 12 / 7 is to fix a Chrome bug that makes the circle become an oval and the
|
|
58
57
|
inner circle not be centred at various zoom levels */
|
|
59
|
-
border: "
|
|
58
|
+
border: "var(--ds-border-width, 1px)".concat(" solid var(--radio-border-color)"),
|
|
60
59
|
borderRadius: "var(--ds-border-radius-circle, 50%)",
|
|
61
60
|
MozAppearance: 'none',
|
|
62
61
|
outline: 'none',
|
|
@@ -66,7 +65,7 @@ var radioStyles = (0, _react2.css)({
|
|
|
66
65
|
All other variables are constant
|
|
67
66
|
*/
|
|
68
67
|
'--radio-background-color': "var(--ds-background-input, ".concat(_colors.N10, ")"),
|
|
69
|
-
'--radio-border-color':
|
|
68
|
+
'--radio-border-color': "var(--ds-border-input, ".concat(_colors.N100, ")"),
|
|
70
69
|
'--radio-dot-color': "var(--ds-icon-inverse, ".concat(_colors.N10, ")"),
|
|
71
70
|
'--radio-dot-opacity': 0,
|
|
72
71
|
/* 24px * 7 / 12 === 14px height and width */
|
|
@@ -88,13 +87,14 @@ var radioStyles = (0, _react2.css)({
|
|
|
88
87
|
},
|
|
89
88
|
'&:hover': {
|
|
90
89
|
'--radio-background-color': "var(--ds-background-input-hovered, ".concat(_colors.N30, ")"),
|
|
91
|
-
'--radio-border-color':
|
|
90
|
+
'--radio-border-color': "var(--ds-border-input, ".concat(_colors.N100, ")")
|
|
92
91
|
},
|
|
93
92
|
'&:active': {
|
|
94
93
|
'--radio-background-color': "var(--ds-background-input-pressed, ".concat(_colors.N30, ")")
|
|
95
94
|
},
|
|
96
95
|
'&:focus': {
|
|
97
|
-
|
|
96
|
+
outline: "var(--ds-border-width-outline, 3px)".concat(" solid ", "var(--ds-border-focused, ".concat(_colors.B200, ")")),
|
|
97
|
+
outlineOffset: "var(--ds-border-width-indicator, 3px)"
|
|
98
98
|
},
|
|
99
99
|
'&:checked': {
|
|
100
100
|
'--radio-background-color': "var(--ds-background-selected-bold, ".concat(_colors.B400, ")"),
|
|
@@ -107,11 +107,12 @@ var radioStyles = (0, _react2.css)({
|
|
|
107
107
|
},
|
|
108
108
|
'&:checked:active': {
|
|
109
109
|
'--radio-background-color': "var(--ds-background-selected-bold-pressed, ".concat(_colors.B50, ")"),
|
|
110
|
-
'--radio-border-color':
|
|
110
|
+
'--radio-border-color': "var(--ds-border-input, ".concat(_colors.N100, ")"),
|
|
111
111
|
'--radio-dot-color': "var(--ds-icon-inverse, ".concat(_colors.B400, ")")
|
|
112
112
|
},
|
|
113
113
|
'&:checked:focus': {
|
|
114
|
-
|
|
114
|
+
outline: "var(--ds-border-width-outline, 3px)".concat(" solid ", "var(--ds-border-focused, ".concat(_colors.B200, ")")),
|
|
115
|
+
outlineOffset: "var(--ds-border-width-indicator, 3px)"
|
|
115
116
|
},
|
|
116
117
|
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles
|
|
117
118
|
'&[data-invalid], &:checked[data-invalid]': {
|
|
@@ -154,6 +155,8 @@ var InnerRadio = /*#__PURE__*/(0, _react.forwardRef)(function Radio(props, ref)
|
|
|
154
155
|
"data-disabled": isDisabled ? 'true' : undefined,
|
|
155
156
|
css: labelStyles
|
|
156
157
|
}, (0, _react2.jsx)("input", (0, _extends2.default)({}, rest, {
|
|
158
|
+
// It is necessary only for Safari. It allows to render focus styles.
|
|
159
|
+
tabIndex: 0,
|
|
157
160
|
"aria-label": ariaLabel,
|
|
158
161
|
checked: isChecked,
|
|
159
162
|
disabled: isDisabled,
|
package/dist/es2019/radio.js
CHANGED
|
@@ -4,11 +4,10 @@ import { forwardRef, memo } from 'react';
|
|
|
4
4
|
import { css, jsx } from '@emotion/react';
|
|
5
5
|
import { usePlatformLeafEventHandler } from '@atlaskit/analytics-next/usePlatformLeafEventHandler';
|
|
6
6
|
import __noop from '@atlaskit/ds-lib/noop';
|
|
7
|
-
import {
|
|
8
|
-
import { B100, B300, B400, B50, N10, N100, N20, N30, N40, N70, N80, N900, R300 } from '@atlaskit/theme/colors';
|
|
7
|
+
import { B200, B300, B400, B50, N10, N100, N20, N30, N70, N80, N900, R300 } from '@atlaskit/theme/colors';
|
|
9
8
|
import { fontFamily as getFontFamily } from '@atlaskit/theme/constants';
|
|
10
9
|
const packageName = "@atlaskit/radio";
|
|
11
|
-
const packageVersion = "6.0
|
|
10
|
+
const packageVersion = "6.1.0";
|
|
12
11
|
const fontFamily = getFontFamily();
|
|
13
12
|
const noop = __noop;
|
|
14
13
|
const labelPaddingStyles = css({
|
|
@@ -47,7 +46,7 @@ const radioStyles = css({
|
|
|
47
46
|
backgroundColor: 'var(--radio-background-color)',
|
|
48
47
|
/* Border should multiply by 24/14 to offset scale, a scale of 12 / 7 is to fix a Chrome bug that makes the circle become an oval and the
|
|
49
48
|
inner circle not be centred at various zoom levels */
|
|
50
|
-
border: `${
|
|
49
|
+
border: `${"var(--ds-border-width, 1px)"} solid var(--radio-border-color)`,
|
|
51
50
|
borderRadius: "var(--ds-border-radius-circle, 50%)",
|
|
52
51
|
MozAppearance: 'none',
|
|
53
52
|
outline: 'none',
|
|
@@ -57,7 +56,7 @@ const radioStyles = css({
|
|
|
57
56
|
All other variables are constant
|
|
58
57
|
*/
|
|
59
58
|
'--radio-background-color': `var(--ds-background-input, ${N10})`,
|
|
60
|
-
'--radio-border-color':
|
|
59
|
+
'--radio-border-color': `var(--ds-border-input, ${N100})`,
|
|
61
60
|
'--radio-dot-color': `var(--ds-icon-inverse, ${N10})`,
|
|
62
61
|
'--radio-dot-opacity': 0,
|
|
63
62
|
/* 24px * 7 / 12 === 14px height and width */
|
|
@@ -79,13 +78,14 @@ const radioStyles = css({
|
|
|
79
78
|
},
|
|
80
79
|
'&:hover': {
|
|
81
80
|
'--radio-background-color': `var(--ds-background-input-hovered, ${N30})`,
|
|
82
|
-
'--radio-border-color':
|
|
81
|
+
'--radio-border-color': `var(--ds-border-input, ${N100})`
|
|
83
82
|
},
|
|
84
83
|
'&:active': {
|
|
85
84
|
'--radio-background-color': `var(--ds-background-input-pressed, ${N30})`
|
|
86
85
|
},
|
|
87
86
|
'&:focus': {
|
|
88
|
-
|
|
87
|
+
outline: `${"var(--ds-border-width-outline, 3px)"} solid ${`var(--ds-border-focused, ${B200})`}`,
|
|
88
|
+
outlineOffset: "var(--ds-border-width-indicator, 3px)"
|
|
89
89
|
},
|
|
90
90
|
'&:checked': {
|
|
91
91
|
'--radio-background-color': `var(--ds-background-selected-bold, ${B400})`,
|
|
@@ -98,11 +98,12 @@ const radioStyles = css({
|
|
|
98
98
|
},
|
|
99
99
|
'&:checked:active': {
|
|
100
100
|
'--radio-background-color': `var(--ds-background-selected-bold-pressed, ${B50})`,
|
|
101
|
-
'--radio-border-color':
|
|
101
|
+
'--radio-border-color': `var(--ds-border-input, ${N100})`,
|
|
102
102
|
'--radio-dot-color': `var(--ds-icon-inverse, ${B400})`
|
|
103
103
|
},
|
|
104
104
|
'&:checked:focus': {
|
|
105
|
-
|
|
105
|
+
outline: `${"var(--ds-border-width-outline, 3px)"} solid ${`var(--ds-border-focused, ${B200})`}`,
|
|
106
|
+
outlineOffset: "var(--ds-border-width-indicator, 3px)"
|
|
106
107
|
},
|
|
107
108
|
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles
|
|
108
109
|
'&[data-invalid], &:checked[data-invalid]': {
|
|
@@ -144,6 +145,8 @@ const InnerRadio = /*#__PURE__*/forwardRef(function Radio(props, ref) {
|
|
|
144
145
|
"data-disabled": isDisabled ? 'true' : undefined,
|
|
145
146
|
css: labelStyles
|
|
146
147
|
}, jsx("input", _extends({}, rest, {
|
|
148
|
+
// It is necessary only for Safari. It allows to render focus styles.
|
|
149
|
+
tabIndex: 0,
|
|
147
150
|
"aria-label": ariaLabel,
|
|
148
151
|
checked: isChecked,
|
|
149
152
|
disabled: isDisabled,
|
package/dist/esm/radio.js
CHANGED
|
@@ -6,11 +6,10 @@ import { forwardRef, memo } from 'react';
|
|
|
6
6
|
import { css, jsx } from '@emotion/react';
|
|
7
7
|
import { usePlatformLeafEventHandler } from '@atlaskit/analytics-next/usePlatformLeafEventHandler';
|
|
8
8
|
import __noop from '@atlaskit/ds-lib/noop';
|
|
9
|
-
import {
|
|
10
|
-
import { B100, B300, B400, B50, N10, N100, N20, N30, N40, N70, N80, N900, R300 } from '@atlaskit/theme/colors';
|
|
9
|
+
import { B200, B300, B400, B50, N10, N100, N20, N30, N70, N80, N900, R300 } from '@atlaskit/theme/colors';
|
|
11
10
|
import { fontFamily as getFontFamily } from '@atlaskit/theme/constants';
|
|
12
11
|
var packageName = "@atlaskit/radio";
|
|
13
|
-
var packageVersion = "6.0
|
|
12
|
+
var packageVersion = "6.1.0";
|
|
14
13
|
var fontFamily = getFontFamily();
|
|
15
14
|
var noop = __noop;
|
|
16
15
|
var labelPaddingStyles = css({
|
|
@@ -49,7 +48,7 @@ var radioStyles = css({
|
|
|
49
48
|
backgroundColor: 'var(--radio-background-color)',
|
|
50
49
|
/* Border should multiply by 24/14 to offset scale, a scale of 12 / 7 is to fix a Chrome bug that makes the circle become an oval and the
|
|
51
50
|
inner circle not be centred at various zoom levels */
|
|
52
|
-
border: "
|
|
51
|
+
border: "var(--ds-border-width, 1px)".concat(" solid var(--radio-border-color)"),
|
|
53
52
|
borderRadius: "var(--ds-border-radius-circle, 50%)",
|
|
54
53
|
MozAppearance: 'none',
|
|
55
54
|
outline: 'none',
|
|
@@ -59,7 +58,7 @@ var radioStyles = css({
|
|
|
59
58
|
All other variables are constant
|
|
60
59
|
*/
|
|
61
60
|
'--radio-background-color': "var(--ds-background-input, ".concat(N10, ")"),
|
|
62
|
-
'--radio-border-color':
|
|
61
|
+
'--radio-border-color': "var(--ds-border-input, ".concat(N100, ")"),
|
|
63
62
|
'--radio-dot-color': "var(--ds-icon-inverse, ".concat(N10, ")"),
|
|
64
63
|
'--radio-dot-opacity': 0,
|
|
65
64
|
/* 24px * 7 / 12 === 14px height and width */
|
|
@@ -81,13 +80,14 @@ var radioStyles = css({
|
|
|
81
80
|
},
|
|
82
81
|
'&:hover': {
|
|
83
82
|
'--radio-background-color': "var(--ds-background-input-hovered, ".concat(N30, ")"),
|
|
84
|
-
'--radio-border-color':
|
|
83
|
+
'--radio-border-color': "var(--ds-border-input, ".concat(N100, ")")
|
|
85
84
|
},
|
|
86
85
|
'&:active': {
|
|
87
86
|
'--radio-background-color': "var(--ds-background-input-pressed, ".concat(N30, ")")
|
|
88
87
|
},
|
|
89
88
|
'&:focus': {
|
|
90
|
-
|
|
89
|
+
outline: "var(--ds-border-width-outline, 3px)".concat(" solid ", "var(--ds-border-focused, ".concat(B200, ")")),
|
|
90
|
+
outlineOffset: "var(--ds-border-width-indicator, 3px)"
|
|
91
91
|
},
|
|
92
92
|
'&:checked': {
|
|
93
93
|
'--radio-background-color': "var(--ds-background-selected-bold, ".concat(B400, ")"),
|
|
@@ -100,11 +100,12 @@ var radioStyles = css({
|
|
|
100
100
|
},
|
|
101
101
|
'&:checked:active': {
|
|
102
102
|
'--radio-background-color': "var(--ds-background-selected-bold-pressed, ".concat(B50, ")"),
|
|
103
|
-
'--radio-border-color':
|
|
103
|
+
'--radio-border-color': "var(--ds-border-input, ".concat(N100, ")"),
|
|
104
104
|
'--radio-dot-color': "var(--ds-icon-inverse, ".concat(B400, ")")
|
|
105
105
|
},
|
|
106
106
|
'&:checked:focus': {
|
|
107
|
-
|
|
107
|
+
outline: "var(--ds-border-width-outline, 3px)".concat(" solid ", "var(--ds-border-focused, ".concat(B200, ")")),
|
|
108
|
+
outlineOffset: "var(--ds-border-width-indicator, 3px)"
|
|
108
109
|
},
|
|
109
110
|
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles
|
|
110
111
|
'&[data-invalid], &:checked[data-invalid]': {
|
|
@@ -147,6 +148,8 @@ var InnerRadio = /*#__PURE__*/forwardRef(function Radio(props, ref) {
|
|
|
147
148
|
"data-disabled": isDisabled ? 'true' : undefined,
|
|
148
149
|
css: labelStyles
|
|
149
150
|
}, jsx("input", _extends({}, rest, {
|
|
151
|
+
// It is necessary only for Safari. It allows to render focus styles.
|
|
152
|
+
tabIndex: 0,
|
|
150
153
|
"aria-label": ariaLabel,
|
|
151
154
|
checked: isChecked,
|
|
152
155
|
disabled: isDisabled,
|
|
@@ -47,7 +47,7 @@ export interface RadioGroupProps {
|
|
|
47
47
|
*/
|
|
48
48
|
'aria-labelledby'?: string;
|
|
49
49
|
/**
|
|
50
|
-
* A `testId` prop is provided for specified elements, which is a unique string that appears as a data attribute `data-testid` in the rendered code, serving as a hook for automated tests
|
|
50
|
+
* A `testId` prop is provided for specified elements, which is a unique string that appears as a data attribute `data-testid` in the rendered code, serving as a hook for automated tests.
|
|
51
51
|
* The specified `testId` is applied to the root element of `RadioGroup`. If no `testId` is supplied in the `options` prop, then the one supplied to `RadioGroup` will also be propagated to
|
|
52
52
|
* the `Radio` children. Otherwise, the `testId` supplied in the `options` prop will be used.
|
|
53
53
|
*
|
package/dist/types/types.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export type OptionsPropType = Array<OptionPropType>;
|
|
|
11
11
|
export type RadioValue = string;
|
|
12
12
|
type OwnProps = {
|
|
13
13
|
/**
|
|
14
|
-
* The aria-label attribute associated with the radio element.
|
|
14
|
+
* The `aria-label` attribute associated with the radio element.
|
|
15
15
|
*/
|
|
16
16
|
ariaLabel?: string;
|
|
17
17
|
/**
|
|
@@ -35,7 +35,7 @@ type OwnProps = {
|
|
|
35
35
|
*/
|
|
36
36
|
label?: ReactNode;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* `onChange` event handler, passed into the props of each `Radio` Component instantiated within `RadioGroup`.
|
|
39
39
|
*/
|
|
40
40
|
onChange?: (e: React.ChangeEvent<HTMLInputElement>, analyticsEvent: UIAnalyticsEvent) => void;
|
|
41
41
|
/**
|
|
@@ -47,7 +47,7 @@ export interface RadioGroupProps {
|
|
|
47
47
|
*/
|
|
48
48
|
'aria-labelledby'?: string;
|
|
49
49
|
/**
|
|
50
|
-
* A `testId` prop is provided for specified elements, which is a unique string that appears as a data attribute `data-testid` in the rendered code, serving as a hook for automated tests
|
|
50
|
+
* A `testId` prop is provided for specified elements, which is a unique string that appears as a data attribute `data-testid` in the rendered code, serving as a hook for automated tests.
|
|
51
51
|
* The specified `testId` is applied to the root element of `RadioGroup`. If no `testId` is supplied in the `options` prop, then the one supplied to `RadioGroup` will also be propagated to
|
|
52
52
|
* the `Radio` children. Otherwise, the `testId` supplied in the `options` prop will be used.
|
|
53
53
|
*
|
|
@@ -11,7 +11,7 @@ export type OptionsPropType = Array<OptionPropType>;
|
|
|
11
11
|
export type RadioValue = string;
|
|
12
12
|
type OwnProps = {
|
|
13
13
|
/**
|
|
14
|
-
* The aria-label attribute associated with the radio element.
|
|
14
|
+
* The `aria-label` attribute associated with the radio element.
|
|
15
15
|
*/
|
|
16
16
|
ariaLabel?: string;
|
|
17
17
|
/**
|
|
@@ -35,7 +35,7 @@ type OwnProps = {
|
|
|
35
35
|
*/
|
|
36
36
|
label?: ReactNode;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* `onChange` event handler, passed into the props of each `Radio` Component instantiated within `RadioGroup`.
|
|
39
39
|
*/
|
|
40
40
|
onChange?: (e: React.ChangeEvent<HTMLInputElement>, analyticsEvent: UIAnalyticsEvent) => void;
|
|
41
41
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/radio",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"description": "A radio input allows users to select only one option from a number of choices. Radio is generally displayed in a radio group.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -42,9 +42,8 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@atlaskit/analytics-next": "^9.2.0",
|
|
44
44
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
45
|
-
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
46
45
|
"@atlaskit/theme": "^12.6.0",
|
|
47
|
-
"@atlaskit/tokens": "^1.
|
|
46
|
+
"@atlaskit/tokens": "^1.41.0",
|
|
48
47
|
"@babel/runtime": "^7.0.0",
|
|
49
48
|
"@emotion/react": "^11.7.1"
|
|
50
49
|
},
|
|
@@ -88,11 +87,6 @@
|
|
|
88
87
|
"deprecation": "no-deprecated-imports"
|
|
89
88
|
}
|
|
90
89
|
},
|
|
91
|
-
"platform-feature-flags": {
|
|
92
|
-
"platform.design-system-team.update-border-radio-checkbox_7askv": {
|
|
93
|
-
"type": "boolean"
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
90
|
"homepage": "https://atlassian.design/components/radio/",
|
|
97
91
|
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
|
|
98
92
|
}
|