@bitrise/bitkit 10.5.1 → 10.6.0-alpha-notification.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": "10.5.1",
4
+ "version": "10.6.0-alpha-notification.1",
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';
@@ -9,7 +9,7 @@ import {
9
9
  chakra,
10
10
  } from '@chakra-ui/react';
11
11
 
12
- import { ColorScheme } from '@/Foundations/Colors/Colors';
12
+ import { ColorScheme } from '../../Foundations/Colors/Colors';
13
13
  import Box from '../Box/Box';
14
14
  import CloseButton from '../CloseButton/CloseButton';
15
15
  import ColorButton, { ColorButtonProps } from '../ColorButton/ColorButton';
@@ -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';
package/src/index.ts CHANGED
@@ -139,4 +139,7 @@ export { default as BreadcrumbLink } from './Components/Breadcrumb/BreadcrumbLin
139
139
  export type { RibbonProps } from './Components/Ribbon/Ribbon';
140
140
  export { default as Ribbon } from './Components/Ribbon/Ribbon';
141
141
 
142
+ export type { NotificationProps } from './Components/Notification/Notification';
143
+ export { default as Notification } from './Components/Notification/Notification';
144
+
142
145
  export { BREAKPOINTS } from './Foundations/Breakpoints/Breakpoints';
package/src/old.ts CHANGED
@@ -54,9 +54,6 @@ export { default as InputLabel } from './Old/Input/InputLabel';
54
54
  export type { Props as LogoProps } from './Old/Logo/Logo';
55
55
  export { default as Logo } from './Old/Logo/Logo';
56
56
 
57
- export type { Props as NotificationProps } from './Old/Notification/Notification';
58
- export { default as Notification } from './Old/Notification/Notification';
59
-
60
57
  export type { Props as ProgressBarProps } from './Old/Progress/ProgressBar';
61
58
  export { default as ProgressBar } from './Old/Progress/ProgressBar';
62
59