@bitrise/bitkit 10.4.1 → 10.5.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 +1 -1
- package/src/index.ts +3 -0
- package/src/old.ts +0 -3
- package/src/tsconfig.tsbuildinfo +1 -1
- package/src/Old/Notification/Notification.css +0 -34
- package/src/Old/Notification/Notification.test.tsx +0 -33
- package/src/Old/Notification/Notification.tsx +0 -69
- package/src/Old/Notification/__snapshots__/Notification.test.tsx.snap +0 -78
package/package.json
CHANGED
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
|
|