@atlaskit/progress-tracker 10.0.2 → 10.0.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,22 @@
|
|
|
1
1
|
# @atlaskit/progress-tracker
|
|
2
2
|
|
|
3
|
+
## 10.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#150382](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/150382)
|
|
8
|
+
[`878831658be56`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/878831658be56) -
|
|
9
|
+
Update ProgressTracker to an ordered list for better semantics.
|
|
10
|
+
|
|
11
|
+
## 10.0.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#129972](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/129972)
|
|
16
|
+
[`b2d69a39e6687`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b2d69a39e6687) -
|
|
17
|
+
Update `@compiled/react` dependency for improved type checking support.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 10.0.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -114,10 +114,8 @@ var ProgressTracker = function ProgressTracker(_ref) {
|
|
|
114
114
|
var listInlineStyles = (0, _defineProperty2.default)((0, _defineProperty2.default)({
|
|
115
115
|
gridTemplateColumns: "repeat(".concat(items.length, ", 1fr)")
|
|
116
116
|
}, '--ds--pt--sp', spacingOptions[spacing]), "maxWidth", 8 * 10 * items.length * 2);
|
|
117
|
-
return /*#__PURE__*/React.createElement("
|
|
118
|
-
"data-testid": testId
|
|
119
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
120
|
-
,
|
|
117
|
+
return /*#__PURE__*/React.createElement("ol", {
|
|
118
|
+
"data-testid": testId,
|
|
121
119
|
style: listInlineStyles,
|
|
122
120
|
"aria-label": label,
|
|
123
121
|
className: (0, _runtime.ax)(["_19pkidpf _2hwx1wug _otyridpf _18u01wug _zulp6odm _1e0c11p5 _1bsb1osq _2mzuglyw _85i5ze3t _1q51ze3t _y4tize3t _bozgze3t _rxvc1jfw"])
|
|
@@ -88,10 +88,8 @@ const ProgressTracker = ({
|
|
|
88
88
|
['--ds--pt--sp']: spacingOptions[spacing],
|
|
89
89
|
maxWidth: 8 * 10 * items.length * 2
|
|
90
90
|
};
|
|
91
|
-
return /*#__PURE__*/React.createElement("
|
|
92
|
-
"data-testid": testId
|
|
93
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
94
|
-
,
|
|
91
|
+
return /*#__PURE__*/React.createElement("ol", {
|
|
92
|
+
"data-testid": testId,
|
|
95
93
|
style: listInlineStyles,
|
|
96
94
|
"aria-label": label,
|
|
97
95
|
className: ax(["_19pkidpf _2hwx1wug _otyridpf _18u01wug _zulp6odm _1e0c11p5 _1bsb1osq _2mzuglyw _85i5ze3t _1q51ze3t _y4tize3t _bozgze3t _rxvc1jfw"])
|
|
@@ -104,10 +104,8 @@ var ProgressTracker = function ProgressTracker(_ref) {
|
|
|
104
104
|
var listInlineStyles = _defineProperty(_defineProperty({
|
|
105
105
|
gridTemplateColumns: "repeat(".concat(items.length, ", 1fr)")
|
|
106
106
|
}, '--ds--pt--sp', spacingOptions[spacing]), "maxWidth", 8 * 10 * items.length * 2);
|
|
107
|
-
return /*#__PURE__*/React.createElement("
|
|
108
|
-
"data-testid": testId
|
|
109
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
110
|
-
,
|
|
107
|
+
return /*#__PURE__*/React.createElement("ol", {
|
|
108
|
+
"data-testid": testId,
|
|
111
109
|
style: listInlineStyles,
|
|
112
110
|
"aria-label": label,
|
|
113
111
|
className: ax(["_19pkidpf _2hwx1wug _otyridpf _18u01wug _zulp6odm _1e0c11p5 _1bsb1osq _2mzuglyw _85i5ze3t _1q51ze3t _y4tize3t _bozgze3t _rxvc1jfw"])
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-tracker",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.4",
|
|
4
4
|
"description": "A progress tracker displays the steps and progress through a journey.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -27,28 +27,29 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@atlaskit/css": "^0.10.0",
|
|
29
29
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
30
|
-
"@atlaskit/primitives": "^14.
|
|
30
|
+
"@atlaskit/primitives": "^14.7.0",
|
|
31
31
|
"@atlaskit/theme": "^18.0.0",
|
|
32
|
-
"@atlaskit/tokens": "^4.
|
|
32
|
+
"@atlaskit/tokens": "^4.8.0",
|
|
33
33
|
"@babel/runtime": "^7.0.0",
|
|
34
|
-
"@compiled/react": "^0.18.
|
|
34
|
+
"@compiled/react": "^0.18.3",
|
|
35
35
|
"react-transition-group": "^4.4.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": "^18.2.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@af/accessibility-testing": "
|
|
42
|
-
"@af/integration-testing": "
|
|
43
|
-
"@af/visual-regression": "
|
|
44
|
-
"@atlaskit/button": "^
|
|
45
|
-
"@atlaskit/docs": "
|
|
41
|
+
"@af/accessibility-testing": "workspace:^",
|
|
42
|
+
"@af/integration-testing": "workspace:^",
|
|
43
|
+
"@af/visual-regression": "workspace:^",
|
|
44
|
+
"@atlaskit/button": "^23.0.0",
|
|
45
|
+
"@atlaskit/docs": "^10.0.0",
|
|
46
46
|
"@atlaskit/ds-lib": "^4.0.0",
|
|
47
|
-
"@atlaskit/icon": "^
|
|
48
|
-
"@atlaskit/link": "
|
|
49
|
-
"@atlaskit/section-message": "
|
|
50
|
-
"@atlaskit/ssr": "
|
|
51
|
-
"@atlaskit/visual-regression": "
|
|
47
|
+
"@atlaskit/icon": "^25.6.0",
|
|
48
|
+
"@atlaskit/link": "^3.1.0",
|
|
49
|
+
"@atlaskit/section-message": "^8.2.0",
|
|
50
|
+
"@atlaskit/ssr": "workspace:^",
|
|
51
|
+
"@atlaskit/visual-regression": "workspace:^",
|
|
52
|
+
"@atlassian/ssr-tests": "^0.2.0",
|
|
52
53
|
"@testing-library/react": "^13.4.0",
|
|
53
54
|
"@testing-library/user-event": "^14.4.3",
|
|
54
55
|
"@types/react-transition-group": "^2.0.6",
|