@atlaskit/progress-bar 0.6.4 → 1.0.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 +7 -0
- package/package.json +2 -2
- package/tmp/api-report-tmp.d.ts +53 -0
- package/dist/cjs/version.json +0 -5
- package/dist/es2019/version.json +0 -5
- package/dist/esm/version.json +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/progress-bar
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`b175ec37c65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b175ec37c65) - Cuts the first major release of this package. It is now considered stable and ready for general adoption.
|
|
8
|
+
This version contains no code changes.
|
|
9
|
+
|
|
3
10
|
## 0.6.4
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/progress-bar",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "A progress bar communicates the status of a system process.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
28
28
|
"@atlaskit/theme": "^12.5.0",
|
|
29
|
-
"@atlaskit/tokens": "^1.
|
|
29
|
+
"@atlaskit/tokens": "^1.15.0",
|
|
30
30
|
"@babel/runtime": "^7.0.0",
|
|
31
31
|
"@emotion/react": "^11.7.1"
|
|
32
32
|
},
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
## API Report File for "@atlaskit/progress-bar"
|
|
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 { jsx } from '@emotion/react';
|
|
10
|
+
import { ThemeProp } from '@atlaskit/theme/components';
|
|
11
|
+
|
|
12
|
+
// @public (undocumented)
|
|
13
|
+
interface CustomProgressBarProps {
|
|
14
|
+
ariaLabel?: string;
|
|
15
|
+
isIndeterminate?: boolean;
|
|
16
|
+
testId?: string;
|
|
17
|
+
value?: number;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// @public (undocumented)
|
|
21
|
+
interface DefaultProgressBarProps extends CustomProgressBarProps {
|
|
22
|
+
appearance?: 'default' | 'inverse' | 'success';
|
|
23
|
+
// @deprecated (undocumented)
|
|
24
|
+
theme?: ThemeProp<ThemeTokens, ThemeProps>;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// @public
|
|
28
|
+
const ProgressBar: ({ appearance, ariaLabel, isIndeterminate, testId, theme, value, }: DefaultProgressBarProps) => jsx.JSX.Element;
|
|
29
|
+
export default ProgressBar;
|
|
30
|
+
|
|
31
|
+
// @public
|
|
32
|
+
export const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
|
|
33
|
+
|
|
34
|
+
// @public @deprecated (undocumented)
|
|
35
|
+
type ThemeProps = {
|
|
36
|
+
value: number | string;
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
// @public @deprecated (undocumented)
|
|
40
|
+
type ThemeTokens = {
|
|
41
|
+
container: any;
|
|
42
|
+
bar: any;
|
|
43
|
+
determinateBar: any;
|
|
44
|
+
increasingBar: any;
|
|
45
|
+
decreasingBar: any;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
// @public
|
|
49
|
+
export const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
|
|
50
|
+
|
|
51
|
+
// (No @packageDocumentation comment for this package)
|
|
52
|
+
|
|
53
|
+
```
|
package/dist/cjs/version.json
DELETED
package/dist/es2019/version.json
DELETED