@atlaskit/progress-indicator 9.4.17 → 9.5.0
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/dist/cjs/components/indicator.js +2 -0
- package/dist/cjs/components/progress-dots.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/indicator.js +2 -0
- package/dist/es2019/components/progress-dots.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/indicator.js +2 -0
- package/dist/esm/components/progress-dots.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/progress-indicator
|
|
2
2
|
|
|
3
|
+
## 9.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 9.4.18
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [`4ba10567310`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ba10567310) - Internal changes.
|
|
18
|
+
|
|
3
19
|
## 9.4.17
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -21,7 +21,9 @@ var commonStyles = (0, _react.css)({
|
|
|
21
21
|
width: "calc(var(".concat(_constants.varDotsSize, ") + var(").concat(_constants.varDotsMargin, "))"),
|
|
22
22
|
height: "calc(var(".concat(_constants.varDotsSize, ") + var(").concat(_constants.varDotsMargin, "))"),
|
|
23
23
|
position: 'absolute',
|
|
24
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
24
25
|
top: "calc(-1 * var(".concat(_constants.varDotsMargin, ") / 2)"),
|
|
26
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
25
27
|
left: "calc(-1 * var(".concat(_constants.varDotsMargin, ") / 2)"),
|
|
26
28
|
content: '""'
|
|
27
29
|
}
|
package/dist/cjs/version.json
CHANGED
|
@@ -14,7 +14,9 @@ const commonStyles = css({
|
|
|
14
14
|
width: `calc(var(${varDotsSize}) + var(${varDotsMargin}))`,
|
|
15
15
|
height: `calc(var(${varDotsSize}) + var(${varDotsMargin}))`,
|
|
16
16
|
position: 'absolute',
|
|
17
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
17
18
|
top: `calc(-1 * var(${varDotsMargin}) / 2)`,
|
|
19
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
18
20
|
left: `calc(-1 * var(${varDotsMargin}) / 2)`,
|
|
19
21
|
content: '""'
|
|
20
22
|
}
|
|
@@ -11,7 +11,7 @@ import { getBgColor } from './appearances';
|
|
|
11
11
|
import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
|
|
12
12
|
import { ButtonIndicator, PresentationalIndicator } from './indicator';
|
|
13
13
|
const packageName = "@atlaskit/progress-indicator";
|
|
14
|
-
const packageVersion = "9.
|
|
14
|
+
const packageVersion = "9.5.0";
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* __ProgressDots__
|
package/dist/es2019/version.json
CHANGED
|
@@ -14,7 +14,9 @@ var commonStyles = css({
|
|
|
14
14
|
width: "calc(var(".concat(varDotsSize, ") + var(").concat(varDotsMargin, "))"),
|
|
15
15
|
height: "calc(var(".concat(varDotsSize, ") + var(").concat(varDotsMargin, "))"),
|
|
16
16
|
position: 'absolute',
|
|
17
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
17
18
|
top: "calc(-1 * var(".concat(varDotsMargin, ") / 2)"),
|
|
19
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
|
|
18
20
|
left: "calc(-1 * var(".concat(varDotsMargin, ") / 2)"),
|
|
19
21
|
content: '""'
|
|
20
22
|
}
|
|
@@ -13,7 +13,7 @@ import { getBgColor } from './appearances';
|
|
|
13
13
|
import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
|
|
14
14
|
import { ButtonIndicator, PresentationalIndicator } from './indicator';
|
|
15
15
|
var packageName = "@atlaskit/progress-indicator";
|
|
16
|
-
var packageVersion = "9.
|
|
16
|
+
var packageVersion = "9.5.0";
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* __ProgressDots__
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-indicator",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.5.0",
|
|
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/"
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atlaskit/analytics-next": "^9.
|
|
27
|
-
"@atlaskit/ds-explorations": "^2.
|
|
28
|
-
"@atlaskit/ds-lib": "^2.
|
|
29
|
-
"@atlaskit/focus-ring": "^1.
|
|
30
|
-
"@atlaskit/primitives": "^0.
|
|
31
|
-
"@atlaskit/theme": "^12.
|
|
32
|
-
"@atlaskit/tokens": "^1.
|
|
26
|
+
"@atlaskit/analytics-next": "^9.1.0",
|
|
27
|
+
"@atlaskit/ds-explorations": "^2.1.0",
|
|
28
|
+
"@atlaskit/ds-lib": "^2.2.0",
|
|
29
|
+
"@atlaskit/focus-ring": "^1.3.0",
|
|
30
|
+
"@atlaskit/primitives": "^0.9.0",
|
|
31
|
+
"@atlaskit/theme": "^12.5.0",
|
|
32
|
+
"@atlaskit/tokens": "^1.3.0",
|
|
33
33
|
"@babel/runtime": "^7.0.0",
|
|
34
34
|
"@emotion/react": "^11.7.1",
|
|
35
35
|
"bind-event-listener": "^2.1.1"
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"react": "^16.8.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@atlaskit/button": "^16.
|
|
41
|
+
"@atlaskit/button": "^16.7.0",
|
|
42
42
|
"@atlaskit/docs": "*",
|
|
43
|
-
"@atlaskit/section-message": "^6.
|
|
43
|
+
"@atlaskit/section-message": "^6.4.0",
|
|
44
44
|
"@atlaskit/ssr": "*",
|
|
45
45
|
"@atlaskit/visual-regression": "*",
|
|
46
46
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|