@paypal/checkout-components 5.0.256 → 5.0.258
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 +8 -0
- package/__sdk__.js +72 -76
- package/dist/button.js +1 -1
- package/globals.js +28 -30
- package/package.json +6 -4
- package/src/constants/button.js +37 -36
- package/src/constants/class.js +32 -30
- package/src/constants/index.js +3 -3
- package/src/constants/misc.js +14 -12
- package/src/declarations.js +19 -19
- package/src/funding/applepay/config.jsx +51 -50
- package/src/funding/applepay/index.js +1 -1
- package/src/funding/applepay/style.scoped.scss +1 -1
- package/src/funding/applepay/template.jsx +16 -11
- package/src/funding/bancontact/config.jsx +48 -37
- package/src/funding/bancontact/index.js +1 -2
- package/src/funding/blik/config.jsx +48 -37
- package/src/funding/blik/index.js +1 -2
- package/src/funding/boleto/config.jsx +50 -39
- package/src/funding/boleto/index.js +1 -2
- package/src/funding/card/amex/config.js +9 -8
- package/src/funding/card/amex/index.js +1 -2
- package/src/funding/card/config.jsx +246 -177
- package/src/funding/card/discover/config.js +9 -7
- package/src/funding/card/discover/index.js +1 -2
- package/src/funding/card/elo/config.js +6 -7
- package/src/funding/card/elo/index.js +1 -2
- package/src/funding/card/hiper/config.js +9 -7
- package/src/funding/card/hiper/index.js +1 -2
- package/src/funding/card/index.js +1 -1
- package/src/funding/card/jcb/config.js +6 -7
- package/src/funding/card/jcb/index.js +1 -2
- package/src/funding/card/mastercard/config.js +9 -7
- package/src/funding/card/mastercard/index.js +1 -2
- package/src/funding/card/visa/config.js +9 -7
- package/src/funding/card/visa/index.js +1 -2
- package/src/funding/common.jsx +242 -216
- package/src/funding/config.js +212 -65
- package/src/funding/content.jsx +1946 -337
- package/src/funding/credit/config.jsx +74 -57
- package/src/funding/credit/index.js +1 -2
- package/src/funding/eps/config.jsx +45 -37
- package/src/funding/eps/index.js +1 -2
- package/src/funding/funding.js +193 -100
- package/src/funding/giropay/config.jsx +48 -38
- package/src/funding/giropay/index.js +1 -2
- package/src/funding/ideal/config.jsx +48 -37
- package/src/funding/ideal/index.js +1 -2
- package/src/funding/index.js +2 -2
- package/src/funding/itau/config.jsx +41 -41
- package/src/funding/itau/index.js +1 -1
- package/src/funding/maxima/config.jsx +25 -19
- package/src/funding/maxima/index.js +1 -2
- package/src/funding/mercadopago/config.jsx +48 -37
- package/src/funding/mercadopago/index.js +1 -2
- package/src/funding/multibanco/config.jsx +50 -39
- package/src/funding/multibanco/index.js +1 -2
- package/src/funding/mybank/config.jsx +48 -37
- package/src/funding/mybank/index.js +1 -2
- package/src/funding/oxxo/config.jsx +50 -39
- package/src/funding/oxxo/index.js +1 -2
- package/src/funding/p24/config.jsx +45 -37
- package/src/funding/p24/index.js +1 -2
- package/src/funding/paidy/config.jsx +50 -39
- package/src/funding/paidy/index.js +1 -1
- package/src/funding/paylater/config.jsx +118 -111
- package/src/funding/paylater/index.js +1 -2
- package/src/funding/paypal/config.jsx +44 -46
- package/src/funding/paypal/index.js +1 -2
- package/src/funding/paypal/style.scoped.scss +80 -74
- package/src/funding/paypal/template.jsx +450 -354
- package/src/funding/payu/config.jsx +50 -39
- package/src/funding/payu/index.js +1 -1
- package/src/funding/satispay/config.jsx +50 -39
- package/src/funding/satispay/index.js +1 -1
- package/src/funding/sepa/config.jsx +19 -13
- package/src/funding/sepa/index.js +1 -2
- package/src/funding/sofort/config.jsx +48 -37
- package/src/funding/sofort/index.js +1 -2
- package/src/funding/trustly/config.jsx +50 -39
- package/src/funding/trustly/index.js +1 -2
- package/src/funding/venmo/config.jsx +80 -75
- package/src/funding/venmo/index.js +1 -2
- package/src/funding/venmo/style.scoped.scss +30 -32
- package/src/funding/venmo/template.jsx +56 -57
- package/src/funding/verkkopankki/config.jsx +50 -39
- package/src/funding/verkkopankki/index.js +1 -1
- package/src/funding/wechatpay/config.jsx +48 -37
- package/src/funding/wechatpay/index.js +1 -2
- package/src/funding/zimpler/config.jsx +19 -13
- package/src/funding/zimpler/index.js +1 -2
- package/src/interface/button.js +60 -44
- package/src/interface/card-fields.js +11 -8
- package/src/interface/fields.js +7 -4
- package/src/interface/marks.js +4 -4
- package/src/interface/payment-fields.js +7 -4
- package/src/interface/wallet.js +4 -4
- package/src/lib/errors.js +7 -7
- package/src/lib/index.js +5 -5
- package/src/lib/isRTLLanguage.js +3 -3
- package/src/lib/perceived-latency-instrumentation.js +54 -36
- package/src/lib/security.js +21 -17
- package/src/lib/session.js +39 -35
- package/src/marks/component.jsx +114 -65
- package/src/marks/index.js +1 -2
- package/src/marks/template.jsx +79 -65
- package/src/types.js +48 -48
- package/src/ui/buttons/button.jsx +311 -249
- package/src/ui/buttons/buttonDesigns/control.jsx +3 -5
- package/src/ui/buttons/buttonDesigns/divideLogoAnimation.jsx +127 -99
- package/src/ui/buttons/buttonDesigns/index.js +78 -75
- package/src/ui/buttons/buttonDesigns/inlineLogoTextDesign.jsx +102 -82
- package/src/ui/buttons/buttonDesigns/script.jsx +24 -18
- package/src/ui/buttons/buttonDesigns/types.js +6 -7
- package/src/ui/buttons/buttons.jsx +318 -212
- package/src/ui/buttons/config.js +62 -59
- package/src/ui/buttons/content.jsx +304 -119
- package/src/ui/buttons/index.js +1 -1
- package/src/ui/buttons/menu-button/index.js +1 -1
- package/src/ui/buttons/menu-button/menu-button.jsx +29 -22
- package/src/ui/buttons/menu-button/menu-button.scoped.scss +16 -17
- package/src/ui/buttons/poweredBy.jsx +23 -23
- package/src/ui/buttons/props.js +680 -529
- package/src/ui/buttons/script.jsx +182 -160
- package/src/ui/buttons/spinner.jsx +4 -6
- package/src/ui/buttons/style.jsx +15 -14
- package/src/ui/buttons/styles/base.js +24 -16
- package/src/ui/buttons/styles/button.js +24 -22
- package/src/ui/buttons/styles/color.js +118 -118
- package/src/ui/buttons/styles/custom.js +30 -24
- package/src/ui/buttons/styles/index.js +1 -1
- package/src/ui/buttons/styles/labels.js +17 -13
- package/src/ui/buttons/styles/page.js +3 -3
- package/src/ui/buttons/styles/responsive.js +226 -118
- package/src/ui/buttons/tagline.jsx +53 -54
- package/src/ui/chevron.jsx +27 -16
- package/src/ui/index.js +3 -3
- package/src/ui/loading.jsx +25 -18
- package/src/ui/text/index.js +1 -1
- package/src/ui/text/style.scoped.scss +25 -26
- package/src/ui/text/text.jsx +42 -20
- package/src/ui/tracking.jsx +18 -11
- package/src/zoid/buttons/component.jsx +836 -684
- package/src/zoid/buttons/container.jsx +140 -107
- package/src/zoid/buttons/index.js +1 -1
- package/src/zoid/buttons/prerender.jsx +84 -64
- package/src/zoid/buttons/util.js +355 -254
- package/src/zoid/card-fields/component.jsx +581 -549
- package/src/zoid/card-fields/index.js +1 -1
- package/src/zoid/card-fields/prerender.jsx +20 -17
- package/src/zoid/card-form/component.js +155 -141
- package/src/zoid/card-form/index.js +1 -1
- package/src/zoid/checkout/component.jsx +314 -282
- package/src/zoid/checkout/config.js +2 -2
- package/src/zoid/checkout/content.js +190 -154
- package/src/zoid/checkout/hacks.js +31 -28
- package/src/zoid/checkout/index.js +2 -2
- package/src/zoid/checkout/props.js +27 -33
- package/src/zoid/installments/component.jsx +83 -70
- package/src/zoid/installments/index.js +1 -1
- package/src/zoid/installments/props.js +1 -1
- package/src/zoid/menu/component.jsx +53 -48
- package/src/zoid/menu/index.js +1 -1
- package/src/zoid/menu/props.js +1 -3
- package/src/zoid/modal/component.jsx +119 -106
- package/src/zoid/modal/index.js +1 -1
- package/src/zoid/modal/props.js +1 -3
- package/src/zoid/payment-fields/component.jsx +215 -191
- package/src/zoid/payment-fields/container.jsx +73 -64
- package/src/zoid/payment-fields/index.js +1 -1
- package/src/zoid/payment-fields/prerender.jsx +16 -14
- package/src/zoid/payment-fields/props.js +6 -6
- package/src/zoid/qr-code/component.jsx +131 -115
- package/src/zoid/qr-code/container.jsx +74 -68
- package/src/zoid/qr-code/index.js +1 -1
- package/src/zoid/qr-code/prerender.jsx +17 -12
- package/src/zoid/qr-code/types.js +2 -2
- package/src/zoid/wallet/component.jsx +298 -260
- package/src/zoid/wallet/container.jsx +73 -64
- package/src/zoid/wallet/index.js +1 -1
- package/src/zoid/wallet/prerender.jsx +14 -14
- package/src/zoid/wallet/props.js +4 -4
- package/src/actions/save/index.js +0 -40
- package/src/interface/actions.js +0 -14
- package/src/lib/getLogoCDNExperiment.js +0 -25
package/src/marks/template.jsx
CHANGED
|
@@ -1,67 +1,83 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
/** @jsx node */
|
|
3
3
|
|
|
4
|
-
import { FUNDING, ENV } from
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
import { FUNDING, ENV } from "@paypal/sdk-constants/src";
|
|
5
|
+
import {
|
|
6
|
+
node,
|
|
7
|
+
type ChildNodeType,
|
|
8
|
+
type ElementNode,
|
|
9
|
+
} from "@krakenjs/jsx-pragmatic/src";
|
|
10
|
+
import { getLocale, type FundingEligibilityType } from "@paypal/sdk-client/src";
|
|
11
|
+
import { toPx } from "@krakenjs/belter/src";
|
|
8
12
|
|
|
9
|
-
import type { Experiment } from
|
|
10
|
-
import { getFundingConfig } from
|
|
11
|
-
import { CLASS } from
|
|
13
|
+
import type { Experiment } from "../types";
|
|
14
|
+
import { getFundingConfig } from "../funding";
|
|
15
|
+
import { CLASS } from "../constants";
|
|
12
16
|
|
|
13
17
|
type MarkOptions = {|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
fundingSource: $Values<typeof FUNDING>,
|
|
19
|
+
fundingEligibility: FundingEligibilityType,
|
|
20
|
+
experiment: Experiment,
|
|
21
|
+
env: $Values<typeof ENV>,
|
|
18
22
|
|};
|
|
19
23
|
|
|
20
|
-
function Mark({
|
|
21
|
-
|
|
24
|
+
function Mark({
|
|
25
|
+
fundingSource,
|
|
26
|
+
fundingEligibility,
|
|
27
|
+
experiment,
|
|
28
|
+
env,
|
|
29
|
+
}: MarkOptions): ChildNodeType {
|
|
30
|
+
const fundingConfig = getFundingConfig()[fundingSource];
|
|
22
31
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
32
|
+
if (!fundingConfig) {
|
|
33
|
+
throw new Error(`Can not find funding config for ${fundingSource}`);
|
|
34
|
+
}
|
|
26
35
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
36
|
+
const { Logo } = fundingConfig;
|
|
37
|
+
const MarkLogo = fundingConfig.Mark;
|
|
38
|
+
const marksDefined = typeof MarkLogo !== "undefined";
|
|
30
39
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
40
|
+
return (
|
|
41
|
+
<div class="paypal-mark">
|
|
42
|
+
{marksDefined && MarkLogo ? (
|
|
43
|
+
<MarkLogo
|
|
44
|
+
fundingEligibility={fundingEligibility}
|
|
45
|
+
locale={getLocale()}
|
|
46
|
+
experiment={experiment}
|
|
47
|
+
env={env}
|
|
48
|
+
/>
|
|
49
|
+
) : (
|
|
50
|
+
<Logo
|
|
51
|
+
fundingEligibility={fundingEligibility}
|
|
52
|
+
locale={getLocale()}
|
|
53
|
+
experiment={experiment}
|
|
54
|
+
env={env}
|
|
55
|
+
/>
|
|
56
|
+
)}
|
|
57
|
+
</div>
|
|
58
|
+
);
|
|
49
59
|
}
|
|
50
60
|
|
|
51
61
|
type MarksElementOptions = {|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
62
|
+
fundingEligibility: FundingEligibilityType,
|
|
63
|
+
fundingSources: $ReadOnlyArray<$Values<typeof FUNDING>>,
|
|
64
|
+
height: number,
|
|
65
|
+
experiment: Experiment,
|
|
66
|
+
env: $Values<typeof ENV>,
|
|
57
67
|
|};
|
|
58
68
|
|
|
59
|
-
export function MarksElement({
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
69
|
+
export function MarksElement({
|
|
70
|
+
fundingEligibility,
|
|
71
|
+
fundingSources,
|
|
72
|
+
height,
|
|
73
|
+
experiment,
|
|
74
|
+
env,
|
|
75
|
+
}: MarksElementOptions): ElementNode {
|
|
76
|
+
return (
|
|
77
|
+
<div class="paypal-marks">
|
|
78
|
+
<style>
|
|
79
|
+
{`
|
|
80
|
+
.${CLASS.TEXT} {
|
|
65
81
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
66
82
|
font-size: 12px;
|
|
67
83
|
vertical-align: middle;
|
|
@@ -70,10 +86,10 @@ export function MarksElement({ fundingEligibility, fundingSources, height, exper
|
|
|
70
86
|
.paypal-mark {
|
|
71
87
|
display: inline-block;
|
|
72
88
|
line-height: 0;
|
|
73
|
-
padding: ${
|
|
89
|
+
padding: ${toPx(height / 4)} ${toPx(height / 3)};
|
|
74
90
|
background: #fff;
|
|
75
91
|
border-radius: 3px;
|
|
76
|
-
margin: ${
|
|
92
|
+
margin: ${toPx(height / 5)};
|
|
77
93
|
white-space: nowrap;
|
|
78
94
|
position: relative;
|
|
79
95
|
background: #fff;
|
|
@@ -85,31 +101,29 @@ export function MarksElement({ fundingEligibility, fundingSources, height, exper
|
|
|
85
101
|
}
|
|
86
102
|
|
|
87
103
|
.paypal-mark img {
|
|
88
|
-
height: ${
|
|
104
|
+
height: ${toPx(height)};
|
|
89
105
|
display: inline-block;
|
|
90
106
|
vertical-align: middle;
|
|
91
107
|
}
|
|
92
108
|
|
|
93
109
|
.paypal-button-card {
|
|
94
110
|
display: inline-block;
|
|
95
|
-
margin-right: ${
|
|
111
|
+
margin-right: ${toPx(height / 4)};
|
|
96
112
|
}
|
|
97
113
|
|
|
98
114
|
.paypal-button-card:last-child {
|
|
99
115
|
margin-right: 0px;
|
|
100
116
|
}
|
|
101
117
|
`}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
</div>
|
|
114
|
-
);
|
|
118
|
+
</style>
|
|
119
|
+
{fundingSources.map((fundingSource) => (
|
|
120
|
+
<Mark
|
|
121
|
+
fundingEligibility={fundingEligibility}
|
|
122
|
+
fundingSource={fundingSource}
|
|
123
|
+
experiment={experiment}
|
|
124
|
+
env={env}
|
|
125
|
+
/>
|
|
126
|
+
))}
|
|
127
|
+
</div>
|
|
128
|
+
);
|
|
115
129
|
}
|
package/src/types.js
CHANGED
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
/* @flow */
|
|
2
2
|
|
|
3
|
-
import { CARD, WALLET_INSTRUMENT } from
|
|
3
|
+
import { CARD, WALLET_INSTRUMENT } from "@paypal/sdk-constants/src";
|
|
4
4
|
|
|
5
5
|
export type SecondaryInstruments = $ReadOnlyArray<{|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
type: string,
|
|
7
|
+
label: string,
|
|
8
|
+
instrumentID: string,
|
|
9
9
|
|}>;
|
|
10
10
|
|
|
11
11
|
export type WalletInstrument = {|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
12
|
+
type?: $Values<typeof WALLET_INSTRUMENT>,
|
|
13
|
+
label?: string,
|
|
14
|
+
logoUrl?: string,
|
|
15
|
+
instrumentID?: string,
|
|
16
|
+
tokenID?: string,
|
|
17
|
+
vendor?: $Values<typeof CARD>,
|
|
18
|
+
oneClick: boolean,
|
|
19
|
+
branded: boolean,
|
|
20
|
+
secondaryInstruments?: SecondaryInstruments,
|
|
21
21
|
|};
|
|
22
22
|
|
|
23
23
|
export type WalletPaymentType = {|
|
|
24
|
-
|
|
24
|
+
instruments: $ReadOnlyArray<WalletInstrument>,
|
|
25
25
|
|};
|
|
26
26
|
|
|
27
27
|
export type Wallet = {|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
paypal: WalletPaymentType,
|
|
29
|
+
card: WalletPaymentType,
|
|
30
|
+
credit: WalletPaymentType,
|
|
31
|
+
venmo: WalletPaymentType,
|
|
32
32
|
|};
|
|
33
33
|
|
|
34
34
|
export type ContentType = {|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
35
|
+
instantlyPayWith: string,
|
|
36
|
+
poweredBy: string,
|
|
37
|
+
chooseCardOrShipping: string,
|
|
38
|
+
useDifferentAccount: string,
|
|
39
|
+
deleteVaultedAccount: string,
|
|
40
|
+
deleteVaultedCard: string,
|
|
41
|
+
chooseCard: string,
|
|
42
|
+
balance: string,
|
|
43
|
+
payNow: string,
|
|
44
|
+
payWithDebitOrCreditCard: string,
|
|
45
|
+
credit: string,
|
|
46
|
+
payWith: string,
|
|
47
|
+
payLater: string,
|
|
48
|
+
flex: string,
|
|
49
|
+
payPalBalance: string,
|
|
50
|
+
moreOptions: string,
|
|
51
51
|
|};
|
|
52
52
|
|
|
53
53
|
export type Experiment = {|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
enableVenmo?: boolean,
|
|
55
|
+
disablePaylater?: boolean,
|
|
56
|
+
enableVenmoAppLabel?: boolean,
|
|
57
57
|
|};
|
|
58
58
|
|
|
59
59
|
export type Requires = {|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
60
|
+
applepay?: boolean,
|
|
61
|
+
popup?: boolean,
|
|
62
|
+
native?: boolean,
|
|
63
63
|
|};
|
|
64
64
|
|
|
65
65
|
export type CustomStyle = {|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
66
|
+
css?: {|
|
|
67
|
+
[string]: string,
|
|
68
|
+
|},
|
|
69
|
+
label?: string,
|
|
70
70
|
|};
|
|
71
71
|
|
|
72
72
|
export type LazyExport<T> = {|
|
|
73
|
-
|
|
73
|
+
__get__: () => T,
|
|
74
74
|
|};
|
|
75
75
|
|
|
76
76
|
export type LazyProtectedExport<T> = {|
|
|
77
|
-
|
|
77
|
+
__get__: () => ?T,
|
|
78
78
|
|};
|
|
79
79
|
|
|
80
80
|
export type InlineXOEligibilityType = {|
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
eligible: boolean,
|
|
82
|
+
ineligibilityReason: string,
|
|
83
83
|
|};
|