@khanacademy/wonder-blocks-link 4.2.1 → 4.2.3
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 +12 -0
- package/dist/es/index.js +13 -7
- package/dist/index.js +13 -7
- package/package.json +1 -1
- package/src/__tests__/__snapshots__/custom-snapshot.test.tsx.snap +93 -756
- package/src/components/__tests__/link.test.tsx +53 -16
- package/src/components/link-core.tsx +23 -7
- package/tsconfig-build.json +16 -0
- package/tsconfig-build.tsbuildinfo +1 -0
- package/tsconfig.json +0 -16
- package/tsconfig.tsbuildinfo +0 -1
|
@@ -23,22 +23,11 @@ exports[`Link <Link tabIndex={-1}> 1`] = `
|
|
|
23
23
|
"cursor": "pointer",
|
|
24
24
|
"outline": "none",
|
|
25
25
|
"textDecoration": "none",
|
|
26
|
-
"textUnderlineOffset": "3px",
|
|
27
|
-
"verticalAlign": "bottom",
|
|
28
26
|
}
|
|
29
27
|
}
|
|
30
28
|
tabIndex={-1}
|
|
31
29
|
>
|
|
32
|
-
|
|
33
|
-
className=""
|
|
34
|
-
style={
|
|
35
|
-
{
|
|
36
|
-
"verticalAlign": "middle",
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
>
|
|
40
|
-
Click me
|
|
41
|
-
</span>
|
|
30
|
+
Click me
|
|
42
31
|
</a>
|
|
43
32
|
`;
|
|
44
33
|
|
|
@@ -65,22 +54,11 @@ exports[`Link <Link tabIndex={0}> 1`] = `
|
|
|
65
54
|
"cursor": "pointer",
|
|
66
55
|
"outline": "none",
|
|
67
56
|
"textDecoration": "none",
|
|
68
|
-
"textUnderlineOffset": "3px",
|
|
69
|
-
"verticalAlign": "bottom",
|
|
70
57
|
}
|
|
71
58
|
}
|
|
72
59
|
tabIndex={0}
|
|
73
60
|
>
|
|
74
|
-
|
|
75
|
-
className=""
|
|
76
|
-
style={
|
|
77
|
-
{
|
|
78
|
-
"verticalAlign": "middle",
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
>
|
|
82
|
-
Click me
|
|
83
|
-
</span>
|
|
61
|
+
Click me
|
|
84
62
|
</a>
|
|
85
63
|
`;
|
|
86
64
|
|
|
@@ -107,22 +85,11 @@ exports[`Link <Link tabIndex={1}> 1`] = `
|
|
|
107
85
|
"cursor": "pointer",
|
|
108
86
|
"outline": "none",
|
|
109
87
|
"textDecoration": "none",
|
|
110
|
-
"textUnderlineOffset": "3px",
|
|
111
|
-
"verticalAlign": "bottom",
|
|
112
88
|
}
|
|
113
89
|
}
|
|
114
90
|
tabIndex={1}
|
|
115
91
|
>
|
|
116
|
-
|
|
117
|
-
className=""
|
|
118
|
-
style={
|
|
119
|
-
{
|
|
120
|
-
"verticalAlign": "middle",
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
>
|
|
124
|
-
Click me
|
|
125
|
-
</span>
|
|
92
|
+
Click me
|
|
126
93
|
</a>
|
|
127
94
|
`;
|
|
128
95
|
|
|
@@ -154,22 +121,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:false focused 1`] =
|
|
|
154
121
|
"cursor": "pointer",
|
|
155
122
|
"outline": "none",
|
|
156
123
|
"textDecoration": "underline currentcolor solid",
|
|
157
|
-
"textUnderlineOffset":
|
|
158
|
-
"verticalAlign": "bottom",
|
|
124
|
+
"textUnderlineOffset": 2,
|
|
159
125
|
}
|
|
160
126
|
}
|
|
161
127
|
tabIndex={0}
|
|
162
128
|
>
|
|
163
|
-
|
|
164
|
-
className=""
|
|
165
|
-
style={
|
|
166
|
-
{
|
|
167
|
-
"verticalAlign": "middle",
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
>
|
|
171
|
-
Click me
|
|
172
|
-
</span>
|
|
129
|
+
Click me
|
|
173
130
|
</a>
|
|
174
131
|
`;
|
|
175
132
|
|
|
@@ -201,22 +158,11 @@ exports[`LinkCore kind:primary href:# light:false visitable:false focused 2`] =
|
|
|
201
158
|
"cursor": "pointer",
|
|
202
159
|
"outline": "none",
|
|
203
160
|
"textDecoration": "none",
|
|
204
|
-
"textUnderlineOffset": "3px",
|
|
205
|
-
"verticalAlign": "bottom",
|
|
206
161
|
}
|
|
207
162
|
}
|
|
208
163
|
tabIndex={0}
|
|
209
164
|
>
|
|
210
|
-
|
|
211
|
-
className=""
|
|
212
|
-
style={
|
|
213
|
-
{
|
|
214
|
-
"verticalAlign": "middle",
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
>
|
|
218
|
-
Click me
|
|
219
|
-
</span>
|
|
165
|
+
Click me
|
|
220
166
|
</a>
|
|
221
167
|
`;
|
|
222
168
|
|
|
@@ -243,22 +189,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:false hovered 1`] =
|
|
|
243
189
|
"cursor": "pointer",
|
|
244
190
|
"outline": "none",
|
|
245
191
|
"textDecoration": "underline currentcolor solid",
|
|
246
|
-
"textUnderlineOffset":
|
|
247
|
-
"verticalAlign": "bottom",
|
|
192
|
+
"textUnderlineOffset": 2,
|
|
248
193
|
}
|
|
249
194
|
}
|
|
250
195
|
tabIndex={0}
|
|
251
196
|
>
|
|
252
|
-
|
|
253
|
-
className=""
|
|
254
|
-
style={
|
|
255
|
-
{
|
|
256
|
-
"verticalAlign": "middle",
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
>
|
|
260
|
-
Click me
|
|
261
|
-
</span>
|
|
197
|
+
Click me
|
|
262
198
|
</a>
|
|
263
199
|
`;
|
|
264
200
|
|
|
@@ -285,22 +221,11 @@ exports[`LinkCore kind:primary href:# light:false visitable:false hovered 2`] =
|
|
|
285
221
|
"cursor": "pointer",
|
|
286
222
|
"outline": "none",
|
|
287
223
|
"textDecoration": "underline currentcolor solid",
|
|
288
|
-
"textUnderlineOffset": "3px",
|
|
289
|
-
"verticalAlign": "bottom",
|
|
290
224
|
}
|
|
291
225
|
}
|
|
292
226
|
tabIndex={0}
|
|
293
227
|
>
|
|
294
|
-
|
|
295
|
-
className=""
|
|
296
|
-
style={
|
|
297
|
-
{
|
|
298
|
-
"verticalAlign": "middle",
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
>
|
|
302
|
-
Click me
|
|
303
|
-
</span>
|
|
228
|
+
Click me
|
|
304
229
|
</a>
|
|
305
230
|
`;
|
|
306
231
|
|
|
@@ -327,22 +252,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:false pressed 1`] =
|
|
|
327
252
|
"cursor": "pointer",
|
|
328
253
|
"outline": "none",
|
|
329
254
|
"textDecoration": "underline currentcolor solid",
|
|
330
|
-
"textUnderlineOffset":
|
|
331
|
-
"verticalAlign": "bottom",
|
|
255
|
+
"textUnderlineOffset": 2,
|
|
332
256
|
}
|
|
333
257
|
}
|
|
334
258
|
tabIndex={0}
|
|
335
259
|
>
|
|
336
|
-
|
|
337
|
-
className=""
|
|
338
|
-
style={
|
|
339
|
-
{
|
|
340
|
-
"verticalAlign": "middle",
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
>
|
|
344
|
-
Click me
|
|
345
|
-
</span>
|
|
260
|
+
Click me
|
|
346
261
|
</a>
|
|
347
262
|
`;
|
|
348
263
|
|
|
@@ -369,22 +284,11 @@ exports[`LinkCore kind:primary href:# light:false visitable:false pressed 2`] =
|
|
|
369
284
|
"cursor": "pointer",
|
|
370
285
|
"outline": "none",
|
|
371
286
|
"textDecoration": "underline currentcolor solid",
|
|
372
|
-
"textUnderlineOffset": "3px",
|
|
373
|
-
"verticalAlign": "bottom",
|
|
374
287
|
}
|
|
375
288
|
}
|
|
376
289
|
tabIndex={0}
|
|
377
290
|
>
|
|
378
|
-
|
|
379
|
-
className=""
|
|
380
|
-
style={
|
|
381
|
-
{
|
|
382
|
-
"verticalAlign": "middle",
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
>
|
|
386
|
-
Click me
|
|
387
|
-
</span>
|
|
291
|
+
Click me
|
|
388
292
|
</a>
|
|
389
293
|
`;
|
|
390
294
|
|
|
@@ -422,22 +326,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:true focused 1`] = `
|
|
|
422
326
|
"cursor": "pointer",
|
|
423
327
|
"outline": "none",
|
|
424
328
|
"textDecoration": "underline currentcolor solid",
|
|
425
|
-
"textUnderlineOffset":
|
|
426
|
-
"verticalAlign": "bottom",
|
|
329
|
+
"textUnderlineOffset": 2,
|
|
427
330
|
}
|
|
428
331
|
}
|
|
429
332
|
tabIndex={0}
|
|
430
333
|
>
|
|
431
|
-
|
|
432
|
-
className=""
|
|
433
|
-
style={
|
|
434
|
-
{
|
|
435
|
-
"verticalAlign": "middle",
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
>
|
|
439
|
-
Click me
|
|
440
|
-
</span>
|
|
334
|
+
Click me
|
|
441
335
|
</a>
|
|
442
336
|
`;
|
|
443
337
|
|
|
@@ -475,22 +369,11 @@ exports[`LinkCore kind:primary href:# light:false visitable:true focused 2`] = `
|
|
|
475
369
|
"cursor": "pointer",
|
|
476
370
|
"outline": "none",
|
|
477
371
|
"textDecoration": "none",
|
|
478
|
-
"textUnderlineOffset": "3px",
|
|
479
|
-
"verticalAlign": "bottom",
|
|
480
372
|
}
|
|
481
373
|
}
|
|
482
374
|
tabIndex={0}
|
|
483
375
|
>
|
|
484
|
-
|
|
485
|
-
className=""
|
|
486
|
-
style={
|
|
487
|
-
{
|
|
488
|
-
"verticalAlign": "middle",
|
|
489
|
-
}
|
|
490
|
-
}
|
|
491
|
-
>
|
|
492
|
-
Click me
|
|
493
|
-
</span>
|
|
376
|
+
Click me
|
|
494
377
|
</a>
|
|
495
378
|
`;
|
|
496
379
|
|
|
@@ -520,22 +403,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:true hovered 1`] = `
|
|
|
520
403
|
"cursor": "pointer",
|
|
521
404
|
"outline": "none",
|
|
522
405
|
"textDecoration": "underline currentcolor solid",
|
|
523
|
-
"textUnderlineOffset":
|
|
524
|
-
"verticalAlign": "bottom",
|
|
406
|
+
"textUnderlineOffset": 2,
|
|
525
407
|
}
|
|
526
408
|
}
|
|
527
409
|
tabIndex={0}
|
|
528
410
|
>
|
|
529
|
-
|
|
530
|
-
className=""
|
|
531
|
-
style={
|
|
532
|
-
{
|
|
533
|
-
"verticalAlign": "middle",
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
>
|
|
537
|
-
Click me
|
|
538
|
-
</span>
|
|
411
|
+
Click me
|
|
539
412
|
</a>
|
|
540
413
|
`;
|
|
541
414
|
|
|
@@ -565,22 +438,11 @@ exports[`LinkCore kind:primary href:# light:false visitable:true hovered 2`] = `
|
|
|
565
438
|
"cursor": "pointer",
|
|
566
439
|
"outline": "none",
|
|
567
440
|
"textDecoration": "underline currentcolor solid",
|
|
568
|
-
"textUnderlineOffset": "3px",
|
|
569
|
-
"verticalAlign": "bottom",
|
|
570
441
|
}
|
|
571
442
|
}
|
|
572
443
|
tabIndex={0}
|
|
573
444
|
>
|
|
574
|
-
|
|
575
|
-
className=""
|
|
576
|
-
style={
|
|
577
|
-
{
|
|
578
|
-
"verticalAlign": "middle",
|
|
579
|
-
}
|
|
580
|
-
}
|
|
581
|
-
>
|
|
582
|
-
Click me
|
|
583
|
-
</span>
|
|
445
|
+
Click me
|
|
584
446
|
</a>
|
|
585
447
|
`;
|
|
586
448
|
|
|
@@ -610,22 +472,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:true pressed 1`] = `
|
|
|
610
472
|
"cursor": "pointer",
|
|
611
473
|
"outline": "none",
|
|
612
474
|
"textDecoration": "underline currentcolor solid",
|
|
613
|
-
"textUnderlineOffset":
|
|
614
|
-
"verticalAlign": "bottom",
|
|
475
|
+
"textUnderlineOffset": 2,
|
|
615
476
|
}
|
|
616
477
|
}
|
|
617
478
|
tabIndex={0}
|
|
618
479
|
>
|
|
619
|
-
|
|
620
|
-
className=""
|
|
621
|
-
style={
|
|
622
|
-
{
|
|
623
|
-
"verticalAlign": "middle",
|
|
624
|
-
}
|
|
625
|
-
}
|
|
626
|
-
>
|
|
627
|
-
Click me
|
|
628
|
-
</span>
|
|
480
|
+
Click me
|
|
629
481
|
</a>
|
|
630
482
|
`;
|
|
631
483
|
|
|
@@ -655,22 +507,11 @@ exports[`LinkCore kind:primary href:# light:false visitable:true pressed 2`] = `
|
|
|
655
507
|
"cursor": "pointer",
|
|
656
508
|
"outline": "none",
|
|
657
509
|
"textDecoration": "underline currentcolor solid",
|
|
658
|
-
"textUnderlineOffset": "3px",
|
|
659
|
-
"verticalAlign": "bottom",
|
|
660
510
|
}
|
|
661
511
|
}
|
|
662
512
|
tabIndex={0}
|
|
663
513
|
>
|
|
664
|
-
|
|
665
|
-
className=""
|
|
666
|
-
style={
|
|
667
|
-
{
|
|
668
|
-
"verticalAlign": "middle",
|
|
669
|
-
}
|
|
670
|
-
}
|
|
671
|
-
>
|
|
672
|
-
Click me
|
|
673
|
-
</span>
|
|
514
|
+
Click me
|
|
674
515
|
</a>
|
|
675
516
|
`;
|
|
676
517
|
|
|
@@ -702,22 +543,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:false focused 1`] = `
|
|
|
702
543
|
"cursor": "pointer",
|
|
703
544
|
"outline": "none",
|
|
704
545
|
"textDecoration": "underline currentcolor solid",
|
|
705
|
-
"textUnderlineOffset":
|
|
706
|
-
"verticalAlign": "bottom",
|
|
546
|
+
"textUnderlineOffset": 2,
|
|
707
547
|
}
|
|
708
548
|
}
|
|
709
549
|
tabIndex={0}
|
|
710
550
|
>
|
|
711
|
-
|
|
712
|
-
className=""
|
|
713
|
-
style={
|
|
714
|
-
{
|
|
715
|
-
"verticalAlign": "middle",
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
>
|
|
719
|
-
Click me
|
|
720
|
-
</span>
|
|
551
|
+
Click me
|
|
721
552
|
</a>
|
|
722
553
|
`;
|
|
723
554
|
|
|
@@ -749,22 +580,11 @@ exports[`LinkCore kind:primary href:# light:true visitable:false focused 2`] = `
|
|
|
749
580
|
"cursor": "pointer",
|
|
750
581
|
"outline": "none",
|
|
751
582
|
"textDecoration": "none",
|
|
752
|
-
"textUnderlineOffset": "3px",
|
|
753
|
-
"verticalAlign": "bottom",
|
|
754
583
|
}
|
|
755
584
|
}
|
|
756
585
|
tabIndex={0}
|
|
757
586
|
>
|
|
758
|
-
|
|
759
|
-
className=""
|
|
760
|
-
style={
|
|
761
|
-
{
|
|
762
|
-
"verticalAlign": "middle",
|
|
763
|
-
}
|
|
764
|
-
}
|
|
765
|
-
>
|
|
766
|
-
Click me
|
|
767
|
-
</span>
|
|
587
|
+
Click me
|
|
768
588
|
</a>
|
|
769
589
|
`;
|
|
770
590
|
|
|
@@ -791,22 +611,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:false hovered 1`] = `
|
|
|
791
611
|
"cursor": "pointer",
|
|
792
612
|
"outline": "none",
|
|
793
613
|
"textDecoration": "underline currentcolor solid",
|
|
794
|
-
"textUnderlineOffset":
|
|
795
|
-
"verticalAlign": "bottom",
|
|
614
|
+
"textUnderlineOffset": 2,
|
|
796
615
|
}
|
|
797
616
|
}
|
|
798
617
|
tabIndex={0}
|
|
799
618
|
>
|
|
800
|
-
|
|
801
|
-
className=""
|
|
802
|
-
style={
|
|
803
|
-
{
|
|
804
|
-
"verticalAlign": "middle",
|
|
805
|
-
}
|
|
806
|
-
}
|
|
807
|
-
>
|
|
808
|
-
Click me
|
|
809
|
-
</span>
|
|
619
|
+
Click me
|
|
810
620
|
</a>
|
|
811
621
|
`;
|
|
812
622
|
|
|
@@ -833,22 +643,11 @@ exports[`LinkCore kind:primary href:# light:true visitable:false hovered 2`] = `
|
|
|
833
643
|
"cursor": "pointer",
|
|
834
644
|
"outline": "none",
|
|
835
645
|
"textDecoration": "underline currentcolor solid",
|
|
836
|
-
"textUnderlineOffset": "3px",
|
|
837
|
-
"verticalAlign": "bottom",
|
|
838
646
|
}
|
|
839
647
|
}
|
|
840
648
|
tabIndex={0}
|
|
841
649
|
>
|
|
842
|
-
|
|
843
|
-
className=""
|
|
844
|
-
style={
|
|
845
|
-
{
|
|
846
|
-
"verticalAlign": "middle",
|
|
847
|
-
}
|
|
848
|
-
}
|
|
849
|
-
>
|
|
850
|
-
Click me
|
|
851
|
-
</span>
|
|
650
|
+
Click me
|
|
852
651
|
</a>
|
|
853
652
|
`;
|
|
854
653
|
|
|
@@ -875,22 +674,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:false pressed 1`] = `
|
|
|
875
674
|
"cursor": "pointer",
|
|
876
675
|
"outline": "none",
|
|
877
676
|
"textDecoration": "underline currentcolor solid",
|
|
878
|
-
"textUnderlineOffset":
|
|
879
|
-
"verticalAlign": "bottom",
|
|
677
|
+
"textUnderlineOffset": 2,
|
|
880
678
|
}
|
|
881
679
|
}
|
|
882
680
|
tabIndex={0}
|
|
883
681
|
>
|
|
884
|
-
|
|
885
|
-
className=""
|
|
886
|
-
style={
|
|
887
|
-
{
|
|
888
|
-
"verticalAlign": "middle",
|
|
889
|
-
}
|
|
890
|
-
}
|
|
891
|
-
>
|
|
892
|
-
Click me
|
|
893
|
-
</span>
|
|
682
|
+
Click me
|
|
894
683
|
</a>
|
|
895
684
|
`;
|
|
896
685
|
|
|
@@ -917,22 +706,11 @@ exports[`LinkCore kind:primary href:# light:true visitable:false pressed 2`] = `
|
|
|
917
706
|
"cursor": "pointer",
|
|
918
707
|
"outline": "none",
|
|
919
708
|
"textDecoration": "underline currentcolor solid",
|
|
920
|
-
"textUnderlineOffset": "3px",
|
|
921
|
-
"verticalAlign": "bottom",
|
|
922
709
|
}
|
|
923
710
|
}
|
|
924
711
|
tabIndex={0}
|
|
925
712
|
>
|
|
926
|
-
|
|
927
|
-
className=""
|
|
928
|
-
style={
|
|
929
|
-
{
|
|
930
|
-
"verticalAlign": "middle",
|
|
931
|
-
}
|
|
932
|
-
}
|
|
933
|
-
>
|
|
934
|
-
Click me
|
|
935
|
-
</span>
|
|
713
|
+
Click me
|
|
936
714
|
</a>
|
|
937
715
|
`;
|
|
938
716
|
|
|
@@ -970,22 +748,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:true focused 1`] = `
|
|
|
970
748
|
"cursor": "pointer",
|
|
971
749
|
"outline": "none",
|
|
972
750
|
"textDecoration": "underline currentcolor solid",
|
|
973
|
-
"textUnderlineOffset":
|
|
974
|
-
"verticalAlign": "bottom",
|
|
751
|
+
"textUnderlineOffset": 2,
|
|
975
752
|
}
|
|
976
753
|
}
|
|
977
754
|
tabIndex={0}
|
|
978
755
|
>
|
|
979
|
-
|
|
980
|
-
className=""
|
|
981
|
-
style={
|
|
982
|
-
{
|
|
983
|
-
"verticalAlign": "middle",
|
|
984
|
-
}
|
|
985
|
-
}
|
|
986
|
-
>
|
|
987
|
-
Click me
|
|
988
|
-
</span>
|
|
756
|
+
Click me
|
|
989
757
|
</a>
|
|
990
758
|
`;
|
|
991
759
|
|
|
@@ -1023,22 +791,11 @@ exports[`LinkCore kind:primary href:# light:true visitable:true focused 2`] = `
|
|
|
1023
791
|
"cursor": "pointer",
|
|
1024
792
|
"outline": "none",
|
|
1025
793
|
"textDecoration": "none",
|
|
1026
|
-
"textUnderlineOffset": "3px",
|
|
1027
|
-
"verticalAlign": "bottom",
|
|
1028
794
|
}
|
|
1029
795
|
}
|
|
1030
796
|
tabIndex={0}
|
|
1031
797
|
>
|
|
1032
|
-
|
|
1033
|
-
className=""
|
|
1034
|
-
style={
|
|
1035
|
-
{
|
|
1036
|
-
"verticalAlign": "middle",
|
|
1037
|
-
}
|
|
1038
|
-
}
|
|
1039
|
-
>
|
|
1040
|
-
Click me
|
|
1041
|
-
</span>
|
|
798
|
+
Click me
|
|
1042
799
|
</a>
|
|
1043
800
|
`;
|
|
1044
801
|
|
|
@@ -1068,22 +825,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:true hovered 1`] = `
|
|
|
1068
825
|
"cursor": "pointer",
|
|
1069
826
|
"outline": "none",
|
|
1070
827
|
"textDecoration": "underline currentcolor solid",
|
|
1071
|
-
"textUnderlineOffset":
|
|
1072
|
-
"verticalAlign": "bottom",
|
|
828
|
+
"textUnderlineOffset": 2,
|
|
1073
829
|
}
|
|
1074
830
|
}
|
|
1075
831
|
tabIndex={0}
|
|
1076
832
|
>
|
|
1077
|
-
|
|
1078
|
-
className=""
|
|
1079
|
-
style={
|
|
1080
|
-
{
|
|
1081
|
-
"verticalAlign": "middle",
|
|
1082
|
-
}
|
|
1083
|
-
}
|
|
1084
|
-
>
|
|
1085
|
-
Click me
|
|
1086
|
-
</span>
|
|
833
|
+
Click me
|
|
1087
834
|
</a>
|
|
1088
835
|
`;
|
|
1089
836
|
|
|
@@ -1113,22 +860,11 @@ exports[`LinkCore kind:primary href:# light:true visitable:true hovered 2`] = `
|
|
|
1113
860
|
"cursor": "pointer",
|
|
1114
861
|
"outline": "none",
|
|
1115
862
|
"textDecoration": "underline currentcolor solid",
|
|
1116
|
-
"textUnderlineOffset": "3px",
|
|
1117
|
-
"verticalAlign": "bottom",
|
|
1118
863
|
}
|
|
1119
864
|
}
|
|
1120
865
|
tabIndex={0}
|
|
1121
866
|
>
|
|
1122
|
-
|
|
1123
|
-
className=""
|
|
1124
|
-
style={
|
|
1125
|
-
{
|
|
1126
|
-
"verticalAlign": "middle",
|
|
1127
|
-
}
|
|
1128
|
-
}
|
|
1129
|
-
>
|
|
1130
|
-
Click me
|
|
1131
|
-
</span>
|
|
867
|
+
Click me
|
|
1132
868
|
</a>
|
|
1133
869
|
`;
|
|
1134
870
|
|
|
@@ -1158,22 +894,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:true pressed 1`] = `
|
|
|
1158
894
|
"cursor": "pointer",
|
|
1159
895
|
"outline": "none",
|
|
1160
896
|
"textDecoration": "underline currentcolor solid",
|
|
1161
|
-
"textUnderlineOffset":
|
|
1162
|
-
"verticalAlign": "bottom",
|
|
897
|
+
"textUnderlineOffset": 2,
|
|
1163
898
|
}
|
|
1164
899
|
}
|
|
1165
900
|
tabIndex={0}
|
|
1166
901
|
>
|
|
1167
|
-
|
|
1168
|
-
className=""
|
|
1169
|
-
style={
|
|
1170
|
-
{
|
|
1171
|
-
"verticalAlign": "middle",
|
|
1172
|
-
}
|
|
1173
|
-
}
|
|
1174
|
-
>
|
|
1175
|
-
Click me
|
|
1176
|
-
</span>
|
|
902
|
+
Click me
|
|
1177
903
|
</a>
|
|
1178
904
|
`;
|
|
1179
905
|
|
|
@@ -1203,22 +929,11 @@ exports[`LinkCore kind:primary href:# light:true visitable:true pressed 2`] = `
|
|
|
1203
929
|
"cursor": "pointer",
|
|
1204
930
|
"outline": "none",
|
|
1205
931
|
"textDecoration": "underline currentcolor solid",
|
|
1206
|
-
"textUnderlineOffset": "3px",
|
|
1207
|
-
"verticalAlign": "bottom",
|
|
1208
932
|
}
|
|
1209
933
|
}
|
|
1210
934
|
tabIndex={0}
|
|
1211
935
|
>
|
|
1212
|
-
|
|
1213
|
-
className=""
|
|
1214
|
-
style={
|
|
1215
|
-
{
|
|
1216
|
-
"verticalAlign": "middle",
|
|
1217
|
-
}
|
|
1218
|
-
}
|
|
1219
|
-
>
|
|
1220
|
-
Click me
|
|
1221
|
-
</span>
|
|
936
|
+
Click me
|
|
1222
937
|
</a>
|
|
1223
938
|
`;
|
|
1224
939
|
|
|
@@ -1250,22 +965,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1250
965
|
"cursor": "pointer",
|
|
1251
966
|
"outline": "none",
|
|
1252
967
|
"textDecoration": "underline currentcolor solid",
|
|
1253
|
-
"textUnderlineOffset":
|
|
1254
|
-
"verticalAlign": "bottom",
|
|
968
|
+
"textUnderlineOffset": 2,
|
|
1255
969
|
}
|
|
1256
970
|
}
|
|
1257
971
|
tabIndex={0}
|
|
1258
972
|
>
|
|
1259
|
-
|
|
1260
|
-
className=""
|
|
1261
|
-
style={
|
|
1262
|
-
{
|
|
1263
|
-
"verticalAlign": "middle",
|
|
1264
|
-
}
|
|
1265
|
-
}
|
|
1266
|
-
>
|
|
1267
|
-
Click me
|
|
1268
|
-
</span>
|
|
973
|
+
Click me
|
|
1269
974
|
</a>
|
|
1270
975
|
`;
|
|
1271
976
|
|
|
@@ -1297,22 +1002,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1297
1002
|
"cursor": "pointer",
|
|
1298
1003
|
"outline": "none",
|
|
1299
1004
|
"textDecoration": "none",
|
|
1300
|
-
"textUnderlineOffset": "3px",
|
|
1301
|
-
"verticalAlign": "bottom",
|
|
1302
1005
|
}
|
|
1303
1006
|
}
|
|
1304
1007
|
tabIndex={0}
|
|
1305
1008
|
>
|
|
1306
|
-
|
|
1307
|
-
className=""
|
|
1308
|
-
style={
|
|
1309
|
-
{
|
|
1310
|
-
"verticalAlign": "middle",
|
|
1311
|
-
}
|
|
1312
|
-
}
|
|
1313
|
-
>
|
|
1314
|
-
Click me
|
|
1315
|
-
</span>
|
|
1009
|
+
Click me
|
|
1316
1010
|
</a>
|
|
1317
1011
|
`;
|
|
1318
1012
|
|
|
@@ -1339,22 +1033,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1339
1033
|
"cursor": "pointer",
|
|
1340
1034
|
"outline": "none",
|
|
1341
1035
|
"textDecoration": "underline currentcolor solid",
|
|
1342
|
-
"textUnderlineOffset":
|
|
1343
|
-
"verticalAlign": "bottom",
|
|
1036
|
+
"textUnderlineOffset": 2,
|
|
1344
1037
|
}
|
|
1345
1038
|
}
|
|
1346
1039
|
tabIndex={0}
|
|
1347
1040
|
>
|
|
1348
|
-
|
|
1349
|
-
className=""
|
|
1350
|
-
style={
|
|
1351
|
-
{
|
|
1352
|
-
"verticalAlign": "middle",
|
|
1353
|
-
}
|
|
1354
|
-
}
|
|
1355
|
-
>
|
|
1356
|
-
Click me
|
|
1357
|
-
</span>
|
|
1041
|
+
Click me
|
|
1358
1042
|
</a>
|
|
1359
1043
|
`;
|
|
1360
1044
|
|
|
@@ -1381,22 +1065,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1381
1065
|
"cursor": "pointer",
|
|
1382
1066
|
"outline": "none",
|
|
1383
1067
|
"textDecoration": "underline currentcolor solid",
|
|
1384
|
-
"textUnderlineOffset": "3px",
|
|
1385
|
-
"verticalAlign": "bottom",
|
|
1386
1068
|
}
|
|
1387
1069
|
}
|
|
1388
1070
|
tabIndex={0}
|
|
1389
1071
|
>
|
|
1390
|
-
|
|
1391
|
-
className=""
|
|
1392
|
-
style={
|
|
1393
|
-
{
|
|
1394
|
-
"verticalAlign": "middle",
|
|
1395
|
-
}
|
|
1396
|
-
}
|
|
1397
|
-
>
|
|
1398
|
-
Click me
|
|
1399
|
-
</span>
|
|
1072
|
+
Click me
|
|
1400
1073
|
</a>
|
|
1401
1074
|
`;
|
|
1402
1075
|
|
|
@@ -1423,22 +1096,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1423
1096
|
"cursor": "pointer",
|
|
1424
1097
|
"outline": "none",
|
|
1425
1098
|
"textDecoration": "underline currentcolor solid",
|
|
1426
|
-
"textUnderlineOffset":
|
|
1427
|
-
"verticalAlign": "bottom",
|
|
1099
|
+
"textUnderlineOffset": 2,
|
|
1428
1100
|
}
|
|
1429
1101
|
}
|
|
1430
1102
|
tabIndex={0}
|
|
1431
1103
|
>
|
|
1432
|
-
|
|
1433
|
-
className=""
|
|
1434
|
-
style={
|
|
1435
|
-
{
|
|
1436
|
-
"verticalAlign": "middle",
|
|
1437
|
-
}
|
|
1438
|
-
}
|
|
1439
|
-
>
|
|
1440
|
-
Click me
|
|
1441
|
-
</span>
|
|
1104
|
+
Click me
|
|
1442
1105
|
</a>
|
|
1443
1106
|
`;
|
|
1444
1107
|
|
|
@@ -1465,22 +1128,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1465
1128
|
"cursor": "pointer",
|
|
1466
1129
|
"outline": "none",
|
|
1467
1130
|
"textDecoration": "underline currentcolor solid",
|
|
1468
|
-
"textUnderlineOffset": "3px",
|
|
1469
|
-
"verticalAlign": "bottom",
|
|
1470
1131
|
}
|
|
1471
1132
|
}
|
|
1472
1133
|
tabIndex={0}
|
|
1473
1134
|
>
|
|
1474
|
-
|
|
1475
|
-
className=""
|
|
1476
|
-
style={
|
|
1477
|
-
{
|
|
1478
|
-
"verticalAlign": "middle",
|
|
1479
|
-
}
|
|
1480
|
-
}
|
|
1481
|
-
>
|
|
1482
|
-
Click me
|
|
1483
|
-
</span>
|
|
1135
|
+
Click me
|
|
1484
1136
|
</a>
|
|
1485
1137
|
`;
|
|
1486
1138
|
|
|
@@ -1518,22 +1170,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1518
1170
|
"cursor": "pointer",
|
|
1519
1171
|
"outline": "none",
|
|
1520
1172
|
"textDecoration": "underline currentcolor solid",
|
|
1521
|
-
"textUnderlineOffset":
|
|
1522
|
-
"verticalAlign": "bottom",
|
|
1173
|
+
"textUnderlineOffset": 2,
|
|
1523
1174
|
}
|
|
1524
1175
|
}
|
|
1525
1176
|
tabIndex={0}
|
|
1526
1177
|
>
|
|
1527
|
-
|
|
1528
|
-
className=""
|
|
1529
|
-
style={
|
|
1530
|
-
{
|
|
1531
|
-
"verticalAlign": "middle",
|
|
1532
|
-
}
|
|
1533
|
-
}
|
|
1534
|
-
>
|
|
1535
|
-
Click me
|
|
1536
|
-
</span>
|
|
1178
|
+
Click me
|
|
1537
1179
|
</a>
|
|
1538
1180
|
`;
|
|
1539
1181
|
|
|
@@ -1571,22 +1213,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1571
1213
|
"cursor": "pointer",
|
|
1572
1214
|
"outline": "none",
|
|
1573
1215
|
"textDecoration": "none",
|
|
1574
|
-
"textUnderlineOffset": "3px",
|
|
1575
|
-
"verticalAlign": "bottom",
|
|
1576
1216
|
}
|
|
1577
1217
|
}
|
|
1578
1218
|
tabIndex={0}
|
|
1579
1219
|
>
|
|
1580
|
-
|
|
1581
|
-
className=""
|
|
1582
|
-
style={
|
|
1583
|
-
{
|
|
1584
|
-
"verticalAlign": "middle",
|
|
1585
|
-
}
|
|
1586
|
-
}
|
|
1587
|
-
>
|
|
1588
|
-
Click me
|
|
1589
|
-
</span>
|
|
1220
|
+
Click me
|
|
1590
1221
|
</a>
|
|
1591
1222
|
`;
|
|
1592
1223
|
|
|
@@ -1616,22 +1247,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1616
1247
|
"cursor": "pointer",
|
|
1617
1248
|
"outline": "none",
|
|
1618
1249
|
"textDecoration": "underline currentcolor solid",
|
|
1619
|
-
"textUnderlineOffset":
|
|
1620
|
-
"verticalAlign": "bottom",
|
|
1250
|
+
"textUnderlineOffset": 2,
|
|
1621
1251
|
}
|
|
1622
1252
|
}
|
|
1623
1253
|
tabIndex={0}
|
|
1624
1254
|
>
|
|
1625
|
-
|
|
1626
|
-
className=""
|
|
1627
|
-
style={
|
|
1628
|
-
{
|
|
1629
|
-
"verticalAlign": "middle",
|
|
1630
|
-
}
|
|
1631
|
-
}
|
|
1632
|
-
>
|
|
1633
|
-
Click me
|
|
1634
|
-
</span>
|
|
1255
|
+
Click me
|
|
1635
1256
|
</a>
|
|
1636
1257
|
`;
|
|
1637
1258
|
|
|
@@ -1661,22 +1282,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1661
1282
|
"cursor": "pointer",
|
|
1662
1283
|
"outline": "none",
|
|
1663
1284
|
"textDecoration": "underline currentcolor solid",
|
|
1664
|
-
"textUnderlineOffset": "3px",
|
|
1665
|
-
"verticalAlign": "bottom",
|
|
1666
1285
|
}
|
|
1667
1286
|
}
|
|
1668
1287
|
tabIndex={0}
|
|
1669
1288
|
>
|
|
1670
|
-
|
|
1671
|
-
className=""
|
|
1672
|
-
style={
|
|
1673
|
-
{
|
|
1674
|
-
"verticalAlign": "middle",
|
|
1675
|
-
}
|
|
1676
|
-
}
|
|
1677
|
-
>
|
|
1678
|
-
Click me
|
|
1679
|
-
</span>
|
|
1289
|
+
Click me
|
|
1680
1290
|
</a>
|
|
1681
1291
|
`;
|
|
1682
1292
|
|
|
@@ -1706,22 +1316,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1706
1316
|
"cursor": "pointer",
|
|
1707
1317
|
"outline": "none",
|
|
1708
1318
|
"textDecoration": "underline currentcolor solid",
|
|
1709
|
-
"textUnderlineOffset":
|
|
1710
|
-
"verticalAlign": "bottom",
|
|
1319
|
+
"textUnderlineOffset": 2,
|
|
1711
1320
|
}
|
|
1712
1321
|
}
|
|
1713
1322
|
tabIndex={0}
|
|
1714
1323
|
>
|
|
1715
|
-
|
|
1716
|
-
className=""
|
|
1717
|
-
style={
|
|
1718
|
-
{
|
|
1719
|
-
"verticalAlign": "middle",
|
|
1720
|
-
}
|
|
1721
|
-
}
|
|
1722
|
-
>
|
|
1723
|
-
Click me
|
|
1724
|
-
</span>
|
|
1324
|
+
Click me
|
|
1725
1325
|
</a>
|
|
1726
1326
|
`;
|
|
1727
1327
|
|
|
@@ -1751,22 +1351,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1751
1351
|
"cursor": "pointer",
|
|
1752
1352
|
"outline": "none",
|
|
1753
1353
|
"textDecoration": "underline currentcolor solid",
|
|
1754
|
-
"textUnderlineOffset": "3px",
|
|
1755
|
-
"verticalAlign": "bottom",
|
|
1756
1354
|
}
|
|
1757
1355
|
}
|
|
1758
1356
|
tabIndex={0}
|
|
1759
1357
|
>
|
|
1760
|
-
|
|
1761
|
-
className=""
|
|
1762
|
-
style={
|
|
1763
|
-
{
|
|
1764
|
-
"verticalAlign": "middle",
|
|
1765
|
-
}
|
|
1766
|
-
}
|
|
1767
|
-
>
|
|
1768
|
-
Click me
|
|
1769
|
-
</span>
|
|
1358
|
+
Click me
|
|
1770
1359
|
</a>
|
|
1771
1360
|
`;
|
|
1772
1361
|
|
|
@@ -1798,22 +1387,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1798
1387
|
"cursor": "pointer",
|
|
1799
1388
|
"outline": "none",
|
|
1800
1389
|
"textDecoration": "underline currentcolor solid",
|
|
1801
|
-
"textUnderlineOffset":
|
|
1802
|
-
"verticalAlign": "bottom",
|
|
1390
|
+
"textUnderlineOffset": 2,
|
|
1803
1391
|
}
|
|
1804
1392
|
}
|
|
1805
1393
|
tabIndex={0}
|
|
1806
1394
|
>
|
|
1807
|
-
|
|
1808
|
-
className=""
|
|
1809
|
-
style={
|
|
1810
|
-
{
|
|
1811
|
-
"verticalAlign": "middle",
|
|
1812
|
-
}
|
|
1813
|
-
}
|
|
1814
|
-
>
|
|
1815
|
-
Click me
|
|
1816
|
-
</span>
|
|
1395
|
+
Click me
|
|
1817
1396
|
</a>
|
|
1818
1397
|
`;
|
|
1819
1398
|
|
|
@@ -1845,22 +1424,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1845
1424
|
"cursor": "pointer",
|
|
1846
1425
|
"outline": "none",
|
|
1847
1426
|
"textDecoration": "none",
|
|
1848
|
-
"textUnderlineOffset": "3px",
|
|
1849
|
-
"verticalAlign": "bottom",
|
|
1850
1427
|
}
|
|
1851
1428
|
}
|
|
1852
1429
|
tabIndex={0}
|
|
1853
1430
|
>
|
|
1854
|
-
|
|
1855
|
-
className=""
|
|
1856
|
-
style={
|
|
1857
|
-
{
|
|
1858
|
-
"verticalAlign": "middle",
|
|
1859
|
-
}
|
|
1860
|
-
}
|
|
1861
|
-
>
|
|
1862
|
-
Click me
|
|
1863
|
-
</span>
|
|
1431
|
+
Click me
|
|
1864
1432
|
</a>
|
|
1865
1433
|
`;
|
|
1866
1434
|
|
|
@@ -1887,22 +1455,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1887
1455
|
"cursor": "pointer",
|
|
1888
1456
|
"outline": "none",
|
|
1889
1457
|
"textDecoration": "underline currentcolor solid",
|
|
1890
|
-
"textUnderlineOffset":
|
|
1891
|
-
"verticalAlign": "bottom",
|
|
1458
|
+
"textUnderlineOffset": 2,
|
|
1892
1459
|
}
|
|
1893
1460
|
}
|
|
1894
1461
|
tabIndex={0}
|
|
1895
1462
|
>
|
|
1896
|
-
|
|
1897
|
-
className=""
|
|
1898
|
-
style={
|
|
1899
|
-
{
|
|
1900
|
-
"verticalAlign": "middle",
|
|
1901
|
-
}
|
|
1902
|
-
}
|
|
1903
|
-
>
|
|
1904
|
-
Click me
|
|
1905
|
-
</span>
|
|
1463
|
+
Click me
|
|
1906
1464
|
</a>
|
|
1907
1465
|
`;
|
|
1908
1466
|
|
|
@@ -1929,22 +1487,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1929
1487
|
"cursor": "pointer",
|
|
1930
1488
|
"outline": "none",
|
|
1931
1489
|
"textDecoration": "underline currentcolor solid",
|
|
1932
|
-
"textUnderlineOffset": "3px",
|
|
1933
|
-
"verticalAlign": "bottom",
|
|
1934
1490
|
}
|
|
1935
1491
|
}
|
|
1936
1492
|
tabIndex={0}
|
|
1937
1493
|
>
|
|
1938
|
-
|
|
1939
|
-
className=""
|
|
1940
|
-
style={
|
|
1941
|
-
{
|
|
1942
|
-
"verticalAlign": "middle",
|
|
1943
|
-
}
|
|
1944
|
-
}
|
|
1945
|
-
>
|
|
1946
|
-
Click me
|
|
1947
|
-
</span>
|
|
1494
|
+
Click me
|
|
1948
1495
|
</a>
|
|
1949
1496
|
`;
|
|
1950
1497
|
|
|
@@ -1971,22 +1518,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1971
1518
|
"cursor": "pointer",
|
|
1972
1519
|
"outline": "none",
|
|
1973
1520
|
"textDecoration": "underline currentcolor solid",
|
|
1974
|
-
"textUnderlineOffset":
|
|
1975
|
-
"verticalAlign": "bottom",
|
|
1521
|
+
"textUnderlineOffset": 2,
|
|
1976
1522
|
}
|
|
1977
1523
|
}
|
|
1978
1524
|
tabIndex={0}
|
|
1979
1525
|
>
|
|
1980
|
-
|
|
1981
|
-
className=""
|
|
1982
|
-
style={
|
|
1983
|
-
{
|
|
1984
|
-
"verticalAlign": "middle",
|
|
1985
|
-
}
|
|
1986
|
-
}
|
|
1987
|
-
>
|
|
1988
|
-
Click me
|
|
1989
|
-
</span>
|
|
1526
|
+
Click me
|
|
1990
1527
|
</a>
|
|
1991
1528
|
`;
|
|
1992
1529
|
|
|
@@ -2013,22 +1550,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
2013
1550
|
"cursor": "pointer",
|
|
2014
1551
|
"outline": "none",
|
|
2015
1552
|
"textDecoration": "underline currentcolor solid",
|
|
2016
|
-
"textUnderlineOffset": "3px",
|
|
2017
|
-
"verticalAlign": "bottom",
|
|
2018
1553
|
}
|
|
2019
1554
|
}
|
|
2020
1555
|
tabIndex={0}
|
|
2021
1556
|
>
|
|
2022
|
-
|
|
2023
|
-
className=""
|
|
2024
|
-
style={
|
|
2025
|
-
{
|
|
2026
|
-
"verticalAlign": "middle",
|
|
2027
|
-
}
|
|
2028
|
-
}
|
|
2029
|
-
>
|
|
2030
|
-
Click me
|
|
2031
|
-
</span>
|
|
1557
|
+
Click me
|
|
2032
1558
|
</a>
|
|
2033
1559
|
`;
|
|
2034
1560
|
|
|
@@ -2066,22 +1592,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2066
1592
|
"cursor": "pointer",
|
|
2067
1593
|
"outline": "none",
|
|
2068
1594
|
"textDecoration": "underline currentcolor solid",
|
|
2069
|
-
"textUnderlineOffset":
|
|
2070
|
-
"verticalAlign": "bottom",
|
|
1595
|
+
"textUnderlineOffset": 2,
|
|
2071
1596
|
}
|
|
2072
1597
|
}
|
|
2073
1598
|
tabIndex={0}
|
|
2074
1599
|
>
|
|
2075
|
-
|
|
2076
|
-
className=""
|
|
2077
|
-
style={
|
|
2078
|
-
{
|
|
2079
|
-
"verticalAlign": "middle",
|
|
2080
|
-
}
|
|
2081
|
-
}
|
|
2082
|
-
>
|
|
2083
|
-
Click me
|
|
2084
|
-
</span>
|
|
1600
|
+
Click me
|
|
2085
1601
|
</a>
|
|
2086
1602
|
`;
|
|
2087
1603
|
|
|
@@ -2119,22 +1635,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2119
1635
|
"cursor": "pointer",
|
|
2120
1636
|
"outline": "none",
|
|
2121
1637
|
"textDecoration": "none",
|
|
2122
|
-
"textUnderlineOffset": "3px",
|
|
2123
|
-
"verticalAlign": "bottom",
|
|
2124
1638
|
}
|
|
2125
1639
|
}
|
|
2126
1640
|
tabIndex={0}
|
|
2127
1641
|
>
|
|
2128
|
-
|
|
2129
|
-
className=""
|
|
2130
|
-
style={
|
|
2131
|
-
{
|
|
2132
|
-
"verticalAlign": "middle",
|
|
2133
|
-
}
|
|
2134
|
-
}
|
|
2135
|
-
>
|
|
2136
|
-
Click me
|
|
2137
|
-
</span>
|
|
1642
|
+
Click me
|
|
2138
1643
|
</a>
|
|
2139
1644
|
`;
|
|
2140
1645
|
|
|
@@ -2164,22 +1669,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2164
1669
|
"cursor": "pointer",
|
|
2165
1670
|
"outline": "none",
|
|
2166
1671
|
"textDecoration": "underline currentcolor solid",
|
|
2167
|
-
"textUnderlineOffset":
|
|
2168
|
-
"verticalAlign": "bottom",
|
|
1672
|
+
"textUnderlineOffset": 2,
|
|
2169
1673
|
}
|
|
2170
1674
|
}
|
|
2171
1675
|
tabIndex={0}
|
|
2172
1676
|
>
|
|
2173
|
-
|
|
2174
|
-
className=""
|
|
2175
|
-
style={
|
|
2176
|
-
{
|
|
2177
|
-
"verticalAlign": "middle",
|
|
2178
|
-
}
|
|
2179
|
-
}
|
|
2180
|
-
>
|
|
2181
|
-
Click me
|
|
2182
|
-
</span>
|
|
1677
|
+
Click me
|
|
2183
1678
|
</a>
|
|
2184
1679
|
`;
|
|
2185
1680
|
|
|
@@ -2209,22 +1704,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2209
1704
|
"cursor": "pointer",
|
|
2210
1705
|
"outline": "none",
|
|
2211
1706
|
"textDecoration": "underline currentcolor solid",
|
|
2212
|
-
"textUnderlineOffset": "3px",
|
|
2213
|
-
"verticalAlign": "bottom",
|
|
2214
1707
|
}
|
|
2215
1708
|
}
|
|
2216
1709
|
tabIndex={0}
|
|
2217
1710
|
>
|
|
2218
|
-
|
|
2219
|
-
className=""
|
|
2220
|
-
style={
|
|
2221
|
-
{
|
|
2222
|
-
"verticalAlign": "middle",
|
|
2223
|
-
}
|
|
2224
|
-
}
|
|
2225
|
-
>
|
|
2226
|
-
Click me
|
|
2227
|
-
</span>
|
|
1711
|
+
Click me
|
|
2228
1712
|
</a>
|
|
2229
1713
|
`;
|
|
2230
1714
|
|
|
@@ -2254,22 +1738,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2254
1738
|
"cursor": "pointer",
|
|
2255
1739
|
"outline": "none",
|
|
2256
1740
|
"textDecoration": "underline currentcolor solid",
|
|
2257
|
-
"textUnderlineOffset":
|
|
2258
|
-
"verticalAlign": "bottom",
|
|
1741
|
+
"textUnderlineOffset": 2,
|
|
2259
1742
|
}
|
|
2260
1743
|
}
|
|
2261
1744
|
tabIndex={0}
|
|
2262
1745
|
>
|
|
2263
|
-
|
|
2264
|
-
className=""
|
|
2265
|
-
style={
|
|
2266
|
-
{
|
|
2267
|
-
"verticalAlign": "middle",
|
|
2268
|
-
}
|
|
2269
|
-
}
|
|
2270
|
-
>
|
|
2271
|
-
Click me
|
|
2272
|
-
</span>
|
|
1746
|
+
Click me
|
|
2273
1747
|
</a>
|
|
2274
1748
|
`;
|
|
2275
1749
|
|
|
@@ -2299,22 +1773,11 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2299
1773
|
"cursor": "pointer",
|
|
2300
1774
|
"outline": "none",
|
|
2301
1775
|
"textDecoration": "underline currentcolor solid",
|
|
2302
|
-
"textUnderlineOffset": "3px",
|
|
2303
|
-
"verticalAlign": "bottom",
|
|
2304
1776
|
}
|
|
2305
1777
|
}
|
|
2306
1778
|
tabIndex={0}
|
|
2307
1779
|
>
|
|
2308
|
-
|
|
2309
|
-
className=""
|
|
2310
|
-
style={
|
|
2311
|
-
{
|
|
2312
|
-
"verticalAlign": "middle",
|
|
2313
|
-
}
|
|
2314
|
-
}
|
|
2315
|
-
>
|
|
2316
|
-
Click me
|
|
2317
|
-
</span>
|
|
1780
|
+
Click me
|
|
2318
1781
|
</a>
|
|
2319
1782
|
`;
|
|
2320
1783
|
|
|
@@ -2346,22 +1809,12 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false focused 1`]
|
|
|
2346
1809
|
"cursor": "pointer",
|
|
2347
1810
|
"outline": "none",
|
|
2348
1811
|
"textDecoration": "underline currentcolor solid",
|
|
2349
|
-
"textUnderlineOffset":
|
|
2350
|
-
"verticalAlign": "bottom",
|
|
1812
|
+
"textUnderlineOffset": 2,
|
|
2351
1813
|
}
|
|
2352
1814
|
}
|
|
2353
1815
|
tabIndex={0}
|
|
2354
1816
|
>
|
|
2355
|
-
|
|
2356
|
-
className=""
|
|
2357
|
-
style={
|
|
2358
|
-
{
|
|
2359
|
-
"verticalAlign": "middle",
|
|
2360
|
-
}
|
|
2361
|
-
}
|
|
2362
|
-
>
|
|
2363
|
-
Click me
|
|
2364
|
-
</span>
|
|
1817
|
+
Click me
|
|
2365
1818
|
</a>
|
|
2366
1819
|
`;
|
|
2367
1820
|
|
|
@@ -2393,22 +1846,11 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false focused 2`]
|
|
|
2393
1846
|
"cursor": "pointer",
|
|
2394
1847
|
"outline": "none",
|
|
2395
1848
|
"textDecoration": "none",
|
|
2396
|
-
"textUnderlineOffset": "3px",
|
|
2397
|
-
"verticalAlign": "bottom",
|
|
2398
1849
|
}
|
|
2399
1850
|
}
|
|
2400
1851
|
tabIndex={0}
|
|
2401
1852
|
>
|
|
2402
|
-
|
|
2403
|
-
className=""
|
|
2404
|
-
style={
|
|
2405
|
-
{
|
|
2406
|
-
"verticalAlign": "middle",
|
|
2407
|
-
}
|
|
2408
|
-
}
|
|
2409
|
-
>
|
|
2410
|
-
Click me
|
|
2411
|
-
</span>
|
|
1853
|
+
Click me
|
|
2412
1854
|
</a>
|
|
2413
1855
|
`;
|
|
2414
1856
|
|
|
@@ -2435,22 +1877,12 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false hovered 1`]
|
|
|
2435
1877
|
"cursor": "pointer",
|
|
2436
1878
|
"outline": "none",
|
|
2437
1879
|
"textDecoration": "underline currentcolor solid",
|
|
2438
|
-
"textUnderlineOffset":
|
|
2439
|
-
"verticalAlign": "bottom",
|
|
1880
|
+
"textUnderlineOffset": 2,
|
|
2440
1881
|
}
|
|
2441
1882
|
}
|
|
2442
1883
|
tabIndex={0}
|
|
2443
1884
|
>
|
|
2444
|
-
|
|
2445
|
-
className=""
|
|
2446
|
-
style={
|
|
2447
|
-
{
|
|
2448
|
-
"verticalAlign": "middle",
|
|
2449
|
-
}
|
|
2450
|
-
}
|
|
2451
|
-
>
|
|
2452
|
-
Click me
|
|
2453
|
-
</span>
|
|
1885
|
+
Click me
|
|
2454
1886
|
</a>
|
|
2455
1887
|
`;
|
|
2456
1888
|
|
|
@@ -2477,22 +1909,11 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false hovered 2`]
|
|
|
2477
1909
|
"cursor": "pointer",
|
|
2478
1910
|
"outline": "none",
|
|
2479
1911
|
"textDecoration": "underline currentcolor solid",
|
|
2480
|
-
"textUnderlineOffset": "3px",
|
|
2481
|
-
"verticalAlign": "bottom",
|
|
2482
1912
|
}
|
|
2483
1913
|
}
|
|
2484
1914
|
tabIndex={0}
|
|
2485
1915
|
>
|
|
2486
|
-
|
|
2487
|
-
className=""
|
|
2488
|
-
style={
|
|
2489
|
-
{
|
|
2490
|
-
"verticalAlign": "middle",
|
|
2491
|
-
}
|
|
2492
|
-
}
|
|
2493
|
-
>
|
|
2494
|
-
Click me
|
|
2495
|
-
</span>
|
|
1916
|
+
Click me
|
|
2496
1917
|
</a>
|
|
2497
1918
|
`;
|
|
2498
1919
|
|
|
@@ -2519,22 +1940,12 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false pressed 1`]
|
|
|
2519
1940
|
"cursor": "pointer",
|
|
2520
1941
|
"outline": "none",
|
|
2521
1942
|
"textDecoration": "underline currentcolor solid",
|
|
2522
|
-
"textUnderlineOffset":
|
|
2523
|
-
"verticalAlign": "bottom",
|
|
1943
|
+
"textUnderlineOffset": 2,
|
|
2524
1944
|
}
|
|
2525
1945
|
}
|
|
2526
1946
|
tabIndex={0}
|
|
2527
1947
|
>
|
|
2528
|
-
|
|
2529
|
-
className=""
|
|
2530
|
-
style={
|
|
2531
|
-
{
|
|
2532
|
-
"verticalAlign": "middle",
|
|
2533
|
-
}
|
|
2534
|
-
}
|
|
2535
|
-
>
|
|
2536
|
-
Click me
|
|
2537
|
-
</span>
|
|
1948
|
+
Click me
|
|
2538
1949
|
</a>
|
|
2539
1950
|
`;
|
|
2540
1951
|
|
|
@@ -2561,22 +1972,11 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false pressed 2`]
|
|
|
2561
1972
|
"cursor": "pointer",
|
|
2562
1973
|
"outline": "none",
|
|
2563
1974
|
"textDecoration": "underline currentcolor solid",
|
|
2564
|
-
"textUnderlineOffset": "3px",
|
|
2565
|
-
"verticalAlign": "bottom",
|
|
2566
1975
|
}
|
|
2567
1976
|
}
|
|
2568
1977
|
tabIndex={0}
|
|
2569
1978
|
>
|
|
2570
|
-
|
|
2571
|
-
className=""
|
|
2572
|
-
style={
|
|
2573
|
-
{
|
|
2574
|
-
"verticalAlign": "middle",
|
|
2575
|
-
}
|
|
2576
|
-
}
|
|
2577
|
-
>
|
|
2578
|
-
Click me
|
|
2579
|
-
</span>
|
|
1979
|
+
Click me
|
|
2580
1980
|
</a>
|
|
2581
1981
|
`;
|
|
2582
1982
|
|
|
@@ -2608,22 +2008,12 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2608
2008
|
"cursor": "pointer",
|
|
2609
2009
|
"outline": "none",
|
|
2610
2010
|
"textDecoration": "underline currentcolor solid",
|
|
2611
|
-
"textUnderlineOffset":
|
|
2612
|
-
"verticalAlign": "bottom",
|
|
2011
|
+
"textUnderlineOffset": 2,
|
|
2613
2012
|
}
|
|
2614
2013
|
}
|
|
2615
2014
|
tabIndex={0}
|
|
2616
2015
|
>
|
|
2617
|
-
|
|
2618
|
-
className=""
|
|
2619
|
-
style={
|
|
2620
|
-
{
|
|
2621
|
-
"verticalAlign": "middle",
|
|
2622
|
-
}
|
|
2623
|
-
}
|
|
2624
|
-
>
|
|
2625
|
-
Click me
|
|
2626
|
-
</span>
|
|
2016
|
+
Click me
|
|
2627
2017
|
</a>
|
|
2628
2018
|
`;
|
|
2629
2019
|
|
|
@@ -2655,22 +2045,11 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2655
2045
|
"cursor": "pointer",
|
|
2656
2046
|
"outline": "none",
|
|
2657
2047
|
"textDecoration": "none",
|
|
2658
|
-
"textUnderlineOffset": "3px",
|
|
2659
|
-
"verticalAlign": "bottom",
|
|
2660
2048
|
}
|
|
2661
2049
|
}
|
|
2662
2050
|
tabIndex={0}
|
|
2663
2051
|
>
|
|
2664
|
-
|
|
2665
|
-
className=""
|
|
2666
|
-
style={
|
|
2667
|
-
{
|
|
2668
|
-
"verticalAlign": "middle",
|
|
2669
|
-
}
|
|
2670
|
-
}
|
|
2671
|
-
>
|
|
2672
|
-
Click me
|
|
2673
|
-
</span>
|
|
2052
|
+
Click me
|
|
2674
2053
|
</a>
|
|
2675
2054
|
`;
|
|
2676
2055
|
|
|
@@ -2697,22 +2076,12 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2697
2076
|
"cursor": "pointer",
|
|
2698
2077
|
"outline": "none",
|
|
2699
2078
|
"textDecoration": "underline currentcolor solid",
|
|
2700
|
-
"textUnderlineOffset":
|
|
2701
|
-
"verticalAlign": "bottom",
|
|
2079
|
+
"textUnderlineOffset": 2,
|
|
2702
2080
|
}
|
|
2703
2081
|
}
|
|
2704
2082
|
tabIndex={0}
|
|
2705
2083
|
>
|
|
2706
|
-
|
|
2707
|
-
className=""
|
|
2708
|
-
style={
|
|
2709
|
-
{
|
|
2710
|
-
"verticalAlign": "middle",
|
|
2711
|
-
}
|
|
2712
|
-
}
|
|
2713
|
-
>
|
|
2714
|
-
Click me
|
|
2715
|
-
</span>
|
|
2084
|
+
Click me
|
|
2716
2085
|
</a>
|
|
2717
2086
|
`;
|
|
2718
2087
|
|
|
@@ -2739,22 +2108,11 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2739
2108
|
"cursor": "pointer",
|
|
2740
2109
|
"outline": "none",
|
|
2741
2110
|
"textDecoration": "underline currentcolor solid",
|
|
2742
|
-
"textUnderlineOffset": "3px",
|
|
2743
|
-
"verticalAlign": "bottom",
|
|
2744
2111
|
}
|
|
2745
2112
|
}
|
|
2746
2113
|
tabIndex={0}
|
|
2747
2114
|
>
|
|
2748
|
-
|
|
2749
|
-
className=""
|
|
2750
|
-
style={
|
|
2751
|
-
{
|
|
2752
|
-
"verticalAlign": "middle",
|
|
2753
|
-
}
|
|
2754
|
-
}
|
|
2755
|
-
>
|
|
2756
|
-
Click me
|
|
2757
|
-
</span>
|
|
2115
|
+
Click me
|
|
2758
2116
|
</a>
|
|
2759
2117
|
`;
|
|
2760
2118
|
|
|
@@ -2781,22 +2139,12 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2781
2139
|
"cursor": "pointer",
|
|
2782
2140
|
"outline": "none",
|
|
2783
2141
|
"textDecoration": "underline currentcolor solid",
|
|
2784
|
-
"textUnderlineOffset":
|
|
2785
|
-
"verticalAlign": "bottom",
|
|
2142
|
+
"textUnderlineOffset": 2,
|
|
2786
2143
|
}
|
|
2787
2144
|
}
|
|
2788
2145
|
tabIndex={0}
|
|
2789
2146
|
>
|
|
2790
|
-
|
|
2791
|
-
className=""
|
|
2792
|
-
style={
|
|
2793
|
-
{
|
|
2794
|
-
"verticalAlign": "middle",
|
|
2795
|
-
}
|
|
2796
|
-
}
|
|
2797
|
-
>
|
|
2798
|
-
Click me
|
|
2799
|
-
</span>
|
|
2147
|
+
Click me
|
|
2800
2148
|
</a>
|
|
2801
2149
|
`;
|
|
2802
2150
|
|
|
@@ -2823,21 +2171,10 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2823
2171
|
"cursor": "pointer",
|
|
2824
2172
|
"outline": "none",
|
|
2825
2173
|
"textDecoration": "underline currentcolor solid",
|
|
2826
|
-
"textUnderlineOffset": "3px",
|
|
2827
|
-
"verticalAlign": "bottom",
|
|
2828
2174
|
}
|
|
2829
2175
|
}
|
|
2830
2176
|
tabIndex={0}
|
|
2831
2177
|
>
|
|
2832
|
-
|
|
2833
|
-
className=""
|
|
2834
|
-
style={
|
|
2835
|
-
{
|
|
2836
|
-
"verticalAlign": "middle",
|
|
2837
|
-
}
|
|
2838
|
-
}
|
|
2839
|
-
>
|
|
2840
|
-
Click me
|
|
2841
|
-
</span>
|
|
2178
|
+
Click me
|
|
2842
2179
|
</a>
|
|
2843
2180
|
`;
|