@atlaskit/progress-indicator 9.5.2 → 9.5.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 +12 -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 +5 -5
- package/tmp/api-report-tmp.d.ts +42 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/progress-indicator
|
|
2
2
|
|
|
3
|
+
## 9.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 9.5.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`e7ea6832ad2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ea6832ad2) - Bans the use of React.FC/React.FunctionComponent type in ADS components as part of the React 18 migration work. The change is internal only and should not introduce any changes for the component consumers.
|
|
14
|
+
|
|
3
15
|
## 9.5.2
|
|
4
16
|
|
|
5
17
|
### 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.5.
|
|
14
|
+
const packageVersion = "9.5.4";
|
|
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.5.
|
|
16
|
+
var packageVersion = "9.5.4";
|
|
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.5.
|
|
3
|
+
"version": "9.5.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/"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"atlaskit:src": "src/index.tsx",
|
|
25
25
|
"atlassian": {
|
|
26
26
|
"team": "Design System Team",
|
|
27
|
-
"releaseModel": "
|
|
27
|
+
"releaseModel": "continuous",
|
|
28
28
|
"website": {
|
|
29
29
|
"name": "Progress indicator",
|
|
30
30
|
"category": "Components"
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
35
|
-
"@atlaskit/ds-explorations": "^2.
|
|
35
|
+
"@atlaskit/ds-explorations": "^2.2.0",
|
|
36
36
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
37
37
|
"@atlaskit/focus-ring": "^1.3.0",
|
|
38
|
-
"@atlaskit/primitives": "^0.
|
|
38
|
+
"@atlaskit/primitives": "^0.10.0",
|
|
39
39
|
"@atlaskit/theme": "^12.5.0",
|
|
40
|
-
"@atlaskit/tokens": "^1.
|
|
40
|
+
"@atlaskit/tokens": "^1.5.0",
|
|
41
41
|
"@babel/runtime": "^7.0.0",
|
|
42
42
|
"@emotion/react": "^11.7.1",
|
|
43
43
|
"bind-event-listener": "^2.1.1"
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
## API Report File for "@atlaskit/progress-indicator"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
/// <reference types="react" />
|
|
8
|
+
|
|
9
|
+
import { FC } from 'react';
|
|
10
|
+
import type { UIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
11
|
+
|
|
12
|
+
// @public (undocumented)
|
|
13
|
+
type DotsAppearance = 'default' | 'help' | 'inverted' | 'primary';
|
|
14
|
+
|
|
15
|
+
// @public (undocumented)
|
|
16
|
+
export interface ProgressDotsProps {
|
|
17
|
+
appearance?: DotsAppearance;
|
|
18
|
+
ariaControls?: string;
|
|
19
|
+
ariaLabel?: string;
|
|
20
|
+
onSelect?: (eventData: {
|
|
21
|
+
event: React.MouseEvent<HTMLButtonElement>;
|
|
22
|
+
index: number;
|
|
23
|
+
}, analyticsEvent: UIAnalyticsEvent) => void;
|
|
24
|
+
selectedIndex: number;
|
|
25
|
+
size?: Size;
|
|
26
|
+
spacing?: Spacing;
|
|
27
|
+
testId?: string;
|
|
28
|
+
values: any[];
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// @public
|
|
32
|
+
export const ProgressIndicator: FC<ProgressDotsProps>;
|
|
33
|
+
|
|
34
|
+
// @public (undocumented)
|
|
35
|
+
type Size = 'default' | 'large' | 'small';
|
|
36
|
+
|
|
37
|
+
// @public (undocumented)
|
|
38
|
+
type Spacing = 'comfortable' | 'compact' | 'cozy';
|
|
39
|
+
|
|
40
|
+
// (No @packageDocumentation comment for this package)
|
|
41
|
+
|
|
42
|
+
```
|