@atlaskit/progress-indicator 12.0.8 → 12.0.10
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,17 @@
|
|
|
1
1
|
# @atlaskit/progress-indicator
|
|
2
2
|
|
|
3
|
+
## 12.0.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 12.0.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 12.0.8
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -758,7 +770,6 @@
|
|
|
758
770
|
- [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
|
|
759
771
|
[`947ba5b11f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/947ba5b11f0) - The
|
|
760
772
|
component has undergone an internal refactor. The following changes need to be called out:
|
|
761
|
-
|
|
762
773
|
- `styled-components` has been removed from the package in favour of `@emotion/core`.
|
|
763
774
|
- The component now supports a `testId` prop in line with other Design System components. This can
|
|
764
775
|
be used for automated testing.
|
|
@@ -884,7 +895,6 @@
|
|
|
884
895
|
|
|
885
896
|
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
886
897
|
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
887
|
-
|
|
888
898
|
- @atlaskit/docs@8.3.2
|
|
889
899
|
- @atlaskit/visual-regression@0.1.9
|
|
890
900
|
- @atlaskit/analytics-next@6.3.5
|
|
@@ -1050,7 +1060,6 @@
|
|
|
1050
1060
|
## 7.0.0
|
|
1051
1061
|
|
|
1052
1062
|
- [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
1053
|
-
|
|
1054
1063
|
- Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
|
|
1055
1064
|
this package, please ensure you use at least this version of react and react-dom.
|
|
1056
1065
|
|
|
@@ -1074,7 +1083,6 @@
|
|
|
1074
1083
|
## 6.0.2
|
|
1075
1084
|
|
|
1076
1085
|
- [patch][98e11001ff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/98e11001ff):
|
|
1077
|
-
|
|
1078
1086
|
- Removes duplicate babel-runtime dependency
|
|
1079
1087
|
|
|
1080
1088
|
## 6.0.1
|
|
@@ -1089,7 +1097,6 @@
|
|
|
1089
1097
|
## 6.0.0
|
|
1090
1098
|
|
|
1091
1099
|
- [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
1092
|
-
|
|
1093
1100
|
- Drop ES5 from all the flow modules
|
|
1094
1101
|
|
|
1095
1102
|
### 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.9";
|
|
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.9";
|
|
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.9";
|
|
10
10
|
var progressIndicatorGapMap = {
|
|
11
11
|
comfortable: {
|
|
12
12
|
default: 'space.100',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-indicator",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.10",
|
|
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/"
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
28
28
|
"@atlaskit/ds-lib": "^5.1.0",
|
|
29
|
-
"@atlaskit/primitives": "^
|
|
30
|
-
"@atlaskit/tokens": "^
|
|
29
|
+
"@atlaskit/primitives": "^16.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": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@af/visual-regression": "workspace:^",
|
|
43
43
|
"@atlaskit/button": "^23.5.0",
|
|
44
44
|
"@atlaskit/css": "^0.15.0",
|
|
45
|
-
"@atlaskit/docs": "^11.
|
|
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",
|