@globalpayments/js 4.1.3 → 4.1.7
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/README.md +1 -1
- package/package.json +1 -1
- package/types/apm/non-card-payments/contracts.d.ts +1 -0
- package/types/internal/built-in-validations/constants.d.ts +2 -0
- package/types/internal/built-in-validations/helpers.d.ts +3 -0
- package/types/internal/lib/bank-selection/available-banks-data.d.ts +3 -0
- package/types/internal/lib/bank-selection/contracts.d.ts +71 -0
- package/types/internal/lib/bank-selection/helpers.d.ts +6 -0
- package/types/internal/lib/enums.d.ts +6 -2
- package/types/internal/lib/order-information/constants.d.ts +1 -0
- package/types/internal/lib/order-information/contracts.d.ts +6 -0
- package/types/internal/lib/styles/bank-selection/common.d.ts +52 -0
- package/types/internal/lib/styles/default.d.ts +98 -8
- package/types/internal/lib/styles/gp-default.d.ts +102 -12
- package/types/internal/lib/styles/order-information/common.d.ts +19 -0
- package/types/internal/lib/styles/payment-methods/common.d.ts +33 -8
- package/types/internal/lib/styles/payment-methods/open-banking.d.ts +33 -8
- package/types/internal/lib/styles/simple.d.ts +65 -0
- package/types/internal/lib/styles/themes/brand-themes/base/base-theme.d.ts +146 -8
- package/types/internal/lib/styles/themes/brand-themes/base/base-token-definition.d.ts +24 -0
- package/types/internal/lib/styles/themes/brand-themes/base/contracts.d.ts +14 -0
- package/types/internal/lib/styles/themes/helpers.d.ts +1 -0
- package/types/internal/lib/translations/cs.d.ts +14 -0
- package/types/internal/lib/translations/de.d.ts +13 -0
- package/types/internal/lib/translations/el.d.ts +13 -0
- package/types/internal/lib/translations/en.d.ts +8 -0
- package/types/internal/lib/translations/es.d.ts +7 -0
- package/types/internal/lib/translations/et.d.ts +108 -0
- package/types/internal/lib/translations/fr.d.ts +13 -0
- package/types/internal/lib/translations/ga.d.ts +108 -0
- package/types/internal/lib/translations/hr.d.ts +13 -0
- package/types/internal/lib/translations/hu.d.ts +13 -0
- package/types/internal/lib/translations/it.d.ts +13 -0
- package/types/internal/lib/translations/ja.d.ts +13 -0
- package/types/internal/lib/translations/lv.d.ts +108 -0
- package/types/internal/lib/translations/mt.d.ts +13 -0
- package/types/internal/lib/translations/nl.d.ts +13 -0
- package/types/internal/lib/translations/pl.d.ts +14 -0
- package/types/internal/lib/translations/pt.d.ts +13 -0
- package/types/internal/lib/translations/ro.d.ts +13 -0
- package/types/internal/lib/translations/ru.d.ts +13 -0
- package/types/internal/lib/translations/sk.d.ts +14 -0
- package/types/internal/lib/translations/sl.d.ts +13 -0
- package/types/internal/lib/translations/sv.d.ts +13 -0
- package/types/internal/lib/translations/tr.d.ts +13 -0
- package/types/internal/lib/translations/uk.d.ts +13 -0
- package/types/internal/lib/translations/vi.d.ts +13 -0
- package/types/internal/lib/translations/zh.d.ts +3 -0
- package/types/lib/version.d.ts +1 -1
- package/types/tools/configure.d.ts +8 -0
- package/types/ui/components/bank-selection/action-add-bank-selection.d.ts +3 -0
- package/types/ui/components/order-information/action-add-order-information.d.ts +2 -0
- package/types/ui/form/index.d.ts +308 -121
- package/types/ui/iframe-field/payment-methods/action-add.d.ts +1 -1
- package/types/apm/qr-code-payments/components/redirect-action-handler.d.ts +0 -1
- package/types/apm/qr-code-payments/constants.d.ts +0 -1
- package/types/apm/qr-code-payments/enums.d.ts +0 -10
- package/types/internal/gateways/gp-api/get-qr-code-payment-methods.d.ts +0 -3
- package/types/internal/lib/styles/apple-pay/default.d.ts +0 -12
- package/types/internal/lib/styles/apple-pay/gp-default.d.ts +0 -12
- package/types/internal/lib/styles/apple-pay/simple.d.ts +0 -12
- package/types/internal/lib/styles/google-pay/default.d.ts +0 -7
- package/types/internal/lib/styles/google-pay/gp-default.d.ts +0 -7
- package/types/internal/lib/styles/google-pay/simple.d.ts +0 -7
- package/types/internal/lib/styles/qr-code-payments/common.d.ts +0 -151
- package/types/ui/iframe-field/action-accumulate-installment-data.d.ts +0 -3
- package/types/ui/iframe-field/action-add-apple-pay.d.ts +0 -2
- package/types/ui/iframe-field/action-add-click-to-pay.d.ts +0 -2
- package/types/ui/iframe-field/action-add-google-pay.d.ts +0 -2
- package/types/ui/iframe-field/action-add-installments.d.ts +0 -3
- package/types/ui/iframe-field/action-add-open-banking.d.ts +0 -2
- package/types/ui/iframe-field/action-add-qr-code-payment-methods.d.ts +0 -3
- package/types/ui/iframe-field/action-card-request-installments.d.ts +0 -6
- package/types/ui/iframe-field/action-qr-code-payment-methods-request-start.d.ts +0 -6
- package/types/ui/iframe-field/action-request-installment-data.d.ts +0 -3
- package/types/ui/iframe-field/open-banking/action-add.d.ts +0 -2
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ This plugin allows you to use online payments (eCommerce) features of a variety
|
|
|
24
24
|
## Usage
|
|
25
25
|
|
|
26
26
|
```html
|
|
27
|
-
<script src="https://js.globalpay.com/4.1.
|
|
27
|
+
<script src="https://js.globalpay.com/4.1.7/globalpayments.js"></script>
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
> Note: Installing via NPM will only provide TypeScript types for type-checking.
|
package/package.json
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { IApmConfiguration } from "../../apm/non-card-payments/contracts";
|
|
1
2
|
export declare const showHostedFieldValidation: (fieldId: string | null, validationMessage: string, target?: string | undefined) => void;
|
|
2
3
|
export declare const hideHostedFieldValidation: (fieldId: string | null, target?: string | undefined) => void;
|
|
3
4
|
export declare const resetValidationRoundCounter: () => void;
|
|
4
5
|
export declare const getValidationRoundCounter: () => number;
|
|
5
6
|
export declare const increaseValidationRoundCounter: () => void;
|
|
6
7
|
export declare const removeValidationRoundCounter: () => void;
|
|
8
|
+
export declare const isOpenBankingAvailable: (countryCode: string | undefined, aquirer: string | undefined) => boolean;
|
|
9
|
+
export declare const isBlikAvailable: (countryCode: string | undefined, currencyCode: string | undefined, options: IApmConfiguration | undefined) => boolean;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
export interface IBankData {
|
|
2
|
+
countryCode: string;
|
|
3
|
+
currencyCode: string;
|
|
4
|
+
availableBanks: IAvailableBankData[];
|
|
5
|
+
allowedAquirers?: string[];
|
|
6
|
+
}
|
|
7
|
+
export interface IAvailableBankData {
|
|
8
|
+
name: string;
|
|
9
|
+
displayName: string;
|
|
10
|
+
imageName: string;
|
|
11
|
+
acquirer: string[];
|
|
12
|
+
}
|
|
13
|
+
export declare enum BankDisplayNames {
|
|
14
|
+
Pkobankpolskisa = "PKO BP",
|
|
15
|
+
Santander = "Santander",
|
|
16
|
+
Ing = "ING Bank \u015Al\u0105ski",
|
|
17
|
+
Bankpekaosa = "PEKAO SA",
|
|
18
|
+
QRPlatba = "QR Platba",
|
|
19
|
+
Slovenská = "Slovensk\u00E1 sporite\u013E\u0148a",
|
|
20
|
+
Mbank = "mBank",
|
|
21
|
+
Alior = "Alior Bank",
|
|
22
|
+
BNP = "BNP Paribas",
|
|
23
|
+
Millenium = "Millenium",
|
|
24
|
+
Credit = "Credit Agricole",
|
|
25
|
+
Citi = "Citi Handlowy",
|
|
26
|
+
Inteligo = "Inteligo",
|
|
27
|
+
Banki = "Banki Sp\u00F3\u0142dzielcze",
|
|
28
|
+
BOŚ = "BO\u015A Bank",
|
|
29
|
+
Nest = "Nest Bank",
|
|
30
|
+
VeloBank = "VeloBank",
|
|
31
|
+
Nowy = "Bank Nowy S.A.",
|
|
32
|
+
Plus = "PLUS BANK",
|
|
33
|
+
Pocztowy = "Bank Pocztowy",
|
|
34
|
+
Česká = "\u010Cesk\u00E1 spo\u0159itelna",
|
|
35
|
+
ČSOB = "\u010CSOB",
|
|
36
|
+
Komerční = "Komer\u010Dn\u00ED banka",
|
|
37
|
+
Raiffesenbank = "Raiffesenbank",
|
|
38
|
+
Fio = "Fio banka",
|
|
39
|
+
MONETA = "MONETA Money Bank",
|
|
40
|
+
AirBank = "AirBank",
|
|
41
|
+
Tatra = "Tatra banka",
|
|
42
|
+
VÚB = "V\u00DAB banka",
|
|
43
|
+
UniCredit = "UniCredit Bank",
|
|
44
|
+
postacz = "\u010Cesk\u00E1 Po\u0161ta",
|
|
45
|
+
unicredit = "UniCredit",
|
|
46
|
+
creditasbanka = "Banka Creditas",
|
|
47
|
+
jtbanka = "J&T Banka",
|
|
48
|
+
bank365 = "365.bank",
|
|
49
|
+
viamo = "Viamo"
|
|
50
|
+
}
|
|
51
|
+
export declare enum CountryCurrencies {
|
|
52
|
+
Poland = "PLN",
|
|
53
|
+
CzechRepublic = "CZK",
|
|
54
|
+
Slovakia = "EUR"
|
|
55
|
+
}
|
|
56
|
+
export declare enum BankCountries {
|
|
57
|
+
Poland = "PL",
|
|
58
|
+
CzechRepublic = "CZ",
|
|
59
|
+
Slovakia = "SK",
|
|
60
|
+
UK = "GB"
|
|
61
|
+
}
|
|
62
|
+
export declare enum BankAquirers {
|
|
63
|
+
Eservice = "eservice",
|
|
64
|
+
Erstecz = "erstecz",
|
|
65
|
+
Eservicecba = "eservicecba",
|
|
66
|
+
Erste = "erste"
|
|
67
|
+
}
|
|
68
|
+
export interface IBankSelectionProps {
|
|
69
|
+
countryCode: string;
|
|
70
|
+
currencyCode: string;
|
|
71
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IAvailableBankData } from "./contracts";
|
|
2
|
+
export declare const isBankSelectionAvailable: (countryCode: string, currencyCode: string) => boolean;
|
|
3
|
+
export declare const getAvailableBanksByCountry: (countryCode: string | undefined) => IAvailableBankData[];
|
|
4
|
+
export declare const getAllAvailableBanks: (countryCode: string | undefined, aquirer: string | undefined) => IAvailableBankData[];
|
|
5
|
+
export declare const getImageUrl: (assetBaseUrl: string, provider: string, countryCode?: string | undefined) => string;
|
|
6
|
+
export declare const getCountryForQRPlatbaBank: (countryCode: string) => boolean;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HostedFieldStyles as HostedFieldStylesAlias } from "../../common/enums";
|
|
2
2
|
import { BrandThemes as BrandThemesAlias } from "./styles/themes/brand-themes/brand-themes";
|
|
3
|
+
import { BankDisplayNames } from "./bank-selection/contracts";
|
|
3
4
|
export declare enum ApiVersion {
|
|
4
5
|
default = "2021-03-22"
|
|
5
6
|
}
|
|
@@ -9,7 +10,8 @@ export declare enum Apm {
|
|
|
9
10
|
GooglePay = "google-pay",
|
|
10
11
|
OpenBankingPayment = "open-banking",
|
|
11
12
|
PayPal = "paypal",
|
|
12
|
-
QRCodePayments = "qr-code-payments"
|
|
13
|
+
QRCodePayments = "qr-code-payments",
|
|
14
|
+
Blik = "blik"
|
|
13
15
|
}
|
|
14
16
|
export declare enum ApmEvents {
|
|
15
17
|
PaymentMethodActionDetail = "apm-action-details",
|
|
@@ -48,7 +50,8 @@ export declare enum ApmProviders {
|
|
|
48
50
|
AlipayHK = "AlipayHK",
|
|
49
51
|
OpenBanking = "OPEN_BANKING",
|
|
50
52
|
PayPal = "PayPal",
|
|
51
|
-
WeChat = "WeChat"
|
|
53
|
+
WeChat = "WeChat",
|
|
54
|
+
Blik = "blik"
|
|
52
55
|
}
|
|
53
56
|
export declare enum QRCodePaymentsWeChatProviderBrands {
|
|
54
57
|
WeChatBrand = "WeChat",
|
|
@@ -57,3 +60,4 @@ export declare enum QRCodePaymentsWeChatProviderBrands {
|
|
|
57
60
|
}
|
|
58
61
|
export declare const HostedFieldStyles: typeof HostedFieldStylesAlias;
|
|
59
62
|
export declare const BrandThemes: typeof BrandThemesAlias;
|
|
63
|
+
export declare const BankNames: typeof BankDisplayNames;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ORDER_INFORMATION_KEY = "order-information";
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare const styles: (_assetBaseUrl: string) => {
|
|
2
|
+
".bank-selection-wrapper": {
|
|
3
|
+
background: string;
|
|
4
|
+
padding: string;
|
|
5
|
+
};
|
|
6
|
+
".bank-selection": {
|
|
7
|
+
display: string;
|
|
8
|
+
"align-items": string;
|
|
9
|
+
"flex-flow": string;
|
|
10
|
+
"margin-bottom": string;
|
|
11
|
+
};
|
|
12
|
+
".bank-selecction-option": {
|
|
13
|
+
width: string;
|
|
14
|
+
height: string;
|
|
15
|
+
cursor: string;
|
|
16
|
+
display: string;
|
|
17
|
+
"align-items": string;
|
|
18
|
+
"justify-content": string;
|
|
19
|
+
"box-shadow": string;
|
|
20
|
+
"margin-right": string;
|
|
21
|
+
"margin-left": string;
|
|
22
|
+
"margin-top": string;
|
|
23
|
+
background: string;
|
|
24
|
+
"border-radius": string;
|
|
25
|
+
"flex-direction": string;
|
|
26
|
+
};
|
|
27
|
+
".bank-selecction-option::before": {
|
|
28
|
+
content: string;
|
|
29
|
+
width: string;
|
|
30
|
+
height: string;
|
|
31
|
+
position: string;
|
|
32
|
+
"margin-left": string;
|
|
33
|
+
};
|
|
34
|
+
".bank-selecction-option:hover": {
|
|
35
|
+
border: string;
|
|
36
|
+
};
|
|
37
|
+
".bank-selecction-option:active": {
|
|
38
|
+
background: string;
|
|
39
|
+
border: string;
|
|
40
|
+
};
|
|
41
|
+
".qr-code-button": {
|
|
42
|
+
background: string;
|
|
43
|
+
};
|
|
44
|
+
".title-text": {
|
|
45
|
+
color: string;
|
|
46
|
+
"font-size": string;
|
|
47
|
+
"font-weight": string;
|
|
48
|
+
"line-height": string;
|
|
49
|
+
"font-family": string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
export default styles;
|
|
@@ -166,6 +166,71 @@ export declare const fieldStyles: (assetBaseUrl: string) => {
|
|
|
166
166
|
};
|
|
167
167
|
};
|
|
168
168
|
export declare const parentStyles: (assetBaseUrl: string) => {
|
|
169
|
+
".bank-selection-wrapper": {
|
|
170
|
+
background: string;
|
|
171
|
+
padding: string;
|
|
172
|
+
};
|
|
173
|
+
".bank-selection": {
|
|
174
|
+
display: string;
|
|
175
|
+
"align-items": string;
|
|
176
|
+
"flex-flow": string;
|
|
177
|
+
"margin-bottom": string;
|
|
178
|
+
};
|
|
179
|
+
".bank-selecction-option": {
|
|
180
|
+
width: string;
|
|
181
|
+
height: string;
|
|
182
|
+
cursor: string;
|
|
183
|
+
display: string;
|
|
184
|
+
"align-items": string;
|
|
185
|
+
"justify-content": string;
|
|
186
|
+
"box-shadow": string;
|
|
187
|
+
"margin-right": string;
|
|
188
|
+
"margin-left": string;
|
|
189
|
+
"margin-top": string;
|
|
190
|
+
background: string;
|
|
191
|
+
"border-radius": string;
|
|
192
|
+
"flex-direction": string;
|
|
193
|
+
};
|
|
194
|
+
".bank-selecction-option::before": {
|
|
195
|
+
content: string;
|
|
196
|
+
width: string;
|
|
197
|
+
height: string;
|
|
198
|
+
position: string;
|
|
199
|
+
"margin-left": string;
|
|
200
|
+
};
|
|
201
|
+
".bank-selecction-option:hover": {
|
|
202
|
+
border: string;
|
|
203
|
+
};
|
|
204
|
+
".bank-selecction-option:active": {
|
|
205
|
+
background: string;
|
|
206
|
+
border: string;
|
|
207
|
+
};
|
|
208
|
+
".qr-code-button": {
|
|
209
|
+
background: string;
|
|
210
|
+
};
|
|
211
|
+
".title-text": {
|
|
212
|
+
color: string;
|
|
213
|
+
"font-size": string;
|
|
214
|
+
"font-weight": string;
|
|
215
|
+
"line-height": string;
|
|
216
|
+
"font-family": string;
|
|
217
|
+
};
|
|
218
|
+
".order-information"?: {
|
|
219
|
+
display: string;
|
|
220
|
+
"flex-direction": string;
|
|
221
|
+
"align-items": string;
|
|
222
|
+
"font-family": string;
|
|
223
|
+
};
|
|
224
|
+
".title-field"?: {
|
|
225
|
+
"font-weight": string;
|
|
226
|
+
"line-height": string;
|
|
227
|
+
"font-size": string;
|
|
228
|
+
};
|
|
229
|
+
".order-information-field"?: {
|
|
230
|
+
"line-height": string;
|
|
231
|
+
"font-size": string;
|
|
232
|
+
"font-weight": string;
|
|
233
|
+
};
|
|
169
234
|
".secure-payment-form .credit-card-qr-code-payments"?: {
|
|
170
235
|
"font-family": string;
|
|
171
236
|
};
|
|
@@ -307,8 +372,12 @@ export declare const parentStyles: (assetBaseUrl: string) => {
|
|
|
307
372
|
"flex-direction": string;
|
|
308
373
|
"align-items": string;
|
|
309
374
|
};
|
|
375
|
+
".secure-payment-form .blik-button-wrapper": {
|
|
376
|
+
display: string;
|
|
377
|
+
"flex-direction": string;
|
|
378
|
+
"align-items": string;
|
|
379
|
+
};
|
|
310
380
|
".secure-payment-form .open-banking-button::before": {
|
|
311
|
-
content: string;
|
|
312
381
|
width: string;
|
|
313
382
|
height: string;
|
|
314
383
|
position: string;
|
|
@@ -316,8 +385,8 @@ export declare const parentStyles: (assetBaseUrl: string) => {
|
|
|
316
385
|
right: string;
|
|
317
386
|
};
|
|
318
387
|
".secure-payment-form .open-banking-button": {
|
|
319
|
-
position: string;
|
|
320
388
|
background: string;
|
|
389
|
+
position: string;
|
|
321
390
|
color: string;
|
|
322
391
|
height: string;
|
|
323
392
|
width: string;
|
|
@@ -325,20 +394,41 @@ export declare const parentStyles: (assetBaseUrl: string) => {
|
|
|
325
394
|
border: string;
|
|
326
395
|
margin: string;
|
|
327
396
|
cursor: string;
|
|
328
|
-
"-webkit-box-shadow": string;
|
|
329
|
-
"-moz-box-shadow": string;
|
|
330
|
-
"box-shadow": string;
|
|
331
397
|
};
|
|
332
398
|
".secure-payment-form .open-banking-button:hover": {
|
|
333
399
|
"border-color": string;
|
|
334
|
-
"-
|
|
335
|
-
"-moz-box-shadow": string;
|
|
336
|
-
"box-shadow": string;
|
|
400
|
+
"background-color": string;
|
|
337
401
|
};
|
|
338
402
|
".secure-payment-form .open-banking-button:focus": {
|
|
339
403
|
outline: string;
|
|
340
404
|
"outline-offset": string;
|
|
341
405
|
};
|
|
406
|
+
".secure-payment-form .blik-button": {
|
|
407
|
+
background: string;
|
|
408
|
+
position: string;
|
|
409
|
+
color: string;
|
|
410
|
+
height: string;
|
|
411
|
+
width: string;
|
|
412
|
+
"border-radius": string;
|
|
413
|
+
border: string;
|
|
414
|
+
margin: string;
|
|
415
|
+
cursor: string;
|
|
416
|
+
};
|
|
417
|
+
".secure-payment-form .blik-button:hover": {
|
|
418
|
+
"border-color": string;
|
|
419
|
+
"background-color": string;
|
|
420
|
+
};
|
|
421
|
+
".secure-payment-form .blik-button:focus": {
|
|
422
|
+
outline: string;
|
|
423
|
+
"outline-offset": string;
|
|
424
|
+
};
|
|
425
|
+
".secure-payment-form .blik-button::before": {
|
|
426
|
+
width: string;
|
|
427
|
+
height: string;
|
|
428
|
+
position: string;
|
|
429
|
+
top: string;
|
|
430
|
+
right: string;
|
|
431
|
+
};
|
|
342
432
|
".secure-payment-form .link-button": {
|
|
343
433
|
display: string;
|
|
344
434
|
"flex-direction": string;
|
|
@@ -132,6 +132,71 @@ export declare const fieldStyles: (assetBaseUrl: string) => {
|
|
|
132
132
|
};
|
|
133
133
|
};
|
|
134
134
|
export declare const parentStyles: (assetBaseUrl: string) => {
|
|
135
|
+
".bank-selection-wrapper": {
|
|
136
|
+
background: string;
|
|
137
|
+
padding: string;
|
|
138
|
+
};
|
|
139
|
+
".bank-selection": {
|
|
140
|
+
display: string;
|
|
141
|
+
"align-items": string;
|
|
142
|
+
"flex-flow": string;
|
|
143
|
+
"margin-bottom": string;
|
|
144
|
+
};
|
|
145
|
+
".bank-selecction-option": {
|
|
146
|
+
width: string;
|
|
147
|
+
height: string;
|
|
148
|
+
cursor: string;
|
|
149
|
+
display: string;
|
|
150
|
+
"align-items": string;
|
|
151
|
+
"justify-content": string;
|
|
152
|
+
"box-shadow": string;
|
|
153
|
+
"margin-right": string;
|
|
154
|
+
"margin-left": string;
|
|
155
|
+
"margin-top": string;
|
|
156
|
+
background: string;
|
|
157
|
+
"border-radius": string;
|
|
158
|
+
"flex-direction": string;
|
|
159
|
+
};
|
|
160
|
+
".bank-selecction-option::before": {
|
|
161
|
+
content: string;
|
|
162
|
+
width: string;
|
|
163
|
+
height: string;
|
|
164
|
+
position: string;
|
|
165
|
+
"margin-left": string;
|
|
166
|
+
};
|
|
167
|
+
".bank-selecction-option:hover": {
|
|
168
|
+
border: string;
|
|
169
|
+
};
|
|
170
|
+
".bank-selecction-option:active": {
|
|
171
|
+
background: string;
|
|
172
|
+
border: string;
|
|
173
|
+
};
|
|
174
|
+
".qr-code-button": {
|
|
175
|
+
background: string;
|
|
176
|
+
};
|
|
177
|
+
".title-text": {
|
|
178
|
+
color: string;
|
|
179
|
+
"font-size": string;
|
|
180
|
+
"font-weight": string;
|
|
181
|
+
"line-height": string;
|
|
182
|
+
"font-family": string;
|
|
183
|
+
};
|
|
184
|
+
".order-information"?: {
|
|
185
|
+
display: string;
|
|
186
|
+
"flex-direction": string;
|
|
187
|
+
"align-items": string;
|
|
188
|
+
"font-family": string;
|
|
189
|
+
};
|
|
190
|
+
".title-field"?: {
|
|
191
|
+
"font-weight": string;
|
|
192
|
+
"line-height": string;
|
|
193
|
+
"font-size": string;
|
|
194
|
+
};
|
|
195
|
+
".order-information-field"?: {
|
|
196
|
+
"line-height": string;
|
|
197
|
+
"font-size": string;
|
|
198
|
+
"font-weight": string;
|
|
199
|
+
};
|
|
135
200
|
".secure-payment-form .credit-card-qr-code-payments"?: {
|
|
136
201
|
"font-family": string;
|
|
137
202
|
};
|
|
@@ -273,8 +338,12 @@ export declare const parentStyles: (assetBaseUrl: string) => {
|
|
|
273
338
|
"flex-direction": string;
|
|
274
339
|
"align-items": string;
|
|
275
340
|
};
|
|
341
|
+
".secure-payment-form .blik-button-wrapper": {
|
|
342
|
+
display: string;
|
|
343
|
+
"flex-direction": string;
|
|
344
|
+
"align-items": string;
|
|
345
|
+
};
|
|
276
346
|
".secure-payment-form .open-banking-button::before": {
|
|
277
|
-
content: string;
|
|
278
347
|
width: string;
|
|
279
348
|
height: string;
|
|
280
349
|
position: string;
|
|
@@ -282,8 +351,8 @@ export declare const parentStyles: (assetBaseUrl: string) => {
|
|
|
282
351
|
right: string;
|
|
283
352
|
};
|
|
284
353
|
".secure-payment-form .open-banking-button": {
|
|
285
|
-
position: string;
|
|
286
354
|
background: string;
|
|
355
|
+
position: string;
|
|
287
356
|
color: string;
|
|
288
357
|
height: string;
|
|
289
358
|
width: string;
|
|
@@ -291,20 +360,41 @@ export declare const parentStyles: (assetBaseUrl: string) => {
|
|
|
291
360
|
border: string;
|
|
292
361
|
margin: string;
|
|
293
362
|
cursor: string;
|
|
294
|
-
"-webkit-box-shadow": string;
|
|
295
|
-
"-moz-box-shadow": string;
|
|
296
|
-
"box-shadow": string;
|
|
297
363
|
};
|
|
298
364
|
".secure-payment-form .open-banking-button:hover": {
|
|
299
365
|
"border-color": string;
|
|
300
|
-
"-
|
|
301
|
-
"-moz-box-shadow": string;
|
|
302
|
-
"box-shadow": string;
|
|
366
|
+
"background-color": string;
|
|
303
367
|
};
|
|
304
368
|
".secure-payment-form .open-banking-button:focus": {
|
|
305
369
|
outline: string;
|
|
306
370
|
"outline-offset": string;
|
|
307
371
|
};
|
|
372
|
+
".secure-payment-form .blik-button": {
|
|
373
|
+
background: string;
|
|
374
|
+
position: string;
|
|
375
|
+
color: string;
|
|
376
|
+
height: string;
|
|
377
|
+
width: string;
|
|
378
|
+
"border-radius": string;
|
|
379
|
+
border: string;
|
|
380
|
+
margin: string;
|
|
381
|
+
cursor: string;
|
|
382
|
+
};
|
|
383
|
+
".secure-payment-form .blik-button:hover": {
|
|
384
|
+
"border-color": string;
|
|
385
|
+
"background-color": string;
|
|
386
|
+
};
|
|
387
|
+
".secure-payment-form .blik-button:focus": {
|
|
388
|
+
outline: string;
|
|
389
|
+
"outline-offset": string;
|
|
390
|
+
};
|
|
391
|
+
".secure-payment-form .blik-button::before": {
|
|
392
|
+
width: string;
|
|
393
|
+
height: string;
|
|
394
|
+
position: string;
|
|
395
|
+
top: string;
|
|
396
|
+
right: string;
|
|
397
|
+
};
|
|
308
398
|
".secure-payment-form .link-button": {
|
|
309
399
|
display: string;
|
|
310
400
|
"flex-direction": string;
|
|
@@ -1270,6 +1360,10 @@ export declare const parentStyles: (assetBaseUrl: string) => {
|
|
|
1270
1360
|
"border-right": string;
|
|
1271
1361
|
"border-bottom": string;
|
|
1272
1362
|
};
|
|
1363
|
+
"@font-face": {
|
|
1364
|
+
"font-family": string;
|
|
1365
|
+
src: string;
|
|
1366
|
+
};
|
|
1273
1367
|
".secure-payment-form": {
|
|
1274
1368
|
display: string;
|
|
1275
1369
|
"-ms-flex-wrap": string;
|
|
@@ -1385,10 +1479,6 @@ export declare const parentStyles: (assetBaseUrl: string) => {
|
|
|
1385
1479
|
".secure-payment-form .hidden": {
|
|
1386
1480
|
display: string;
|
|
1387
1481
|
};
|
|
1388
|
-
"@font-face": {
|
|
1389
|
-
"font-family": string;
|
|
1390
|
-
src: string;
|
|
1391
|
-
};
|
|
1392
1482
|
"@media(min-width: 800px)": {
|
|
1393
1483
|
".secure-payment-form .credit-card-card-expiration": {
|
|
1394
1484
|
flex: string;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare const styles: (_assetBaseUrl: string) => {
|
|
2
|
+
".order-information": {
|
|
3
|
+
display: string;
|
|
4
|
+
"flex-direction": string;
|
|
5
|
+
"align-items": string;
|
|
6
|
+
"font-family": string;
|
|
7
|
+
};
|
|
8
|
+
".title-field": {
|
|
9
|
+
"font-weight": string;
|
|
10
|
+
"line-height": string;
|
|
11
|
+
"font-size": string;
|
|
12
|
+
};
|
|
13
|
+
".order-information-field": {
|
|
14
|
+
"line-height": string;
|
|
15
|
+
"font-size": string;
|
|
16
|
+
"font-weight": string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export default styles;
|
|
@@ -140,8 +140,12 @@ declare const _default: (assetBaseUrl: string) => {
|
|
|
140
140
|
"flex-direction": string;
|
|
141
141
|
"align-items": string;
|
|
142
142
|
};
|
|
143
|
+
".secure-payment-form .blik-button-wrapper": {
|
|
144
|
+
display: string;
|
|
145
|
+
"flex-direction": string;
|
|
146
|
+
"align-items": string;
|
|
147
|
+
};
|
|
143
148
|
".secure-payment-form .open-banking-button::before": {
|
|
144
|
-
content: string;
|
|
145
149
|
width: string;
|
|
146
150
|
height: string;
|
|
147
151
|
position: string;
|
|
@@ -149,8 +153,8 @@ declare const _default: (assetBaseUrl: string) => {
|
|
|
149
153
|
right: string;
|
|
150
154
|
};
|
|
151
155
|
".secure-payment-form .open-banking-button": {
|
|
152
|
-
position: string;
|
|
153
156
|
background: string;
|
|
157
|
+
position: string;
|
|
154
158
|
color: string;
|
|
155
159
|
height: string;
|
|
156
160
|
width: string;
|
|
@@ -158,20 +162,41 @@ declare const _default: (assetBaseUrl: string) => {
|
|
|
158
162
|
border: string;
|
|
159
163
|
margin: string;
|
|
160
164
|
cursor: string;
|
|
161
|
-
"-webkit-box-shadow": string;
|
|
162
|
-
"-moz-box-shadow": string;
|
|
163
|
-
"box-shadow": string;
|
|
164
165
|
};
|
|
165
166
|
".secure-payment-form .open-banking-button:hover": {
|
|
166
167
|
"border-color": string;
|
|
167
|
-
"-
|
|
168
|
-
"-moz-box-shadow": string;
|
|
169
|
-
"box-shadow": string;
|
|
168
|
+
"background-color": string;
|
|
170
169
|
};
|
|
171
170
|
".secure-payment-form .open-banking-button:focus": {
|
|
172
171
|
outline: string;
|
|
173
172
|
"outline-offset": string;
|
|
174
173
|
};
|
|
174
|
+
".secure-payment-form .blik-button": {
|
|
175
|
+
background: string;
|
|
176
|
+
position: string;
|
|
177
|
+
color: string;
|
|
178
|
+
height: string;
|
|
179
|
+
width: string;
|
|
180
|
+
"border-radius": string;
|
|
181
|
+
border: string;
|
|
182
|
+
margin: string;
|
|
183
|
+
cursor: string;
|
|
184
|
+
};
|
|
185
|
+
".secure-payment-form .blik-button:hover": {
|
|
186
|
+
"border-color": string;
|
|
187
|
+
"background-color": string;
|
|
188
|
+
};
|
|
189
|
+
".secure-payment-form .blik-button:focus": {
|
|
190
|
+
outline: string;
|
|
191
|
+
"outline-offset": string;
|
|
192
|
+
};
|
|
193
|
+
".secure-payment-form .blik-button::before": {
|
|
194
|
+
width: string;
|
|
195
|
+
height: string;
|
|
196
|
+
position: string;
|
|
197
|
+
top: string;
|
|
198
|
+
right: string;
|
|
199
|
+
};
|
|
175
200
|
".secure-payment-form .link-button": {
|
|
176
201
|
display: string;
|
|
177
202
|
"flex-direction": string;
|
|
@@ -4,8 +4,12 @@ declare const styles: (assetBaseUrl: string) => {
|
|
|
4
4
|
"flex-direction": string;
|
|
5
5
|
"align-items": string;
|
|
6
6
|
};
|
|
7
|
+
".secure-payment-form .blik-button-wrapper": {
|
|
8
|
+
display: string;
|
|
9
|
+
"flex-direction": string;
|
|
10
|
+
"align-items": string;
|
|
11
|
+
};
|
|
7
12
|
".secure-payment-form .open-banking-button::before": {
|
|
8
|
-
content: string;
|
|
9
13
|
width: string;
|
|
10
14
|
height: string;
|
|
11
15
|
position: string;
|
|
@@ -13,8 +17,8 @@ declare const styles: (assetBaseUrl: string) => {
|
|
|
13
17
|
right: string;
|
|
14
18
|
};
|
|
15
19
|
".secure-payment-form .open-banking-button": {
|
|
16
|
-
position: string;
|
|
17
20
|
background: string;
|
|
21
|
+
position: string;
|
|
18
22
|
color: string;
|
|
19
23
|
height: string;
|
|
20
24
|
width: string;
|
|
@@ -22,19 +26,40 @@ declare const styles: (assetBaseUrl: string) => {
|
|
|
22
26
|
border: string;
|
|
23
27
|
margin: string;
|
|
24
28
|
cursor: string;
|
|
25
|
-
"-webkit-box-shadow": string;
|
|
26
|
-
"-moz-box-shadow": string;
|
|
27
|
-
"box-shadow": string;
|
|
28
29
|
};
|
|
29
30
|
".secure-payment-form .open-banking-button:hover": {
|
|
30
31
|
"border-color": string;
|
|
31
|
-
"-
|
|
32
|
-
"-moz-box-shadow": string;
|
|
33
|
-
"box-shadow": string;
|
|
32
|
+
"background-color": string;
|
|
34
33
|
};
|
|
35
34
|
".secure-payment-form .open-banking-button:focus": {
|
|
36
35
|
outline: string;
|
|
37
36
|
"outline-offset": string;
|
|
38
37
|
};
|
|
38
|
+
".secure-payment-form .blik-button": {
|
|
39
|
+
background: string;
|
|
40
|
+
position: string;
|
|
41
|
+
color: string;
|
|
42
|
+
height: string;
|
|
43
|
+
width: string;
|
|
44
|
+
"border-radius": string;
|
|
45
|
+
border: string;
|
|
46
|
+
margin: string;
|
|
47
|
+
cursor: string;
|
|
48
|
+
};
|
|
49
|
+
".secure-payment-form .blik-button:hover": {
|
|
50
|
+
"border-color": string;
|
|
51
|
+
"background-color": string;
|
|
52
|
+
};
|
|
53
|
+
".secure-payment-form .blik-button:focus": {
|
|
54
|
+
outline: string;
|
|
55
|
+
"outline-offset": string;
|
|
56
|
+
};
|
|
57
|
+
".secure-payment-form .blik-button::before": {
|
|
58
|
+
width: string;
|
|
59
|
+
height: string;
|
|
60
|
+
position: string;
|
|
61
|
+
top: string;
|
|
62
|
+
right: string;
|
|
63
|
+
};
|
|
39
64
|
};
|
|
40
65
|
export default styles;
|