@atlaskit/focus-ring 1.6.1 → 2.0.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 +17 -0
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/focus-ring
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#170214](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/170214)
|
|
8
|
+
[`ed07db7789d4e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ed07db7789d4e) -
|
|
9
|
+
Remove Compiled variant.
|
|
10
|
+
|
|
11
|
+
## 1.7.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#159379](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/159379)
|
|
16
|
+
[`821ffec580412`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/821ffec580412) -
|
|
17
|
+
Adds an experimental Compiled CSS-in-JS entrypoint for our Focus Ring component. This requires
|
|
18
|
+
specific setup that is not documented fully and is not intended for external consumption.
|
|
19
|
+
|
|
3
20
|
## 1.6.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/focus-ring",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "A focus ring clearly indicates which item has keyboard focus.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"team": "Design System Team",
|
|
12
12
|
"website": {
|
|
13
13
|
"name": "Focus ring",
|
|
14
|
-
"category": "
|
|
14
|
+
"category": "Forms and input"
|
|
15
15
|
},
|
|
16
16
|
"runReact18": true
|
|
17
17
|
},
|
|
@@ -28,14 +28,17 @@
|
|
|
28
28
|
]
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
|
-
"sideEffects":
|
|
31
|
+
"sideEffects": [
|
|
32
|
+
"**/*.compiled.css"
|
|
33
|
+
],
|
|
32
34
|
"atlaskit:src": "src/index.tsx",
|
|
33
35
|
"af:exports": {
|
|
34
36
|
".": "./src/index.tsx"
|
|
35
37
|
},
|
|
36
38
|
"dependencies": {
|
|
37
|
-
"@atlaskit/tokens": "^2.
|
|
39
|
+
"@atlaskit/tokens": "^2.3.0",
|
|
38
40
|
"@babel/runtime": "^7.0.0",
|
|
41
|
+
"@compiled/react": "^0.18.1",
|
|
39
42
|
"@emotion/react": "^11.7.1"
|
|
40
43
|
},
|
|
41
44
|
"peerDependencies": {
|
|
@@ -44,7 +47,7 @@
|
|
|
44
47
|
"devDependencies": {
|
|
45
48
|
"@af/accessibility-testing": "*",
|
|
46
49
|
"@af/visual-regression": "*",
|
|
47
|
-
"@atlaskit/textfield": "^6.
|
|
50
|
+
"@atlaskit/textfield": "^6.6.0",
|
|
48
51
|
"@testing-library/react": "^12.1.5",
|
|
49
52
|
"react-dom": "^16.8.0",
|
|
50
53
|
"typescript": "~5.4.2",
|