@adyen/adyen-web 5.69.1 → 5.71.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.
- package/dist/adyen.css +2 -1
- package/dist/adyen.css.map +1 -1
- package/dist/adyen.js +1 -1
- package/dist/adyen.js.map +1 -1
- package/dist/cjs/adyen.css +2 -1
- package/dist/cjs/adyen.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/es/adyen.css +2 -1
- package/dist/es/adyen.css.map +1 -1
- package/dist/es/ar.js +1 -1
- package/dist/es/cs-CZ.js +1 -1
- package/dist/es/da-DK.js +1 -1
- package/dist/es/de-DE.js +1 -1
- package/dist/es/el-GR.js +1 -1
- package/dist/es/es-ES.js +1 -1
- package/dist/es/fi-FI.js +1 -1
- package/dist/es/fr-FR.js +1 -1
- package/dist/es/hr-HR.js +1 -1
- package/dist/es/hu-HU.js +1 -1
- package/dist/es/index.js +1 -1
- package/dist/es/it-IT.js +1 -1
- package/dist/es/ja-JP.js +1 -1
- package/dist/es/ko-KR.js +1 -1
- package/dist/es/nl-NL.js +1 -1
- package/dist/es/no-NO.js +1 -1
- package/dist/es/pl-PL.js +1 -1
- package/dist/es/pt-BR.js +1 -1
- package/dist/es/pt-PT.js +1 -1
- package/dist/es/ro-RO.js +1 -1
- package/dist/es/ru-RU.js +1 -1
- package/dist/es/sk-SK.js +1 -1
- package/dist/es/sl-SI.js +1 -1
- package/dist/es/sv-SE.js +1 -1
- package/dist/es/zh-CN.js +1 -1
- package/dist/es/zh-TW.js +1 -1
- package/dist/es.modern/adyen.css +2 -1
- package/dist/es.modern/adyen.css.map +1 -1
- package/dist/es.modern/ar.js +1 -1
- package/dist/es.modern/cs-CZ.js +1 -1
- package/dist/es.modern/da-DK.js +1 -1
- package/dist/es.modern/de-DE.js +1 -1
- package/dist/es.modern/el-GR.js +1 -1
- package/dist/es.modern/es-ES.js +1 -1
- package/dist/es.modern/fi-FI.js +1 -1
- package/dist/es.modern/fr-FR.js +1 -1
- package/dist/es.modern/hr-HR.js +1 -1
- package/dist/es.modern/hu-HU.js +1 -1
- package/dist/es.modern/index.js +1 -1
- package/dist/es.modern/it-IT.js +1 -1
- package/dist/es.modern/ja-JP.js +1 -1
- package/dist/es.modern/ko-KR.js +1 -1
- package/dist/es.modern/nl-NL.js +1 -1
- package/dist/es.modern/no-NO.js +1 -1
- package/dist/es.modern/pl-PL.js +1 -1
- package/dist/es.modern/pt-BR.js +1 -1
- package/dist/es.modern/pt-PT.js +1 -1
- package/dist/es.modern/ro-RO.js +1 -1
- package/dist/es.modern/ru-RU.js +1 -1
- package/dist/es.modern/sk-SK.js +1 -1
- package/dist/es.modern/sl-SI.js +1 -1
- package/dist/es.modern/sv-SE.js +1 -1
- package/dist/es.modern/zh-CN.js +1 -1
- package/dist/es.modern/zh-TW.js +1 -1
- package/dist/types/components/Ach/components/AchInput/types.d.ts +1 -6
- package/dist/types/components/Dropin/components/PaymentMethod/PaymentMethodBrands/CompactView.d.ts +3 -1
- package/dist/types/components/Dropin/components/PaymentMethod/PaymentMethodBrands/PaymentMethodBrands.d.ts +3 -1
- package/dist/types/components/PayByBankUS/PayByBankUS.d.ts +26 -0
- package/dist/types/components/PayByBankUS/index.d.ts +1 -0
- package/dist/types/components/index.d.ts +2 -0
- package/dist/types/language/config.d.ts +5 -0
- package/dist/types/language/locales/index.d.ts +260 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './PayByBankUS';
|
|
@@ -63,6 +63,7 @@ import Trustly from './Trustly';
|
|
|
63
63
|
import PayMe from './PayMe';
|
|
64
64
|
import OnlineBankingFI from './OnlineBankingFI';
|
|
65
65
|
import Riverty from './Riverty';
|
|
66
|
+
import PayByBankUS from './PayByBankUS';
|
|
66
67
|
/**
|
|
67
68
|
* Maps each component with a Component element.
|
|
68
69
|
*/
|
|
@@ -183,6 +184,7 @@ declare const componentsMap: {
|
|
|
183
184
|
twint: typeof Twint;
|
|
184
185
|
vipps: typeof Vipps;
|
|
185
186
|
trustly: typeof Trustly;
|
|
187
|
+
paybybank_AIS_DD: typeof PayByBankUS;
|
|
186
188
|
/** Redirect */
|
|
187
189
|
/** Klarna */
|
|
188
190
|
klarna: typeof Klarna;
|
|
@@ -156,6 +156,8 @@ export declare const defaultTranslation: {
|
|
|
156
156
|
"ach.accountLocationField.title": string;
|
|
157
157
|
"ach.accountLocationField.invalid": string;
|
|
158
158
|
"ach.savedBankAccount": string;
|
|
159
|
+
"ach.savings": string;
|
|
160
|
+
"ach.checking": string;
|
|
159
161
|
"select.state": string;
|
|
160
162
|
"select.stateOrProvince": string;
|
|
161
163
|
"select.provinceOrTerritory": string;
|
|
@@ -324,4 +326,7 @@ export declare const defaultTranslation: {
|
|
|
324
326
|
"payme.timeToPay": string;
|
|
325
327
|
"payme.instructions.steps": string;
|
|
326
328
|
"payme.instructions.footnote": string;
|
|
329
|
+
"payByBankAISDD.disclaimer.header": string;
|
|
330
|
+
"payByBankAISDD.disclaimer.body": string;
|
|
331
|
+
"paymentMethodBrand.other": string;
|
|
327
332
|
};
|