@globalpayments/js 1.9.13 → 1.9.15
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/package.json +1 -1
- package/types/internal/lib/add-footer-icons.d.ts +9 -0
- package/types/internal/lib/styles/click-to-pay/default.d.ts +288 -0
- package/types/internal/lib/styles/click-to-pay/gp-default.d.ts +288 -0
- package/types/internal/lib/styles/click-to-pay/simple.d.ts +288 -0
- package/types/internal/lib/styles/default.d.ts +274 -181
- package/types/internal/lib/styles/gp-default.d.ts +299 -224
- package/types/internal/lib/styles/simple.d.ts +303 -210
- package/types/lib/version.d.ts +1 -1
- package/types/ui/form/index.d.ts +858 -572
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
declare const styles: (assetBaseUrl: string) => {
|
|
2
|
+
".secure-payment-form .ctp-panel": {
|
|
3
|
+
border: string;
|
|
4
|
+
"box-shadow": string;
|
|
5
|
+
"border-radius": string;
|
|
6
|
+
"container-type": string;
|
|
7
|
+
"font-family": string;
|
|
8
|
+
"margin-bottom": string;
|
|
9
|
+
};
|
|
10
|
+
".secure-payment-form div[class^='credit-card'].apm-active ~ div:not([class$='shield']):not([class$='logo'])": {
|
|
11
|
+
display: string;
|
|
12
|
+
};
|
|
13
|
+
".secure-payment-form .ctp-panel .ctp-button": {
|
|
14
|
+
"align-items": string;
|
|
15
|
+
background: string;
|
|
16
|
+
cursor: string;
|
|
17
|
+
display: string;
|
|
18
|
+
flex: string;
|
|
19
|
+
"flex-direction": string;
|
|
20
|
+
"flex-grow": string;
|
|
21
|
+
order: string;
|
|
22
|
+
padding: string;
|
|
23
|
+
position: string;
|
|
24
|
+
"white-space": string;
|
|
25
|
+
};
|
|
26
|
+
".secure-payment-form .ctp-panel .ctp-header": {
|
|
27
|
+
width: string;
|
|
28
|
+
};
|
|
29
|
+
".secure-payment-form .ctp-panel .ctp-button .heading": {
|
|
30
|
+
"font-family": string;
|
|
31
|
+
"font-weight": string;
|
|
32
|
+
"line-height": string;
|
|
33
|
+
"font-size": string;
|
|
34
|
+
};
|
|
35
|
+
".secure-payment-form .ctp-panel .ctp-button .ctp-icon": {
|
|
36
|
+
background: string;
|
|
37
|
+
"background-size": string;
|
|
38
|
+
width: string;
|
|
39
|
+
height: string;
|
|
40
|
+
margin: string;
|
|
41
|
+
display: string;
|
|
42
|
+
"vertical-align": string;
|
|
43
|
+
flex: string;
|
|
44
|
+
order: string;
|
|
45
|
+
"flex-grow": string;
|
|
46
|
+
};
|
|
47
|
+
".secure-payment-form .ctp-panel .ctp-button .subheading": {
|
|
48
|
+
margin: string;
|
|
49
|
+
"font-family": string;
|
|
50
|
+
"font-weight": string;
|
|
51
|
+
"font-size": string;
|
|
52
|
+
"line-height": string;
|
|
53
|
+
color: string;
|
|
54
|
+
};
|
|
55
|
+
".secure-payment-form div[class^='ctp'] .card-brands": {
|
|
56
|
+
background: string;
|
|
57
|
+
padding: string;
|
|
58
|
+
width: string;
|
|
59
|
+
height: string;
|
|
60
|
+
display: string;
|
|
61
|
+
"vertical-align": string;
|
|
62
|
+
flex: string;
|
|
63
|
+
order: string;
|
|
64
|
+
"flex-grow": string;
|
|
65
|
+
};
|
|
66
|
+
".secure-payment-form .ctp-info-tooltip": {
|
|
67
|
+
width: string;
|
|
68
|
+
height: string;
|
|
69
|
+
display: string;
|
|
70
|
+
"vertical-align": string;
|
|
71
|
+
overflow: string;
|
|
72
|
+
background: string;
|
|
73
|
+
margin: string;
|
|
74
|
+
"white-space": string;
|
|
75
|
+
};
|
|
76
|
+
".secure-payment-form .ctp-info-tooltip-content": {
|
|
77
|
+
visibility: string;
|
|
78
|
+
width: string;
|
|
79
|
+
"background-color": string;
|
|
80
|
+
color: string;
|
|
81
|
+
"text-align": string;
|
|
82
|
+
"border-radius": string;
|
|
83
|
+
border: string;
|
|
84
|
+
padding: string;
|
|
85
|
+
position: string;
|
|
86
|
+
"z-index": string;
|
|
87
|
+
"margin-left": string;
|
|
88
|
+
"margin-top": string;
|
|
89
|
+
opacity: string;
|
|
90
|
+
transition: string;
|
|
91
|
+
"font-family": string;
|
|
92
|
+
"font-size": string;
|
|
93
|
+
"font-weight": string;
|
|
94
|
+
"box-shadow": string;
|
|
95
|
+
};
|
|
96
|
+
".secure-payment-form .ctp-info-tooltip-content .ctp-icon": {
|
|
97
|
+
"margin-left": string;
|
|
98
|
+
};
|
|
99
|
+
".secure-payment-form .ctp-info-tooltip .ctp-heading": {
|
|
100
|
+
"max-width": string;
|
|
101
|
+
margin: string;
|
|
102
|
+
};
|
|
103
|
+
".secure-payment-form .ctp-info-tooltip-content ul": {
|
|
104
|
+
padding: string;
|
|
105
|
+
"margin-bottom": string;
|
|
106
|
+
};
|
|
107
|
+
".secure-payment-form .ctp-info-tooltip-content li": {
|
|
108
|
+
padding: string;
|
|
109
|
+
"font-size": string;
|
|
110
|
+
"line-height": string;
|
|
111
|
+
"list-style": string;
|
|
112
|
+
};
|
|
113
|
+
".secure-payment-form .ctp-info-tooltip-content li.smart-checkout": {
|
|
114
|
+
background: string;
|
|
115
|
+
};
|
|
116
|
+
".secure-payment-form .ctp-info-tooltip-content li.faster-checkout": {
|
|
117
|
+
background: string;
|
|
118
|
+
};
|
|
119
|
+
".secure-payment-form .ctp-info-tooltip-content li.industry-standards": {
|
|
120
|
+
background: string;
|
|
121
|
+
};
|
|
122
|
+
".secure-payment-form .ctp-info-tooltip .top-arrow": {
|
|
123
|
+
position: string;
|
|
124
|
+
"margin-top": string;
|
|
125
|
+
background: string;
|
|
126
|
+
width: string;
|
|
127
|
+
left: string;
|
|
128
|
+
"margin-left": string;
|
|
129
|
+
border: string;
|
|
130
|
+
"border-width": string;
|
|
131
|
+
display: string;
|
|
132
|
+
padding: string;
|
|
133
|
+
transform: string;
|
|
134
|
+
"-webkit-transform": string;
|
|
135
|
+
"z-index": string;
|
|
136
|
+
};
|
|
137
|
+
".secure-payment-form .ctp-info-tooltip-content li .ctp-icon": {
|
|
138
|
+
"background-size": string;
|
|
139
|
+
width: string;
|
|
140
|
+
height: string;
|
|
141
|
+
margin: string;
|
|
142
|
+
};
|
|
143
|
+
".secure-payment-form .ctp-info-tooltip-content strong": {
|
|
144
|
+
"font-size": string;
|
|
145
|
+
"vertical-align": string;
|
|
146
|
+
};
|
|
147
|
+
".secure-payment-form .ctp-info-tooltip:hover .ctp-info-tooltip-content": {
|
|
148
|
+
visibility: string;
|
|
149
|
+
opacity: string;
|
|
150
|
+
};
|
|
151
|
+
"@container (min-width: 408px)": {
|
|
152
|
+
".secure-payment-form .ctp-panel .ctp-button .heading": {
|
|
153
|
+
"font-size": string;
|
|
154
|
+
};
|
|
155
|
+
".secure-payment-form .ctp-panel .right-arrow": {
|
|
156
|
+
"border-width": string;
|
|
157
|
+
};
|
|
158
|
+
".secure-payment-form .ctp-panel .ctp-button .ctp-icon": {
|
|
159
|
+
width: string;
|
|
160
|
+
height: string;
|
|
161
|
+
"background-size": string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
".secure-payment-form .apm-active .ctp-panel .ctp-button": {
|
|
165
|
+
cursor: string;
|
|
166
|
+
};
|
|
167
|
+
".secure-payment-form.apm-active .ctp-panel .ctp-button": {
|
|
168
|
+
cursor: string;
|
|
169
|
+
};
|
|
170
|
+
".secure-payment-form .ctp-panel .ctp-button:after": {
|
|
171
|
+
content: string;
|
|
172
|
+
position: string;
|
|
173
|
+
width: string;
|
|
174
|
+
height: string;
|
|
175
|
+
border: string;
|
|
176
|
+
"border-width": string;
|
|
177
|
+
display: string;
|
|
178
|
+
padding: string;
|
|
179
|
+
transform: string;
|
|
180
|
+
"-webkit-transform": string;
|
|
181
|
+
};
|
|
182
|
+
".secure-payment-form .ctp-panel .right-arrow": {
|
|
183
|
+
position: string;
|
|
184
|
+
background: string;
|
|
185
|
+
right: string;
|
|
186
|
+
border: string;
|
|
187
|
+
"border-width": string;
|
|
188
|
+
display: string;
|
|
189
|
+
padding: string;
|
|
190
|
+
transform: string;
|
|
191
|
+
"-webkit-transform": string;
|
|
192
|
+
"z-index": string;
|
|
193
|
+
top: string;
|
|
194
|
+
"margin-top": string;
|
|
195
|
+
};
|
|
196
|
+
".secure-payment-form .apm-active .right-arrow": {
|
|
197
|
+
display: string;
|
|
198
|
+
};
|
|
199
|
+
".secure-payment-form.apm-active .right-arrow": {
|
|
200
|
+
display: string;
|
|
201
|
+
};
|
|
202
|
+
"#ctp-wrapper #header": {
|
|
203
|
+
display: string;
|
|
204
|
+
};
|
|
205
|
+
"#ctp-wrapper .logindiv .tooltip": {
|
|
206
|
+
display: string;
|
|
207
|
+
};
|
|
208
|
+
"#ctp-wrapper .logindiv .lblemailInput": {
|
|
209
|
+
display: string;
|
|
210
|
+
};
|
|
211
|
+
"#ctp-wrapper #verifyVisa .VerificationLabel": {
|
|
212
|
+
"font-size": string;
|
|
213
|
+
"font-family": string;
|
|
214
|
+
"line-height": string;
|
|
215
|
+
};
|
|
216
|
+
"#ctp-wrapper #verifyVisa label": {
|
|
217
|
+
display: string;
|
|
218
|
+
"font-size": string;
|
|
219
|
+
"font-family": string;
|
|
220
|
+
margin: string;
|
|
221
|
+
};
|
|
222
|
+
"#ctp-wrapper .blue-button label": {
|
|
223
|
+
"font-size": string;
|
|
224
|
+
"line-height": string;
|
|
225
|
+
"font-family": string;
|
|
226
|
+
margin: string;
|
|
227
|
+
};
|
|
228
|
+
"#ctp-wrapper .cardhdr label": {
|
|
229
|
+
margin: string;
|
|
230
|
+
display: string;
|
|
231
|
+
"font-size": string;
|
|
232
|
+
"line-height": string;
|
|
233
|
+
};
|
|
234
|
+
"#ctp-wrapper .cardhdr label.crdSelectuser": {
|
|
235
|
+
margin: string;
|
|
236
|
+
};
|
|
237
|
+
"#ctp-wrapper button label": {
|
|
238
|
+
margin: string;
|
|
239
|
+
"font-size": string;
|
|
240
|
+
};
|
|
241
|
+
"#ctp-wrapper .quitbanner > svg": {
|
|
242
|
+
display: string;
|
|
243
|
+
};
|
|
244
|
+
"#ctp-wrapper #footer": {
|
|
245
|
+
display: string;
|
|
246
|
+
};
|
|
247
|
+
"#ctp-wrapper .signinlayout": {
|
|
248
|
+
"max-width": string;
|
|
249
|
+
"min-height": string;
|
|
250
|
+
};
|
|
251
|
+
".secure-payment-form.apm-active .signinlayout": {
|
|
252
|
+
"min-height": string;
|
|
253
|
+
};
|
|
254
|
+
"#ctp-wrapper .rsdcode": {
|
|
255
|
+
"font-size": string;
|
|
256
|
+
"font-weight": string;
|
|
257
|
+
margin: string;
|
|
258
|
+
};
|
|
259
|
+
"#ctp-wrapper .footerLabelDiv label": {
|
|
260
|
+
"font-size": string;
|
|
261
|
+
"font-weight": string;
|
|
262
|
+
"margin-top": string;
|
|
263
|
+
"margin-bottom": string;
|
|
264
|
+
};
|
|
265
|
+
"#ctp-wrapper .logindiv": {
|
|
266
|
+
"min-height": string;
|
|
267
|
+
};
|
|
268
|
+
"#ctp-wrapper .VerificationLabel label": {
|
|
269
|
+
display: string;
|
|
270
|
+
margin: string;
|
|
271
|
+
"font-size": string;
|
|
272
|
+
};
|
|
273
|
+
"#ctp-wrapper .VerificationLabel #userMobileMC": {
|
|
274
|
+
margin: string;
|
|
275
|
+
};
|
|
276
|
+
"#ctp-wrapper .transctcardlabel": {
|
|
277
|
+
margin: string;
|
|
278
|
+
"font-size": string;
|
|
279
|
+
};
|
|
280
|
+
"#ctp-wrapper .TransitionLabel": {
|
|
281
|
+
"font-size": string;
|
|
282
|
+
"line-height": string;
|
|
283
|
+
"text-align": string;
|
|
284
|
+
float: string;
|
|
285
|
+
margin: string;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
export default styles;
|