@atlaskit/progress-indicator 12.0.7 → 12.0.9
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 +12 -5
- package/dist/cjs/components/indicator.js +1 -1
- package/dist/cjs/components/progress-dots.js +1 -1
- package/dist/es2019/components/indicator.js +1 -1
- package/dist/es2019/components/progress-dots.js +1 -1
- package/dist/esm/components/indicator.js +1 -1
- package/dist/esm/components/progress-dots.js +1 -1
- package/offerings.json +34 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/progress-indicator
|
|
2
2
|
|
|
3
|
+
## 12.0.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 12.0.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 12.0.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -752,7 +764,6 @@
|
|
|
752
764
|
- [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
|
|
753
765
|
[`947ba5b11f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/947ba5b11f0) - The
|
|
754
766
|
component has undergone an internal refactor. The following changes need to be called out:
|
|
755
|
-
|
|
756
767
|
- `styled-components` has been removed from the package in favour of `@emotion/core`.
|
|
757
768
|
- The component now supports a `testId` prop in line with other Design System components. This can
|
|
758
769
|
be used for automated testing.
|
|
@@ -878,7 +889,6 @@
|
|
|
878
889
|
|
|
879
890
|
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
880
891
|
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
881
|
-
|
|
882
892
|
- @atlaskit/docs@8.3.2
|
|
883
893
|
- @atlaskit/visual-regression@0.1.9
|
|
884
894
|
- @atlaskit/analytics-next@6.3.5
|
|
@@ -1044,7 +1054,6 @@
|
|
|
1044
1054
|
## 7.0.0
|
|
1045
1055
|
|
|
1046
1056
|
- [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
1047
|
-
|
|
1048
1057
|
- Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
|
|
1049
1058
|
this package, please ensure you use at least this version of react and react-dom.
|
|
1050
1059
|
|
|
@@ -1068,7 +1077,6 @@
|
|
|
1068
1077
|
## 6.0.2
|
|
1069
1078
|
|
|
1070
1079
|
- [patch][98e11001ff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/98e11001ff):
|
|
1071
|
-
|
|
1072
1080
|
- Removes duplicate babel-runtime dependency
|
|
1073
1081
|
|
|
1074
1082
|
## 6.0.1
|
|
@@ -1083,7 +1091,6 @@
|
|
|
1083
1091
|
## 6.0.0
|
|
1084
1092
|
|
|
1085
1093
|
- [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
1086
|
-
|
|
1087
1094
|
- Drop ES5 from all the flow modules
|
|
1088
1095
|
|
|
1089
1096
|
### Dropping CJS support in all @atlaskit packages
|
|
@@ -15,7 +15,7 @@ var _compiled = require("@atlaskit/primitives/compiled");
|
|
|
15
15
|
var _indicator = require("./indicator");
|
|
16
16
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
17
17
|
var packageName = "@atlaskit/progress-indicator";
|
|
18
|
-
var packageVersion = "
|
|
18
|
+
var packageVersion = "12.0.8";
|
|
19
19
|
var progressIndicatorGapMap = {
|
|
20
20
|
comfortable: {
|
|
21
21
|
default: 'space.100',
|
|
@@ -5,7 +5,7 @@ import noop from '@atlaskit/ds-lib/noop';
|
|
|
5
5
|
import { Box, Inline } from '@atlaskit/primitives/compiled';
|
|
6
6
|
import { ButtonIndicator, PresentationalIndicator } from './indicator';
|
|
7
7
|
const packageName = "@atlaskit/progress-indicator";
|
|
8
|
-
const packageVersion = "
|
|
8
|
+
const packageVersion = "12.0.8";
|
|
9
9
|
const progressIndicatorGapMap = {
|
|
10
10
|
comfortable: {
|
|
11
11
|
default: 'space.100',
|
|
@@ -6,7 +6,7 @@ import noop from '@atlaskit/ds-lib/noop';
|
|
|
6
6
|
import { Box, Inline } from '@atlaskit/primitives/compiled';
|
|
7
7
|
import { ButtonIndicator, PresentationalIndicator } from './indicator';
|
|
8
8
|
var packageName = "@atlaskit/progress-indicator";
|
|
9
|
-
var packageVersion = "
|
|
9
|
+
var packageVersion = "12.0.8";
|
|
10
10
|
var progressIndicatorGapMap = {
|
|
11
11
|
comfortable: {
|
|
12
12
|
default: 'space.100',
|
package/offerings.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "ProgressIndicator",
|
|
4
|
+
"package": "@atlaskit/progress-indicator",
|
|
5
|
+
"import": {
|
|
6
|
+
"name": "ProgressIndicator",
|
|
7
|
+
"package": "@atlaskit/progress-indicator",
|
|
8
|
+
"type": "named"
|
|
9
|
+
},
|
|
10
|
+
"keywords": ["progress", "indicator", "steps", "completion", "status"],
|
|
11
|
+
"categories": ["feedback"],
|
|
12
|
+
"shortDescription": "A component for displaying progress through steps or completion status.",
|
|
13
|
+
"status": "general-availability",
|
|
14
|
+
"accessibilityGuidelines": [
|
|
15
|
+
"Ensure progress is announced by screen readers",
|
|
16
|
+
"Use appropriate progress indicators",
|
|
17
|
+
"Provide clear progress context",
|
|
18
|
+
"Consider progress timing and updates"
|
|
19
|
+
],
|
|
20
|
+
"usageGuidelines": [
|
|
21
|
+
"Use for step-by-step processes",
|
|
22
|
+
"Provide clear progress indicators",
|
|
23
|
+
"Handle progress updates appropriately",
|
|
24
|
+
"Consider progress completion states"
|
|
25
|
+
],
|
|
26
|
+
"contentGuidelines": [
|
|
27
|
+
"Use clear, descriptive step labels",
|
|
28
|
+
"Provide meaningful progress descriptions",
|
|
29
|
+
"Use appropriate progress terminology",
|
|
30
|
+
"Keep progress information concise"
|
|
31
|
+
],
|
|
32
|
+
"examples": ["./examples/ai/progress-indicator.tsx"]
|
|
33
|
+
}
|
|
34
|
+
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-indicator",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.9",
|
|
4
4
|
"description": "A progress indicator shows the user where they are along the steps of a journey.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
28
|
-
"@atlaskit/ds-lib": "^5.
|
|
29
|
-
"@atlaskit/primitives": "^
|
|
30
|
-
"@atlaskit/tokens": "^
|
|
28
|
+
"@atlaskit/ds-lib": "^5.1.0",
|
|
29
|
+
"@atlaskit/primitives": "^15.0.0",
|
|
30
|
+
"@atlaskit/tokens": "^7.0.0",
|
|
31
31
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
32
32
|
"@babel/runtime": "^7.0.0",
|
|
33
|
-
"@compiled/react": "^0.18.
|
|
33
|
+
"@compiled/react": "^0.18.6",
|
|
34
34
|
"bind-event-listener": "^3.0.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"@af/accessibility-testing": "workspace:^",
|
|
41
41
|
"@af/integration-testing": "workspace:^",
|
|
42
42
|
"@af/visual-regression": "workspace:^",
|
|
43
|
-
"@atlaskit/button": "^23.
|
|
44
|
-
"@atlaskit/css": "^0.
|
|
45
|
-
"@atlaskit/docs": "^11.
|
|
43
|
+
"@atlaskit/button": "^23.5.0",
|
|
44
|
+
"@atlaskit/css": "^0.15.0",
|
|
45
|
+
"@atlaskit/docs": "^11.2.0",
|
|
46
46
|
"@atlaskit/link": "^3.2.0",
|
|
47
47
|
"@atlaskit/section-message": "^8.7.0",
|
|
48
48
|
"@atlassian/ssr-tests": "^0.3.0",
|