@sunrise-upc/mobile-prod-card 4.7.3 → 4.7.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/FalconButtonV2/FalconButtonV2.d.ts +1 -1
- package/dist/cjs/components/UltimateBundleLinetable/checkoutRedirectionPopup/checkoutRedirectionPopup.d.ts +2 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/services/LineTableBasicPropConfig.d.ts +2 -0
- package/dist/cjs/utils/utils.d.ts +1 -0
- package/dist/esm/components/FalconButtonV2/FalconButtonV2.d.ts +1 -1
- package/dist/esm/components/UltimateBundleLinetable/checkoutRedirectionPopup/checkoutRedirectionPopup.d.ts +2 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/services/LineTableBasicPropConfig.d.ts +2 -0
- package/dist/esm/utils/utils.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
@@ -16,12 +16,14 @@ export declare class LineTableBasicPropConfig {
|
|
16
16
|
}
|
17
17
|
export interface AssetPathPropConfigSchema {
|
18
18
|
assetPath: string | '';
|
19
|
+
basicConfigUrl?: string | '';
|
19
20
|
}
|
20
21
|
export declare class AssetPathPropConfig {
|
21
22
|
private static instance;
|
22
23
|
config: AssetPathPropConfigSchema;
|
23
24
|
private constructor();
|
24
25
|
getAssetPath: () => string;
|
26
|
+
getBasicConfigUrl: () => string;
|
25
27
|
static getInstance: () => AssetPathPropConfig;
|
26
28
|
static create: (path_config: AssetPathPropConfigSchema) => void;
|
27
29
|
}
|
@@ -14,3 +14,4 @@ export declare const replacePlaceholder: (source: string, params: any) => string
|
|
14
14
|
export declare const isModemPresent: () => boolean;
|
15
15
|
export declare const iconHandler: (type: string) => string;
|
16
16
|
export declare const checkLinkWithLang: (url: string) => string | undefined;
|
17
|
+
export declare const getSBAssetUrl: (wafIdentifier: any, image?: string) => string;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
declare const FalconButtonV2: ({ content, className, ...restProps }: any) => JSX.Element;
|
2
|
+
declare const FalconButtonV2: ({ content, className, icon, iconClass, isLoading, wafIdentifier, ...restProps }: any) => JSX.Element;
|
3
3
|
export default FalconButtonV2;
|
@@ -2,10 +2,11 @@
|
|
2
2
|
interface LoginPopupSchema {
|
3
3
|
content: any;
|
4
4
|
metadata: any;
|
5
|
+
wafIdentifier: any;
|
5
6
|
togglePopup?: any;
|
6
7
|
isOpen?: any;
|
7
8
|
validation?: any;
|
8
9
|
onLoginSuccessRedirection?: any;
|
9
10
|
}
|
10
|
-
declare const checkoutRedirectionPopup: ({ content, metadata, togglePopup, isOpen, validation, onLoginSuccessRedirection }: LoginPopupSchema) => JSX.Element;
|
11
|
+
declare const checkoutRedirectionPopup: ({ content, metadata, wafIdentifier, togglePopup, isOpen, validation, onLoginSuccessRedirection }: LoginPopupSchema) => JSX.Element;
|
11
12
|
export default checkoutRedirectionPopup;
|