@bitrise/bitkit 10.1.0-alpha-breadcrumb.1 → 10.1.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "10.1.0-alpha-breadcrumb.1",
4
+ "version": "10.1.0",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -1,7 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import { TypeIconName } from '../Icon/tsx';
3
3
  import Flex, { Props as FlexProps } from '../Flex/Flex';
4
- import Hamburger from '../Hamburger/Hamburger';
5
4
  import Icon from '../Icon/Icon';
6
5
  import Link from '../Link/Link';
7
6
  import Image from '../Image/Image';
@@ -59,7 +58,7 @@ const AddonBeam: React.FunctionComponent<Props> = (props: Props) => {
59
58
  <Flex>
60
59
  {/* eslint-disable-next-line jsx-a11y/anchor-is-valid */}
61
60
  <Link color="neutral.100" onClick={onHamburgerIconClick}>
62
- <Hamburger active={isHamburgerIconActive} />
61
+ <Icon name={isHamburgerIconActive ? 'CloseSmall' : 'MenuHamburger'} />
63
62
  </Link>
64
63
  </Flex>
65
64
  )}
package/src/index.ts CHANGED
@@ -133,10 +133,4 @@ export { default as RadioGroup } from './Components/Form/Radio/RadioGroup';
133
133
  export type { ImageProps } from './Components/Image/Image';
134
134
  export { default as Image } from './Components/Image/Image';
135
135
 
136
- export type { BreadcrumbProps } from './Components/Breadcrumb/Breadcrumb';
137
- export { default as Breadcrumb } from './Components/Breadcrumb/Breadcrumb';
138
-
139
- export type { BreadcrumbLinkProps } from './Components/Breadcrumb/BreadcrumbLink';
140
- export { default as BreadcrumbLink } from './Components/Breadcrumb/BreadcrumbLink';
141
-
142
136
  export { BREAKPOINTS } from './Foundations/Breakpoints/Breakpoints';
package/src/old.ts CHANGED
@@ -72,9 +72,6 @@ export { default as Flex } from './Old/Flex/Flex';
72
72
  export type { Props as GridProps } from './Old/Grid/Grid';
73
73
  export { default as Grid } from './Old/Grid/Grid';
74
74
 
75
- export type { Props as HamburgerProps } from './Old/Hamburger/Hamburger';
76
- export { default as Hamburger } from './Old/Hamburger/Hamburger';
77
-
78
75
  export type { Props as InputProps } from './Old/Input/Input';
79
76
  export { default as Input } from './Old/Input/Input';
80
77
 
package/src/theme.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import Avatar from './Components/Avatar/Avatar.theme';
2
2
  import Badge from './Components/Badge/Badge.theme';
3
- import Breadcrumb from './Components/Breadcrumb/Breadcrumb.theme';
4
3
  import Button from './Components/Button/Button.theme';
5
4
  import Card from './Components/Card/Card.theme';
6
5
  import Checkbox from './Components/Form/Checkbox/Checkbox.theme';
@@ -66,7 +65,6 @@ const theme = {
66
65
  components: {
67
66
  Avatar,
68
67
  Badge,
69
- Breadcrumb,
70
68
  Button,
71
69
  Card,
72
70
  Checkbox,