@atlaskit/progress-tracker 9.4.0 → 10.0.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
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @atlaskit/progress-tracker
|
|
2
2
|
|
|
3
|
+
## 10.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#119565](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119565)
|
|
8
|
+
[`a7f1d79b42b68`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a7f1d79b42b68) -
|
|
9
|
+
Update dependencies and remove unused internal export.
|
|
10
|
+
|
|
11
|
+
## 10.0.0
|
|
12
|
+
|
|
13
|
+
### Major Changes
|
|
14
|
+
|
|
15
|
+
- [#117363](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117363)
|
|
16
|
+
[`10a0f7f6c2027`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/10a0f7f6c2027) -
|
|
17
|
+
This package's `peerDependencies` have been adjusted for `react` and/or `react-dom` to reflect the
|
|
18
|
+
status of only supporting React 18 going forward. No explicit breaking change to React support has
|
|
19
|
+
been made in this release, but this is to signify going forward, breaking changes for React 16 or
|
|
20
|
+
React 17 may come via non-major semver releases.
|
|
21
|
+
|
|
22
|
+
Please refer this community post for more details:
|
|
23
|
+
https://community.developer.atlassian.com/t/rfc-78-dropping-support-for-react-16-and-rendering-in-a-react-18-concurrent-root-in-jira-and-confluence/87026
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
|
|
3
29
|
## 9.4.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
|
@@ -9,7 +9,6 @@ interface State {
|
|
|
9
9
|
oldMarkerColor?: string;
|
|
10
10
|
oldPercentageComplete: number;
|
|
11
11
|
}
|
|
12
|
-
export type { ProgressTrackerStageProps };
|
|
13
12
|
export default class ProgressTrackerStage extends PureComponent<ProgressTrackerStageProps, State> {
|
|
14
13
|
nodeRefMarker: import("react").RefObject<HTMLElement>;
|
|
15
14
|
nodeRefBar: import("react").RefObject<HTMLElement>;
|
|
@@ -21,3 +20,4 @@ export default class ProgressTrackerStage extends PureComponent<ProgressTrackerS
|
|
|
21
20
|
onEntered: () => void;
|
|
22
21
|
render(): JSX.Element;
|
|
23
22
|
}
|
|
23
|
+
export {};
|
|
@@ -9,7 +9,6 @@ interface State {
|
|
|
9
9
|
oldMarkerColor?: string;
|
|
10
10
|
oldPercentageComplete: number;
|
|
11
11
|
}
|
|
12
|
-
export type { ProgressTrackerStageProps };
|
|
13
12
|
export default class ProgressTrackerStage extends PureComponent<ProgressTrackerStageProps, State> {
|
|
14
13
|
nodeRefMarker: import("react").RefObject<HTMLElement>;
|
|
15
14
|
nodeRefBar: import("react").RefObject<HTMLElement>;
|
|
@@ -21,3 +20,4 @@ export default class ProgressTrackerStage extends PureComponent<ProgressTrackerS
|
|
|
21
20
|
onEntered: () => void;
|
|
22
21
|
render(): JSX.Element;
|
|
23
22
|
}
|
|
23
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-tracker",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.1",
|
|
4
4
|
"description": "A progress tracker displays the steps and progress through a journey.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -25,22 +25,28 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@atlaskit/css": "^0.
|
|
28
|
+
"@atlaskit/css": "^0.10.0",
|
|
29
29
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
30
|
-
"@atlaskit/primitives": "^
|
|
31
|
-
"@atlaskit/theme": "^
|
|
32
|
-
"@atlaskit/tokens": "^
|
|
30
|
+
"@atlaskit/primitives": "^14.1.0",
|
|
31
|
+
"@atlaskit/theme": "^17.0.0",
|
|
32
|
+
"@atlaskit/tokens": "^4.2.0",
|
|
33
33
|
"@babel/runtime": "^7.0.0",
|
|
34
34
|
"@compiled/react": "^0.18.2",
|
|
35
35
|
"react-transition-group": "^4.4.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"react": "^
|
|
38
|
+
"react": "^18.2.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@af/accessibility-testing": "*",
|
|
42
|
+
"@af/integration-testing": "^0.5.8",
|
|
42
43
|
"@af/visual-regression": "*",
|
|
43
|
-
"@atlaskit/
|
|
44
|
+
"@atlaskit/button": "^21.1.0",
|
|
45
|
+
"@atlaskit/docs": "*",
|
|
46
|
+
"@atlaskit/ds-lib": "^4.0.0",
|
|
47
|
+
"@atlaskit/icon": "^24.1.0",
|
|
48
|
+
"@atlaskit/link": "*",
|
|
49
|
+
"@atlaskit/section-message": "*",
|
|
44
50
|
"@atlaskit/ssr": "*",
|
|
45
51
|
"@atlaskit/visual-regression": "*",
|
|
46
52
|
"@testing-library/react": "^13.4.0",
|