@sunrise-upc/mobile-prod-card 1.2.4-beta.2 → 1.2.4-beta.20

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,12 @@
1
+ export interface LinecheckBasicPropConfigSchema {
2
+ baseURL: string | '';
3
+ }
4
+ export declare class LinecheckBasicPropConfig {
5
+ private static instance;
6
+ config: LinecheckBasicPropConfigSchema;
7
+ private constructor();
8
+ getConfig: () => LinecheckBasicPropConfigSchema;
9
+ getBaseUrl: () => string;
10
+ static getInstance: () => LinecheckBasicPropConfig;
11
+ static create: (p_config: LinecheckBasicPropConfigSchema) => void;
12
+ }
@@ -1,2 +1,3 @@
1
1
  export * from "./LineTableBasicPropConfig";
2
2
  export * from "./ProductTeaserPropsConfig";
3
+ export * from "./LinecheckBasicPropConfig";
@@ -0,0 +1,8 @@
1
+ export declare const apiResConstants: {
2
+ X_SUN_CHAL: string;
3
+ CUSTOMER: string;
4
+ ADDR_ENDPOINT: string;
5
+ LINE_CHECK: string;
6
+ CONSTANTSKEYS: string;
7
+ X_SUN_SITEID: string;
8
+ };
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ interface GenericModalSchema {
3
+ modalState: boolean;
4
+ handler: () => void;
5
+ children: React.ReactNode;
6
+ showFooter: boolean;
7
+ footerNode?: React.ReactNode;
8
+ height?: string;
9
+ width?: string;
10
+ noCloseButton?: boolean;
11
+ backDrop?: boolean;
12
+ fixedWidth?: string;
13
+ backgroundColor?: string;
14
+ bodyPadding?: string;
15
+ }
16
+ declare const GenericModal: ({ modalState, handler, showFooter, footerNode, children, width, height, noCloseButton, backDrop, fixedWidth, backgroundColor, bodyPadding }: GenericModalSchema) => JSX.Element;
17
+ export default GenericModal;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const LineCheckInput: React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<HTMLInputElement>>;
3
+ export default LineCheckInput;
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import './LineCheck.css';
3
+ declare const LineCheckV3: FC<any>;
4
+ export default LineCheckV3;
@@ -0,0 +1,3 @@
1
+ import { FC } from "react";
2
+ declare const LincheckModal: FC<any>;
3
+ export default LincheckModal;
@@ -0,0 +1,10 @@
1
+ export declare const getLineCheckService: (selectedAdd: any) => unknown;
2
+ export declare const fetchLineCheck: (payload: any) => Promise<{
3
+ corelationaId: any;
4
+ lineCheckResponse: any;
5
+ eligibleBundle: any;
6
+ maxUploadDownloadSpeed: any;
7
+ configEligibleBundle: string[];
8
+ plannedUpgrade: any;
9
+ }>;
10
+ export declare const fetchAddress: (address: any, isValid: boolean) => Promise<any>;
@@ -0,0 +1 @@
1
+ export declare const API_BASE_BASEPOINT: any;