@bitrise/bitkit 10.5.3 → 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.3",
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",
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