@atlaskit/progress-bar 4.0.0 → 4.0.2
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
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/progress-bar
|
|
2
2
|
|
|
3
|
+
## 4.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#115959](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/115959)
|
|
8
|
+
[`411d12fff3a21`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/411d12fff3a21) -
|
|
9
|
+
[ux] Remove tabindex from Progress Bar container to reduce unecessary tab stops.
|
|
10
|
+
|
|
11
|
+
## 4.0.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#119549](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119549)
|
|
16
|
+
[`5064e4be0bc02`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5064e4be0bc02) -
|
|
17
|
+
Update dependencies.
|
|
18
|
+
|
|
3
19
|
## 4.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
|
@@ -56,7 +56,6 @@ var ProgressBar = function ProgressBar(_ref) {
|
|
|
56
56
|
"aria-valuemin": MIN_VALUE,
|
|
57
57
|
"aria-valuenow": valueParsed,
|
|
58
58
|
"aria-valuemax": MAX_VALUE,
|
|
59
|
-
tabIndex: 0,
|
|
60
59
|
"data-testid": testId,
|
|
61
60
|
className: (0, _runtime.ax)(["_2rko1sit _1reo15vq _18m915vq _1bsb1osq _4t3ii2wt _kqswh2mm _bfhk1jmj", containerAppearance[appearance]]),
|
|
62
61
|
style: {
|
|
@@ -46,7 +46,6 @@ const ProgressBar = ({
|
|
|
46
46
|
"aria-valuemin": MIN_VALUE,
|
|
47
47
|
"aria-valuenow": valueParsed,
|
|
48
48
|
"aria-valuemax": MAX_VALUE,
|
|
49
|
-
tabIndex: 0,
|
|
50
49
|
"data-testid": testId,
|
|
51
50
|
className: ax(["_2rko1sit _1reo15vq _18m915vq _1bsb1osq _4t3ii2wt _kqswh2mm _bfhk1vi8", containerAppearance[appearance]])
|
|
52
51
|
}, isIndeterminate ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
|
|
@@ -49,7 +49,6 @@ var ProgressBar = function ProgressBar(_ref) {
|
|
|
49
49
|
"aria-valuemin": MIN_VALUE,
|
|
50
50
|
"aria-valuenow": valueParsed,
|
|
51
51
|
"aria-valuemax": MAX_VALUE,
|
|
52
|
-
tabIndex: 0,
|
|
53
52
|
"data-testid": testId,
|
|
54
53
|
className: ax(["_2rko1sit _1reo15vq _18m915vq _1bsb1osq _4t3ii2wt _kqswh2mm _bfhk1jmj", containerAppearance[appearance]]),
|
|
55
54
|
style: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-bar",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"description": "A progress bar communicates the status of a system process.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@atlaskit/theme": "^17.0.0",
|
|
33
|
-
"@atlaskit/tokens": "^4.
|
|
33
|
+
"@atlaskit/tokens": "^4.2.0",
|
|
34
34
|
"@babel/runtime": "^7.0.0",
|
|
35
35
|
"@compiled/react": "^0.18.2"
|
|
36
36
|
},
|
|
@@ -41,7 +41,9 @@
|
|
|
41
41
|
"@af/accessibility-testing": "*",
|
|
42
42
|
"@af/integration-testing": "*",
|
|
43
43
|
"@af/visual-regression": "*",
|
|
44
|
-
"@atlaskit/
|
|
44
|
+
"@atlaskit/docs": "*",
|
|
45
|
+
"@atlaskit/link": "*",
|
|
46
|
+
"@atlaskit/section-message": "*",
|
|
45
47
|
"@testing-library/react": "^13.4.0",
|
|
46
48
|
"react-dom": "^18.2.0",
|
|
47
49
|
"typescript": "~5.4.2"
|