@atlaskit/progress-bar 0.6.2 → 0.6.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/progress-bar
2
2
 
3
+ ## 0.6.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility testing.
8
+
9
+ ## 0.6.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [`599bfe90ee3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/599bfe90ee3) - Internal change to use shape tokens. There is no expected visual change.
14
+
3
15
  ## 0.6.2
4
16
 
5
17
  ### Patch Changes
@@ -40,7 +40,7 @@ var containerStyles = (0, _react2.css)({
40
40
  height: 6,
41
41
  position: 'relative',
42
42
  background: "var(--ds-background-neutral, ".concat(_colors.N40A, ")"),
43
- borderRadius: 3,
43
+ borderRadius: "var(--ds-border-radius, 3px)",
44
44
  overflow: 'hidden'
45
45
  });
46
46
  var containerAppearance = {
@@ -69,7 +69,7 @@ var barStyles = (0, _react2.css)({
69
69
  display: 'block',
70
70
  height: 6,
71
71
  position: 'absolute',
72
- borderRadius: 3
72
+ borderRadius: "var(--ds-border-radius, 3px)"
73
73
  });
74
74
  var determinateBarStyles = (0, _react2.css)({
75
75
  transition: 'width 0.2s'
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "sideEffects": false
5
5
  }
@@ -31,7 +31,7 @@ const containerStyles = css({
31
31
  height: 6,
32
32
  position: 'relative',
33
33
  background: `var(--ds-background-neutral, ${N40A})`,
34
- borderRadius: 3,
34
+ borderRadius: "var(--ds-border-radius, 3px)",
35
35
  overflow: 'hidden'
36
36
  });
37
37
  const containerAppearance = {
@@ -60,7 +60,7 @@ const barStyles = css({
60
60
  display: 'block',
61
61
  height: 6,
62
62
  position: 'absolute',
63
- borderRadius: 3
63
+ borderRadius: "var(--ds-border-radius, 3px)"
64
64
  });
65
65
  const determinateBarStyles = css({
66
66
  transition: 'width 0.2s'
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "sideEffects": false
5
5
  }
@@ -32,7 +32,7 @@ var containerStyles = css({
32
32
  height: 6,
33
33
  position: 'relative',
34
34
  background: "var(--ds-background-neutral, ".concat(N40A, ")"),
35
- borderRadius: 3,
35
+ borderRadius: "var(--ds-border-radius, 3px)",
36
36
  overflow: 'hidden'
37
37
  });
38
38
  var containerAppearance = {
@@ -61,7 +61,7 @@ var barStyles = css({
61
61
  display: 'block',
62
62
  height: 6,
63
63
  position: 'absolute',
64
- borderRadius: 3
64
+ borderRadius: "var(--ds-border-radius, 3px)"
65
65
  });
66
66
  var determinateBarStyles = css({
67
67
  transition: 'width 0.2s'
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "A progress bar communicates the status of a system process.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -12,21 +12,12 @@
12
12
  "module": "dist/esm/index.js",
13
13
  "module:es2019": "dist/es2019/index.js",
14
14
  "types": "dist/types/index.d.ts",
15
- "typesVersions": {
16
- ">=4.5 <4.9": {
17
- "*": [
18
- "dist/types-ts4.5/*",
19
- "dist/types-ts4.5/index.d.ts"
20
- ]
21
- }
22
- },
23
15
  "sideEffects": false,
24
16
  "atlaskit:src": "src/index.tsx",
25
- "homepage": "https://atlassian.design/components/progress-bar/",
26
17
  "atlassian": {
27
18
  "team": "Design System Team",
28
19
  "deprecatedAutoEntryPoints": true,
29
- "releaseModel": "scheduled",
20
+ "releaseModel": "continuous",
30
21
  "website": {
31
22
  "name": "Progress bar",
32
23
  "category": "Components"
@@ -35,7 +26,7 @@
35
26
  "dependencies": {
36
27
  "@atlaskit/ds-lib": "^2.2.0",
37
28
  "@atlaskit/theme": "^12.5.0",
38
- "@atlaskit/tokens": "^1.4.0",
29
+ "@atlaskit/tokens": "^1.11.0",
39
30
  "@babel/runtime": "^7.0.0",
40
31
  "@emotion/react": "^11.7.1"
41
32
  },
@@ -43,9 +34,8 @@
43
34
  "react": "^16.8.0"
44
35
  },
45
36
  "devDependencies": {
46
- "@atlaskit/button": "^16.7.0",
47
- "@atlaskit/docs": "*",
48
- "@atlaskit/section-message": "^6.4.0",
37
+ "@af/accessibility-testing": "*",
38
+ "@af/visual-regression": "*",
49
39
  "@atlaskit/visual-regression": "*",
50
40
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
51
41
  "@testing-library/react": "^12.1.5",
@@ -75,5 +65,14 @@
75
65
  ]
76
66
  }
77
67
  },
68
+ "typesVersions": {
69
+ ">=4.5 <4.9": {
70
+ "*": [
71
+ "dist/types-ts4.5/*",
72
+ "dist/types-ts4.5/index.d.ts"
73
+ ]
74
+ }
75
+ },
76
+ "homepage": "https://atlassian.design/components/progress-bar/",
78
77
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
79
78
  }
package/report.api.md CHANGED
@@ -8,6 +8,7 @@
8
8
  ### Table of contents
9
9
 
10
10
  - [Main Entry Types](#main-entry-types)
11
+ - [Peer Dependencies](#peer-dependencies)
11
12
 
12
13
  ### Main Entry Types
13
14
 
@@ -79,3 +80,15 @@ export const TransparentProgressBar: ({
79
80
  ```
80
81
 
81
82
  <!--SECTION END: Main Entry Types-->
83
+
84
+ ### Peer Dependencies
85
+
86
+ <!--SECTION START: Peer Dependencies-->
87
+
88
+ ```json
89
+ {
90
+ "react": "^16.8.0"
91
+ }
92
+ ```
93
+
94
+ <!--SECTION END: Peer Dependencies-->