@bitrise/bitkit 9.8.0 → 9.8.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": "9.8.0",
4
+ "version": "9.8.1",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { Box as ChakraBox, BoxProps } from '@chakra-ui/react';
2
3
 
3
4
  /**
@@ -1,4 +1,4 @@
1
- import { forwardRef, HTMLAttributeAnchorTarget } from 'react';
1
+ import React, { forwardRef, HTMLAttributeAnchorTarget } from 'react';
2
2
  import { Button as ChakraButton, ButtonProps as ChackraButtonProps } from '@chakra-ui/react';
3
3
  import Icon from '../../Old/Icon/Icon';
4
4
  import { TypeIconName } from '../../Old/Icon/tsx';
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { Radii } from '../../Foundations/Radii/Radii';
2
3
  import { Shadows } from '../../Foundations/Shadows/Shadows';
3
4
  import { Sizes } from '../../Foundations/Sizes/Sizes';
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { Divider as ChakraDivider, DividerProps as ChakraDividerProps } from '@chakra-ui/react';
2
3
 
3
4
  export interface DividerProps extends ChakraDividerProps {
@@ -1,4 +1,4 @@
1
- import { forwardRef } from 'react';
1
+ import React, { forwardRef } from 'react';
2
2
  import { IconButton as ChakraIconButton, IconButtonProps } from '@chakra-ui/react';
3
3
  import Icon from '../../Old/Icon/Icon';
4
4
  import { TypeIconName } from '../../Old/Icon/tsx';
@@ -1,4 +1,4 @@
1
- import { HTMLAttributeAnchorTarget } from 'react';
1
+ import React, { HTMLAttributeAnchorTarget } from 'react';
2
2
  import { Link as ChakraLink, LinkProps as ChakraLinkProps } from '@chakra-ui/react';
3
3
  import { TextSizes } from '../../Foundations/Typography/Typography';
4
4
 
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { Menu as ChakraMenu, MenuProps as ChakraMenuProps } from '@chakra-ui/react';
2
3
 
3
4
  export type MenuProps = ChakraMenuProps;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { MenuItem as ChakraMenuItem, MenuItemProps } from '@chakra-ui/react';
2
3
  import { Icon, TypeIconName } from '@bitrise/bitkit';
3
4
 
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { MenuButton, MenuList, MenuListProps } from '@chakra-ui/react';
2
3
  import IconButton from '../IconButton/IconButton';
3
4
  import Menu from '../Menu/Menu';
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import MenuItem, { Props as MenuItemProps } from '../Menu/MenuItem';
2
3
 
3
4
  export interface Props extends MenuItemProps {
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { Text as ChakraText, TextProps as ChakraTextProps } from '@chakra-ui/react';
2
3
  import { TextSizes } from '../../Foundations/Typography/Typography';
3
4
 
package/src/index.ts CHANGED
@@ -288,3 +288,9 @@ export { default as VisibilityContainer } from './Old/Visibility/VisibilityConta
288
288
 
289
289
  export { default as Provider } from './Components/Provider/Provider';
290
290
  export { default as theme } from './theme';
291
+
292
+ export type { Props as OverflowMenuProps } from './Components/OverflowMenu/OverflowMenu';
293
+ export { default as OverflowMenu } from './Components/OverflowMenu/OverflowMenu';
294
+
295
+ export type { Props as OverflowMenuItemProps } from './Components/OverflowMenu/OverflowMenuItem';
296
+ export { default as OverflowMenuItem } from './Components/OverflowMenu/OverflowMenuItem';