@sunrise-upc/mobile-prod-card 1.2.5-beta.2 → 1.2.5-beta.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/LineCheckV3/LineCheckOverlay.d.ts +3 -1
- package/dist/cjs/components/LineCheckV3/LinecheckModal.d.ts +1 -1
- package/dist/cjs/components/LineCheckV3/Success.d.ts +1 -2
- package/dist/cjs/index.js +2 -2
- package/dist/esm/components/LineCheckV3/LineCheckOverlay.d.ts +3 -1
- package/dist/esm/components/LineCheckV3/LinecheckModal.d.ts +1 -1
- package/dist/esm/components/LineCheckV3/Success.d.ts +1 -2
- package/dist/esm/index.js +2 -2
- package/package.json +1 -1
@@ -2,6 +2,8 @@
|
|
2
2
|
export interface LineCheckOverlaySchema {
|
3
3
|
props: any;
|
4
4
|
productName: string;
|
5
|
+
handleModalClick: any;
|
6
|
+
onSuccess: any;
|
5
7
|
}
|
6
|
-
declare const LineCheckOverlay: ({ props, productName, }: LineCheckOverlaySchema) => JSX.Element;
|
8
|
+
declare const LineCheckOverlay: ({ props, productName, handleModalClick, onSuccess }: LineCheckOverlaySchema) => JSX.Element;
|
7
9
|
export default LineCheckOverlay;
|
@@ -6,12 +6,11 @@ interface successInterface {
|
|
6
6
|
textContent: any;
|
7
7
|
eligibleBundle: any;
|
8
8
|
tooltipcontent: string | JSX.Element;
|
9
|
-
onModemDetailsClick?: () => any;
|
10
9
|
onSuccess?: any;
|
11
10
|
}
|
12
11
|
interface MaxDownloadUploadSpeed {
|
13
12
|
maxBandwidthDown: number;
|
14
13
|
maxBandwidthUp: number;
|
15
14
|
}
|
16
|
-
declare const Success: ({ content, uploadDownload, textContent, eligibleBundle, tooltipcontent,
|
15
|
+
declare const Success: ({ content, uploadDownload, textContent, eligibleBundle, tooltipcontent, onSuccess }: successInterface) => JSX.Element;
|
17
16
|
export default Success;
|