@atlaskit/progress-bar 3.0.2 → 3.1.1
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 +18 -0
- package/dist/cjs/components/progress-bar.js +1 -1
- package/dist/es2019/components/progress-bar.js +1 -1
- package/dist/esm/components/progress-bar.js +1 -1
- package/dist/types/components/success-progress-bar.d.ts +2 -2
- package/dist/types/components/transparent-progress-bar.d.ts +2 -2
- package/dist/types-ts4.5/components/success-progress-bar.d.ts +2 -2
- package/dist/types-ts4.5/components/transparent-progress-bar.d.ts +2 -2
- package/package.json +5 -5
- package/__perf__/default.tsx +0 -5
- package/__perf__/success.tsx +0 -5
- package/__perf__/transparent.tsx +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/progress-bar
|
|
2
2
|
|
|
3
|
+
## 3.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 3.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
|
|
14
|
+
[`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
|
|
15
|
+
Update `React` from v16 to v18
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 3.0.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type CustomProgressBarProps } from '../types';
|
|
3
3
|
/**
|
|
4
4
|
* __Success progress bar__
|
|
@@ -8,5 +8,5 @@ import { type CustomProgressBarProps } from '../types';
|
|
|
8
8
|
* - [Examples](https://atlassian.design/components/progress-bar/success-progress-bar/examples)
|
|
9
9
|
* - [Code](https://atlassian.design/components/progress-bar/success-progress-bar/code)
|
|
10
10
|
*/
|
|
11
|
-
declare const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
|
|
11
|
+
declare const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element;
|
|
12
12
|
export default SuccessProgressBar;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type CustomProgressBarProps } from '../types';
|
|
3
3
|
/**
|
|
4
4
|
* __Transparent progress bar__
|
|
@@ -8,5 +8,5 @@ import { type CustomProgressBarProps } from '../types';
|
|
|
8
8
|
* - [Examples](https://atlassian.design/components/progress-bar/transparent-progress-bar/examples)
|
|
9
9
|
* - [Code](https://atlassian.design/components/progress-bar/transparent-progress-bar/code)
|
|
10
10
|
*/
|
|
11
|
-
declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
|
|
11
|
+
declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element;
|
|
12
12
|
export default TransparentProgressBar;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type CustomProgressBarProps } from '../types';
|
|
3
3
|
/**
|
|
4
4
|
* __Success progress bar__
|
|
@@ -8,5 +8,5 @@ import { type CustomProgressBarProps } from '../types';
|
|
|
8
8
|
* - [Examples](https://atlassian.design/components/progress-bar/success-progress-bar/examples)
|
|
9
9
|
* - [Code](https://atlassian.design/components/progress-bar/success-progress-bar/code)
|
|
10
10
|
*/
|
|
11
|
-
declare const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
|
|
11
|
+
declare const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element;
|
|
12
12
|
export default SuccessProgressBar;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { type CustomProgressBarProps } from '../types';
|
|
3
3
|
/**
|
|
4
4
|
* __Transparent progress bar__
|
|
@@ -8,5 +8,5 @@ import { type CustomProgressBarProps } from '../types';
|
|
|
8
8
|
* - [Examples](https://atlassian.design/components/progress-bar/transparent-progress-bar/examples)
|
|
9
9
|
* - [Code](https://atlassian.design/components/progress-bar/transparent-progress-bar/code)
|
|
10
10
|
*/
|
|
11
|
-
declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
|
|
11
|
+
declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element;
|
|
12
12
|
export default TransparentProgressBar;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-bar",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "A progress bar communicates the status of a system process.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@atlaskit/theme": "^
|
|
33
|
-
"@atlaskit/tokens": "^3.
|
|
32
|
+
"@atlaskit/theme": "^15.0.0",
|
|
33
|
+
"@atlaskit/tokens": "^3.3.0",
|
|
34
34
|
"@babel/runtime": "^7.0.0",
|
|
35
35
|
"@compiled/react": "^0.18.1"
|
|
36
36
|
},
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"@af/integration-testing": "*",
|
|
43
43
|
"@af/visual-regression": "*",
|
|
44
44
|
"@atlaskit/visual-regression": "*",
|
|
45
|
-
"@testing-library/react": "^
|
|
46
|
-
"react-dom": "^
|
|
45
|
+
"@testing-library/react": "^13.4.0",
|
|
46
|
+
"react-dom": "^18.2.0",
|
|
47
47
|
"typescript": "~5.4.2"
|
|
48
48
|
},
|
|
49
49
|
"keywords": [
|
package/__perf__/default.tsx
DELETED
package/__perf__/success.tsx
DELETED