@khanacademy/wonder-blocks-link 4.1.0 → 4.2.0
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 +10 -0
- package/dist/components/link.d.ts +11 -0
- package/dist/components/link.js.flow +13 -0
- package/dist/es/index.js +39 -13
- package/dist/index.js +39 -13
- package/package.json +3 -3
- package/src/__tests__/__snapshots__/custom-snapshot.test.tsx.snap +847 -176
- package/src/components/__tests__/link.test.tsx +90 -62
- package/src/components/link-core.tsx +43 -11
- package/src/components/link.tsx +11 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -21,14 +21,23 @@ exports[`Link <Link tabIndex={-1}> 1`] = `
|
|
|
21
21
|
"alignItems": "center",
|
|
22
22
|
"color": "#1865f2",
|
|
23
23
|
"cursor": "pointer",
|
|
24
|
-
"display": "inline-flex",
|
|
25
24
|
"outline": "none",
|
|
26
25
|
"textDecoration": "none",
|
|
26
|
+
"textUnderlineOffset": "3px",
|
|
27
|
+
"verticalAlign": "bottom",
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
30
|
tabIndex={-1}
|
|
30
31
|
>
|
|
31
|
-
|
|
32
|
+
<span
|
|
33
|
+
style={
|
|
34
|
+
{
|
|
35
|
+
"verticalAlign": "middle",
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
>
|
|
39
|
+
Click me
|
|
40
|
+
</span>
|
|
32
41
|
</a>
|
|
33
42
|
`;
|
|
34
43
|
|
|
@@ -53,14 +62,23 @@ exports[`Link <Link tabIndex={0}> 1`] = `
|
|
|
53
62
|
"alignItems": "center",
|
|
54
63
|
"color": "#1865f2",
|
|
55
64
|
"cursor": "pointer",
|
|
56
|
-
"display": "inline-flex",
|
|
57
65
|
"outline": "none",
|
|
58
66
|
"textDecoration": "none",
|
|
67
|
+
"textUnderlineOffset": "3px",
|
|
68
|
+
"verticalAlign": "bottom",
|
|
59
69
|
}
|
|
60
70
|
}
|
|
61
71
|
tabIndex={0}
|
|
62
72
|
>
|
|
63
|
-
|
|
73
|
+
<span
|
|
74
|
+
style={
|
|
75
|
+
{
|
|
76
|
+
"verticalAlign": "middle",
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
>
|
|
80
|
+
Click me
|
|
81
|
+
</span>
|
|
64
82
|
</a>
|
|
65
83
|
`;
|
|
66
84
|
|
|
@@ -85,14 +103,23 @@ exports[`Link <Link tabIndex={1}> 1`] = `
|
|
|
85
103
|
"alignItems": "center",
|
|
86
104
|
"color": "#1865f2",
|
|
87
105
|
"cursor": "pointer",
|
|
88
|
-
"display": "inline-flex",
|
|
89
106
|
"outline": "none",
|
|
90
107
|
"textDecoration": "none",
|
|
108
|
+
"textUnderlineOffset": "3px",
|
|
109
|
+
"verticalAlign": "bottom",
|
|
91
110
|
}
|
|
92
111
|
}
|
|
93
112
|
tabIndex={1}
|
|
94
113
|
>
|
|
95
|
-
|
|
114
|
+
<span
|
|
115
|
+
style={
|
|
116
|
+
{
|
|
117
|
+
"verticalAlign": "middle",
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
>
|
|
121
|
+
Click me
|
|
122
|
+
</span>
|
|
96
123
|
</a>
|
|
97
124
|
`;
|
|
98
125
|
|
|
@@ -114,18 +141,31 @@ exports[`LinkCore kind:primary href:# light:false visitable:false focused 1`] =
|
|
|
114
141
|
onTouchStart={[Function]}
|
|
115
142
|
style={
|
|
116
143
|
{
|
|
144
|
+
":focusVisible": {
|
|
145
|
+
"borderRadius": 3,
|
|
146
|
+
"color": "#1865f2",
|
|
147
|
+
"outline": "1px solid #1865f2",
|
|
148
|
+
},
|
|
117
149
|
"alignItems": "center",
|
|
118
|
-
"borderRadius": 3,
|
|
119
150
|
"color": "#1865f2",
|
|
120
151
|
"cursor": "pointer",
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
152
|
+
"outline": "none",
|
|
153
|
+
"textDecoration": "underline currentcolor solid",
|
|
154
|
+
"textUnderlineOffset": "3px",
|
|
155
|
+
"verticalAlign": "bottom",
|
|
124
156
|
}
|
|
125
157
|
}
|
|
126
158
|
tabIndex={0}
|
|
127
159
|
>
|
|
128
|
-
|
|
160
|
+
<span
|
|
161
|
+
style={
|
|
162
|
+
{
|
|
163
|
+
"verticalAlign": "middle",
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
>
|
|
167
|
+
Click me
|
|
168
|
+
</span>
|
|
129
169
|
</a>
|
|
130
170
|
`;
|
|
131
171
|
|
|
@@ -147,18 +187,31 @@ exports[`LinkCore kind:primary href:# light:false visitable:false focused 2`] =
|
|
|
147
187
|
onTouchStart={[Function]}
|
|
148
188
|
style={
|
|
149
189
|
{
|
|
190
|
+
":focusVisible": {
|
|
191
|
+
"borderRadius": 3,
|
|
192
|
+
"color": "#1865f2",
|
|
193
|
+
"outline": "1px solid #1865f2",
|
|
194
|
+
},
|
|
150
195
|
"alignItems": "center",
|
|
151
|
-
"borderRadius": 3,
|
|
152
196
|
"color": "#1865f2",
|
|
153
197
|
"cursor": "pointer",
|
|
154
|
-
"
|
|
155
|
-
"outline": "1px solid #1865f2",
|
|
198
|
+
"outline": "none",
|
|
156
199
|
"textDecoration": "none",
|
|
200
|
+
"textUnderlineOffset": "3px",
|
|
201
|
+
"verticalAlign": "bottom",
|
|
157
202
|
}
|
|
158
203
|
}
|
|
159
204
|
tabIndex={0}
|
|
160
205
|
>
|
|
161
|
-
|
|
206
|
+
<span
|
|
207
|
+
style={
|
|
208
|
+
{
|
|
209
|
+
"verticalAlign": "middle",
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
>
|
|
213
|
+
Click me
|
|
214
|
+
</span>
|
|
162
215
|
</a>
|
|
163
216
|
`;
|
|
164
217
|
|
|
@@ -183,14 +236,23 @@ exports[`LinkCore kind:primary href:# light:false visitable:false hovered 1`] =
|
|
|
183
236
|
"alignItems": "center",
|
|
184
237
|
"color": "#1865f2",
|
|
185
238
|
"cursor": "pointer",
|
|
186
|
-
"display": "inline-flex",
|
|
187
239
|
"outline": "none",
|
|
188
240
|
"textDecoration": "underline currentcolor solid",
|
|
241
|
+
"textUnderlineOffset": "3px",
|
|
242
|
+
"verticalAlign": "bottom",
|
|
189
243
|
}
|
|
190
244
|
}
|
|
191
245
|
tabIndex={0}
|
|
192
246
|
>
|
|
193
|
-
|
|
247
|
+
<span
|
|
248
|
+
style={
|
|
249
|
+
{
|
|
250
|
+
"verticalAlign": "middle",
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
>
|
|
254
|
+
Click me
|
|
255
|
+
</span>
|
|
194
256
|
</a>
|
|
195
257
|
`;
|
|
196
258
|
|
|
@@ -215,14 +277,23 @@ exports[`LinkCore kind:primary href:# light:false visitable:false hovered 2`] =
|
|
|
215
277
|
"alignItems": "center",
|
|
216
278
|
"color": "#1865f2",
|
|
217
279
|
"cursor": "pointer",
|
|
218
|
-
"display": "inline-flex",
|
|
219
280
|
"outline": "none",
|
|
220
281
|
"textDecoration": "underline currentcolor solid",
|
|
282
|
+
"textUnderlineOffset": "3px",
|
|
283
|
+
"verticalAlign": "bottom",
|
|
221
284
|
}
|
|
222
285
|
}
|
|
223
286
|
tabIndex={0}
|
|
224
287
|
>
|
|
225
|
-
|
|
288
|
+
<span
|
|
289
|
+
style={
|
|
290
|
+
{
|
|
291
|
+
"verticalAlign": "middle",
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
>
|
|
295
|
+
Click me
|
|
296
|
+
</span>
|
|
226
297
|
</a>
|
|
227
298
|
`;
|
|
228
299
|
|
|
@@ -247,14 +318,23 @@ exports[`LinkCore kind:primary href:# light:false visitable:false pressed 1`] =
|
|
|
247
318
|
"alignItems": "center",
|
|
248
319
|
"color": "#1b50b3",
|
|
249
320
|
"cursor": "pointer",
|
|
250
|
-
"display": "inline-flex",
|
|
251
321
|
"outline": "none",
|
|
252
322
|
"textDecoration": "underline currentcolor solid",
|
|
323
|
+
"textUnderlineOffset": "3px",
|
|
324
|
+
"verticalAlign": "bottom",
|
|
253
325
|
}
|
|
254
326
|
}
|
|
255
327
|
tabIndex={0}
|
|
256
328
|
>
|
|
257
|
-
|
|
329
|
+
<span
|
|
330
|
+
style={
|
|
331
|
+
{
|
|
332
|
+
"verticalAlign": "middle",
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
>
|
|
336
|
+
Click me
|
|
337
|
+
</span>
|
|
258
338
|
</a>
|
|
259
339
|
`;
|
|
260
340
|
|
|
@@ -279,14 +359,23 @@ exports[`LinkCore kind:primary href:# light:false visitable:false pressed 2`] =
|
|
|
279
359
|
"alignItems": "center",
|
|
280
360
|
"color": "#1b50b3",
|
|
281
361
|
"cursor": "pointer",
|
|
282
|
-
"display": "inline-flex",
|
|
283
362
|
"outline": "none",
|
|
284
363
|
"textDecoration": "underline currentcolor solid",
|
|
364
|
+
"textUnderlineOffset": "3px",
|
|
365
|
+
"verticalAlign": "bottom",
|
|
285
366
|
}
|
|
286
367
|
}
|
|
287
368
|
tabIndex={0}
|
|
288
369
|
>
|
|
289
|
-
|
|
370
|
+
<span
|
|
371
|
+
style={
|
|
372
|
+
{
|
|
373
|
+
"verticalAlign": "middle",
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
>
|
|
377
|
+
Click me
|
|
378
|
+
</span>
|
|
290
379
|
</a>
|
|
291
380
|
`;
|
|
292
381
|
|
|
@@ -308,21 +397,37 @@ exports[`LinkCore kind:primary href:# light:false visitable:true focused 1`] = `
|
|
|
308
397
|
onTouchStart={[Function]}
|
|
309
398
|
style={
|
|
310
399
|
{
|
|
400
|
+
":focusVisible": {
|
|
401
|
+
":visited": {
|
|
402
|
+
"color": "#8755ee",
|
|
403
|
+
},
|
|
404
|
+
"borderRadius": 3,
|
|
405
|
+
"color": "#1865f2",
|
|
406
|
+
"outline": "1px solid #1865f2",
|
|
407
|
+
},
|
|
311
408
|
":visited": {
|
|
312
409
|
"color": "#8755ee",
|
|
313
410
|
},
|
|
314
411
|
"alignItems": "center",
|
|
315
|
-
"borderRadius": 3,
|
|
316
412
|
"color": "#1865f2",
|
|
317
413
|
"cursor": "pointer",
|
|
318
|
-
"
|
|
319
|
-
"
|
|
320
|
-
"
|
|
414
|
+
"outline": "none",
|
|
415
|
+
"textDecoration": "underline currentcolor solid",
|
|
416
|
+
"textUnderlineOffset": "3px",
|
|
417
|
+
"verticalAlign": "bottom",
|
|
321
418
|
}
|
|
322
419
|
}
|
|
323
420
|
tabIndex={0}
|
|
324
421
|
>
|
|
325
|
-
|
|
422
|
+
<span
|
|
423
|
+
style={
|
|
424
|
+
{
|
|
425
|
+
"verticalAlign": "middle",
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
>
|
|
429
|
+
Click me
|
|
430
|
+
</span>
|
|
326
431
|
</a>
|
|
327
432
|
`;
|
|
328
433
|
|
|
@@ -344,21 +449,37 @@ exports[`LinkCore kind:primary href:# light:false visitable:true focused 2`] = `
|
|
|
344
449
|
onTouchStart={[Function]}
|
|
345
450
|
style={
|
|
346
451
|
{
|
|
452
|
+
":focusVisible": {
|
|
453
|
+
":visited": {
|
|
454
|
+
"color": "#8755ee",
|
|
455
|
+
},
|
|
456
|
+
"borderRadius": 3,
|
|
457
|
+
"color": "#1865f2",
|
|
458
|
+
"outline": "1px solid #1865f2",
|
|
459
|
+
},
|
|
347
460
|
":visited": {
|
|
348
461
|
"color": "#8755ee",
|
|
349
462
|
},
|
|
350
463
|
"alignItems": "center",
|
|
351
|
-
"borderRadius": 3,
|
|
352
464
|
"color": "#1865f2",
|
|
353
465
|
"cursor": "pointer",
|
|
354
|
-
"
|
|
355
|
-
"outline": "1px solid #1865f2",
|
|
466
|
+
"outline": "none",
|
|
356
467
|
"textDecoration": "none",
|
|
468
|
+
"textUnderlineOffset": "3px",
|
|
469
|
+
"verticalAlign": "bottom",
|
|
357
470
|
}
|
|
358
471
|
}
|
|
359
472
|
tabIndex={0}
|
|
360
473
|
>
|
|
361
|
-
|
|
474
|
+
<span
|
|
475
|
+
style={
|
|
476
|
+
{
|
|
477
|
+
"verticalAlign": "middle",
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
>
|
|
481
|
+
Click me
|
|
482
|
+
</span>
|
|
362
483
|
</a>
|
|
363
484
|
`;
|
|
364
485
|
|
|
@@ -386,14 +507,23 @@ exports[`LinkCore kind:primary href:# light:false visitable:true hovered 1`] = `
|
|
|
386
507
|
"alignItems": "center",
|
|
387
508
|
"color": "#1865f2",
|
|
388
509
|
"cursor": "pointer",
|
|
389
|
-
"display": "inline-flex",
|
|
390
510
|
"outline": "none",
|
|
391
511
|
"textDecoration": "underline currentcolor solid",
|
|
512
|
+
"textUnderlineOffset": "3px",
|
|
513
|
+
"verticalAlign": "bottom",
|
|
392
514
|
}
|
|
393
515
|
}
|
|
394
516
|
tabIndex={0}
|
|
395
517
|
>
|
|
396
|
-
|
|
518
|
+
<span
|
|
519
|
+
style={
|
|
520
|
+
{
|
|
521
|
+
"verticalAlign": "middle",
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
>
|
|
525
|
+
Click me
|
|
526
|
+
</span>
|
|
397
527
|
</a>
|
|
398
528
|
`;
|
|
399
529
|
|
|
@@ -421,14 +551,23 @@ exports[`LinkCore kind:primary href:# light:false visitable:true hovered 2`] = `
|
|
|
421
551
|
"alignItems": "center",
|
|
422
552
|
"color": "#1865f2",
|
|
423
553
|
"cursor": "pointer",
|
|
424
|
-
"display": "inline-flex",
|
|
425
554
|
"outline": "none",
|
|
426
555
|
"textDecoration": "underline currentcolor solid",
|
|
556
|
+
"textUnderlineOffset": "3px",
|
|
557
|
+
"verticalAlign": "bottom",
|
|
427
558
|
}
|
|
428
559
|
}
|
|
429
560
|
tabIndex={0}
|
|
430
561
|
>
|
|
431
|
-
|
|
562
|
+
<span
|
|
563
|
+
style={
|
|
564
|
+
{
|
|
565
|
+
"verticalAlign": "middle",
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
>
|
|
569
|
+
Click me
|
|
570
|
+
</span>
|
|
432
571
|
</a>
|
|
433
572
|
`;
|
|
434
573
|
|
|
@@ -456,14 +595,23 @@ exports[`LinkCore kind:primary href:# light:false visitable:true pressed 1`] = `
|
|
|
456
595
|
"alignItems": "center",
|
|
457
596
|
"color": "#1b50b3",
|
|
458
597
|
"cursor": "pointer",
|
|
459
|
-
"display": "inline-flex",
|
|
460
598
|
"outline": "none",
|
|
461
599
|
"textDecoration": "underline currentcolor solid",
|
|
600
|
+
"textUnderlineOffset": "3px",
|
|
601
|
+
"verticalAlign": "bottom",
|
|
462
602
|
}
|
|
463
603
|
}
|
|
464
604
|
tabIndex={0}
|
|
465
605
|
>
|
|
466
|
-
|
|
606
|
+
<span
|
|
607
|
+
style={
|
|
608
|
+
{
|
|
609
|
+
"verticalAlign": "middle",
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
>
|
|
613
|
+
Click me
|
|
614
|
+
</span>
|
|
467
615
|
</a>
|
|
468
616
|
`;
|
|
469
617
|
|
|
@@ -491,14 +639,23 @@ exports[`LinkCore kind:primary href:# light:false visitable:true pressed 2`] = `
|
|
|
491
639
|
"alignItems": "center",
|
|
492
640
|
"color": "#1b50b3",
|
|
493
641
|
"cursor": "pointer",
|
|
494
|
-
"display": "inline-flex",
|
|
495
642
|
"outline": "none",
|
|
496
643
|
"textDecoration": "underline currentcolor solid",
|
|
644
|
+
"textUnderlineOffset": "3px",
|
|
645
|
+
"verticalAlign": "bottom",
|
|
497
646
|
}
|
|
498
647
|
}
|
|
499
648
|
tabIndex={0}
|
|
500
649
|
>
|
|
501
|
-
|
|
650
|
+
<span
|
|
651
|
+
style={
|
|
652
|
+
{
|
|
653
|
+
"verticalAlign": "middle",
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
>
|
|
657
|
+
Click me
|
|
658
|
+
</span>
|
|
502
659
|
</a>
|
|
503
660
|
`;
|
|
504
661
|
|
|
@@ -520,18 +677,31 @@ exports[`LinkCore kind:primary href:# light:true visitable:false focused 1`] = `
|
|
|
520
677
|
onTouchStart={[Function]}
|
|
521
678
|
style={
|
|
522
679
|
{
|
|
680
|
+
":focusVisible": {
|
|
681
|
+
"borderRadius": 3,
|
|
682
|
+
"color": "#ffffff",
|
|
683
|
+
"outline": "1px solid #ffffff",
|
|
684
|
+
},
|
|
523
685
|
"alignItems": "center",
|
|
524
|
-
"borderRadius": 3,
|
|
525
686
|
"color": "#ffffff",
|
|
526
687
|
"cursor": "pointer",
|
|
527
|
-
"
|
|
528
|
-
"
|
|
529
|
-
"
|
|
688
|
+
"outline": "none",
|
|
689
|
+
"textDecoration": "underline currentcolor solid",
|
|
690
|
+
"textUnderlineOffset": "3px",
|
|
691
|
+
"verticalAlign": "bottom",
|
|
530
692
|
}
|
|
531
693
|
}
|
|
532
694
|
tabIndex={0}
|
|
533
695
|
>
|
|
534
|
-
|
|
696
|
+
<span
|
|
697
|
+
style={
|
|
698
|
+
{
|
|
699
|
+
"verticalAlign": "middle",
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
>
|
|
703
|
+
Click me
|
|
704
|
+
</span>
|
|
535
705
|
</a>
|
|
536
706
|
`;
|
|
537
707
|
|
|
@@ -553,18 +723,31 @@ exports[`LinkCore kind:primary href:# light:true visitable:false focused 2`] = `
|
|
|
553
723
|
onTouchStart={[Function]}
|
|
554
724
|
style={
|
|
555
725
|
{
|
|
726
|
+
":focusVisible": {
|
|
727
|
+
"borderRadius": 3,
|
|
728
|
+
"color": "#ffffff",
|
|
729
|
+
"outline": "1px solid #ffffff",
|
|
730
|
+
},
|
|
556
731
|
"alignItems": "center",
|
|
557
|
-
"borderRadius": 3,
|
|
558
732
|
"color": "#ffffff",
|
|
559
733
|
"cursor": "pointer",
|
|
560
|
-
"
|
|
561
|
-
"outline": "1px solid #ffffff",
|
|
734
|
+
"outline": "none",
|
|
562
735
|
"textDecoration": "none",
|
|
736
|
+
"textUnderlineOffset": "3px",
|
|
737
|
+
"verticalAlign": "bottom",
|
|
563
738
|
}
|
|
564
739
|
}
|
|
565
740
|
tabIndex={0}
|
|
566
741
|
>
|
|
567
|
-
|
|
742
|
+
<span
|
|
743
|
+
style={
|
|
744
|
+
{
|
|
745
|
+
"verticalAlign": "middle",
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
>
|
|
749
|
+
Click me
|
|
750
|
+
</span>
|
|
568
751
|
</a>
|
|
569
752
|
`;
|
|
570
753
|
|
|
@@ -589,14 +772,23 @@ exports[`LinkCore kind:primary href:# light:true visitable:false hovered 1`] = `
|
|
|
589
772
|
"alignItems": "center",
|
|
590
773
|
"color": "#ffffff",
|
|
591
774
|
"cursor": "pointer",
|
|
592
|
-
"display": "inline-flex",
|
|
593
775
|
"outline": "none",
|
|
594
776
|
"textDecoration": "underline currentcolor solid",
|
|
777
|
+
"textUnderlineOffset": "3px",
|
|
778
|
+
"verticalAlign": "bottom",
|
|
595
779
|
}
|
|
596
780
|
}
|
|
597
781
|
tabIndex={0}
|
|
598
782
|
>
|
|
599
|
-
|
|
783
|
+
<span
|
|
784
|
+
style={
|
|
785
|
+
{
|
|
786
|
+
"verticalAlign": "middle",
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
>
|
|
790
|
+
Click me
|
|
791
|
+
</span>
|
|
600
792
|
</a>
|
|
601
793
|
`;
|
|
602
794
|
|
|
@@ -621,14 +813,23 @@ exports[`LinkCore kind:primary href:# light:true visitable:false hovered 2`] = `
|
|
|
621
813
|
"alignItems": "center",
|
|
622
814
|
"color": "#ffffff",
|
|
623
815
|
"cursor": "pointer",
|
|
624
|
-
"display": "inline-flex",
|
|
625
816
|
"outline": "none",
|
|
626
817
|
"textDecoration": "underline currentcolor solid",
|
|
818
|
+
"textUnderlineOffset": "3px",
|
|
819
|
+
"verticalAlign": "bottom",
|
|
627
820
|
}
|
|
628
821
|
}
|
|
629
822
|
tabIndex={0}
|
|
630
823
|
>
|
|
631
|
-
|
|
824
|
+
<span
|
|
825
|
+
style={
|
|
826
|
+
{
|
|
827
|
+
"verticalAlign": "middle",
|
|
828
|
+
}
|
|
829
|
+
}
|
|
830
|
+
>
|
|
831
|
+
Click me
|
|
832
|
+
</span>
|
|
632
833
|
</a>
|
|
633
834
|
`;
|
|
634
835
|
|
|
@@ -653,14 +854,23 @@ exports[`LinkCore kind:primary href:# light:true visitable:false pressed 1`] = `
|
|
|
653
854
|
"alignItems": "center",
|
|
654
855
|
"color": "#b5cefb",
|
|
655
856
|
"cursor": "pointer",
|
|
656
|
-
"display": "inline-flex",
|
|
657
857
|
"outline": "none",
|
|
658
858
|
"textDecoration": "underline currentcolor solid",
|
|
859
|
+
"textUnderlineOffset": "3px",
|
|
860
|
+
"verticalAlign": "bottom",
|
|
659
861
|
}
|
|
660
862
|
}
|
|
661
863
|
tabIndex={0}
|
|
662
864
|
>
|
|
663
|
-
|
|
865
|
+
<span
|
|
866
|
+
style={
|
|
867
|
+
{
|
|
868
|
+
"verticalAlign": "middle",
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
>
|
|
872
|
+
Click me
|
|
873
|
+
</span>
|
|
664
874
|
</a>
|
|
665
875
|
`;
|
|
666
876
|
|
|
@@ -685,14 +895,23 @@ exports[`LinkCore kind:primary href:# light:true visitable:false pressed 2`] = `
|
|
|
685
895
|
"alignItems": "center",
|
|
686
896
|
"color": "#b5cefb",
|
|
687
897
|
"cursor": "pointer",
|
|
688
|
-
"display": "inline-flex",
|
|
689
898
|
"outline": "none",
|
|
690
899
|
"textDecoration": "underline currentcolor solid",
|
|
900
|
+
"textUnderlineOffset": "3px",
|
|
901
|
+
"verticalAlign": "bottom",
|
|
691
902
|
}
|
|
692
903
|
}
|
|
693
904
|
tabIndex={0}
|
|
694
905
|
>
|
|
695
|
-
|
|
906
|
+
<span
|
|
907
|
+
style={
|
|
908
|
+
{
|
|
909
|
+
"verticalAlign": "middle",
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
>
|
|
913
|
+
Click me
|
|
914
|
+
</span>
|
|
696
915
|
</a>
|
|
697
916
|
`;
|
|
698
917
|
|
|
@@ -714,21 +933,37 @@ exports[`LinkCore kind:primary href:# light:true visitable:true focused 1`] = `
|
|
|
714
933
|
onTouchStart={[Function]}
|
|
715
934
|
style={
|
|
716
935
|
{
|
|
936
|
+
":focusVisible": {
|
|
937
|
+
":visited": {
|
|
938
|
+
"color": "#fa50ae",
|
|
939
|
+
},
|
|
940
|
+
"borderRadius": 3,
|
|
941
|
+
"color": "#ffffff",
|
|
942
|
+
"outline": "1px solid #ffffff",
|
|
943
|
+
},
|
|
717
944
|
":visited": {
|
|
718
945
|
"color": "#fa50ae",
|
|
719
946
|
},
|
|
720
947
|
"alignItems": "center",
|
|
721
|
-
"borderRadius": 3,
|
|
722
948
|
"color": "#ffffff",
|
|
723
949
|
"cursor": "pointer",
|
|
724
|
-
"
|
|
725
|
-
"
|
|
726
|
-
"
|
|
950
|
+
"outline": "none",
|
|
951
|
+
"textDecoration": "underline currentcolor solid",
|
|
952
|
+
"textUnderlineOffset": "3px",
|
|
953
|
+
"verticalAlign": "bottom",
|
|
727
954
|
}
|
|
728
955
|
}
|
|
729
956
|
tabIndex={0}
|
|
730
957
|
>
|
|
731
|
-
|
|
958
|
+
<span
|
|
959
|
+
style={
|
|
960
|
+
{
|
|
961
|
+
"verticalAlign": "middle",
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
>
|
|
965
|
+
Click me
|
|
966
|
+
</span>
|
|
732
967
|
</a>
|
|
733
968
|
`;
|
|
734
969
|
|
|
@@ -750,21 +985,37 @@ exports[`LinkCore kind:primary href:# light:true visitable:true focused 2`] = `
|
|
|
750
985
|
onTouchStart={[Function]}
|
|
751
986
|
style={
|
|
752
987
|
{
|
|
988
|
+
":focusVisible": {
|
|
989
|
+
":visited": {
|
|
990
|
+
"color": "#fa50ae",
|
|
991
|
+
},
|
|
992
|
+
"borderRadius": 3,
|
|
993
|
+
"color": "#ffffff",
|
|
994
|
+
"outline": "1px solid #ffffff",
|
|
995
|
+
},
|
|
753
996
|
":visited": {
|
|
754
997
|
"color": "#fa50ae",
|
|
755
998
|
},
|
|
756
999
|
"alignItems": "center",
|
|
757
|
-
"borderRadius": 3,
|
|
758
1000
|
"color": "#ffffff",
|
|
759
1001
|
"cursor": "pointer",
|
|
760
|
-
"
|
|
761
|
-
"outline": "1px solid #ffffff",
|
|
1002
|
+
"outline": "none",
|
|
762
1003
|
"textDecoration": "none",
|
|
1004
|
+
"textUnderlineOffset": "3px",
|
|
1005
|
+
"verticalAlign": "bottom",
|
|
763
1006
|
}
|
|
764
1007
|
}
|
|
765
1008
|
tabIndex={0}
|
|
766
1009
|
>
|
|
767
|
-
|
|
1010
|
+
<span
|
|
1011
|
+
style={
|
|
1012
|
+
{
|
|
1013
|
+
"verticalAlign": "middle",
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
>
|
|
1017
|
+
Click me
|
|
1018
|
+
</span>
|
|
768
1019
|
</a>
|
|
769
1020
|
`;
|
|
770
1021
|
|
|
@@ -792,14 +1043,23 @@ exports[`LinkCore kind:primary href:# light:true visitable:true hovered 1`] = `
|
|
|
792
1043
|
"alignItems": "center",
|
|
793
1044
|
"color": "#ffffff",
|
|
794
1045
|
"cursor": "pointer",
|
|
795
|
-
"display": "inline-flex",
|
|
796
1046
|
"outline": "none",
|
|
797
1047
|
"textDecoration": "underline currentcolor solid",
|
|
1048
|
+
"textUnderlineOffset": "3px",
|
|
1049
|
+
"verticalAlign": "bottom",
|
|
798
1050
|
}
|
|
799
1051
|
}
|
|
800
1052
|
tabIndex={0}
|
|
801
1053
|
>
|
|
802
|
-
|
|
1054
|
+
<span
|
|
1055
|
+
style={
|
|
1056
|
+
{
|
|
1057
|
+
"verticalAlign": "middle",
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1060
|
+
>
|
|
1061
|
+
Click me
|
|
1062
|
+
</span>
|
|
803
1063
|
</a>
|
|
804
1064
|
`;
|
|
805
1065
|
|
|
@@ -827,14 +1087,23 @@ exports[`LinkCore kind:primary href:# light:true visitable:true hovered 2`] = `
|
|
|
827
1087
|
"alignItems": "center",
|
|
828
1088
|
"color": "#ffffff",
|
|
829
1089
|
"cursor": "pointer",
|
|
830
|
-
"display": "inline-flex",
|
|
831
1090
|
"outline": "none",
|
|
832
1091
|
"textDecoration": "underline currentcolor solid",
|
|
1092
|
+
"textUnderlineOffset": "3px",
|
|
1093
|
+
"verticalAlign": "bottom",
|
|
833
1094
|
}
|
|
834
1095
|
}
|
|
835
1096
|
tabIndex={0}
|
|
836
1097
|
>
|
|
837
|
-
|
|
1098
|
+
<span
|
|
1099
|
+
style={
|
|
1100
|
+
{
|
|
1101
|
+
"verticalAlign": "middle",
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1104
|
+
>
|
|
1105
|
+
Click me
|
|
1106
|
+
</span>
|
|
838
1107
|
</a>
|
|
839
1108
|
`;
|
|
840
1109
|
|
|
@@ -862,14 +1131,23 @@ exports[`LinkCore kind:primary href:# light:true visitable:true pressed 1`] = `
|
|
|
862
1131
|
"alignItems": "center",
|
|
863
1132
|
"color": "#b5cefb",
|
|
864
1133
|
"cursor": "pointer",
|
|
865
|
-
"display": "inline-flex",
|
|
866
1134
|
"outline": "none",
|
|
867
1135
|
"textDecoration": "underline currentcolor solid",
|
|
1136
|
+
"textUnderlineOffset": "3px",
|
|
1137
|
+
"verticalAlign": "bottom",
|
|
868
1138
|
}
|
|
869
1139
|
}
|
|
870
1140
|
tabIndex={0}
|
|
871
1141
|
>
|
|
872
|
-
|
|
1142
|
+
<span
|
|
1143
|
+
style={
|
|
1144
|
+
{
|
|
1145
|
+
"verticalAlign": "middle",
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
>
|
|
1149
|
+
Click me
|
|
1150
|
+
</span>
|
|
873
1151
|
</a>
|
|
874
1152
|
`;
|
|
875
1153
|
|
|
@@ -897,14 +1175,23 @@ exports[`LinkCore kind:primary href:# light:true visitable:true pressed 2`] = `
|
|
|
897
1175
|
"alignItems": "center",
|
|
898
1176
|
"color": "#b5cefb",
|
|
899
1177
|
"cursor": "pointer",
|
|
900
|
-
"display": "inline-flex",
|
|
901
1178
|
"outline": "none",
|
|
902
1179
|
"textDecoration": "underline currentcolor solid",
|
|
1180
|
+
"textUnderlineOffset": "3px",
|
|
1181
|
+
"verticalAlign": "bottom",
|
|
903
1182
|
}
|
|
904
1183
|
}
|
|
905
1184
|
tabIndex={0}
|
|
906
1185
|
>
|
|
907
|
-
|
|
1186
|
+
<span
|
|
1187
|
+
style={
|
|
1188
|
+
{
|
|
1189
|
+
"verticalAlign": "middle",
|
|
1190
|
+
}
|
|
1191
|
+
}
|
|
1192
|
+
>
|
|
1193
|
+
Click me
|
|
1194
|
+
</span>
|
|
908
1195
|
</a>
|
|
909
1196
|
`;
|
|
910
1197
|
|
|
@@ -926,18 +1213,31 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
926
1213
|
onTouchStart={[Function]}
|
|
927
1214
|
style={
|
|
928
1215
|
{
|
|
1216
|
+
":focusVisible": {
|
|
1217
|
+
"borderRadius": 3,
|
|
1218
|
+
"color": "#1865f2",
|
|
1219
|
+
"outline": "1px solid #1865f2",
|
|
1220
|
+
},
|
|
929
1221
|
"alignItems": "center",
|
|
930
|
-
"borderRadius": 3,
|
|
931
1222
|
"color": "#1865f2",
|
|
932
1223
|
"cursor": "pointer",
|
|
933
|
-
"
|
|
934
|
-
"
|
|
935
|
-
"
|
|
1224
|
+
"outline": "none",
|
|
1225
|
+
"textDecoration": "underline currentcolor solid",
|
|
1226
|
+
"textUnderlineOffset": "3px",
|
|
1227
|
+
"verticalAlign": "bottom",
|
|
936
1228
|
}
|
|
937
1229
|
}
|
|
938
1230
|
tabIndex={0}
|
|
939
1231
|
>
|
|
940
|
-
|
|
1232
|
+
<span
|
|
1233
|
+
style={
|
|
1234
|
+
{
|
|
1235
|
+
"verticalAlign": "middle",
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
>
|
|
1239
|
+
Click me
|
|
1240
|
+
</span>
|
|
941
1241
|
</a>
|
|
942
1242
|
`;
|
|
943
1243
|
|
|
@@ -959,18 +1259,31 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
959
1259
|
onTouchStart={[Function]}
|
|
960
1260
|
style={
|
|
961
1261
|
{
|
|
1262
|
+
":focusVisible": {
|
|
1263
|
+
"borderRadius": 3,
|
|
1264
|
+
"color": "#1865f2",
|
|
1265
|
+
"outline": "1px solid #1865f2",
|
|
1266
|
+
},
|
|
962
1267
|
"alignItems": "center",
|
|
963
|
-
"borderRadius": 3,
|
|
964
1268
|
"color": "#1865f2",
|
|
965
1269
|
"cursor": "pointer",
|
|
966
|
-
"
|
|
967
|
-
"outline": "1px solid #1865f2",
|
|
1270
|
+
"outline": "none",
|
|
968
1271
|
"textDecoration": "none",
|
|
1272
|
+
"textUnderlineOffset": "3px",
|
|
1273
|
+
"verticalAlign": "bottom",
|
|
969
1274
|
}
|
|
970
1275
|
}
|
|
971
1276
|
tabIndex={0}
|
|
972
1277
|
>
|
|
973
|
-
|
|
1278
|
+
<span
|
|
1279
|
+
style={
|
|
1280
|
+
{
|
|
1281
|
+
"verticalAlign": "middle",
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
>
|
|
1285
|
+
Click me
|
|
1286
|
+
</span>
|
|
974
1287
|
</a>
|
|
975
1288
|
`;
|
|
976
1289
|
|
|
@@ -995,14 +1308,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
995
1308
|
"alignItems": "center",
|
|
996
1309
|
"color": "#1865f2",
|
|
997
1310
|
"cursor": "pointer",
|
|
998
|
-
"display": "inline-flex",
|
|
999
1311
|
"outline": "none",
|
|
1000
1312
|
"textDecoration": "underline currentcolor solid",
|
|
1313
|
+
"textUnderlineOffset": "3px",
|
|
1314
|
+
"verticalAlign": "bottom",
|
|
1001
1315
|
}
|
|
1002
1316
|
}
|
|
1003
1317
|
tabIndex={0}
|
|
1004
1318
|
>
|
|
1005
|
-
|
|
1319
|
+
<span
|
|
1320
|
+
style={
|
|
1321
|
+
{
|
|
1322
|
+
"verticalAlign": "middle",
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
>
|
|
1326
|
+
Click me
|
|
1327
|
+
</span>
|
|
1006
1328
|
</a>
|
|
1007
1329
|
`;
|
|
1008
1330
|
|
|
@@ -1027,14 +1349,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1027
1349
|
"alignItems": "center",
|
|
1028
1350
|
"color": "#1865f2",
|
|
1029
1351
|
"cursor": "pointer",
|
|
1030
|
-
"display": "inline-flex",
|
|
1031
1352
|
"outline": "none",
|
|
1032
1353
|
"textDecoration": "underline currentcolor solid",
|
|
1354
|
+
"textUnderlineOffset": "3px",
|
|
1355
|
+
"verticalAlign": "bottom",
|
|
1033
1356
|
}
|
|
1034
1357
|
}
|
|
1035
1358
|
tabIndex={0}
|
|
1036
1359
|
>
|
|
1037
|
-
|
|
1360
|
+
<span
|
|
1361
|
+
style={
|
|
1362
|
+
{
|
|
1363
|
+
"verticalAlign": "middle",
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
>
|
|
1367
|
+
Click me
|
|
1368
|
+
</span>
|
|
1038
1369
|
</a>
|
|
1039
1370
|
`;
|
|
1040
1371
|
|
|
@@ -1059,14 +1390,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1059
1390
|
"alignItems": "center",
|
|
1060
1391
|
"color": "#1b50b3",
|
|
1061
1392
|
"cursor": "pointer",
|
|
1062
|
-
"display": "inline-flex",
|
|
1063
1393
|
"outline": "none",
|
|
1064
1394
|
"textDecoration": "underline currentcolor solid",
|
|
1395
|
+
"textUnderlineOffset": "3px",
|
|
1396
|
+
"verticalAlign": "bottom",
|
|
1065
1397
|
}
|
|
1066
1398
|
}
|
|
1067
1399
|
tabIndex={0}
|
|
1068
1400
|
>
|
|
1069
|
-
|
|
1401
|
+
<span
|
|
1402
|
+
style={
|
|
1403
|
+
{
|
|
1404
|
+
"verticalAlign": "middle",
|
|
1405
|
+
}
|
|
1406
|
+
}
|
|
1407
|
+
>
|
|
1408
|
+
Click me
|
|
1409
|
+
</span>
|
|
1070
1410
|
</a>
|
|
1071
1411
|
`;
|
|
1072
1412
|
|
|
@@ -1091,14 +1431,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1091
1431
|
"alignItems": "center",
|
|
1092
1432
|
"color": "#1b50b3",
|
|
1093
1433
|
"cursor": "pointer",
|
|
1094
|
-
"display": "inline-flex",
|
|
1095
1434
|
"outline": "none",
|
|
1096
1435
|
"textDecoration": "underline currentcolor solid",
|
|
1436
|
+
"textUnderlineOffset": "3px",
|
|
1437
|
+
"verticalAlign": "bottom",
|
|
1097
1438
|
}
|
|
1098
1439
|
}
|
|
1099
1440
|
tabIndex={0}
|
|
1100
1441
|
>
|
|
1101
|
-
|
|
1442
|
+
<span
|
|
1443
|
+
style={
|
|
1444
|
+
{
|
|
1445
|
+
"verticalAlign": "middle",
|
|
1446
|
+
}
|
|
1447
|
+
}
|
|
1448
|
+
>
|
|
1449
|
+
Click me
|
|
1450
|
+
</span>
|
|
1102
1451
|
</a>
|
|
1103
1452
|
`;
|
|
1104
1453
|
|
|
@@ -1120,21 +1469,37 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1120
1469
|
onTouchStart={[Function]}
|
|
1121
1470
|
style={
|
|
1122
1471
|
{
|
|
1472
|
+
":focusVisible": {
|
|
1473
|
+
":visited": {
|
|
1474
|
+
"color": "#8755ee",
|
|
1475
|
+
},
|
|
1476
|
+
"borderRadius": 3,
|
|
1477
|
+
"color": "#1865f2",
|
|
1478
|
+
"outline": "1px solid #1865f2",
|
|
1479
|
+
},
|
|
1123
1480
|
":visited": {
|
|
1124
1481
|
"color": "#8755ee",
|
|
1125
1482
|
},
|
|
1126
1483
|
"alignItems": "center",
|
|
1127
|
-
"borderRadius": 3,
|
|
1128
1484
|
"color": "#1865f2",
|
|
1129
1485
|
"cursor": "pointer",
|
|
1130
|
-
"
|
|
1131
|
-
"
|
|
1132
|
-
"
|
|
1486
|
+
"outline": "none",
|
|
1487
|
+
"textDecoration": "underline currentcolor solid",
|
|
1488
|
+
"textUnderlineOffset": "3px",
|
|
1489
|
+
"verticalAlign": "bottom",
|
|
1133
1490
|
}
|
|
1134
1491
|
}
|
|
1135
1492
|
tabIndex={0}
|
|
1136
1493
|
>
|
|
1137
|
-
|
|
1494
|
+
<span
|
|
1495
|
+
style={
|
|
1496
|
+
{
|
|
1497
|
+
"verticalAlign": "middle",
|
|
1498
|
+
}
|
|
1499
|
+
}
|
|
1500
|
+
>
|
|
1501
|
+
Click me
|
|
1502
|
+
</span>
|
|
1138
1503
|
</a>
|
|
1139
1504
|
`;
|
|
1140
1505
|
|
|
@@ -1156,21 +1521,37 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1156
1521
|
onTouchStart={[Function]}
|
|
1157
1522
|
style={
|
|
1158
1523
|
{
|
|
1524
|
+
":focusVisible": {
|
|
1525
|
+
":visited": {
|
|
1526
|
+
"color": "#8755ee",
|
|
1527
|
+
},
|
|
1528
|
+
"borderRadius": 3,
|
|
1529
|
+
"color": "#1865f2",
|
|
1530
|
+
"outline": "1px solid #1865f2",
|
|
1531
|
+
},
|
|
1159
1532
|
":visited": {
|
|
1160
1533
|
"color": "#8755ee",
|
|
1161
1534
|
},
|
|
1162
1535
|
"alignItems": "center",
|
|
1163
|
-
"borderRadius": 3,
|
|
1164
1536
|
"color": "#1865f2",
|
|
1165
1537
|
"cursor": "pointer",
|
|
1166
|
-
"
|
|
1167
|
-
"outline": "1px solid #1865f2",
|
|
1538
|
+
"outline": "none",
|
|
1168
1539
|
"textDecoration": "none",
|
|
1540
|
+
"textUnderlineOffset": "3px",
|
|
1541
|
+
"verticalAlign": "bottom",
|
|
1169
1542
|
}
|
|
1170
1543
|
}
|
|
1171
1544
|
tabIndex={0}
|
|
1172
1545
|
>
|
|
1173
|
-
|
|
1546
|
+
<span
|
|
1547
|
+
style={
|
|
1548
|
+
{
|
|
1549
|
+
"verticalAlign": "middle",
|
|
1550
|
+
}
|
|
1551
|
+
}
|
|
1552
|
+
>
|
|
1553
|
+
Click me
|
|
1554
|
+
</span>
|
|
1174
1555
|
</a>
|
|
1175
1556
|
`;
|
|
1176
1557
|
|
|
@@ -1198,14 +1579,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1198
1579
|
"alignItems": "center",
|
|
1199
1580
|
"color": "#1865f2",
|
|
1200
1581
|
"cursor": "pointer",
|
|
1201
|
-
"display": "inline-flex",
|
|
1202
1582
|
"outline": "none",
|
|
1203
1583
|
"textDecoration": "underline currentcolor solid",
|
|
1584
|
+
"textUnderlineOffset": "3px",
|
|
1585
|
+
"verticalAlign": "bottom",
|
|
1204
1586
|
}
|
|
1205
1587
|
}
|
|
1206
1588
|
tabIndex={0}
|
|
1207
1589
|
>
|
|
1208
|
-
|
|
1590
|
+
<span
|
|
1591
|
+
style={
|
|
1592
|
+
{
|
|
1593
|
+
"verticalAlign": "middle",
|
|
1594
|
+
}
|
|
1595
|
+
}
|
|
1596
|
+
>
|
|
1597
|
+
Click me
|
|
1598
|
+
</span>
|
|
1209
1599
|
</a>
|
|
1210
1600
|
`;
|
|
1211
1601
|
|
|
@@ -1233,14 +1623,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1233
1623
|
"alignItems": "center",
|
|
1234
1624
|
"color": "#1865f2",
|
|
1235
1625
|
"cursor": "pointer",
|
|
1236
|
-
"display": "inline-flex",
|
|
1237
1626
|
"outline": "none",
|
|
1238
1627
|
"textDecoration": "underline currentcolor solid",
|
|
1628
|
+
"textUnderlineOffset": "3px",
|
|
1629
|
+
"verticalAlign": "bottom",
|
|
1239
1630
|
}
|
|
1240
1631
|
}
|
|
1241
1632
|
tabIndex={0}
|
|
1242
1633
|
>
|
|
1243
|
-
|
|
1634
|
+
<span
|
|
1635
|
+
style={
|
|
1636
|
+
{
|
|
1637
|
+
"verticalAlign": "middle",
|
|
1638
|
+
}
|
|
1639
|
+
}
|
|
1640
|
+
>
|
|
1641
|
+
Click me
|
|
1642
|
+
</span>
|
|
1244
1643
|
</a>
|
|
1245
1644
|
`;
|
|
1246
1645
|
|
|
@@ -1268,14 +1667,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1268
1667
|
"alignItems": "center",
|
|
1269
1668
|
"color": "#1b50b3",
|
|
1270
1669
|
"cursor": "pointer",
|
|
1271
|
-
"display": "inline-flex",
|
|
1272
1670
|
"outline": "none",
|
|
1273
1671
|
"textDecoration": "underline currentcolor solid",
|
|
1672
|
+
"textUnderlineOffset": "3px",
|
|
1673
|
+
"verticalAlign": "bottom",
|
|
1274
1674
|
}
|
|
1275
1675
|
}
|
|
1276
1676
|
tabIndex={0}
|
|
1277
1677
|
>
|
|
1278
|
-
|
|
1678
|
+
<span
|
|
1679
|
+
style={
|
|
1680
|
+
{
|
|
1681
|
+
"verticalAlign": "middle",
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1684
|
+
>
|
|
1685
|
+
Click me
|
|
1686
|
+
</span>
|
|
1279
1687
|
</a>
|
|
1280
1688
|
`;
|
|
1281
1689
|
|
|
@@ -1303,14 +1711,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1303
1711
|
"alignItems": "center",
|
|
1304
1712
|
"color": "#1b50b3",
|
|
1305
1713
|
"cursor": "pointer",
|
|
1306
|
-
"display": "inline-flex",
|
|
1307
1714
|
"outline": "none",
|
|
1308
1715
|
"textDecoration": "underline currentcolor solid",
|
|
1716
|
+
"textUnderlineOffset": "3px",
|
|
1717
|
+
"verticalAlign": "bottom",
|
|
1309
1718
|
}
|
|
1310
1719
|
}
|
|
1311
1720
|
tabIndex={0}
|
|
1312
1721
|
>
|
|
1313
|
-
|
|
1722
|
+
<span
|
|
1723
|
+
style={
|
|
1724
|
+
{
|
|
1725
|
+
"verticalAlign": "middle",
|
|
1726
|
+
}
|
|
1727
|
+
}
|
|
1728
|
+
>
|
|
1729
|
+
Click me
|
|
1730
|
+
</span>
|
|
1314
1731
|
</a>
|
|
1315
1732
|
`;
|
|
1316
1733
|
|
|
@@ -1332,18 +1749,31 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1332
1749
|
onTouchStart={[Function]}
|
|
1333
1750
|
style={
|
|
1334
1751
|
{
|
|
1752
|
+
":focusVisible": {
|
|
1753
|
+
"borderRadius": 3,
|
|
1754
|
+
"color": "#ffffff",
|
|
1755
|
+
"outline": "1px solid #ffffff",
|
|
1756
|
+
},
|
|
1335
1757
|
"alignItems": "center",
|
|
1336
|
-
"borderRadius": 3,
|
|
1337
1758
|
"color": "#ffffff",
|
|
1338
1759
|
"cursor": "pointer",
|
|
1339
|
-
"
|
|
1340
|
-
"
|
|
1341
|
-
"
|
|
1760
|
+
"outline": "none",
|
|
1761
|
+
"textDecoration": "underline currentcolor solid",
|
|
1762
|
+
"textUnderlineOffset": "3px",
|
|
1763
|
+
"verticalAlign": "bottom",
|
|
1342
1764
|
}
|
|
1343
1765
|
}
|
|
1344
1766
|
tabIndex={0}
|
|
1345
1767
|
>
|
|
1346
|
-
|
|
1768
|
+
<span
|
|
1769
|
+
style={
|
|
1770
|
+
{
|
|
1771
|
+
"verticalAlign": "middle",
|
|
1772
|
+
}
|
|
1773
|
+
}
|
|
1774
|
+
>
|
|
1775
|
+
Click me
|
|
1776
|
+
</span>
|
|
1347
1777
|
</a>
|
|
1348
1778
|
`;
|
|
1349
1779
|
|
|
@@ -1365,18 +1795,31 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1365
1795
|
onTouchStart={[Function]}
|
|
1366
1796
|
style={
|
|
1367
1797
|
{
|
|
1798
|
+
":focusVisible": {
|
|
1799
|
+
"borderRadius": 3,
|
|
1800
|
+
"color": "#ffffff",
|
|
1801
|
+
"outline": "1px solid #ffffff",
|
|
1802
|
+
},
|
|
1368
1803
|
"alignItems": "center",
|
|
1369
|
-
"borderRadius": 3,
|
|
1370
1804
|
"color": "#ffffff",
|
|
1371
1805
|
"cursor": "pointer",
|
|
1372
|
-
"
|
|
1373
|
-
"outline": "1px solid #ffffff",
|
|
1806
|
+
"outline": "none",
|
|
1374
1807
|
"textDecoration": "none",
|
|
1808
|
+
"textUnderlineOffset": "3px",
|
|
1809
|
+
"verticalAlign": "bottom",
|
|
1375
1810
|
}
|
|
1376
1811
|
}
|
|
1377
1812
|
tabIndex={0}
|
|
1378
1813
|
>
|
|
1379
|
-
|
|
1814
|
+
<span
|
|
1815
|
+
style={
|
|
1816
|
+
{
|
|
1817
|
+
"verticalAlign": "middle",
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
>
|
|
1821
|
+
Click me
|
|
1822
|
+
</span>
|
|
1380
1823
|
</a>
|
|
1381
1824
|
`;
|
|
1382
1825
|
|
|
@@ -1401,14 +1844,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1401
1844
|
"alignItems": "center",
|
|
1402
1845
|
"color": "#ffffff",
|
|
1403
1846
|
"cursor": "pointer",
|
|
1404
|
-
"display": "inline-flex",
|
|
1405
1847
|
"outline": "none",
|
|
1406
1848
|
"textDecoration": "underline currentcolor solid",
|
|
1849
|
+
"textUnderlineOffset": "3px",
|
|
1850
|
+
"verticalAlign": "bottom",
|
|
1407
1851
|
}
|
|
1408
1852
|
}
|
|
1409
1853
|
tabIndex={0}
|
|
1410
1854
|
>
|
|
1411
|
-
|
|
1855
|
+
<span
|
|
1856
|
+
style={
|
|
1857
|
+
{
|
|
1858
|
+
"verticalAlign": "middle",
|
|
1859
|
+
}
|
|
1860
|
+
}
|
|
1861
|
+
>
|
|
1862
|
+
Click me
|
|
1863
|
+
</span>
|
|
1412
1864
|
</a>
|
|
1413
1865
|
`;
|
|
1414
1866
|
|
|
@@ -1433,14 +1885,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1433
1885
|
"alignItems": "center",
|
|
1434
1886
|
"color": "#ffffff",
|
|
1435
1887
|
"cursor": "pointer",
|
|
1436
|
-
"display": "inline-flex",
|
|
1437
1888
|
"outline": "none",
|
|
1438
1889
|
"textDecoration": "underline currentcolor solid",
|
|
1890
|
+
"textUnderlineOffset": "3px",
|
|
1891
|
+
"verticalAlign": "bottom",
|
|
1439
1892
|
}
|
|
1440
1893
|
}
|
|
1441
1894
|
tabIndex={0}
|
|
1442
1895
|
>
|
|
1443
|
-
|
|
1896
|
+
<span
|
|
1897
|
+
style={
|
|
1898
|
+
{
|
|
1899
|
+
"verticalAlign": "middle",
|
|
1900
|
+
}
|
|
1901
|
+
}
|
|
1902
|
+
>
|
|
1903
|
+
Click me
|
|
1904
|
+
</span>
|
|
1444
1905
|
</a>
|
|
1445
1906
|
`;
|
|
1446
1907
|
|
|
@@ -1465,14 +1926,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1465
1926
|
"alignItems": "center",
|
|
1466
1927
|
"color": "#b5cefb",
|
|
1467
1928
|
"cursor": "pointer",
|
|
1468
|
-
"display": "inline-flex",
|
|
1469
1929
|
"outline": "none",
|
|
1470
1930
|
"textDecoration": "underline currentcolor solid",
|
|
1931
|
+
"textUnderlineOffset": "3px",
|
|
1932
|
+
"verticalAlign": "bottom",
|
|
1471
1933
|
}
|
|
1472
1934
|
}
|
|
1473
1935
|
tabIndex={0}
|
|
1474
1936
|
>
|
|
1475
|
-
|
|
1937
|
+
<span
|
|
1938
|
+
style={
|
|
1939
|
+
{
|
|
1940
|
+
"verticalAlign": "middle",
|
|
1941
|
+
}
|
|
1942
|
+
}
|
|
1943
|
+
>
|
|
1944
|
+
Click me
|
|
1945
|
+
</span>
|
|
1476
1946
|
</a>
|
|
1477
1947
|
`;
|
|
1478
1948
|
|
|
@@ -1497,14 +1967,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1497
1967
|
"alignItems": "center",
|
|
1498
1968
|
"color": "#b5cefb",
|
|
1499
1969
|
"cursor": "pointer",
|
|
1500
|
-
"display": "inline-flex",
|
|
1501
1970
|
"outline": "none",
|
|
1502
1971
|
"textDecoration": "underline currentcolor solid",
|
|
1972
|
+
"textUnderlineOffset": "3px",
|
|
1973
|
+
"verticalAlign": "bottom",
|
|
1503
1974
|
}
|
|
1504
1975
|
}
|
|
1505
1976
|
tabIndex={0}
|
|
1506
1977
|
>
|
|
1507
|
-
|
|
1978
|
+
<span
|
|
1979
|
+
style={
|
|
1980
|
+
{
|
|
1981
|
+
"verticalAlign": "middle",
|
|
1982
|
+
}
|
|
1983
|
+
}
|
|
1984
|
+
>
|
|
1985
|
+
Click me
|
|
1986
|
+
</span>
|
|
1508
1987
|
</a>
|
|
1509
1988
|
`;
|
|
1510
1989
|
|
|
@@ -1526,21 +2005,37 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1526
2005
|
onTouchStart={[Function]}
|
|
1527
2006
|
style={
|
|
1528
2007
|
{
|
|
2008
|
+
":focusVisible": {
|
|
2009
|
+
":visited": {
|
|
2010
|
+
"color": "#fa50ae",
|
|
2011
|
+
},
|
|
2012
|
+
"borderRadius": 3,
|
|
2013
|
+
"color": "#ffffff",
|
|
2014
|
+
"outline": "1px solid #ffffff",
|
|
2015
|
+
},
|
|
1529
2016
|
":visited": {
|
|
1530
2017
|
"color": "#fa50ae",
|
|
1531
2018
|
},
|
|
1532
2019
|
"alignItems": "center",
|
|
1533
|
-
"borderRadius": 3,
|
|
1534
2020
|
"color": "#ffffff",
|
|
1535
2021
|
"cursor": "pointer",
|
|
1536
|
-
"
|
|
1537
|
-
"
|
|
1538
|
-
"
|
|
2022
|
+
"outline": "none",
|
|
2023
|
+
"textDecoration": "underline currentcolor solid",
|
|
2024
|
+
"textUnderlineOffset": "3px",
|
|
2025
|
+
"verticalAlign": "bottom",
|
|
1539
2026
|
}
|
|
1540
2027
|
}
|
|
1541
2028
|
tabIndex={0}
|
|
1542
2029
|
>
|
|
1543
|
-
|
|
2030
|
+
<span
|
|
2031
|
+
style={
|
|
2032
|
+
{
|
|
2033
|
+
"verticalAlign": "middle",
|
|
2034
|
+
}
|
|
2035
|
+
}
|
|
2036
|
+
>
|
|
2037
|
+
Click me
|
|
2038
|
+
</span>
|
|
1544
2039
|
</a>
|
|
1545
2040
|
`;
|
|
1546
2041
|
|
|
@@ -1562,21 +2057,37 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1562
2057
|
onTouchStart={[Function]}
|
|
1563
2058
|
style={
|
|
1564
2059
|
{
|
|
2060
|
+
":focusVisible": {
|
|
2061
|
+
":visited": {
|
|
2062
|
+
"color": "#fa50ae",
|
|
2063
|
+
},
|
|
2064
|
+
"borderRadius": 3,
|
|
2065
|
+
"color": "#ffffff",
|
|
2066
|
+
"outline": "1px solid #ffffff",
|
|
2067
|
+
},
|
|
1565
2068
|
":visited": {
|
|
1566
2069
|
"color": "#fa50ae",
|
|
1567
2070
|
},
|
|
1568
2071
|
"alignItems": "center",
|
|
1569
|
-
"borderRadius": 3,
|
|
1570
2072
|
"color": "#ffffff",
|
|
1571
2073
|
"cursor": "pointer",
|
|
1572
|
-
"
|
|
1573
|
-
"outline": "1px solid #ffffff",
|
|
2074
|
+
"outline": "none",
|
|
1574
2075
|
"textDecoration": "none",
|
|
2076
|
+
"textUnderlineOffset": "3px",
|
|
2077
|
+
"verticalAlign": "bottom",
|
|
1575
2078
|
}
|
|
1576
2079
|
}
|
|
1577
2080
|
tabIndex={0}
|
|
1578
2081
|
>
|
|
1579
|
-
|
|
2082
|
+
<span
|
|
2083
|
+
style={
|
|
2084
|
+
{
|
|
2085
|
+
"verticalAlign": "middle",
|
|
2086
|
+
}
|
|
2087
|
+
}
|
|
2088
|
+
>
|
|
2089
|
+
Click me
|
|
2090
|
+
</span>
|
|
1580
2091
|
</a>
|
|
1581
2092
|
`;
|
|
1582
2093
|
|
|
@@ -1604,14 +2115,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1604
2115
|
"alignItems": "center",
|
|
1605
2116
|
"color": "#ffffff",
|
|
1606
2117
|
"cursor": "pointer",
|
|
1607
|
-
"display": "inline-flex",
|
|
1608
2118
|
"outline": "none",
|
|
1609
2119
|
"textDecoration": "underline currentcolor solid",
|
|
2120
|
+
"textUnderlineOffset": "3px",
|
|
2121
|
+
"verticalAlign": "bottom",
|
|
1610
2122
|
}
|
|
1611
2123
|
}
|
|
1612
2124
|
tabIndex={0}
|
|
1613
2125
|
>
|
|
1614
|
-
|
|
2126
|
+
<span
|
|
2127
|
+
style={
|
|
2128
|
+
{
|
|
2129
|
+
"verticalAlign": "middle",
|
|
2130
|
+
}
|
|
2131
|
+
}
|
|
2132
|
+
>
|
|
2133
|
+
Click me
|
|
2134
|
+
</span>
|
|
1615
2135
|
</a>
|
|
1616
2136
|
`;
|
|
1617
2137
|
|
|
@@ -1639,14 +2159,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1639
2159
|
"alignItems": "center",
|
|
1640
2160
|
"color": "#ffffff",
|
|
1641
2161
|
"cursor": "pointer",
|
|
1642
|
-
"display": "inline-flex",
|
|
1643
2162
|
"outline": "none",
|
|
1644
2163
|
"textDecoration": "underline currentcolor solid",
|
|
2164
|
+
"textUnderlineOffset": "3px",
|
|
2165
|
+
"verticalAlign": "bottom",
|
|
1645
2166
|
}
|
|
1646
2167
|
}
|
|
1647
2168
|
tabIndex={0}
|
|
1648
2169
|
>
|
|
1649
|
-
|
|
2170
|
+
<span
|
|
2171
|
+
style={
|
|
2172
|
+
{
|
|
2173
|
+
"verticalAlign": "middle",
|
|
2174
|
+
}
|
|
2175
|
+
}
|
|
2176
|
+
>
|
|
2177
|
+
Click me
|
|
2178
|
+
</span>
|
|
1650
2179
|
</a>
|
|
1651
2180
|
`;
|
|
1652
2181
|
|
|
@@ -1674,14 +2203,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1674
2203
|
"alignItems": "center",
|
|
1675
2204
|
"color": "#b5cefb",
|
|
1676
2205
|
"cursor": "pointer",
|
|
1677
|
-
"display": "inline-flex",
|
|
1678
2206
|
"outline": "none",
|
|
1679
2207
|
"textDecoration": "underline currentcolor solid",
|
|
2208
|
+
"textUnderlineOffset": "3px",
|
|
2209
|
+
"verticalAlign": "bottom",
|
|
1680
2210
|
}
|
|
1681
2211
|
}
|
|
1682
2212
|
tabIndex={0}
|
|
1683
2213
|
>
|
|
1684
|
-
|
|
2214
|
+
<span
|
|
2215
|
+
style={
|
|
2216
|
+
{
|
|
2217
|
+
"verticalAlign": "middle",
|
|
2218
|
+
}
|
|
2219
|
+
}
|
|
2220
|
+
>
|
|
2221
|
+
Click me
|
|
2222
|
+
</span>
|
|
1685
2223
|
</a>
|
|
1686
2224
|
`;
|
|
1687
2225
|
|
|
@@ -1709,14 +2247,23 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1709
2247
|
"alignItems": "center",
|
|
1710
2248
|
"color": "#b5cefb",
|
|
1711
2249
|
"cursor": "pointer",
|
|
1712
|
-
"display": "inline-flex",
|
|
1713
2250
|
"outline": "none",
|
|
1714
2251
|
"textDecoration": "underline currentcolor solid",
|
|
2252
|
+
"textUnderlineOffset": "3px",
|
|
2253
|
+
"verticalAlign": "bottom",
|
|
1715
2254
|
}
|
|
1716
2255
|
}
|
|
1717
2256
|
tabIndex={0}
|
|
1718
2257
|
>
|
|
1719
|
-
|
|
2258
|
+
<span
|
|
2259
|
+
style={
|
|
2260
|
+
{
|
|
2261
|
+
"verticalAlign": "middle",
|
|
2262
|
+
}
|
|
2263
|
+
}
|
|
2264
|
+
>
|
|
2265
|
+
Click me
|
|
2266
|
+
</span>
|
|
1720
2267
|
</a>
|
|
1721
2268
|
`;
|
|
1722
2269
|
|
|
@@ -1738,18 +2285,31 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false focused 1`]
|
|
|
1738
2285
|
onTouchStart={[Function]}
|
|
1739
2286
|
style={
|
|
1740
2287
|
{
|
|
2288
|
+
":focusVisible": {
|
|
2289
|
+
"borderRadius": 3,
|
|
2290
|
+
"color": "#21242c",
|
|
2291
|
+
"outline": "1px solid #1865f2",
|
|
2292
|
+
},
|
|
1741
2293
|
"alignItems": "center",
|
|
1742
|
-
"borderRadius": 3,
|
|
1743
2294
|
"color": "#21242c",
|
|
1744
2295
|
"cursor": "pointer",
|
|
1745
|
-
"
|
|
1746
|
-
"
|
|
1747
|
-
"
|
|
2296
|
+
"outline": "none",
|
|
2297
|
+
"textDecoration": "underline currentcolor solid",
|
|
2298
|
+
"textUnderlineOffset": "3px",
|
|
2299
|
+
"verticalAlign": "bottom",
|
|
1748
2300
|
}
|
|
1749
2301
|
}
|
|
1750
2302
|
tabIndex={0}
|
|
1751
2303
|
>
|
|
1752
|
-
|
|
2304
|
+
<span
|
|
2305
|
+
style={
|
|
2306
|
+
{
|
|
2307
|
+
"verticalAlign": "middle",
|
|
2308
|
+
}
|
|
2309
|
+
}
|
|
2310
|
+
>
|
|
2311
|
+
Click me
|
|
2312
|
+
</span>
|
|
1753
2313
|
</a>
|
|
1754
2314
|
`;
|
|
1755
2315
|
|
|
@@ -1771,18 +2331,31 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false focused 2`]
|
|
|
1771
2331
|
onTouchStart={[Function]}
|
|
1772
2332
|
style={
|
|
1773
2333
|
{
|
|
2334
|
+
":focusVisible": {
|
|
2335
|
+
"borderRadius": 3,
|
|
2336
|
+
"color": "rgba(33,36,44,0.64)",
|
|
2337
|
+
"outline": "1px solid #1865f2",
|
|
2338
|
+
},
|
|
1774
2339
|
"alignItems": "center",
|
|
1775
|
-
"borderRadius": 3,
|
|
1776
2340
|
"color": "rgba(33,36,44,0.64)",
|
|
1777
2341
|
"cursor": "pointer",
|
|
1778
|
-
"
|
|
1779
|
-
"outline": "1px solid #1865f2",
|
|
2342
|
+
"outline": "none",
|
|
1780
2343
|
"textDecoration": "none",
|
|
2344
|
+
"textUnderlineOffset": "3px",
|
|
2345
|
+
"verticalAlign": "bottom",
|
|
1781
2346
|
}
|
|
1782
2347
|
}
|
|
1783
2348
|
tabIndex={0}
|
|
1784
2349
|
>
|
|
1785
|
-
|
|
2350
|
+
<span
|
|
2351
|
+
style={
|
|
2352
|
+
{
|
|
2353
|
+
"verticalAlign": "middle",
|
|
2354
|
+
}
|
|
2355
|
+
}
|
|
2356
|
+
>
|
|
2357
|
+
Click me
|
|
2358
|
+
</span>
|
|
1786
2359
|
</a>
|
|
1787
2360
|
`;
|
|
1788
2361
|
|
|
@@ -1807,14 +2380,23 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false hovered 1`]
|
|
|
1807
2380
|
"alignItems": "center",
|
|
1808
2381
|
"color": "#21242c",
|
|
1809
2382
|
"cursor": "pointer",
|
|
1810
|
-
"display": "inline-flex",
|
|
1811
2383
|
"outline": "none",
|
|
1812
2384
|
"textDecoration": "underline currentcolor solid",
|
|
2385
|
+
"textUnderlineOffset": "3px",
|
|
2386
|
+
"verticalAlign": "bottom",
|
|
1813
2387
|
}
|
|
1814
2388
|
}
|
|
1815
2389
|
tabIndex={0}
|
|
1816
2390
|
>
|
|
1817
|
-
|
|
2391
|
+
<span
|
|
2392
|
+
style={
|
|
2393
|
+
{
|
|
2394
|
+
"verticalAlign": "middle",
|
|
2395
|
+
}
|
|
2396
|
+
}
|
|
2397
|
+
>
|
|
2398
|
+
Click me
|
|
2399
|
+
</span>
|
|
1818
2400
|
</a>
|
|
1819
2401
|
`;
|
|
1820
2402
|
|
|
@@ -1839,14 +2421,23 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false hovered 2`]
|
|
|
1839
2421
|
"alignItems": "center",
|
|
1840
2422
|
"color": "rgba(33,36,44,0.64)",
|
|
1841
2423
|
"cursor": "pointer",
|
|
1842
|
-
"display": "inline-flex",
|
|
1843
2424
|
"outline": "none",
|
|
1844
2425
|
"textDecoration": "underline currentcolor solid",
|
|
2426
|
+
"textUnderlineOffset": "3px",
|
|
2427
|
+
"verticalAlign": "bottom",
|
|
1845
2428
|
}
|
|
1846
2429
|
}
|
|
1847
2430
|
tabIndex={0}
|
|
1848
2431
|
>
|
|
1849
|
-
|
|
2432
|
+
<span
|
|
2433
|
+
style={
|
|
2434
|
+
{
|
|
2435
|
+
"verticalAlign": "middle",
|
|
2436
|
+
}
|
|
2437
|
+
}
|
|
2438
|
+
>
|
|
2439
|
+
Click me
|
|
2440
|
+
</span>
|
|
1850
2441
|
</a>
|
|
1851
2442
|
`;
|
|
1852
2443
|
|
|
@@ -1871,14 +2462,23 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false pressed 1`]
|
|
|
1871
2462
|
"alignItems": "center",
|
|
1872
2463
|
"color": "#1b50b3",
|
|
1873
2464
|
"cursor": "pointer",
|
|
1874
|
-
"display": "inline-flex",
|
|
1875
2465
|
"outline": "none",
|
|
1876
2466
|
"textDecoration": "underline currentcolor solid",
|
|
2467
|
+
"textUnderlineOffset": "3px",
|
|
2468
|
+
"verticalAlign": "bottom",
|
|
1877
2469
|
}
|
|
1878
2470
|
}
|
|
1879
2471
|
tabIndex={0}
|
|
1880
2472
|
>
|
|
1881
|
-
|
|
2473
|
+
<span
|
|
2474
|
+
style={
|
|
2475
|
+
{
|
|
2476
|
+
"verticalAlign": "middle",
|
|
2477
|
+
}
|
|
2478
|
+
}
|
|
2479
|
+
>
|
|
2480
|
+
Click me
|
|
2481
|
+
</span>
|
|
1882
2482
|
</a>
|
|
1883
2483
|
`;
|
|
1884
2484
|
|
|
@@ -1903,14 +2503,23 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false pressed 2`]
|
|
|
1903
2503
|
"alignItems": "center",
|
|
1904
2504
|
"color": "#21242c",
|
|
1905
2505
|
"cursor": "pointer",
|
|
1906
|
-
"display": "inline-flex",
|
|
1907
2506
|
"outline": "none",
|
|
1908
2507
|
"textDecoration": "underline currentcolor solid",
|
|
2508
|
+
"textUnderlineOffset": "3px",
|
|
2509
|
+
"verticalAlign": "bottom",
|
|
1909
2510
|
}
|
|
1910
2511
|
}
|
|
1911
2512
|
tabIndex={0}
|
|
1912
2513
|
>
|
|
1913
|
-
|
|
2514
|
+
<span
|
|
2515
|
+
style={
|
|
2516
|
+
{
|
|
2517
|
+
"verticalAlign": "middle",
|
|
2518
|
+
}
|
|
2519
|
+
}
|
|
2520
|
+
>
|
|
2521
|
+
Click me
|
|
2522
|
+
</span>
|
|
1914
2523
|
</a>
|
|
1915
2524
|
`;
|
|
1916
2525
|
|
|
@@ -1932,18 +2541,31 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
1932
2541
|
onTouchStart={[Function]}
|
|
1933
2542
|
style={
|
|
1934
2543
|
{
|
|
2544
|
+
":focusVisible": {
|
|
2545
|
+
"borderRadius": 3,
|
|
2546
|
+
"color": "#21242c",
|
|
2547
|
+
"outline": "1px solid #1865f2",
|
|
2548
|
+
},
|
|
1935
2549
|
"alignItems": "center",
|
|
1936
|
-
"borderRadius": 3,
|
|
1937
2550
|
"color": "#21242c",
|
|
1938
2551
|
"cursor": "pointer",
|
|
1939
|
-
"
|
|
1940
|
-
"
|
|
1941
|
-
"
|
|
2552
|
+
"outline": "none",
|
|
2553
|
+
"textDecoration": "underline currentcolor solid",
|
|
2554
|
+
"textUnderlineOffset": "3px",
|
|
2555
|
+
"verticalAlign": "bottom",
|
|
1942
2556
|
}
|
|
1943
2557
|
}
|
|
1944
2558
|
tabIndex={0}
|
|
1945
2559
|
>
|
|
1946
|
-
|
|
2560
|
+
<span
|
|
2561
|
+
style={
|
|
2562
|
+
{
|
|
2563
|
+
"verticalAlign": "middle",
|
|
2564
|
+
}
|
|
2565
|
+
}
|
|
2566
|
+
>
|
|
2567
|
+
Click me
|
|
2568
|
+
</span>
|
|
1947
2569
|
</a>
|
|
1948
2570
|
`;
|
|
1949
2571
|
|
|
@@ -1965,18 +2587,31 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
1965
2587
|
onTouchStart={[Function]}
|
|
1966
2588
|
style={
|
|
1967
2589
|
{
|
|
2590
|
+
":focusVisible": {
|
|
2591
|
+
"borderRadius": 3,
|
|
2592
|
+
"color": "rgba(33,36,44,0.64)",
|
|
2593
|
+
"outline": "1px solid #1865f2",
|
|
2594
|
+
},
|
|
1968
2595
|
"alignItems": "center",
|
|
1969
|
-
"borderRadius": 3,
|
|
1970
2596
|
"color": "rgba(33,36,44,0.64)",
|
|
1971
2597
|
"cursor": "pointer",
|
|
1972
|
-
"
|
|
1973
|
-
"outline": "1px solid #1865f2",
|
|
2598
|
+
"outline": "none",
|
|
1974
2599
|
"textDecoration": "none",
|
|
2600
|
+
"textUnderlineOffset": "3px",
|
|
2601
|
+
"verticalAlign": "bottom",
|
|
1975
2602
|
}
|
|
1976
2603
|
}
|
|
1977
2604
|
tabIndex={0}
|
|
1978
2605
|
>
|
|
1979
|
-
|
|
2606
|
+
<span
|
|
2607
|
+
style={
|
|
2608
|
+
{
|
|
2609
|
+
"verticalAlign": "middle",
|
|
2610
|
+
}
|
|
2611
|
+
}
|
|
2612
|
+
>
|
|
2613
|
+
Click me
|
|
2614
|
+
</span>
|
|
1980
2615
|
</a>
|
|
1981
2616
|
`;
|
|
1982
2617
|
|
|
@@ -2001,14 +2636,23 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2001
2636
|
"alignItems": "center",
|
|
2002
2637
|
"color": "#21242c",
|
|
2003
2638
|
"cursor": "pointer",
|
|
2004
|
-
"display": "inline-flex",
|
|
2005
2639
|
"outline": "none",
|
|
2006
2640
|
"textDecoration": "underline currentcolor solid",
|
|
2641
|
+
"textUnderlineOffset": "3px",
|
|
2642
|
+
"verticalAlign": "bottom",
|
|
2007
2643
|
}
|
|
2008
2644
|
}
|
|
2009
2645
|
tabIndex={0}
|
|
2010
2646
|
>
|
|
2011
|
-
|
|
2647
|
+
<span
|
|
2648
|
+
style={
|
|
2649
|
+
{
|
|
2650
|
+
"verticalAlign": "middle",
|
|
2651
|
+
}
|
|
2652
|
+
}
|
|
2653
|
+
>
|
|
2654
|
+
Click me
|
|
2655
|
+
</span>
|
|
2012
2656
|
</a>
|
|
2013
2657
|
`;
|
|
2014
2658
|
|
|
@@ -2033,14 +2677,23 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2033
2677
|
"alignItems": "center",
|
|
2034
2678
|
"color": "rgba(33,36,44,0.64)",
|
|
2035
2679
|
"cursor": "pointer",
|
|
2036
|
-
"display": "inline-flex",
|
|
2037
2680
|
"outline": "none",
|
|
2038
2681
|
"textDecoration": "underline currentcolor solid",
|
|
2682
|
+
"textUnderlineOffset": "3px",
|
|
2683
|
+
"verticalAlign": "bottom",
|
|
2039
2684
|
}
|
|
2040
2685
|
}
|
|
2041
2686
|
tabIndex={0}
|
|
2042
2687
|
>
|
|
2043
|
-
|
|
2688
|
+
<span
|
|
2689
|
+
style={
|
|
2690
|
+
{
|
|
2691
|
+
"verticalAlign": "middle",
|
|
2692
|
+
}
|
|
2693
|
+
}
|
|
2694
|
+
>
|
|
2695
|
+
Click me
|
|
2696
|
+
</span>
|
|
2044
2697
|
</a>
|
|
2045
2698
|
`;
|
|
2046
2699
|
|
|
@@ -2065,14 +2718,23 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2065
2718
|
"alignItems": "center",
|
|
2066
2719
|
"color": "#1b50b3",
|
|
2067
2720
|
"cursor": "pointer",
|
|
2068
|
-
"display": "inline-flex",
|
|
2069
2721
|
"outline": "none",
|
|
2070
2722
|
"textDecoration": "underline currentcolor solid",
|
|
2723
|
+
"textUnderlineOffset": "3px",
|
|
2724
|
+
"verticalAlign": "bottom",
|
|
2071
2725
|
}
|
|
2072
2726
|
}
|
|
2073
2727
|
tabIndex={0}
|
|
2074
2728
|
>
|
|
2075
|
-
|
|
2729
|
+
<span
|
|
2730
|
+
style={
|
|
2731
|
+
{
|
|
2732
|
+
"verticalAlign": "middle",
|
|
2733
|
+
}
|
|
2734
|
+
}
|
|
2735
|
+
>
|
|
2736
|
+
Click me
|
|
2737
|
+
</span>
|
|
2076
2738
|
</a>
|
|
2077
2739
|
`;
|
|
2078
2740
|
|
|
@@ -2097,13 +2759,22 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2097
2759
|
"alignItems": "center",
|
|
2098
2760
|
"color": "#21242c",
|
|
2099
2761
|
"cursor": "pointer",
|
|
2100
|
-
"display": "inline-flex",
|
|
2101
2762
|
"outline": "none",
|
|
2102
2763
|
"textDecoration": "underline currentcolor solid",
|
|
2764
|
+
"textUnderlineOffset": "3px",
|
|
2765
|
+
"verticalAlign": "bottom",
|
|
2103
2766
|
}
|
|
2104
2767
|
}
|
|
2105
2768
|
tabIndex={0}
|
|
2106
2769
|
>
|
|
2107
|
-
|
|
2770
|
+
<span
|
|
2771
|
+
style={
|
|
2772
|
+
{
|
|
2773
|
+
"verticalAlign": "middle",
|
|
2774
|
+
}
|
|
2775
|
+
}
|
|
2776
|
+
>
|
|
2777
|
+
Click me
|
|
2778
|
+
</span>
|
|
2108
2779
|
</a>
|
|
2109
2780
|
`;
|