@sunrise-upc/mobile-prod-card 8.3.0 → 8.3.1-beta.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/dist/cjs/components/NotificationToast/NotificationToast.d.ts +10 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/NotificationToast/NotificationToast.d.ts +10 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface NotificationToastProps {
|
|
3
|
+
title: string;
|
|
4
|
+
message: string;
|
|
5
|
+
show: boolean;
|
|
6
|
+
delay?: number;
|
|
7
|
+
onClose: () => void;
|
|
8
|
+
}
|
|
9
|
+
declare const NotificationToast: ({ title, message, show, onClose, delay }: NotificationToastProps) => JSX.Element;
|
|
10
|
+
export default NotificationToast;
|
|
@@ -18,3 +18,4 @@ export { default as CoverageCheckModal } from './NewLineCheck/CoverageCheckModal
|
|
|
18
18
|
export { default as StickyBottomSheet } from './StickyBottomSheet';
|
|
19
19
|
export { default as ProgressionBar } from './ProgressionBar';
|
|
20
20
|
export { default as OttServiceOptionsSmallPopup } from './StaticLineTable/OttServiceOptions/OttServiceOptionsSmallPopup';
|
|
21
|
+
export { default as NotificationToast } from './NotificationToast/NotificationToast';
|