@atlaskit/radio 6.5.4 → 6.5.5
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 +8 -0
- package/Radio/package.json +3 -1
- package/RadioGroup/package.json +3 -1
- package/dist/cjs/radio.js +1 -1
- package/dist/es2019/radio.js +1 -1
- package/dist/esm/radio.js +1 -1
- package/package.json +8 -6
- package/types/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/radio
|
|
2
2
|
|
|
3
|
+
## 6.5.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#165531](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/165531)
|
|
8
|
+
[`57f451bda8919`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/57f451bda8919) -
|
|
9
|
+
Adds side-effect config to support Compiled css extraction in third-party apps
|
|
10
|
+
|
|
3
11
|
## 6.5.4
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/Radio/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/radio.js",
|
|
4
4
|
"module": "../dist/esm/radio.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/radio.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/radio.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/RadioGroup/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/radio-group.js",
|
|
4
4
|
"module": "../dist/esm/radio-group.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/radio-group.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/radio-group.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/dist/cjs/radio.js
CHANGED
|
@@ -19,7 +19,7 @@ var _excluded = ["ariaLabel", "isDisabled", "isRequired", "isInvalid", "isChecke
|
|
|
19
19
|
*/
|
|
20
20
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
21
21
|
var packageName = "@atlaskit/radio";
|
|
22
|
-
var packageVersion = "6.5.
|
|
22
|
+
var packageVersion = "6.5.5";
|
|
23
23
|
var noop = _noop.default;
|
|
24
24
|
var labelPaddingStyles = (0, _react2.css)({
|
|
25
25
|
padding: "var(--ds-space-025, 2px)".concat(" ", "var(--ds-space-050, 4px)")
|
package/dist/es2019/radio.js
CHANGED
|
@@ -11,7 +11,7 @@ import { usePlatformLeafEventHandler } from '@atlaskit/analytics-next/usePlatfor
|
|
|
11
11
|
import __noop from '@atlaskit/ds-lib/noop';
|
|
12
12
|
import { B200, B300, B400, B50, N10, N100, N20, N30, N70, N80, N900, R300 } from '@atlaskit/theme/colors';
|
|
13
13
|
const packageName = "@atlaskit/radio";
|
|
14
|
-
const packageVersion = "6.5.
|
|
14
|
+
const packageVersion = "6.5.5";
|
|
15
15
|
const noop = __noop;
|
|
16
16
|
const labelPaddingStyles = css({
|
|
17
17
|
padding: `${"var(--ds-space-025, 2px)"} ${"var(--ds-space-050, 4px)"}`
|
package/dist/esm/radio.js
CHANGED
|
@@ -13,7 +13,7 @@ import { usePlatformLeafEventHandler } from '@atlaskit/analytics-next/usePlatfor
|
|
|
13
13
|
import __noop from '@atlaskit/ds-lib/noop';
|
|
14
14
|
import { B200, B300, B400, B50, N10, N100, N20, N30, N70, N80, N900, R300 } from '@atlaskit/theme/colors';
|
|
15
15
|
var packageName = "@atlaskit/radio";
|
|
16
|
-
var packageVersion = "6.5.
|
|
16
|
+
var packageVersion = "6.5.5";
|
|
17
17
|
var noop = __noop;
|
|
18
18
|
var labelPaddingStyles = css({
|
|
19
19
|
padding: "var(--ds-space-025, 2px)".concat(" ", "var(--ds-space-050, 4px)")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/radio",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.5",
|
|
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/"
|
|
@@ -20,7 +20,9 @@
|
|
|
20
20
|
]
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
|
-
"sideEffects":
|
|
23
|
+
"sideEffects": [
|
|
24
|
+
"**/*.compiled.css"
|
|
25
|
+
],
|
|
24
26
|
"atlaskit:src": "src/index.tsx",
|
|
25
27
|
"atlassian": {
|
|
26
28
|
"team": "Design System Team",
|
|
@@ -38,9 +40,9 @@
|
|
|
38
40
|
},
|
|
39
41
|
"dependencies": {
|
|
40
42
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
41
|
-
"@atlaskit/ds-lib": "^3.
|
|
43
|
+
"@atlaskit/ds-lib": "^3.2.0",
|
|
42
44
|
"@atlaskit/theme": "^14.0.0",
|
|
43
|
-
"@atlaskit/tokens": "^2.
|
|
45
|
+
"@atlaskit/tokens": "^2.2.0",
|
|
44
46
|
"@babel/runtime": "^7.0.0",
|
|
45
47
|
"@emotion/react": "^11.7.1"
|
|
46
48
|
},
|
|
@@ -50,13 +52,13 @@
|
|
|
50
52
|
"devDependencies": {
|
|
51
53
|
"@af/accessibility-testing": "*",
|
|
52
54
|
"@af/integration-testing": "*",
|
|
53
|
-
"@atlaskit/checkbox": "^15.
|
|
55
|
+
"@atlaskit/checkbox": "^15.1.0",
|
|
54
56
|
"@atlaskit/ssr": "*",
|
|
55
57
|
"@atlaskit/visual-regression": "*",
|
|
56
58
|
"@atlassian/feature-flags-test-utils": "*",
|
|
57
59
|
"@testing-library/react": "^12.1.5",
|
|
58
60
|
"react-dom": "^16.8.0",
|
|
59
|
-
"storybook-addon-performance": "^0.
|
|
61
|
+
"storybook-addon-performance": "^0.17.3",
|
|
60
62
|
"typescript": "~5.4.2"
|
|
61
63
|
},
|
|
62
64
|
"keywords": [
|
package/types/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/types.js",
|
|
4
4
|
"module": "../dist/esm/types.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/types.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/types.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|