@atlaskit/progress-indicator 9.4.1 → 9.4.2
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 +6 -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/package.json +4 -4
- package/report.api.md +14 -7
package/CHANGELOG.md
CHANGED
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.4.
|
|
14
|
+
const packageVersion = "9.4.2";
|
|
15
15
|
/**
|
|
16
16
|
* __ProgressDots__
|
|
17
17
|
*
|
package/dist/es2019/version.json
CHANGED
|
@@ -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.2";
|
|
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.2",
|
|
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": "^1.
|
|
28
|
+
"@atlaskit/ds-explorations": "^1.6.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.12.0",
|
|
33
33
|
"@babel/runtime": "^7.0.0",
|
|
34
34
|
"@emotion/react": "^11.7.1",
|
|
35
35
|
"bind-event-listener": "^2.1.1"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react": "^16.8.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@atlaskit/button": "^16.
|
|
41
|
+
"@atlaskit/button": "^16.5.0",
|
|
42
42
|
"@atlaskit/docs": "*",
|
|
43
43
|
"@atlaskit/section-message": "^6.3.0",
|
|
44
44
|
"@atlaskit/ssr": "*",
|
package/report.api.md
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
|
+
<!-- API Report Version: 2.2 -->
|
|
2
|
+
|
|
1
3
|
## API Report File for "@atlaskit/progress-indicator"
|
|
2
4
|
|
|
3
|
-
> Do not edit this file.
|
|
5
|
+
> Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
|
|
6
|
+
> [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
|
|
7
|
+
|
|
8
|
+
### Table of contents
|
|
4
9
|
|
|
5
|
-
|
|
6
|
-
Generated API Report version: 2.0
|
|
7
|
-
-->
|
|
10
|
+
- [Main Entry Types](#main-entry-types)
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
### Main Entry Types
|
|
13
|
+
|
|
14
|
+
<!--SECTION START: Main Entry Types-->
|
|
10
15
|
|
|
11
16
|
```ts
|
|
12
17
|
/// <reference types="react" />
|
|
@@ -40,10 +45,12 @@ export interface ProgressDotsProps {
|
|
|
40
45
|
export const ProgressIndicator: FC<ProgressDotsProps>;
|
|
41
46
|
|
|
42
47
|
// @public (undocumented)
|
|
43
|
-
type Size = '
|
|
48
|
+
type Size = 'default' | 'large' | 'small';
|
|
44
49
|
|
|
45
50
|
// @public (undocumented)
|
|
46
|
-
type Spacing = 'comfortable' | '
|
|
51
|
+
type Spacing = 'comfortable' | 'compact' | 'cozy';
|
|
47
52
|
|
|
48
53
|
// (No @packageDocumentation comment for this package)
|
|
49
54
|
```
|
|
55
|
+
|
|
56
|
+
<!--SECTION END: Main Entry Types-->
|