@atlaskit/progress-tracker 8.10.1 → 8.10.3
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 +16 -0
- package/constants/package.json +3 -1
- package/package.json +8 -7
- package/types/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/progress-tracker
|
|
2
2
|
|
|
3
|
+
## 8.10.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#168892](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/168892)
|
|
8
|
+
[`5eb2a70adb262`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5eb2a70adb262) -
|
|
9
|
+
Remove react-router-dom from devDependencies as it is incompatible with React 18.
|
|
10
|
+
|
|
11
|
+
## 8.10.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#165531](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/165531)
|
|
16
|
+
[`57f451bda8919`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/57f451bda8919) -
|
|
17
|
+
Adds side-effect config to support Compiled css extraction in third-party apps
|
|
18
|
+
|
|
3
19
|
## 8.10.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/constants/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/constants.js",
|
|
4
4
|
"module": "../dist/esm/constants.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/constants.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/constants.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-tracker",
|
|
3
|
-
"version": "8.10.
|
|
3
|
+
"version": "8.10.3",
|
|
4
4
|
"description": "A progress tracker displays the steps and progress through a journey.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -12,21 +12,23 @@
|
|
|
12
12
|
"module": "dist/esm/index.js",
|
|
13
13
|
"module:es2019": "dist/es2019/index.js",
|
|
14
14
|
"types": "dist/types/index.d.ts",
|
|
15
|
-
"sideEffects":
|
|
15
|
+
"sideEffects": [
|
|
16
|
+
"**/*.compiled.css"
|
|
17
|
+
],
|
|
16
18
|
"atlaskit:src": "src/index.tsx",
|
|
17
19
|
"atlassian": {
|
|
18
20
|
"team": "Design System Team",
|
|
19
21
|
"runReact18": true,
|
|
20
22
|
"website": {
|
|
21
23
|
"name": "Progress tracker",
|
|
22
|
-
"category": "
|
|
24
|
+
"category": "Status indicators"
|
|
23
25
|
}
|
|
24
26
|
},
|
|
25
27
|
"dependencies": {
|
|
26
28
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
27
|
-
"@atlaskit/primitives": "^13.
|
|
29
|
+
"@atlaskit/primitives": "^13.2.0",
|
|
28
30
|
"@atlaskit/theme": "^14.0.0",
|
|
29
|
-
"@atlaskit/tokens": "^2.
|
|
31
|
+
"@atlaskit/tokens": "^2.3.0",
|
|
30
32
|
"@babel/runtime": "^7.0.0",
|
|
31
33
|
"@emotion/react": "^11.7.1",
|
|
32
34
|
"react-transition-group": "^4.4.1"
|
|
@@ -37,7 +39,7 @@
|
|
|
37
39
|
"devDependencies": {
|
|
38
40
|
"@af/accessibility-testing": "*",
|
|
39
41
|
"@af/visual-regression": "*",
|
|
40
|
-
"@atlaskit/ds-lib": "^3.
|
|
42
|
+
"@atlaskit/ds-lib": "^3.2.0",
|
|
41
43
|
"@atlaskit/ssr": "*",
|
|
42
44
|
"@atlaskit/visual-regression": "*",
|
|
43
45
|
"@testing-library/react": "^12.1.5",
|
|
@@ -45,7 +47,6 @@
|
|
|
45
47
|
"@types/react-transition-group": "^2.0.6",
|
|
46
48
|
"jest-in-case": "^1.0.2",
|
|
47
49
|
"react-dom": "^16.8.0",
|
|
48
|
-
"react-router-dom": "^4.2.2",
|
|
49
50
|
"typescript": "~5.4.2"
|
|
50
51
|
},
|
|
51
52
|
"techstack": {
|
package/types/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/types.js",
|
|
4
4
|
"module": "../dist/esm/types.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/types.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/types.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|