@atlaskit/checkbox 13.1.3 → 13.1.4
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 +6 -0
- package/dist/cjs/checkbox.js +1 -4
- package/dist/es2019/checkbox.js +1 -4
- package/dist/esm/checkbox.js +1 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/checkbox
|
|
2
2
|
|
|
3
|
+
## 13.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#84905](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84905) [`f03cb7163ffc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f03cb7163ffc) - Remove input focus style on `Checkbox` component
|
|
8
|
+
|
|
3
9
|
## 13.1.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/cjs/checkbox.js
CHANGED
|
@@ -27,9 +27,6 @@ var checkboxStyles = (0, _react2.css)({
|
|
|
27
27
|
gridArea: '1 / 1 / 2 / 2',
|
|
28
28
|
opacity: 0,
|
|
29
29
|
outline: 'none',
|
|
30
|
-
'&:focus': {
|
|
31
|
-
opacity: 1
|
|
32
|
-
},
|
|
33
30
|
'& + svg': {
|
|
34
31
|
/**
|
|
35
32
|
* Change the variables --checkbox-background-color, --checkbox-border-color
|
|
@@ -167,7 +164,7 @@ var Checkbox = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
|
|
|
167
164
|
analyticsData: analyticsContext,
|
|
168
165
|
componentName: 'checkbox',
|
|
169
166
|
packageName: "@atlaskit/checkbox",
|
|
170
|
-
packageVersion: "13.1.
|
|
167
|
+
packageVersion: "13.1.4"
|
|
171
168
|
});
|
|
172
169
|
var internalRef = (0, _react.useRef)(null);
|
|
173
170
|
var mergedRefs = (0, _mergeRefs.default)([internalRef, ref]);
|
package/dist/es2019/checkbox.js
CHANGED
|
@@ -17,9 +17,6 @@ const checkboxStyles = css({
|
|
|
17
17
|
gridArea: '1 / 1 / 2 / 2',
|
|
18
18
|
opacity: 0,
|
|
19
19
|
outline: 'none',
|
|
20
|
-
'&:focus': {
|
|
21
|
-
opacity: 1
|
|
22
|
-
},
|
|
23
20
|
'& + svg': {
|
|
24
21
|
/**
|
|
25
22
|
* Change the variables --checkbox-background-color, --checkbox-border-color
|
|
@@ -151,7 +148,7 @@ const Checkbox = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(function Checkbox(pr
|
|
|
151
148
|
analyticsData: analyticsContext,
|
|
152
149
|
componentName: 'checkbox',
|
|
153
150
|
packageName: "@atlaskit/checkbox",
|
|
154
|
-
packageVersion: "13.1.
|
|
151
|
+
packageVersion: "13.1.4"
|
|
155
152
|
});
|
|
156
153
|
const internalRef = useRef(null);
|
|
157
154
|
const mergedRefs = mergeRefs([internalRef, ref]);
|
package/dist/esm/checkbox.js
CHANGED
|
@@ -20,9 +20,6 @@ var checkboxStyles = css({
|
|
|
20
20
|
gridArea: '1 / 1 / 2 / 2',
|
|
21
21
|
opacity: 0,
|
|
22
22
|
outline: 'none',
|
|
23
|
-
'&:focus': {
|
|
24
|
-
opacity: 1
|
|
25
|
-
},
|
|
26
23
|
'& + svg': {
|
|
27
24
|
/**
|
|
28
25
|
* Change the variables --checkbox-background-color, --checkbox-border-color
|
|
@@ -160,7 +157,7 @@ var Checkbox = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(function Checkbox(prop
|
|
|
160
157
|
analyticsData: analyticsContext,
|
|
161
158
|
componentName: 'checkbox',
|
|
162
159
|
packageName: "@atlaskit/checkbox",
|
|
163
|
-
packageVersion: "13.1.
|
|
160
|
+
packageVersion: "13.1.4"
|
|
164
161
|
});
|
|
165
162
|
var internalRef = useRef(null);
|
|
166
163
|
var mergedRefs = mergeRefs([internalRef, ref]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/checkbox",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.4",
|
|
4
4
|
"description": "A checkbox is an input control that allows a user to select one or more options from a number of choices.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
42
42
|
"@atlaskit/icon": "^22.1.0",
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
44
|
-
"@atlaskit/theme": "^12.
|
|
44
|
+
"@atlaskit/theme": "^12.7.0",
|
|
45
45
|
"@atlaskit/tokens": "^1.42.0",
|
|
46
46
|
"@babel/runtime": "^7.0.0",
|
|
47
47
|
"@emotion/react": "^11.7.1"
|