@adyen/adyen-web 5.56.1 → 5.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,6 +10,8 @@ declare class BlikElement extends UIElement {
10
10
  static type: string;
11
11
  formatData(): BlikElementData;
12
12
  get isValid(): boolean;
13
+ get displayName(): any;
14
+ get additionalInfo(): any;
13
15
  /**
14
16
  * NOTE: for future reference:
15
17
  * this.props.onComplete (which is called from this.onComplete) equates to the merchant defined onAdditionalDetails callback
@@ -55,6 +55,10 @@ export declare class UIElement<P extends UIElementProps = any> extends BaseEleme
55
55
  * Get the element's displayable name
56
56
  */
57
57
  get displayName(): string;
58
+ /**
59
+ * Used to display the second line of a payment method item
60
+ */
61
+ get additionalInfo(): string;
58
62
  /**
59
63
  * Get the element accessible name, used in the aria-label of the button that controls selected payment method
60
64
  */
package/package.json CHANGED
@@ -25,7 +25,7 @@
25
25
  "./dist/es/adyen.css": "./dist/es/adyen.css",
26
26
  "./package.json": "./package.json"
27
27
  },
28
- "version": "5.56.1",
28
+ "version": "5.57.0",
29
29
  "license": "MIT",
30
30
  "homepage": "https://docs.adyen.com/checkout",
31
31
  "repository": "github:Adyen/adyen-web",