@atlaskit/progress-bar 3.1.0 → 3.1.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/progress-bar
2
2
 
3
+ ## 3.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 3.1.0
4
10
 
5
11
  ### Minor Changes
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import { type CustomProgressBarProps } from '../types';
3
3
  /**
4
4
  * __Success progress bar__
@@ -8,5 +8,5 @@ import { type CustomProgressBarProps } from '../types';
8
8
  * - [Examples](https://atlassian.design/components/progress-bar/success-progress-bar/examples)
9
9
  * - [Code](https://atlassian.design/components/progress-bar/success-progress-bar/code)
10
10
  */
11
- declare const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
11
+ declare const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element;
12
12
  export default SuccessProgressBar;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import { type CustomProgressBarProps } from '../types';
3
3
  /**
4
4
  * __Transparent progress bar__
@@ -8,5 +8,5 @@ import { type CustomProgressBarProps } from '../types';
8
8
  * - [Examples](https://atlassian.design/components/progress-bar/transparent-progress-bar/examples)
9
9
  * - [Code](https://atlassian.design/components/progress-bar/transparent-progress-bar/code)
10
10
  */
11
- declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
11
+ declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element;
12
12
  export default TransparentProgressBar;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import { type CustomProgressBarProps } from '../types';
3
3
  /**
4
4
  * __Success progress bar__
@@ -8,5 +8,5 @@ import { type CustomProgressBarProps } from '../types';
8
8
  * - [Examples](https://atlassian.design/components/progress-bar/success-progress-bar/examples)
9
9
  * - [Code](https://atlassian.design/components/progress-bar/success-progress-bar/code)
10
10
  */
11
- declare const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
11
+ declare const SuccessProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element;
12
12
  export default SuccessProgressBar;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import { type CustomProgressBarProps } from '../types';
3
3
  /**
4
4
  * __Transparent progress bar__
@@ -8,5 +8,5 @@ import { type CustomProgressBarProps } from '../types';
8
8
  * - [Examples](https://atlassian.design/components/progress-bar/transparent-progress-bar/examples)
9
9
  * - [Code](https://atlassian.design/components/progress-bar/transparent-progress-bar/code)
10
10
  */
11
- declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => JSX.Element;
11
+ declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element;
12
12
  export default TransparentProgressBar;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "A progress bar communicates the status of a system process.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -29,7 +29,7 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "@atlaskit/theme": "^14.1.0",
32
+ "@atlaskit/theme": "^15.0.0",
33
33
  "@atlaskit/tokens": "^3.3.0",
34
34
  "@babel/runtime": "^7.0.0",
35
35
  "@compiled/react": "^0.18.1"