@newskit-render/core 1.50.1 → 1.63.2
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/CHANGELOG.md +324 -0
- package/__pacts__/spec/newskitApi.consumer.pact.ts +19 -32
- package/__tests__/pages/[articleSlug].test.tsx +12 -8
- package/__tests__/pages/__snapshots__/brightcove.test.tsx.snap +20 -0
- package/__tests__/pages/__snapshots__/home.test.tsx.snap +241 -1846
- package/__tests__/pages/brightcove.test.tsx +34 -0
- package/__tests__/pages/home.test.tsx +22 -12
- package/__tests__/pages/mocks.ts +29 -0
- package/__tests__/pages/relatedArticles.test.tsx +76 -0
- package/components/article/RelatedArticles.tsx +48 -55
- package/components/article/__tests__/__snapshots__/index.test.tsx.snap +414 -3366
- package/components/article/__tests__/index.test.tsx +46 -2
- package/components/article/index.tsx +28 -15
- package/components/footer/__snapshots__/index.test.tsx.snap +37 -271
- package/components/header/index.tsx +7 -0
- package/components/section/layouts/Rows.tsx +36 -17
- package/components/section/layouts/__tests__/Rows.test.tsx +12 -0
- package/components/section/layouts/__tests__/__snapshots__/Lead.test.tsx.snap +36 -530
- package/components/section/layouts/__tests__/__snapshots__/SectionTitle.test.tsx.snap +42 -766
- package/components/section/layouts/types.ts +3 -0
- package/config/index.ts +85 -0
- package/constants/index.ts +3 -1
- package/cypress/e2e/account/accessibility.spec.js +14 -17
- package/cypress/e2e/account/account-subscription.spec.js +9 -8
- package/cypress/e2e/account/payment-failer.spec.js +3 -3
- package/cypress/support/commands.js +2 -2
- package/helpers/__tests__/getUser.test.ts +7 -8
- package/helpers/logger.ts +3 -1
- package/helpers/mocks/articleMock.ts +1 -1
- package/helpers/mocks/getUniversalArticleMock.ts +13 -0
- package/helpers/setupTests.ts +4 -0
- package/jest.config.js +22 -19
- package/package.json +11 -11
- package/pages/[section]/[articleId]/[articleSlug].tsx +9 -4
- package/pages/[section]/[articleId]/relatedArticles.tsx +85 -0
- package/pages/_app.tsx +4 -3
- package/pages/_document.tsx +17 -18
- package/pages/api/auth/[...nextauth].ts +2 -3
- package/pages/api/feed.ts +7 -3
- package/pages/api/news-sitemap.ts +4 -6
- package/pages/api/sitemap.ts +10 -7
- package/pages/help-hub/[id]/index.tsx +11 -0
- package/pages/help-hub/index.tsx +11 -0
- package/pages/index.tsx +1 -0
- package/pages/player/brightcove.tsx +19 -0
- package/pages/preview/[articleId]/version/[versionId]/index.tsx +9 -4
- package/public/icon.png +0 -0
- package/queries/getRadioPosts.ts +1 -1
- package/queries/getUniversalArticle.ts +13 -0
- package/temp/header.tsx +7 -0
|
@@ -2,542 +2,48 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Lead should render Lead 1`] = `
|
|
4
4
|
<DocumentFragment>
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
-webkit-column-gap: 24px;
|
|
8
|
-
column-gap: 24px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@media screen and (max-width: 767px) {
|
|
12
|
-
.emotion-0 {
|
|
13
|
-
row-gap: 40px;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@media screen and (min-width: 768px) and (max-width: 1439px) {
|
|
18
|
-
.emotion-0 {
|
|
19
|
-
row-gap: 32px;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
@media screen and (min-width: 1440px) {
|
|
24
|
-
.emotion-0 {
|
|
25
|
-
row-gap: 0;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
@media screen and (min-width: 1024px) {
|
|
30
|
-
.emotion-0 {
|
|
31
|
-
grid-template-columns: 2fr 1fr;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.emotion-2 {
|
|
36
|
-
box-sizing: border-box;
|
|
37
|
-
overflow: hidden;
|
|
38
|
-
color: #2E2E2E;
|
|
39
|
-
background-color: #FFFFFF;
|
|
40
|
-
position: relative;
|
|
41
|
-
display: -webkit-box;
|
|
42
|
-
display: -webkit-flex;
|
|
43
|
-
display: -ms-flexbox;
|
|
44
|
-
display: flex;
|
|
45
|
-
-webkit-flex-direction: column;
|
|
46
|
-
-ms-flex-direction: column;
|
|
47
|
-
flex-direction: column;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.emotion-3 {
|
|
51
|
-
box-sizing: border-box;
|
|
52
|
-
display: block;
|
|
53
|
-
position: relative;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
@media screen and (max-width: 767px) {
|
|
57
|
-
.emotion-3 {
|
|
58
|
-
margin-bottom: 20px;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
@media screen and (min-width: 768px) {
|
|
63
|
-
.emotion-3 {
|
|
64
|
-
margin-bottom: 24px;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.emotion-4 {
|
|
69
|
-
position: relative;
|
|
70
|
-
width: 100%;
|
|
71
|
-
display: block;
|
|
72
|
-
padding-top: 0;
|
|
73
|
-
height: auto;
|
|
74
|
-
width: 100%;
|
|
75
|
-
border-radius: 0;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.emotion-5 {
|
|
79
|
-
opacity: 1;
|
|
80
|
-
display: block;
|
|
81
|
-
border-radius: inherit;
|
|
82
|
-
height: auto;
|
|
83
|
-
width: 100%;
|
|
84
|
-
-webkit-animation: fadeIn 300ms;
|
|
85
|
-
animation: fadeIn 300ms;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.emotion-6 {
|
|
89
|
-
box-sizing: border-box;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.emotion-7 {
|
|
93
|
-
box-sizing: border-box;
|
|
94
|
-
padding: 0;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.emotion-7 a:not(.nk-card-link) {
|
|
98
|
-
z-index: 2;
|
|
99
|
-
position: relative;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
@media screen and (max-width: 767px) {
|
|
103
|
-
.emotion-8 {
|
|
104
|
-
margin-bottom: 20px;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
@media screen and (min-width: 768px) {
|
|
109
|
-
.emotion-8 {
|
|
110
|
-
margin-bottom: 24px;
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.emotion-9 {
|
|
115
|
-
-webkit-text-decoration: none;
|
|
116
|
-
text-decoration: none;
|
|
117
|
-
border: none;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.emotion-9 .nk-headline-kicker {
|
|
121
|
-
color: #3358CC;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.emotion-9:hover:not(:disabled) .nk-headline-kicker {
|
|
125
|
-
color: #2B4AAB;
|
|
126
|
-
-webkit-text-decoration: underline;
|
|
127
|
-
text-decoration: underline;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.emotion-9:active:not(:disabled) .nk-headline-kicker {
|
|
131
|
-
color: #213A82;
|
|
132
|
-
-webkit-text-decoration: underline;
|
|
133
|
-
text-decoration: underline;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.emotion-9:visited:not(:disabled) .nk-headline-kicker {
|
|
137
|
-
color: #5E44E4;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.emotion-9 .nk-headline-heading {
|
|
141
|
-
color: #2E2E2E;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.emotion-9:hover:not(:disabled) .nk-headline-heading {
|
|
145
|
-
color: #2B4AAB;
|
|
146
|
-
-webkit-text-decoration: underline;
|
|
147
|
-
text-decoration: underline;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.emotion-9:active:not(:disabled) .nk-headline-heading {
|
|
151
|
-
color: #213A82;
|
|
152
|
-
-webkit-text-decoration: underline;
|
|
153
|
-
text-decoration: underline;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.emotion-9:visited:not(:disabled) .nk-headline-heading {
|
|
157
|
-
color: #5E44E4;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.emotion-9:before {
|
|
161
|
-
content: '';
|
|
162
|
-
top: 0;
|
|
163
|
-
right: 0;
|
|
164
|
-
bottom: 0;
|
|
165
|
-
left: 0;
|
|
166
|
-
overflow: hidden;
|
|
167
|
-
position: absolute;
|
|
168
|
-
z-index: 1;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
@media screen and (max-width: 767px) {
|
|
172
|
-
.emotion-10 {
|
|
173
|
-
font-family: "Bitter",serif;
|
|
174
|
-
font-size: 24px;
|
|
175
|
-
line-height: 27px;
|
|
176
|
-
font-weight: 500;
|
|
177
|
-
letter-spacing: 0;
|
|
178
|
-
padding: 0.5px 0px;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.emotion-10::before {
|
|
182
|
-
content: '';
|
|
183
|
-
margin-bottom: -0.2055em;
|
|
184
|
-
display: block;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.emotion-10::after {
|
|
188
|
-
content: '';
|
|
189
|
-
margin-top: -0.2275em;
|
|
190
|
-
display: block;
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
@media screen and (min-width: 768px) and (max-width: 1439px) {
|
|
195
|
-
.emotion-10 {
|
|
196
|
-
font-family: "Bitter",serif;
|
|
197
|
-
font-size: 36px;
|
|
198
|
-
line-height: 40.5px;
|
|
199
|
-
font-weight: 500;
|
|
200
|
-
letter-spacing: 0;
|
|
201
|
-
padding: 0.5px 0px;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.emotion-10::before {
|
|
205
|
-
content: '';
|
|
206
|
-
margin-bottom: -0.2055em;
|
|
207
|
-
display: block;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.emotion-10::after {
|
|
211
|
-
content: '';
|
|
212
|
-
margin-top: -0.2275em;
|
|
213
|
-
display: block;
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
@media screen and (min-width: 1440px) {
|
|
218
|
-
.emotion-10 {
|
|
219
|
-
font-family: "Bitter",serif;
|
|
220
|
-
font-size: 40px;
|
|
221
|
-
line-height: 45px;
|
|
222
|
-
font-weight: 500;
|
|
223
|
-
letter-spacing: 0;
|
|
224
|
-
padding: 0.5px 0px;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.emotion-10::before {
|
|
228
|
-
content: '';
|
|
229
|
-
margin-bottom: -0.2055em;
|
|
230
|
-
display: block;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.emotion-10::after {
|
|
234
|
-
content: '';
|
|
235
|
-
margin-top: -0.2275em;
|
|
236
|
-
display: block;
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.emotion-11 {
|
|
241
|
-
display: inline;
|
|
242
|
-
font: inherit;
|
|
243
|
-
margin: 0;
|
|
244
|
-
color: #2E2E2E;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.emotion-11:hover:not(:disabled) {
|
|
248
|
-
color: #2B4AAB;
|
|
249
|
-
-webkit-text-decoration: underline;
|
|
250
|
-
text-decoration: underline;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.emotion-11:active:not(:disabled) {
|
|
254
|
-
color: #213A82;
|
|
255
|
-
-webkit-text-decoration: underline;
|
|
256
|
-
text-decoration: underline;
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
.emotion-11:visited:not(:disabled) {
|
|
260
|
-
color: #5E44E4;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.emotion-12 {
|
|
264
|
-
display: grid;
|
|
265
|
-
height: 100%;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
@media screen and (max-width: 767px) {
|
|
269
|
-
.emotion-12 {
|
|
270
|
-
row-gap: 40px;
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
@media screen and (min-width: 768px) and (max-width: 1439px) {
|
|
275
|
-
.emotion-12 {
|
|
276
|
-
row-gap: 32px;
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
@media screen and (min-width: 1440px) {
|
|
281
|
-
.emotion-12 {
|
|
282
|
-
row-gap: 24px;
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
@media screen and (min-width: 768px) {
|
|
287
|
-
.emotion-12 {
|
|
288
|
-
-webkit-column-gap: 20px;
|
|
289
|
-
column-gap: 20px;
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
@media screen and (max-width: 767px) {
|
|
294
|
-
.emotion-12 {
|
|
295
|
-
grid-template-columns: 1fr;
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
@media screen and (min-width: 768px) and (max-width: 1023px) {
|
|
300
|
-
.emotion-12 {
|
|
301
|
-
grid-template-columns: 1fr 1fr;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
@media screen and (min-width: 1024px) {
|
|
306
|
-
.emotion-12 {
|
|
307
|
-
grid-template-columns: 1fr;
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
@media screen and (min-width: 1024px) {
|
|
312
|
-
.emotion-12 {
|
|
313
|
-
-webkit-box-pack: stretch;
|
|
314
|
-
-ms-flex-pack: stretch;
|
|
315
|
-
-webkit-justify-content: stretch;
|
|
316
|
-
justify-content: stretch;
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
@media screen and (min-width: 1024px) {
|
|
321
|
-
.emotion-12 {
|
|
322
|
-
-webkit-align-content: space-between;
|
|
323
|
-
-ms-flex-line-pack: space-between;
|
|
324
|
-
align-content: space-between;
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
.emotion-14 {
|
|
329
|
-
box-sizing: border-box;
|
|
330
|
-
overflow: hidden;
|
|
331
|
-
color: #2E2E2E;
|
|
332
|
-
background-color: #FFFFFF;
|
|
333
|
-
position: relative;
|
|
334
|
-
display: -webkit-box;
|
|
335
|
-
display: -webkit-flex;
|
|
336
|
-
display: -ms-flexbox;
|
|
337
|
-
display: flex;
|
|
338
|
-
-webkit-flex-direction: rowfalse;
|
|
339
|
-
-ms-flex-direction: rowfalse;
|
|
340
|
-
flex-direction: rowfalse;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
.emotion-15 {
|
|
344
|
-
box-sizing: border-box;
|
|
345
|
-
display: block;
|
|
346
|
-
position: relative;
|
|
347
|
-
-webkit-flex: 1;
|
|
348
|
-
-ms-flex: 1;
|
|
349
|
-
flex: 1;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
@media screen and (max-width: 479px) {
|
|
353
|
-
.emotion-15 {
|
|
354
|
-
margin-right: 16px;
|
|
355
|
-
}
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
@media screen and (min-width: 480px) and (max-width: 767px) {
|
|
359
|
-
.emotion-15 {
|
|
360
|
-
margin-right: 16px;
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
@media screen and (min-width: 768px) and (max-width: 1023px) {
|
|
365
|
-
.emotion-15 {
|
|
366
|
-
margin-right: 24px;
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
@media screen and (min-width: 1024px) {
|
|
371
|
-
.emotion-15 {
|
|
372
|
-
margin-right: 24px;
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.emotion-18 {
|
|
377
|
-
box-sizing: border-box;
|
|
378
|
-
display: -webkit-box;
|
|
379
|
-
display: -webkit-flex;
|
|
380
|
-
display: -ms-flexbox;
|
|
381
|
-
display: flex;
|
|
382
|
-
-webkit-flex-direction: column;
|
|
383
|
-
-ms-flex-direction: column;
|
|
384
|
-
flex-direction: column;
|
|
385
|
-
-webkit-flex: 1;
|
|
386
|
-
-ms-flex: 1;
|
|
387
|
-
flex: 1;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.emotion-19 {
|
|
391
|
-
box-sizing: border-box;
|
|
392
|
-
-webkit-flex: 1;
|
|
393
|
-
-ms-flex: 1;
|
|
394
|
-
flex: 1;
|
|
395
|
-
padding: 0;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
.emotion-19 a:not(.nk-card-link) {
|
|
399
|
-
z-index: 2;
|
|
400
|
-
position: relative;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
.emotion-20 {
|
|
404
|
-
margin-bottom: 8px;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
@media screen and (max-width: 479px) {
|
|
408
|
-
.emotion-22 {
|
|
409
|
-
font-family: "Bitter",serif;
|
|
410
|
-
font-size: 20px;
|
|
411
|
-
line-height: 22.5px;
|
|
412
|
-
font-weight: 500;
|
|
413
|
-
letter-spacing: 0;
|
|
414
|
-
padding: 0.5px 0px;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
.emotion-22::before {
|
|
418
|
-
content: '';
|
|
419
|
-
margin-bottom: -0.2055em;
|
|
420
|
-
display: block;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
.emotion-22::after {
|
|
424
|
-
content: '';
|
|
425
|
-
margin-top: -0.2275em;
|
|
426
|
-
display: block;
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
@media screen and (min-width: 480px) and (max-width: 767px) {
|
|
431
|
-
.emotion-22 {
|
|
432
|
-
font-family: "Bitter",serif;
|
|
433
|
-
font-size: 20px;
|
|
434
|
-
line-height: 22.5px;
|
|
435
|
-
font-weight: 500;
|
|
436
|
-
letter-spacing: 0;
|
|
437
|
-
padding: 0.5px 0px;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
.emotion-22::before {
|
|
441
|
-
content: '';
|
|
442
|
-
margin-bottom: -0.2055em;
|
|
443
|
-
display: block;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
.emotion-22::after {
|
|
447
|
-
content: '';
|
|
448
|
-
margin-top: -0.2275em;
|
|
449
|
-
display: block;
|
|
450
|
-
}
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
@media screen and (min-width: 768px) and (max-width: 1023px) {
|
|
454
|
-
.emotion-22 {
|
|
455
|
-
font-family: "Bitter",serif;
|
|
456
|
-
font-size: 22px;
|
|
457
|
-
line-height: 24.75px;
|
|
458
|
-
font-weight: 500;
|
|
459
|
-
letter-spacing: 0;
|
|
460
|
-
padding: 0.5px 0px;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
.emotion-22::before {
|
|
464
|
-
content: '';
|
|
465
|
-
margin-bottom: -0.2055em;
|
|
466
|
-
display: block;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
.emotion-22::after {
|
|
470
|
-
content: '';
|
|
471
|
-
margin-top: -0.2275em;
|
|
472
|
-
display: block;
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
@media screen and (min-width: 1024px) {
|
|
477
|
-
.emotion-22 {
|
|
478
|
-
font-family: "Bitter",serif;
|
|
479
|
-
font-size: 28px;
|
|
480
|
-
line-height: 31.5px;
|
|
481
|
-
font-weight: 500;
|
|
482
|
-
letter-spacing: 0;
|
|
483
|
-
padding: 0.5px 0px;
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
.emotion-22::before {
|
|
487
|
-
content: '';
|
|
488
|
-
margin-bottom: -0.2055em;
|
|
489
|
-
display: block;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
.emotion-22::after {
|
|
493
|
-
content: '';
|
|
494
|
-
margin-top: -0.2275em;
|
|
495
|
-
display: block;
|
|
496
|
-
}
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
<div
|
|
500
|
-
class="emotion-0"
|
|
5
|
+
<div
|
|
6
|
+
class="css-148nb04"
|
|
501
7
|
data-testid="SUPPLEMENT_LEAD_AND_4_STACK-Grid"
|
|
502
8
|
>
|
|
503
9
|
<div
|
|
504
|
-
class="
|
|
10
|
+
class="css-30qa7x"
|
|
505
11
|
data-testid="featureVerticalCell"
|
|
506
12
|
>
|
|
507
13
|
<div
|
|
508
|
-
class="
|
|
14
|
+
class="css-1opc7jp"
|
|
509
15
|
>
|
|
510
16
|
<div
|
|
511
|
-
class="
|
|
17
|
+
class="css-x4egtb"
|
|
512
18
|
>
|
|
513
19
|
<picture
|
|
514
|
-
class="
|
|
20
|
+
class="css-iq6vim"
|
|
515
21
|
>
|
|
516
22
|
<img
|
|
517
23
|
alt=""
|
|
518
|
-
class="
|
|
24
|
+
class="css-ssxt4f"
|
|
519
25
|
src=""
|
|
520
26
|
/>
|
|
521
27
|
</picture>
|
|
522
28
|
</div>
|
|
523
29
|
<div
|
|
524
|
-
class="
|
|
30
|
+
class="css-1shocxe"
|
|
525
31
|
>
|
|
526
32
|
<div
|
|
527
|
-
class="
|
|
33
|
+
class="css-u3mic"
|
|
528
34
|
>
|
|
529
35
|
<div
|
|
530
|
-
class="
|
|
36
|
+
class="css-7q4xyp"
|
|
531
37
|
>
|
|
532
38
|
<a
|
|
533
|
-
class="nk-card-link
|
|
39
|
+
class="nk-card-link css-1cq1vxv"
|
|
534
40
|
href="catagory-one/demo-1/test-headline"
|
|
535
41
|
>
|
|
536
42
|
<section
|
|
537
|
-
class="
|
|
43
|
+
class="css-kxmtg8"
|
|
538
44
|
>
|
|
539
45
|
<h3
|
|
540
|
-
class="nk-headline-heading
|
|
46
|
+
class="nk-headline-heading css-10swdqn"
|
|
541
47
|
>
|
|
542
48
|
test headline
|
|
543
49
|
</h3>
|
|
@@ -549,46 +55,46 @@ exports[`Lead should render Lead 1`] = `
|
|
|
549
55
|
</div>
|
|
550
56
|
</div>
|
|
551
57
|
<div
|
|
552
|
-
class="
|
|
58
|
+
class="css-1roi2fz"
|
|
553
59
|
>
|
|
554
60
|
<div
|
|
555
|
-
class="
|
|
61
|
+
class="css-30qa7x"
|
|
556
62
|
data-testid="titleVerticalCell-0"
|
|
557
63
|
>
|
|
558
64
|
<div
|
|
559
|
-
class="
|
|
65
|
+
class="css-6c0oh5"
|
|
560
66
|
>
|
|
561
67
|
<div
|
|
562
|
-
class="
|
|
68
|
+
class="css-1rsw0n0"
|
|
563
69
|
>
|
|
564
70
|
<picture
|
|
565
|
-
class="
|
|
71
|
+
class="css-iq6vim"
|
|
566
72
|
>
|
|
567
73
|
<img
|
|
568
74
|
alt=""
|
|
569
|
-
class="
|
|
75
|
+
class="css-ssxt4f"
|
|
570
76
|
src=""
|
|
571
77
|
/>
|
|
572
78
|
</picture>
|
|
573
79
|
</div>
|
|
574
80
|
<div
|
|
575
|
-
class="
|
|
81
|
+
class="css-1r2lt0d"
|
|
576
82
|
>
|
|
577
83
|
<div
|
|
578
|
-
class="
|
|
84
|
+
class="css-h6wt93"
|
|
579
85
|
>
|
|
580
86
|
<div
|
|
581
|
-
class="
|
|
87
|
+
class="css-165k7dq"
|
|
582
88
|
>
|
|
583
89
|
<a
|
|
584
|
-
class="nk-card-link
|
|
90
|
+
class="nk-card-link css-1cq1vxv"
|
|
585
91
|
href="catagory-two/demo-2/test-headline-2"
|
|
586
92
|
>
|
|
587
93
|
<section
|
|
588
|
-
class="
|
|
94
|
+
class="css-75k513"
|
|
589
95
|
>
|
|
590
96
|
<h3
|
|
591
|
-
class="nk-headline-heading
|
|
97
|
+
class="nk-headline-heading css-10swdqn"
|
|
592
98
|
>
|
|
593
99
|
test headline 2
|
|
594
100
|
</h3>
|
|
@@ -600,43 +106,43 @@ exports[`Lead should render Lead 1`] = `
|
|
|
600
106
|
</div>
|
|
601
107
|
</div>
|
|
602
108
|
<div
|
|
603
|
-
class="
|
|
109
|
+
class="css-30qa7x"
|
|
604
110
|
data-testid="titleVerticalCell-1"
|
|
605
111
|
>
|
|
606
112
|
<div
|
|
607
|
-
class="
|
|
113
|
+
class="css-6c0oh5"
|
|
608
114
|
>
|
|
609
115
|
<div
|
|
610
|
-
class="
|
|
116
|
+
class="css-1rsw0n0"
|
|
611
117
|
>
|
|
612
118
|
<picture
|
|
613
|
-
class="
|
|
119
|
+
class="css-iq6vim"
|
|
614
120
|
>
|
|
615
121
|
<img
|
|
616
122
|
alt=""
|
|
617
|
-
class="
|
|
123
|
+
class="css-ssxt4f"
|
|
618
124
|
src=""
|
|
619
125
|
/>
|
|
620
126
|
</picture>
|
|
621
127
|
</div>
|
|
622
128
|
<div
|
|
623
|
-
class="
|
|
129
|
+
class="css-1r2lt0d"
|
|
624
130
|
>
|
|
625
131
|
<div
|
|
626
|
-
class="
|
|
132
|
+
class="css-h6wt93"
|
|
627
133
|
>
|
|
628
134
|
<div
|
|
629
|
-
class="
|
|
135
|
+
class="css-165k7dq"
|
|
630
136
|
>
|
|
631
137
|
<a
|
|
632
|
-
class="nk-card-link
|
|
138
|
+
class="nk-card-link css-1cq1vxv"
|
|
633
139
|
href="catagory-three/demo-3/test-headline-3"
|
|
634
140
|
>
|
|
635
141
|
<section
|
|
636
|
-
class="
|
|
142
|
+
class="css-75k513"
|
|
637
143
|
>
|
|
638
144
|
<h3
|
|
639
|
-
class="nk-headline-heading
|
|
145
|
+
class="nk-headline-heading css-10swdqn"
|
|
640
146
|
>
|
|
641
147
|
test headline 3
|
|
642
148
|
</h3>
|