@atlaskit/progress-bar 0.6.3 → 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,11 @@
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
+
3
9
  ## 0.6.3
4
10
 
5
11
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "0.6.3",
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.3",
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,17 +12,8 @@
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,
@@ -43,12 +34,11 @@
43
34
  "react": "^16.8.0"
44
35
  },
45
36
  "devDependencies": {
46
- "@atlaskit/docs": "*",
47
- "@atlaskit/section-message": "^6.4.0",
37
+ "@af/accessibility-testing": "*",
38
+ "@af/visual-regression": "*",
48
39
  "@atlaskit/visual-regression": "*",
49
40
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
50
41
  "@testing-library/react": "^12.1.5",
51
- "jest-axe": "^4.0.0",
52
42
  "react-dom": "^16.8.0",
53
43
  "typescript": "~4.9.5"
54
44
  },
@@ -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
  }
@@ -1,53 +0,0 @@
1
- ## API Report File for "@atlaskit/progress-bar"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- /// <reference types="react" />
8
-
9
- import { jsx } from '@emotion/react';
10
- import { ThemeProp } from '@atlaskit/theme/components';
11
-
12
- // @public (undocumented)
13
- interface CustomProgressBarProps {
14
- ariaLabel?: string;
15
- isIndeterminate?: boolean;
16
- testId?: string;
17
- value?: number;
18
- }
19
-
20
- // @public (undocumented)
21
- interface DefaultProgressBarProps extends CustomProgressBarProps {
22
- appearance?: 'default' | 'inverse' | 'success';
23
- // @deprecated (undocumented)
24
- theme?: ThemeProp<ThemeTokens, ThemeProps>;
25
- }
26
-
27
- // @public
28
- const ProgressBar: ({ appearance, ariaLabel, isIndeterminate, testId, theme, value, }: DefaultProgressBarProps) => jsx.JSX.Element;
29
- export default ProgressBar;
30
-
31
- // @public
32
- export const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
33
-
34
- // @public @deprecated (undocumented)
35
- type ThemeProps = {
36
- value: number | string;
37
- };
38
-
39
- // @public @deprecated (undocumented)
40
- type ThemeTokens = {
41
- container: any;
42
- bar: any;
43
- determinateBar: any;
44
- increasingBar: any;
45
- decreasingBar: any;
46
- };
47
-
48
- // @public
49
- export const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
50
-
51
- // (No @packageDocumentation comment for this package)
52
-
53
- ```