@atlaskit/progress-indicator 9.4.18 → 9.5.1
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/progress-dots.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/progress-dots.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/progress-dots.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/components/constants.d.ts +4 -4
- package/dist/types/components/types.d.ts +3 -3
- package/package.json +19 -11
- package/types/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/progress-indicator
|
|
2
2
|
|
|
3
|
+
## 9.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
8
|
+
|
|
9
|
+
## 9.5.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 9.4.18
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
|
@@ -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.1";
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* __ProgressDots__
|
package/dist/es2019/version.json
CHANGED
|
@@ -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.1";
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* __ProgressDots__
|
package/dist/esm/version.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { InlineProps } from '@atlaskit/primitives';
|
|
2
2
|
import { token } from '@atlaskit/tokens';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
type TokenValue = ReturnType<typeof token>;
|
|
4
|
+
type ScaleValue = InlineProps['space'];
|
|
5
|
+
type SpacingTuple = [ScaleValue, TokenValue];
|
|
6
|
+
type SpacingPropsToTokensMap = {
|
|
7
7
|
comfortable: {
|
|
8
8
|
small: SpacingTuple;
|
|
9
9
|
default: SpacingTuple;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export type DotsAppearance = 'default' | 'help' | 'inverted' | 'primary';
|
|
2
|
+
export type Spacing = 'comfortable' | 'cozy' | 'compact';
|
|
3
|
+
export type Size = 'small' | 'default' | 'large';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-indicator",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.5.1",
|
|
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/"
|
|
@@ -12,6 +12,14 @@
|
|
|
12
12
|
"module": "dist/esm/index.js",
|
|
13
13
|
"module:es2019": "dist/es2019/index.js",
|
|
14
14
|
"types": "dist/types/index.d.ts",
|
|
15
|
+
"typesVersions": {
|
|
16
|
+
">=4.5 <4.9": {
|
|
17
|
+
"*": [
|
|
18
|
+
"dist/types-ts4.5/*",
|
|
19
|
+
"dist/types-ts4.5/index.d.ts"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
},
|
|
15
23
|
"sideEffects": false,
|
|
16
24
|
"atlaskit:src": "src/index.tsx",
|
|
17
25
|
"atlassian": {
|
|
@@ -23,13 +31,13 @@
|
|
|
23
31
|
}
|
|
24
32
|
},
|
|
25
33
|
"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.
|
|
34
|
+
"@atlaskit/analytics-next": "^9.1.0",
|
|
35
|
+
"@atlaskit/ds-explorations": "^2.1.0",
|
|
36
|
+
"@atlaskit/ds-lib": "^2.2.0",
|
|
37
|
+
"@atlaskit/focus-ring": "^1.3.0",
|
|
38
|
+
"@atlaskit/primitives": "^0.9.0",
|
|
39
|
+
"@atlaskit/theme": "^12.5.0",
|
|
40
|
+
"@atlaskit/tokens": "^1.4.0",
|
|
33
41
|
"@babel/runtime": "^7.0.0",
|
|
34
42
|
"@emotion/react": "^11.7.1",
|
|
35
43
|
"bind-event-listener": "^2.1.1"
|
|
@@ -38,9 +46,9 @@
|
|
|
38
46
|
"react": "^16.8.0"
|
|
39
47
|
},
|
|
40
48
|
"devDependencies": {
|
|
41
|
-
"@atlaskit/button": "^16.
|
|
49
|
+
"@atlaskit/button": "^16.7.0",
|
|
42
50
|
"@atlaskit/docs": "*",
|
|
43
|
-
"@atlaskit/section-message": "^6.
|
|
51
|
+
"@atlaskit/section-message": "^6.4.0",
|
|
44
52
|
"@atlaskit/ssr": "*",
|
|
45
53
|
"@atlaskit/visual-regression": "*",
|
|
46
54
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
@@ -50,7 +58,7 @@
|
|
|
50
58
|
"jscodeshift": "^0.13.0",
|
|
51
59
|
"react-dom": "^16.8.0",
|
|
52
60
|
"react-lorem-component": "^0.13.0",
|
|
53
|
-
"typescript": "4.
|
|
61
|
+
"typescript": "~4.9.5"
|
|
54
62
|
},
|
|
55
63
|
"techstack": {
|
|
56
64
|
"@atlassian/frontend": {
|