@bitrise/bitkit 10.5.1 → 10.5.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.5.1",
4
+ "version": "10.5.2",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -1,5 +1,5 @@
1
1
  import { Button as ChakraButton, ButtonProps as ChakraButtonProps, forwardRef, useStyleConfig } from '@chakra-ui/react';
2
- import { ColorScheme } from '@/Foundations/Colors/Colors';
2
+ import { ColorScheme } from '../../Foundations/Colors/Colors';
3
3
 
4
4
  export interface ColorButtonProps extends ChakraButtonProps {
5
5
  as?: 'a' | 'button';
@@ -1,9 +1,8 @@
1
1
  import { createContext, useContext, useMemo } from 'react';
2
2
  import { Alert as ChakraAlert, AlertProps, forwardRef } from '@chakra-ui/react';
3
3
 
4
- import { ColorScheme } from '@/Foundations/Colors/Colors';
5
- import { BREAKPOINTS } from '@/Foundations/Breakpoints/Breakpoints';
6
-
4
+ import { ColorScheme } from '../../Foundations/Colors/Colors';
5
+ import { BREAKPOINTS } from '../../Foundations/Breakpoints/Breakpoints';
7
6
  import CloseButton from '../CloseButton/CloseButton';
8
7
  import ColorButton, { ColorButtonProps } from '../ColorButton/ColorButton';
9
8
  import Icon from '../Icon/Icon';