@bitrise/bitkit 10.2.1 → 10.2.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "10.2.1",
4
+ "version": "10.2.2",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
2
  import { useMediaQuery } from '../hooks';
3
3
  import Flex, { Props as FlexProps } from '../Flex/Flex';
4
- import Image from '../Image/Image';
4
+ import Image from '../../Components/Image/Image';
5
5
  import Text from '../../Components/Text/Text';
6
6
 
7
7
  export type Props = FlexProps;
@@ -32,7 +32,7 @@ const Status500: React.FunctionComponent<Props> = (props: Props) => {
32
32
  Everything is under control, we will be back soon. Until then keep refreshing your browser.
33
33
  </Text>
34
34
 
35
- <Image margin="x16" src="https://bitrise-bitkit.s3.us-east-2.amazonaws.com/assets/Status500.svg" />
35
+ <Image marginY="64" src="https://bitrise-bitkit.s3.us-east-2.amazonaws.com/assets/Status500.svg" />
36
36
  </Flex>
37
37
  );
38
38
  };
package/src/old.ts CHANGED
@@ -63,24 +63,6 @@ export { default as Logo } from './Old/Logo/Logo';
63
63
  export type { Props as NotificationProps } from './Old/Notification/Notification';
64
64
  export { default as Notification } from './Old/Notification/Notification';
65
65
 
66
- export type { Props as PlacementProps } from './Old/Placement/Placement';
67
- export { default as Placement } from './Old/Placement/Placement';
68
-
69
- export type { Props as PlacementAreaProps } from './Old/Placement/PlacementArea';
70
- export { default as PlacementArea } from './Old/Placement/PlacementArea';
71
-
72
- export type { Props as PlacementArrowProps } from './Old/Placement/PlacementArrow';
73
- export { default as PlacementArrow } from './Old/Placement/PlacementArrow';
74
-
75
- export type { Props as PlacementManagerProps } from './Old/Placement/PlacementManager';
76
- export { default as PlacementManager } from './Old/Placement/PlacementManager';
77
-
78
- export type { Props as PlacementReferenceProps } from './Old/Placement/PlacementReference';
79
- export { default as PlacementReference } from './Old/Placement/PlacementReference';
80
-
81
- export type { Props as PortalProps } from './Old/Portal/Portal';
82
- export { default as Portal } from './Old/Portal/Portal';
83
-
84
66
  export type { Props as ProgressBarProps } from './Old/Progress/ProgressBar';
85
67
  export { default as ProgressBar } from './Old/Progress/ProgressBar';
86
68
 
@@ -90,9 +72,6 @@ export { default as ProgressBitbot } from './Old/Progress/ProgressBitbot';
90
72
  export type { Props as ProgressSpinnerProps } from './Old/Progress/ProgressSpinner';
91
73
  export { default as ProgressSpinner } from './Old/Progress/ProgressSpinner';
92
74
 
93
- export type { Props as RadioButtonProps } from './Old/RadioButton/RadioButton';
94
- export { default as RadioButton } from './Old/RadioButton/RadioButton';
95
-
96
75
  export type { Props as RibbonProps } from './Old/Ribbon/Ribbon';
97
76
  export { default as Ribbon } from './Old/Ribbon/Ribbon';
98
77
 
@@ -102,9 +81,6 @@ export { default as Skeleton } from './Old/Skeleton/Skeleton';
102
81
  export type { Props as SkeletonBoxProps } from './Old/Skeleton/SkeletonBox';
103
82
  export { default as SkeletonBox } from './Old/Skeleton/SkeletonBox';
104
83
 
105
- export type { Props as Status404Props } from './Old/Status/Status404';
106
- export { default as Status404 } from './Old/Status/Status404';
107
-
108
84
  export type { Props as Status500Props } from './Old/Status/Status500';
109
85
  export { default as Status500 } from './Old/Status/Status500';
110
86