@bitrise/bitkit 9.1.6-alpha.3 → 9.1.6-alpha.4

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.1.6-alpha.3",
4
+ "version": "9.1.6-alpha.4",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "lib/cjs/index.js",
7
7
  "esnext": "lib/esn/index.js",
@@ -1,6 +1,6 @@
1
1
  /* eslint-disable object-shorthand */
2
2
  import * as React from 'react';
3
- import { Button as ChakraButton, ButtonProps } from '@chakra-ui/react';
3
+ import { Button as ChakraButton, ButtonProps } from '@chakra-ui/button';
4
4
 
5
5
  interface Props extends ButtonProps {
6
6
  /**
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import { ChakraProvider, ChakraProviderProps } from '@chakra-ui/react';
2
+ import { ChakraProvider, ChakraProviderProps } from '@chakra-ui/provider';
3
3
  import theme from './theme';
4
4
 
5
5
  const BitchakraProvider = ({ children }: ChakraProviderProps) => {