@sunrise-upc/mobile-prod-card 5.0.1-beta.2 → 5.0.1-beta.4
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
@@ -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;
|