@atlaskit/progress-indicator 9.4.2 → 9.4.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 +13 -0
- package/dist/cjs/components/constants.js +9 -9
- package/dist/cjs/components/progress-dots.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/constants.js +9 -9
- package/dist/es2019/components/progress-dots.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/constants.js +9 -9
- package/dist/esm/components/progress-dots.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +3 -4
- package/report.api.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/progress-indicator
|
|
2
2
|
|
|
3
|
+
## 9.4.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`eadbf13d8c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eadbf13d8c0) - Updated usages of `Text`, `Box`, `Stack`, and `Inline` primitives to reflect their updated APIs. There are no visual or behaviour changes.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
## 9.4.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 9.4.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -6,19 +6,19 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.varDotsSize = exports.varDotsMargin = exports.sizes = exports.progressIndicatorGapMap = void 0;
|
|
7
7
|
var progressIndicatorGapMap = {
|
|
8
8
|
comfortable: {
|
|
9
|
-
small: ['
|
|
10
|
-
default: ['
|
|
11
|
-
large: ['
|
|
9
|
+
small: ['space.075', "var(--ds-space-075, 6px)"],
|
|
10
|
+
default: ['space.100', "var(--ds-space-100, 8px)"],
|
|
11
|
+
large: ['space.150', "var(--ds-space-150, 12px)"]
|
|
12
12
|
},
|
|
13
13
|
cozy: {
|
|
14
|
-
small: ['
|
|
15
|
-
default: ['
|
|
16
|
-
large: ['
|
|
14
|
+
small: ['space.050', "var(--ds-space-050, 4px)"],
|
|
15
|
+
default: ['space.075', "var(--ds-space-075, 6px)"],
|
|
16
|
+
large: ['space.100', "var(--ds-space-100, 8px)"]
|
|
17
17
|
},
|
|
18
18
|
compact: {
|
|
19
|
-
small: ['
|
|
20
|
-
default: ['
|
|
21
|
-
large: ['
|
|
19
|
+
small: ['space.025', "var(--ds-space-025, 2px)"],
|
|
20
|
+
default: ['space.050', "var(--ds-space-050, 4px)"],
|
|
21
|
+
large: ['space.075', "var(--ds-space-075, 6px)"]
|
|
22
22
|
}
|
|
23
23
|
};
|
|
24
24
|
exports.progressIndicatorGapMap = progressIndicatorGapMap;
|
package/dist/cjs/version.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
export const progressIndicatorGapMap = {
|
|
2
2
|
comfortable: {
|
|
3
|
-
small: ['
|
|
4
|
-
default: ['
|
|
5
|
-
large: ['
|
|
3
|
+
small: ['space.075', "var(--ds-space-075, 6px)"],
|
|
4
|
+
default: ['space.100', "var(--ds-space-100, 8px)"],
|
|
5
|
+
large: ['space.150', "var(--ds-space-150, 12px)"]
|
|
6
6
|
},
|
|
7
7
|
cozy: {
|
|
8
|
-
small: ['
|
|
9
|
-
default: ['
|
|
10
|
-
large: ['
|
|
8
|
+
small: ['space.050', "var(--ds-space-050, 4px)"],
|
|
9
|
+
default: ['space.075', "var(--ds-space-075, 6px)"],
|
|
10
|
+
large: ['space.100', "var(--ds-space-100, 8px)"]
|
|
11
11
|
},
|
|
12
12
|
compact: {
|
|
13
|
-
small: ['
|
|
14
|
-
default: ['
|
|
15
|
-
large: ['
|
|
13
|
+
small: ['space.025', "var(--ds-space-025, 2px)"],
|
|
14
|
+
default: ['space.050', "var(--ds-space-050, 4px)"],
|
|
15
|
+
large: ['space.075', "var(--ds-space-075, 6px)"]
|
|
16
16
|
}
|
|
17
17
|
};
|
|
18
18
|
export const sizes = {
|
|
@@ -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.4.
|
|
14
|
+
const packageVersion = "9.4.4";
|
|
15
15
|
/**
|
|
16
16
|
* __ProgressDots__
|
|
17
17
|
*
|
package/dist/es2019/version.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
export var progressIndicatorGapMap = {
|
|
2
2
|
comfortable: {
|
|
3
|
-
small: ['
|
|
4
|
-
default: ['
|
|
5
|
-
large: ['
|
|
3
|
+
small: ['space.075', "var(--ds-space-075, 6px)"],
|
|
4
|
+
default: ['space.100', "var(--ds-space-100, 8px)"],
|
|
5
|
+
large: ['space.150', "var(--ds-space-150, 12px)"]
|
|
6
6
|
},
|
|
7
7
|
cozy: {
|
|
8
|
-
small: ['
|
|
9
|
-
default: ['
|
|
10
|
-
large: ['
|
|
8
|
+
small: ['space.050', "var(--ds-space-050, 4px)"],
|
|
9
|
+
default: ['space.075', "var(--ds-space-075, 6px)"],
|
|
10
|
+
large: ['space.100', "var(--ds-space-100, 8px)"]
|
|
11
11
|
},
|
|
12
12
|
compact: {
|
|
13
|
-
small: ['
|
|
14
|
-
default: ['
|
|
15
|
-
large: ['
|
|
13
|
+
small: ['space.025', "var(--ds-space-025, 2px)"],
|
|
14
|
+
default: ['space.050', "var(--ds-space-050, 4px)"],
|
|
15
|
+
large: ['space.075', "var(--ds-space-075, 6px)"]
|
|
16
16
|
}
|
|
17
17
|
};
|
|
18
18
|
export var sizes = {
|
|
@@ -14,7 +14,7 @@ import { getBgColor } from './appearances';
|
|
|
14
14
|
import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
|
|
15
15
|
import { ButtonIndicator, PresentationalIndicator } from './indicator';
|
|
16
16
|
var packageName = "@atlaskit/progress-indicator";
|
|
17
|
-
var packageVersion = "9.4.
|
|
17
|
+
var packageVersion = "9.4.4";
|
|
18
18
|
/**
|
|
19
19
|
* __ProgressDots__
|
|
20
20
|
*
|
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.4.
|
|
3
|
+
"version": "9.4.4",
|
|
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,11 +25,11 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@atlaskit/analytics-next": "^8.0.0",
|
|
28
|
-
"@atlaskit/ds-explorations": "^
|
|
28
|
+
"@atlaskit/ds-explorations": "^2.0.0",
|
|
29
29
|
"@atlaskit/ds-lib": "^2.1.0",
|
|
30
30
|
"@atlaskit/focus-ring": "^1.2.0",
|
|
31
31
|
"@atlaskit/theme": "^12.2.0",
|
|
32
|
-
"@atlaskit/tokens": "^0.
|
|
32
|
+
"@atlaskit/tokens": "^0.13.0",
|
|
33
33
|
"@babel/runtime": "^7.0.0",
|
|
34
34
|
"@emotion/react": "^11.7.1",
|
|
35
35
|
"bind-event-listener": "^2.1.1"
|
|
@@ -50,7 +50,6 @@
|
|
|
50
50
|
"jscodeshift": "^0.13.0",
|
|
51
51
|
"react-dom": "^16.8.0",
|
|
52
52
|
"react-lorem-component": "^0.13.0",
|
|
53
|
-
"styled-components": "^3.2.6",
|
|
54
53
|
"typescript": "4.5.5"
|
|
55
54
|
},
|
|
56
55
|
"techstack": {
|
package/report.api.md
CHANGED