@bitrise/bitkit 12.66.0 → 12.66.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "12.66.0",
4
+ "version": "12.66.1",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -5,7 +5,7 @@ import Text from '../Text/Text';
5
5
  import Divider, { DividerProps } from '../Divider/Divider';
6
6
  import Link, { LinkProps } from '../Link/Link';
7
7
 
8
- type ProgressIndicatorProps = {
8
+ export type ProgressIndicatorProps = {
9
9
  stages: {
10
10
  label: string;
11
11
  isInvalid?: boolean;
package/src/index.ts CHANGED
@@ -320,3 +320,6 @@ export { default as FilterSwitchGroup } from './Components/Form/FilterSwitch/Fil
320
320
 
321
321
  export type { TablePaginationProps } from './Components/Table/TablePagination';
322
322
  export { default as TablePagination } from './Components/Table/TablePagination';
323
+
324
+ export type { ProgressIndicatorProps } from './Components/ProgressIndicator/ProgressIndicator';
325
+ export { default as ProgressIndicator } from './Components/ProgressIndicator/ProgressIndicator';