@bitrise/bitkit 9.17.0-alpha-badge.1 → 9.17.0-alpha-badge.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 +1 -1
- package/src/Old/AddonBeam/AddonBeam.tsx +0 -9
- package/src/index.ts +3 -0
- package/src/old.ts +0 -3
- package/src/tsconfig.tsbuildinfo +1 -1
- package/src/Old/Badge/Badge.css +0 -6
- package/src/Old/Badge/Badge.tsx +0 -18
package/package.json
CHANGED
|
@@ -2,7 +2,6 @@ import * as React from 'react';
|
|
|
2
2
|
import { TypeIconName } from '../Icon/tsx';
|
|
3
3
|
import Flex, { Props as FlexProps } from '../Flex/Flex';
|
|
4
4
|
import Hamburger from '../Hamburger/Hamburger';
|
|
5
|
-
import Badge from '../Badge/Badge';
|
|
6
5
|
import Icon from '../Icon/Icon';
|
|
7
6
|
import Link from '../Link/Link';
|
|
8
7
|
import Image from '../Image/Image';
|
|
@@ -83,14 +82,6 @@ const AddonBeam: React.FunctionComponent<Props> = (props: Props) => {
|
|
|
83
82
|
by Bitrise
|
|
84
83
|
</Text>
|
|
85
84
|
</Flex>
|
|
86
|
-
|
|
87
|
-
{isBeta && (
|
|
88
|
-
<Flex>
|
|
89
|
-
<Badge backgroundColor="yellow.80" textColor="purple.10">
|
|
90
|
-
BETA
|
|
91
|
-
</Badge>
|
|
92
|
-
</Flex>
|
|
93
|
-
)}
|
|
94
85
|
</Flex>
|
|
95
86
|
|
|
96
87
|
{!isInResponsiveView && appName && (
|
package/src/index.ts
CHANGED
|
@@ -37,3 +37,6 @@ export { default as Box } from './Components/Box/Box';
|
|
|
37
37
|
|
|
38
38
|
export type { ColorButtonProps } from './Components/ColorButton/ColorButton';
|
|
39
39
|
export { default as ColorButton } from './Components/ColorButton/ColorButton';
|
|
40
|
+
|
|
41
|
+
export type { BadgeProps } from './Components/Badge/Badge';
|
|
42
|
+
export { default as Badge } from './Components/Badge/Badge';
|
package/src/old.ts
CHANGED
|
@@ -37,9 +37,6 @@ export { default as AppLayoutSidebar } from './Old/AppLayout/AppLayoutSidebar';
|
|
|
37
37
|
export type { Props as AvatarProps } from './Old/Avatar/Avatar';
|
|
38
38
|
export { default as Avatar } from './Old/Avatar/Avatar';
|
|
39
39
|
|
|
40
|
-
export type { Props as BadgeProps } from './Old/Badge/Badge';
|
|
41
|
-
export { default as Badge } from './Old/Badge/Badge';
|
|
42
|
-
|
|
43
40
|
export type { Props as BaseProps } from './Old/Base/Base';
|
|
44
41
|
export type { TypeBorderRadius } from './Old/Base/Base';
|
|
45
42
|
export type { TypeColors } from './Old/Base/Base';
|