@financial-times/n-conversion-forms 46.0.1 → 47.0.1
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/.toolkitstate/ci.json +3 -3
- package/.toolkitstate/install.json +1 -1
- package/components/__snapshots__/payment-term.spec.js.snap +1 -1031
- package/components/delivery-option.stories.js +2 -2
- package/components/payment-term.jsx +249 -208
- package/components/payment-term.spec.js +675 -317
- package/components/payment-term.stories.js +135 -24
- package/dist/payment-term.jsx +198 -145
- package/helpers/duration-helpers.js +90 -0
- package/helpers/duration-helpers.spec.js +142 -0
- package/helpers/index.js +3 -0
- package/helpers/index.spec.js +8 -0
- package/package.json +2 -2
- package/styles/payment-term.scss +5 -5
- package/styles/payment-type.scss +0 -4
|
@@ -1,1036 +1,6 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
|
-
exports[`PaymentTerm
|
|
4
|
-
<div id="paymentTermField"
|
|
5
|
-
class="o-forms__group ncf__payment-term"
|
|
6
|
-
data-country-code
|
|
7
|
-
>
|
|
8
|
-
<div class="ncf__payment-term__options-grid">
|
|
9
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round ncf__payment-term__item--discount">
|
|
10
|
-
<input type="radio"
|
|
11
|
-
id="270"
|
|
12
|
-
name="paymentTerm"
|
|
13
|
-
value="270"
|
|
14
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
15
|
-
>
|
|
16
|
-
<label for="270"
|
|
17
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
18
|
-
>
|
|
19
|
-
<span class="ncf__payment-term__discount">
|
|
20
|
-
Best offer
|
|
21
|
-
</span>
|
|
22
|
-
<span class="ncf__payment-term__title ncf__payment-term__title--large-price">
|
|
23
|
-
Annual
|
|
24
|
-
<span class="ncf__regular ncf__payment-term__sub-title">
|
|
25
|
-
(Renews annually unless cancelled)
|
|
26
|
-
</span>
|
|
27
|
-
</span>
|
|
28
|
-
<div>
|
|
29
|
-
<span class="ncf__payment-term__large-price">
|
|
30
|
-
€ 270.00
|
|
31
|
-
</span>
|
|
32
|
-
<p class="ncf__payment-term__charge-on-text">
|
|
33
|
-
You will be charged on May 1, 2021
|
|
34
|
-
</p>
|
|
35
|
-
</div>
|
|
36
|
-
</label>
|
|
37
|
-
</div>
|
|
38
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round ncf__payment-term__item--discount">
|
|
39
|
-
<input type="radio"
|
|
40
|
-
id="300"
|
|
41
|
-
name="paymentTerm"
|
|
42
|
-
value="300"
|
|
43
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
44
|
-
checked
|
|
45
|
-
>
|
|
46
|
-
<label for="300"
|
|
47
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
48
|
-
>
|
|
49
|
-
<span class="ncf__payment-term__discount">
|
|
50
|
-
Save 10% off RRP
|
|
51
|
-
</span>
|
|
52
|
-
<span class="ncf__payment-term__title ncf__payment-term__title--large-price">
|
|
53
|
-
12 Month Subscription
|
|
54
|
-
</span>
|
|
55
|
-
<div>
|
|
56
|
-
<span class="ncf__payment-term__large-price">
|
|
57
|
-
€ 300.00
|
|
58
|
-
</span>
|
|
59
|
-
<p class="ncf__payment-term__charge-on-text">
|
|
60
|
-
You will be charged on May 1, 2021
|
|
61
|
-
</p>
|
|
62
|
-
</div>
|
|
63
|
-
</label>
|
|
64
|
-
</div>
|
|
65
|
-
</div>
|
|
66
|
-
</div>
|
|
67
|
-
`;
|
|
68
|
-
|
|
69
|
-
exports[`PaymentTerm annual option render option 1`] = `
|
|
70
|
-
<div id="paymentTermField"
|
|
71
|
-
class="o-forms__group ncf__payment-term"
|
|
72
|
-
data-country-code
|
|
73
|
-
>
|
|
74
|
-
<div class>
|
|
75
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
76
|
-
<input type="radio"
|
|
77
|
-
id="annual"
|
|
78
|
-
name="paymentTerm"
|
|
79
|
-
value="annual"
|
|
80
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
81
|
-
>
|
|
82
|
-
<label for="annual"
|
|
83
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
84
|
-
>
|
|
85
|
-
<span class="ncf__payment-term__title">
|
|
86
|
-
Annual
|
|
87
|
-
</span>
|
|
88
|
-
<div class="ncf__payment-term__description">
|
|
89
|
-
Single
|
|
90
|
-
<span class="ncf__payment-term__price ncf__strong">
|
|
91
|
-
£20.00
|
|
92
|
-
</span>
|
|
93
|
-
payment
|
|
94
|
-
<p class="ncf__payment-term__renews-text">
|
|
95
|
-
Renews annually unless cancelled
|
|
96
|
-
</p>
|
|
97
|
-
</div>
|
|
98
|
-
</label>
|
|
99
|
-
</div>
|
|
100
|
-
</div>
|
|
101
|
-
<div class="ncf__payment-term__legal">
|
|
102
|
-
<p>
|
|
103
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
104
|
-
</p>
|
|
105
|
-
<p class="o3-type-body-base">
|
|
106
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
107
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
108
|
-
title="FT Legal Terms and Conditions help page"
|
|
109
|
-
target="_blank"
|
|
110
|
-
rel="noopener noreferrer"
|
|
111
|
-
>
|
|
112
|
-
Terms & Conditions
|
|
113
|
-
</a>
|
|
114
|
-
.
|
|
115
|
-
</p>
|
|
116
|
-
</div>
|
|
117
|
-
</div>
|
|
118
|
-
`;
|
|
119
|
-
|
|
120
|
-
exports[`PaymentTerm annual option render option with discount 1`] = `
|
|
121
|
-
<div id="paymentTermField"
|
|
122
|
-
class="o-forms__group ncf__payment-term"
|
|
123
|
-
data-country-code
|
|
124
|
-
>
|
|
125
|
-
<div class>
|
|
126
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round ncf__payment-term__item--discount">
|
|
127
|
-
<input type="radio"
|
|
128
|
-
id="annual"
|
|
129
|
-
name="paymentTerm"
|
|
130
|
-
value="annual"
|
|
131
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
132
|
-
>
|
|
133
|
-
<label for="annual"
|
|
134
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
135
|
-
>
|
|
136
|
-
<span class="ncf__payment-term__discount">
|
|
137
|
-
Save 25% off off RRP
|
|
138
|
-
</span>
|
|
139
|
-
<span class="ncf__payment-term__title">
|
|
140
|
-
Annual
|
|
141
|
-
</span>
|
|
142
|
-
<div class="ncf__payment-term__description">
|
|
143
|
-
Single
|
|
144
|
-
<span class="ncf__payment-term__price ncf__strong">
|
|
145
|
-
£20.00
|
|
146
|
-
</span>
|
|
147
|
-
payment
|
|
148
|
-
<p class="ncf__payment-term__renews-text">
|
|
149
|
-
Renews annually unless cancelled
|
|
150
|
-
</p>
|
|
151
|
-
</div>
|
|
152
|
-
</label>
|
|
153
|
-
</div>
|
|
154
|
-
</div>
|
|
155
|
-
<div class="ncf__payment-term__legal">
|
|
156
|
-
<p>
|
|
157
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
158
|
-
</p>
|
|
159
|
-
<p class="o3-type-body-base">
|
|
160
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
161
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
162
|
-
title="FT Legal Terms and Conditions help page"
|
|
163
|
-
target="_blank"
|
|
164
|
-
rel="noopener noreferrer"
|
|
165
|
-
>
|
|
166
|
-
Terms & Conditions
|
|
167
|
-
</a>
|
|
168
|
-
.
|
|
169
|
-
</p>
|
|
170
|
-
</div>
|
|
171
|
-
</div>
|
|
172
|
-
`;
|
|
173
|
-
|
|
174
|
-
exports[`PaymentTerm annual option render option with isTrial 1`] = `
|
|
175
|
-
<div id="paymentTermField"
|
|
176
|
-
class="o-forms__group ncf__payment-term"
|
|
177
|
-
data-country-code
|
|
178
|
-
>
|
|
179
|
-
<div class>
|
|
180
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
181
|
-
<input type="radio"
|
|
182
|
-
id="annual"
|
|
183
|
-
name="paymentTerm"
|
|
184
|
-
value="annual"
|
|
185
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
186
|
-
>
|
|
187
|
-
<label for="annual"
|
|
188
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
189
|
-
>
|
|
190
|
-
<span class="ncf__payment-term__title">
|
|
191
|
-
Trial: Premium Digital - Annual
|
|
192
|
-
</span>
|
|
193
|
-
<div class="ncf__payment-term__description">
|
|
194
|
-
4 weeks for
|
|
195
|
-
<span class="ncf__payment-term__trial-price">
|
|
196
|
-
</span>
|
|
197
|
-
<br>
|
|
198
|
-
Unless you cancel during your trial you will be billed
|
|
199
|
-
<span class="ncf__payment-term__price">
|
|
200
|
-
£20.00
|
|
201
|
-
</span>
|
|
202
|
-
per year after the trial period.
|
|
203
|
-
</div>
|
|
204
|
-
</label>
|
|
205
|
-
</div>
|
|
206
|
-
</div>
|
|
207
|
-
<div class="ncf__payment-term__legal">
|
|
208
|
-
<p>
|
|
209
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
210
|
-
</p>
|
|
211
|
-
<p class="o3-type-body-base">
|
|
212
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
213
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
214
|
-
title="FT Legal Terms and Conditions help page"
|
|
215
|
-
target="_blank"
|
|
216
|
-
rel="noopener noreferrer"
|
|
217
|
-
>
|
|
218
|
-
Terms & Conditions
|
|
219
|
-
</a>
|
|
220
|
-
.
|
|
221
|
-
</p>
|
|
222
|
-
</div>
|
|
223
|
-
</div>
|
|
224
|
-
`;
|
|
225
|
-
|
|
226
|
-
exports[`PaymentTerm annual option render option with monthlyPrice 1`] = `
|
|
227
|
-
<div id="paymentTermField"
|
|
228
|
-
class="o-forms__group ncf__payment-term"
|
|
229
|
-
data-country-code
|
|
230
|
-
>
|
|
231
|
-
<div class>
|
|
232
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
233
|
-
<input type="radio"
|
|
234
|
-
id="annual"
|
|
235
|
-
name="paymentTerm"
|
|
236
|
-
value="annual"
|
|
237
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
238
|
-
>
|
|
239
|
-
<label for="annual"
|
|
240
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
241
|
-
>
|
|
242
|
-
<span class="ncf__payment-term__title">
|
|
243
|
-
Annual
|
|
244
|
-
</span>
|
|
245
|
-
<div class="ncf__payment-term__description">
|
|
246
|
-
Single
|
|
247
|
-
<span class="ncf__payment-term__price ncf__strong">
|
|
248
|
-
£20.00
|
|
249
|
-
</span>
|
|
250
|
-
payment
|
|
251
|
-
<span class="ncf__payment-term__equivalent-price">
|
|
252
|
-
That’s equivalent to
|
|
253
|
-
<span class="ncf__payment-term__monthly-price">
|
|
254
|
-
£1.67
|
|
255
|
-
</span>
|
|
256
|
-
per month
|
|
257
|
-
</span>
|
|
258
|
-
<p class="ncf__payment-term__renews-text">
|
|
259
|
-
Renews annually unless cancelled
|
|
260
|
-
</p>
|
|
261
|
-
</div>
|
|
262
|
-
</label>
|
|
263
|
-
</div>
|
|
264
|
-
</div>
|
|
265
|
-
<div class="ncf__payment-term__legal">
|
|
266
|
-
<p>
|
|
267
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
268
|
-
</p>
|
|
269
|
-
<p class="o3-type-body-base">
|
|
270
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
271
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
272
|
-
title="FT Legal Terms and Conditions help page"
|
|
273
|
-
target="_blank"
|
|
274
|
-
rel="noopener noreferrer"
|
|
275
|
-
>
|
|
276
|
-
Terms & Conditions
|
|
277
|
-
</a>
|
|
278
|
-
.
|
|
279
|
-
</p>
|
|
280
|
-
</div>
|
|
281
|
-
</div>
|
|
282
|
-
`;
|
|
283
|
-
|
|
284
|
-
exports[`PaymentTerm annual option render option with selected 1`] = `
|
|
285
|
-
<div id="paymentTermField"
|
|
286
|
-
class="o-forms__group ncf__payment-term"
|
|
287
|
-
data-country-code
|
|
288
|
-
>
|
|
289
|
-
<div class>
|
|
290
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
291
|
-
<input type="radio"
|
|
292
|
-
id="annual"
|
|
293
|
-
name="paymentTerm"
|
|
294
|
-
value="annual"
|
|
295
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
296
|
-
checked
|
|
297
|
-
>
|
|
298
|
-
<label for="annual"
|
|
299
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
300
|
-
>
|
|
301
|
-
<span class="ncf__payment-term__title">
|
|
302
|
-
Annual
|
|
303
|
-
</span>
|
|
304
|
-
<div class="ncf__payment-term__description">
|
|
305
|
-
Single
|
|
306
|
-
<span class="ncf__payment-term__price ncf__strong">
|
|
307
|
-
£20.00
|
|
308
|
-
</span>
|
|
309
|
-
payment
|
|
310
|
-
<p class="ncf__payment-term__renews-text">
|
|
311
|
-
Renews annually unless cancelled
|
|
312
|
-
</p>
|
|
313
|
-
</div>
|
|
314
|
-
</label>
|
|
315
|
-
</div>
|
|
316
|
-
</div>
|
|
317
|
-
<div class="ncf__payment-term__legal">
|
|
318
|
-
<p>
|
|
319
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
320
|
-
</p>
|
|
321
|
-
<p class="o3-type-body-base">
|
|
322
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
323
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
324
|
-
title="FT Legal Terms and Conditions help page"
|
|
325
|
-
target="_blank"
|
|
326
|
-
rel="noopener noreferrer"
|
|
327
|
-
>
|
|
328
|
-
Terms & Conditions
|
|
329
|
-
</a>
|
|
330
|
-
.
|
|
331
|
-
</p>
|
|
332
|
-
</div>
|
|
333
|
-
</div>
|
|
334
|
-
`;
|
|
335
|
-
|
|
336
|
-
exports[`PaymentTerm annual option render option with trial 1`] = `
|
|
337
|
-
<div id="paymentTermField"
|
|
338
|
-
class="o-forms__group ncf__payment-term"
|
|
339
|
-
data-country-code
|
|
340
|
-
>
|
|
341
|
-
<div class>
|
|
342
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
343
|
-
<input type="radio"
|
|
344
|
-
id="annual"
|
|
345
|
-
name="paymentTerm"
|
|
346
|
-
value="annual"
|
|
347
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
348
|
-
>
|
|
349
|
-
<label for="annual"
|
|
350
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
351
|
-
>
|
|
352
|
-
<span class="ncf__payment-term__title">
|
|
353
|
-
Trial: Premium Digital - Annual
|
|
354
|
-
</span>
|
|
355
|
-
<div class="ncf__payment-term__description">
|
|
356
|
-
6 weeks for
|
|
357
|
-
<span class="ncf__payment-term__trial-price">
|
|
358
|
-
£1.00
|
|
359
|
-
</span>
|
|
360
|
-
<br>
|
|
361
|
-
Unless you cancel during your trial you will be billed
|
|
362
|
-
<span class="ncf__payment-term__price">
|
|
363
|
-
£20.00
|
|
364
|
-
</span>
|
|
365
|
-
per year after the trial period.
|
|
366
|
-
</div>
|
|
367
|
-
</label>
|
|
368
|
-
</div>
|
|
369
|
-
</div>
|
|
370
|
-
<div class="ncf__payment-term__legal">
|
|
371
|
-
<p>
|
|
372
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
373
|
-
</p>
|
|
374
|
-
<p class="o3-type-body-base">
|
|
375
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
376
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
377
|
-
title="FT Legal Terms and Conditions help page"
|
|
378
|
-
target="_blank"
|
|
379
|
-
rel="noopener noreferrer"
|
|
380
|
-
>
|
|
381
|
-
Terms & Conditions
|
|
382
|
-
</a>
|
|
383
|
-
.
|
|
384
|
-
</p>
|
|
385
|
-
</div>
|
|
386
|
-
</div>
|
|
387
|
-
`;
|
|
388
|
-
|
|
389
|
-
exports[`PaymentTerm monthly option render option 1`] = `
|
|
390
|
-
<div id="paymentTermField"
|
|
391
|
-
class="o-forms__group ncf__payment-term"
|
|
392
|
-
data-country-code
|
|
393
|
-
>
|
|
394
|
-
<div class>
|
|
395
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
396
|
-
<input type="radio"
|
|
397
|
-
id="monthly"
|
|
398
|
-
name="paymentTerm"
|
|
399
|
-
value="monthly"
|
|
400
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
401
|
-
>
|
|
402
|
-
<label for="monthly"
|
|
403
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
404
|
-
>
|
|
405
|
-
<span class="ncf__payment-term__title">
|
|
406
|
-
Monthly
|
|
407
|
-
</span>
|
|
408
|
-
<div class="ncf__payment-term__description">
|
|
409
|
-
<span class="ncf__payment-term__price">
|
|
410
|
-
£20.00
|
|
411
|
-
</span>
|
|
412
|
-
per month
|
|
413
|
-
<p class="ncf__payment-term__renews-text">
|
|
414
|
-
Renews monthly unless cancelled
|
|
415
|
-
</p>
|
|
416
|
-
</div>
|
|
417
|
-
</label>
|
|
418
|
-
</div>
|
|
419
|
-
</div>
|
|
420
|
-
<div class="ncf__payment-term__legal">
|
|
421
|
-
<p>
|
|
422
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
423
|
-
</p>
|
|
424
|
-
<p class="o3-type-body-base">
|
|
425
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
426
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
427
|
-
title="FT Legal Terms and Conditions help page"
|
|
428
|
-
target="_blank"
|
|
429
|
-
rel="noopener noreferrer"
|
|
430
|
-
>
|
|
431
|
-
Terms & Conditions
|
|
432
|
-
</a>
|
|
433
|
-
.
|
|
434
|
-
</p>
|
|
435
|
-
</div>
|
|
436
|
-
</div>
|
|
437
|
-
`;
|
|
438
|
-
|
|
439
|
-
exports[`PaymentTerm monthly option render option with discount 1`] = `
|
|
440
|
-
<div id="paymentTermField"
|
|
441
|
-
class="o-forms__group ncf__payment-term"
|
|
442
|
-
data-country-code
|
|
443
|
-
>
|
|
444
|
-
<div class>
|
|
445
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round ncf__payment-term__item--discount">
|
|
446
|
-
<input type="radio"
|
|
447
|
-
id="monthly"
|
|
448
|
-
name="paymentTerm"
|
|
449
|
-
value="monthly"
|
|
450
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
451
|
-
>
|
|
452
|
-
<label for="monthly"
|
|
453
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
454
|
-
>
|
|
455
|
-
<span class="ncf__payment-term__discount">
|
|
456
|
-
Save 25% off off RRP
|
|
457
|
-
</span>
|
|
458
|
-
<span class="ncf__payment-term__title">
|
|
459
|
-
Monthly
|
|
460
|
-
</span>
|
|
461
|
-
<div class="ncf__payment-term__description">
|
|
462
|
-
<span class="ncf__payment-term__price">
|
|
463
|
-
£20.00
|
|
464
|
-
</span>
|
|
465
|
-
per month
|
|
466
|
-
<p class="ncf__payment-term__renews-text">
|
|
467
|
-
Renews monthly unless cancelled
|
|
468
|
-
</p>
|
|
469
|
-
</div>
|
|
470
|
-
</label>
|
|
471
|
-
</div>
|
|
472
|
-
</div>
|
|
473
|
-
<div class="ncf__payment-term__legal">
|
|
474
|
-
<p>
|
|
475
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
476
|
-
</p>
|
|
477
|
-
<p class="o3-type-body-base">
|
|
478
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
479
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
480
|
-
title="FT Legal Terms and Conditions help page"
|
|
481
|
-
target="_blank"
|
|
482
|
-
rel="noopener noreferrer"
|
|
483
|
-
>
|
|
484
|
-
Terms & Conditions
|
|
485
|
-
</a>
|
|
486
|
-
.
|
|
487
|
-
</p>
|
|
488
|
-
</div>
|
|
489
|
-
</div>
|
|
490
|
-
`;
|
|
491
|
-
|
|
492
|
-
exports[`PaymentTerm monthly option render option with isTrial 1`] = `
|
|
493
|
-
<div id="paymentTermField"
|
|
494
|
-
class="o-forms__group ncf__payment-term"
|
|
495
|
-
data-country-code
|
|
496
|
-
>
|
|
497
|
-
<div class>
|
|
498
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
499
|
-
<input type="radio"
|
|
500
|
-
id="monthly"
|
|
501
|
-
name="paymentTerm"
|
|
502
|
-
value="monthly"
|
|
503
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
504
|
-
>
|
|
505
|
-
<label for="monthly"
|
|
506
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
507
|
-
>
|
|
508
|
-
<span class="ncf__payment-term__title">
|
|
509
|
-
Trial: Premium Digital - Monthly
|
|
510
|
-
</span>
|
|
511
|
-
<div class="ncf__payment-term__description">
|
|
512
|
-
4 weeks for
|
|
513
|
-
<span class="ncf__payment-term__trial-price">
|
|
514
|
-
</span>
|
|
515
|
-
<br>
|
|
516
|
-
Unless you cancel during your trial you will be billed
|
|
517
|
-
<span class="ncf__payment-term__price">
|
|
518
|
-
£20.00
|
|
519
|
-
</span>
|
|
520
|
-
per month after the trial period.
|
|
521
|
-
</div>
|
|
522
|
-
</label>
|
|
523
|
-
</div>
|
|
524
|
-
</div>
|
|
525
|
-
<div class="ncf__payment-term__legal">
|
|
526
|
-
<p>
|
|
527
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
528
|
-
</p>
|
|
529
|
-
<p class="o3-type-body-base">
|
|
530
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
531
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
532
|
-
title="FT Legal Terms and Conditions help page"
|
|
533
|
-
target="_blank"
|
|
534
|
-
rel="noopener noreferrer"
|
|
535
|
-
>
|
|
536
|
-
Terms & Conditions
|
|
537
|
-
</a>
|
|
538
|
-
.
|
|
539
|
-
</p>
|
|
540
|
-
</div>
|
|
541
|
-
</div>
|
|
542
|
-
`;
|
|
543
|
-
|
|
544
|
-
exports[`PaymentTerm monthly option render option with monthlyPrice 1`] = `
|
|
545
|
-
<div id="paymentTermField"
|
|
546
|
-
class="o-forms__group ncf__payment-term"
|
|
547
|
-
data-country-code
|
|
548
|
-
>
|
|
549
|
-
<div class>
|
|
550
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
551
|
-
<input type="radio"
|
|
552
|
-
id="monthly"
|
|
553
|
-
name="paymentTerm"
|
|
554
|
-
value="monthly"
|
|
555
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
556
|
-
>
|
|
557
|
-
<label for="monthly"
|
|
558
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
559
|
-
>
|
|
560
|
-
<span class="ncf__payment-term__title">
|
|
561
|
-
Monthly
|
|
562
|
-
</span>
|
|
563
|
-
<div class="ncf__payment-term__description">
|
|
564
|
-
<span class="ncf__payment-term__price">
|
|
565
|
-
£20.00
|
|
566
|
-
</span>
|
|
567
|
-
per month
|
|
568
|
-
<p class="ncf__payment-term__renews-text">
|
|
569
|
-
Renews monthly unless cancelled
|
|
570
|
-
</p>
|
|
571
|
-
</div>
|
|
572
|
-
</label>
|
|
573
|
-
</div>
|
|
574
|
-
</div>
|
|
575
|
-
<div class="ncf__payment-term__legal">
|
|
576
|
-
<p>
|
|
577
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
578
|
-
</p>
|
|
579
|
-
<p class="o3-type-body-base">
|
|
580
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
581
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
582
|
-
title="FT Legal Terms and Conditions help page"
|
|
583
|
-
target="_blank"
|
|
584
|
-
rel="noopener noreferrer"
|
|
585
|
-
>
|
|
586
|
-
Terms & Conditions
|
|
587
|
-
</a>
|
|
588
|
-
.
|
|
589
|
-
</p>
|
|
590
|
-
</div>
|
|
591
|
-
</div>
|
|
592
|
-
`;
|
|
593
|
-
|
|
594
|
-
exports[`PaymentTerm monthly option render option with selected 1`] = `
|
|
595
|
-
<div id="paymentTermField"
|
|
596
|
-
class="o-forms__group ncf__payment-term"
|
|
597
|
-
data-country-code
|
|
598
|
-
>
|
|
599
|
-
<div class>
|
|
600
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
601
|
-
<input type="radio"
|
|
602
|
-
id="monthly"
|
|
603
|
-
name="paymentTerm"
|
|
604
|
-
value="monthly"
|
|
605
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
606
|
-
checked
|
|
607
|
-
>
|
|
608
|
-
<label for="monthly"
|
|
609
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
610
|
-
>
|
|
611
|
-
<span class="ncf__payment-term__title">
|
|
612
|
-
Monthly
|
|
613
|
-
</span>
|
|
614
|
-
<div class="ncf__payment-term__description">
|
|
615
|
-
<span class="ncf__payment-term__price">
|
|
616
|
-
£20.00
|
|
617
|
-
</span>
|
|
618
|
-
per month
|
|
619
|
-
<p class="ncf__payment-term__renews-text">
|
|
620
|
-
Renews monthly unless cancelled
|
|
621
|
-
</p>
|
|
622
|
-
</div>
|
|
623
|
-
</label>
|
|
624
|
-
</div>
|
|
625
|
-
</div>
|
|
626
|
-
<div class="ncf__payment-term__legal">
|
|
627
|
-
<p>
|
|
628
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
629
|
-
</p>
|
|
630
|
-
<p class="o3-type-body-base">
|
|
631
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
632
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
633
|
-
title="FT Legal Terms and Conditions help page"
|
|
634
|
-
target="_blank"
|
|
635
|
-
rel="noopener noreferrer"
|
|
636
|
-
>
|
|
637
|
-
Terms & Conditions
|
|
638
|
-
</a>
|
|
639
|
-
.
|
|
640
|
-
</p>
|
|
641
|
-
</div>
|
|
642
|
-
</div>
|
|
643
|
-
`;
|
|
644
|
-
|
|
645
|
-
exports[`PaymentTerm monthly option render option with trial 1`] = `
|
|
646
|
-
<div id="paymentTermField"
|
|
647
|
-
class="o-forms__group ncf__payment-term"
|
|
648
|
-
data-country-code
|
|
649
|
-
>
|
|
650
|
-
<div class>
|
|
651
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
652
|
-
<input type="radio"
|
|
653
|
-
id="monthly"
|
|
654
|
-
name="paymentTerm"
|
|
655
|
-
value="monthly"
|
|
656
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
657
|
-
>
|
|
658
|
-
<label for="monthly"
|
|
659
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
660
|
-
>
|
|
661
|
-
<span class="ncf__payment-term__title">
|
|
662
|
-
Trial: Premium Digital - Monthly
|
|
663
|
-
</span>
|
|
664
|
-
<div class="ncf__payment-term__description">
|
|
665
|
-
6 weeks for
|
|
666
|
-
<span class="ncf__payment-term__trial-price">
|
|
667
|
-
£1.00
|
|
668
|
-
</span>
|
|
669
|
-
<br>
|
|
670
|
-
Unless you cancel during your trial you will be billed
|
|
671
|
-
<span class="ncf__payment-term__price">
|
|
672
|
-
£20.00
|
|
673
|
-
</span>
|
|
674
|
-
per month after the trial period.
|
|
675
|
-
</div>
|
|
676
|
-
</label>
|
|
677
|
-
</div>
|
|
678
|
-
</div>
|
|
679
|
-
<div class="ncf__payment-term__legal">
|
|
680
|
-
<p>
|
|
681
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
682
|
-
</p>
|
|
683
|
-
<p class="o3-type-body-base">
|
|
684
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
685
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
686
|
-
title="FT Legal Terms and Conditions help page"
|
|
687
|
-
target="_blank"
|
|
688
|
-
rel="noopener noreferrer"
|
|
689
|
-
>
|
|
690
|
-
Terms & Conditions
|
|
691
|
-
</a>
|
|
692
|
-
.
|
|
693
|
-
</p>
|
|
694
|
-
</div>
|
|
695
|
-
</div>
|
|
696
|
-
`;
|
|
697
|
-
|
|
698
|
-
exports[`PaymentTerm quarterly option render option 1`] = `
|
|
699
|
-
<div id="paymentTermField"
|
|
700
|
-
class="o-forms__group ncf__payment-term"
|
|
701
|
-
data-country-code
|
|
702
|
-
>
|
|
703
|
-
<div class>
|
|
704
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
705
|
-
<input type="radio"
|
|
706
|
-
id="quarterly"
|
|
707
|
-
name="paymentTerm"
|
|
708
|
-
value="quarterly"
|
|
709
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
710
|
-
>
|
|
711
|
-
<label for="quarterly"
|
|
712
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
713
|
-
>
|
|
714
|
-
<span class="ncf__payment-term__title">
|
|
715
|
-
Quarterly
|
|
716
|
-
</span>
|
|
717
|
-
<div class="ncf__payment-term__description">
|
|
718
|
-
<span class="ncf__payment-term__price">
|
|
719
|
-
£20.00
|
|
720
|
-
</span>
|
|
721
|
-
per quarter
|
|
722
|
-
<p class="ncf__payment-term__renews-text">
|
|
723
|
-
Renews quarterly unless cancelled
|
|
724
|
-
</p>
|
|
725
|
-
</div>
|
|
726
|
-
</label>
|
|
727
|
-
</div>
|
|
728
|
-
</div>
|
|
729
|
-
<div class="ncf__payment-term__legal">
|
|
730
|
-
<p>
|
|
731
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
732
|
-
</p>
|
|
733
|
-
<p class="o3-type-body-base">
|
|
734
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
735
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
736
|
-
title="FT Legal Terms and Conditions help page"
|
|
737
|
-
target="_blank"
|
|
738
|
-
rel="noopener noreferrer"
|
|
739
|
-
>
|
|
740
|
-
Terms & Conditions
|
|
741
|
-
</a>
|
|
742
|
-
.
|
|
743
|
-
</p>
|
|
744
|
-
</div>
|
|
745
|
-
</div>
|
|
746
|
-
`;
|
|
747
|
-
|
|
748
|
-
exports[`PaymentTerm quarterly option render option with discount 1`] = `
|
|
749
|
-
<div id="paymentTermField"
|
|
750
|
-
class="o-forms__group ncf__payment-term"
|
|
751
|
-
data-country-code
|
|
752
|
-
>
|
|
753
|
-
<div class>
|
|
754
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round ncf__payment-term__item--discount">
|
|
755
|
-
<input type="radio"
|
|
756
|
-
id="quarterly"
|
|
757
|
-
name="paymentTerm"
|
|
758
|
-
value="quarterly"
|
|
759
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
760
|
-
>
|
|
761
|
-
<label for="quarterly"
|
|
762
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
763
|
-
>
|
|
764
|
-
<span class="ncf__payment-term__discount">
|
|
765
|
-
Save 25% off off RRP
|
|
766
|
-
</span>
|
|
767
|
-
<span class="ncf__payment-term__title">
|
|
768
|
-
Quarterly
|
|
769
|
-
</span>
|
|
770
|
-
<div class="ncf__payment-term__description">
|
|
771
|
-
<span class="ncf__payment-term__price">
|
|
772
|
-
£20.00
|
|
773
|
-
</span>
|
|
774
|
-
per quarter
|
|
775
|
-
<p class="ncf__payment-term__renews-text">
|
|
776
|
-
Renews quarterly unless cancelled
|
|
777
|
-
</p>
|
|
778
|
-
</div>
|
|
779
|
-
</label>
|
|
780
|
-
</div>
|
|
781
|
-
</div>
|
|
782
|
-
<div class="ncf__payment-term__legal">
|
|
783
|
-
<p>
|
|
784
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
785
|
-
</p>
|
|
786
|
-
<p class="o3-type-body-base">
|
|
787
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
788
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
789
|
-
title="FT Legal Terms and Conditions help page"
|
|
790
|
-
target="_blank"
|
|
791
|
-
rel="noopener noreferrer"
|
|
792
|
-
>
|
|
793
|
-
Terms & Conditions
|
|
794
|
-
</a>
|
|
795
|
-
.
|
|
796
|
-
</p>
|
|
797
|
-
</div>
|
|
798
|
-
</div>
|
|
799
|
-
`;
|
|
800
|
-
|
|
801
|
-
exports[`PaymentTerm quarterly option render option with isTrial 1`] = `
|
|
802
|
-
<div id="paymentTermField"
|
|
803
|
-
class="o-forms__group ncf__payment-term"
|
|
804
|
-
data-country-code
|
|
805
|
-
>
|
|
806
|
-
<div class>
|
|
807
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
808
|
-
<input type="radio"
|
|
809
|
-
id="quarterly"
|
|
810
|
-
name="paymentTerm"
|
|
811
|
-
value="quarterly"
|
|
812
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
813
|
-
>
|
|
814
|
-
<label for="quarterly"
|
|
815
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
816
|
-
>
|
|
817
|
-
<span class="ncf__payment-term__title">
|
|
818
|
-
Trial: Premium Digital - Quarterly
|
|
819
|
-
</span>
|
|
820
|
-
<div class="ncf__payment-term__description">
|
|
821
|
-
4 weeks for
|
|
822
|
-
<span class="ncf__payment-term__trial-price">
|
|
823
|
-
</span>
|
|
824
|
-
<br>
|
|
825
|
-
Unless you cancel during your trial you will be billed
|
|
826
|
-
<span class="ncf__payment-term__price">
|
|
827
|
-
£20.00
|
|
828
|
-
</span>
|
|
829
|
-
per quarter after the trial period.
|
|
830
|
-
</div>
|
|
831
|
-
</label>
|
|
832
|
-
</div>
|
|
833
|
-
</div>
|
|
834
|
-
<div class="ncf__payment-term__legal">
|
|
835
|
-
<p>
|
|
836
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
837
|
-
</p>
|
|
838
|
-
<p class="o3-type-body-base">
|
|
839
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
840
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
841
|
-
title="FT Legal Terms and Conditions help page"
|
|
842
|
-
target="_blank"
|
|
843
|
-
rel="noopener noreferrer"
|
|
844
|
-
>
|
|
845
|
-
Terms & Conditions
|
|
846
|
-
</a>
|
|
847
|
-
.
|
|
848
|
-
</p>
|
|
849
|
-
</div>
|
|
850
|
-
</div>
|
|
851
|
-
`;
|
|
852
|
-
|
|
853
|
-
exports[`PaymentTerm quarterly option render option with monthlyPrice 1`] = `
|
|
854
|
-
<div id="paymentTermField"
|
|
855
|
-
class="o-forms__group ncf__payment-term"
|
|
856
|
-
data-country-code
|
|
857
|
-
>
|
|
858
|
-
<div class>
|
|
859
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
860
|
-
<input type="radio"
|
|
861
|
-
id="quarterly"
|
|
862
|
-
name="paymentTerm"
|
|
863
|
-
value="quarterly"
|
|
864
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
865
|
-
>
|
|
866
|
-
<label for="quarterly"
|
|
867
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
868
|
-
>
|
|
869
|
-
<span class="ncf__payment-term__title">
|
|
870
|
-
Quarterly
|
|
871
|
-
</span>
|
|
872
|
-
<div class="ncf__payment-term__description">
|
|
873
|
-
<span class="ncf__payment-term__price">
|
|
874
|
-
£20.00
|
|
875
|
-
</span>
|
|
876
|
-
per quarter
|
|
877
|
-
<p class="ncf__payment-term__renews-text">
|
|
878
|
-
Renews quarterly unless cancelled
|
|
879
|
-
</p>
|
|
880
|
-
</div>
|
|
881
|
-
</label>
|
|
882
|
-
</div>
|
|
883
|
-
</div>
|
|
884
|
-
<div class="ncf__payment-term__legal">
|
|
885
|
-
<p>
|
|
886
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
887
|
-
</p>
|
|
888
|
-
<p class="o3-type-body-base">
|
|
889
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
890
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
891
|
-
title="FT Legal Terms and Conditions help page"
|
|
892
|
-
target="_blank"
|
|
893
|
-
rel="noopener noreferrer"
|
|
894
|
-
>
|
|
895
|
-
Terms & Conditions
|
|
896
|
-
</a>
|
|
897
|
-
.
|
|
898
|
-
</p>
|
|
899
|
-
</div>
|
|
900
|
-
</div>
|
|
901
|
-
`;
|
|
902
|
-
|
|
903
|
-
exports[`PaymentTerm quarterly option render option with selected 1`] = `
|
|
904
|
-
<div id="paymentTermField"
|
|
905
|
-
class="o-forms__group ncf__payment-term"
|
|
906
|
-
data-country-code
|
|
907
|
-
>
|
|
908
|
-
<div class>
|
|
909
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
910
|
-
<input type="radio"
|
|
911
|
-
id="quarterly"
|
|
912
|
-
name="paymentTerm"
|
|
913
|
-
value="quarterly"
|
|
914
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
915
|
-
checked
|
|
916
|
-
>
|
|
917
|
-
<label for="quarterly"
|
|
918
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
919
|
-
>
|
|
920
|
-
<span class="ncf__payment-term__title">
|
|
921
|
-
Quarterly
|
|
922
|
-
</span>
|
|
923
|
-
<div class="ncf__payment-term__description">
|
|
924
|
-
<span class="ncf__payment-term__price">
|
|
925
|
-
£20.00
|
|
926
|
-
</span>
|
|
927
|
-
per quarter
|
|
928
|
-
<p class="ncf__payment-term__renews-text">
|
|
929
|
-
Renews quarterly unless cancelled
|
|
930
|
-
</p>
|
|
931
|
-
</div>
|
|
932
|
-
</label>
|
|
933
|
-
</div>
|
|
934
|
-
</div>
|
|
935
|
-
<div class="ncf__payment-term__legal">
|
|
936
|
-
<p>
|
|
937
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
938
|
-
</p>
|
|
939
|
-
<p class="o3-type-body-base">
|
|
940
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
941
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
942
|
-
title="FT Legal Terms and Conditions help page"
|
|
943
|
-
target="_blank"
|
|
944
|
-
rel="noopener noreferrer"
|
|
945
|
-
>
|
|
946
|
-
Terms & Conditions
|
|
947
|
-
</a>
|
|
948
|
-
.
|
|
949
|
-
</p>
|
|
950
|
-
</div>
|
|
951
|
-
</div>
|
|
952
|
-
`;
|
|
953
|
-
|
|
954
|
-
exports[`PaymentTerm quarterly option render option with trial 1`] = `
|
|
955
|
-
<div id="paymentTermField"
|
|
956
|
-
class="o-forms__group ncf__payment-term"
|
|
957
|
-
data-country-code
|
|
958
|
-
>
|
|
959
|
-
<div class>
|
|
960
|
-
<div class="ncf__payment-term__item o-forms-input--radio-round">
|
|
961
|
-
<input type="radio"
|
|
962
|
-
id="quarterly"
|
|
963
|
-
name="paymentTerm"
|
|
964
|
-
value="quarterly"
|
|
965
|
-
class="o-forms-input__radio o-forms-input__radio--right ncf__payment-term__input"
|
|
966
|
-
>
|
|
967
|
-
<label for="quarterly"
|
|
968
|
-
class="o-forms-input__label ncf__payment-term__label"
|
|
969
|
-
>
|
|
970
|
-
<span class="ncf__payment-term__title">
|
|
971
|
-
Trial: Premium Digital - Quarterly
|
|
972
|
-
</span>
|
|
973
|
-
<div class="ncf__payment-term__description">
|
|
974
|
-
6 weeks for
|
|
975
|
-
<span class="ncf__payment-term__trial-price">
|
|
976
|
-
£1.00
|
|
977
|
-
</span>
|
|
978
|
-
<br>
|
|
979
|
-
Unless you cancel during your trial you will be billed
|
|
980
|
-
<span class="ncf__payment-term__price">
|
|
981
|
-
£20.00
|
|
982
|
-
</span>
|
|
983
|
-
per quarter after the trial period.
|
|
984
|
-
</div>
|
|
985
|
-
</label>
|
|
986
|
-
</div>
|
|
987
|
-
</div>
|
|
988
|
-
<div class="ncf__payment-term__legal">
|
|
989
|
-
<p>
|
|
990
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
991
|
-
</p>
|
|
992
|
-
<p class="o3-type-body-base">
|
|
993
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
994
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
995
|
-
title="FT Legal Terms and Conditions help page"
|
|
996
|
-
target="_blank"
|
|
997
|
-
rel="noopener noreferrer"
|
|
998
|
-
>
|
|
999
|
-
Terms & Conditions
|
|
1000
|
-
</a>
|
|
1001
|
-
.
|
|
1002
|
-
</p>
|
|
1003
|
-
</div>
|
|
1004
|
-
</div>
|
|
1005
|
-
`;
|
|
1006
|
-
|
|
1007
|
-
exports[`PaymentTerm render with defaults 1`] = `
|
|
1008
|
-
<div id="paymentTermField"
|
|
1009
|
-
class="o-forms__group ncf__payment-term"
|
|
1010
|
-
data-country-code
|
|
1011
|
-
>
|
|
1012
|
-
<div class>
|
|
1013
|
-
</div>
|
|
1014
|
-
<div class="ncf__payment-term__legal">
|
|
1015
|
-
<p>
|
|
1016
|
-
With all subscription types, we will automatically renew your subscription using the payment method provided unless you cancel before your renewal date.
|
|
1017
|
-
</p>
|
|
1018
|
-
<p class="o3-type-body-base">
|
|
1019
|
-
We will notify you at least 14 days in advance of any changes to the price in your subscription that would apply upon next renewal. Find out more about our cancellation policy in our
|
|
1020
|
-
<a href="https://help.ft.com/legal-privacy/terms-and-conditions/"
|
|
1021
|
-
title="FT Legal Terms and Conditions help page"
|
|
1022
|
-
target="_blank"
|
|
1023
|
-
rel="noopener noreferrer"
|
|
1024
|
-
>
|
|
1025
|
-
Terms & Conditions
|
|
1026
|
-
</a>
|
|
1027
|
-
.
|
|
1028
|
-
</p>
|
|
1029
|
-
</div>
|
|
1030
|
-
</div>
|
|
1031
|
-
`;
|
|
1032
|
-
|
|
1033
|
-
exports[`PaymentTerm render with isPrintOrBundle 1`] = `
|
|
3
|
+
exports[`PaymentTerm default props are used renders correctly 1`] = `
|
|
1034
4
|
<div id="paymentTermField"
|
|
1035
5
|
class="o-forms__group ncf__payment-term"
|
|
1036
6
|
data-country-code
|