@sunrise-upc/mobile-prod-card 5.0.1-beta.3 → 5.0.1-beta.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -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;