@khanacademy/wonder-blocks-link 4.2.0 → 4.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/es/index.js +19 -15
- package/dist/index.js +19 -15
- package/package.json +1 -1
- package/src/__tests__/__snapshots__/custom-snapshot.test.tsx.snap +93 -630
- package/src/components/link-core.tsx +30 -7
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -23,21 +23,12 @@ exports[`Link <Link tabIndex={-1}> 1`] = `
|
|
|
23
23
|
"cursor": "pointer",
|
|
24
24
|
"outline": "none",
|
|
25
25
|
"textDecoration": "none",
|
|
26
|
-
"textUnderlineOffset": "3px",
|
|
27
26
|
"verticalAlign": "bottom",
|
|
28
27
|
}
|
|
29
28
|
}
|
|
30
29
|
tabIndex={-1}
|
|
31
30
|
>
|
|
32
|
-
|
|
33
|
-
style={
|
|
34
|
-
{
|
|
35
|
-
"verticalAlign": "middle",
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
>
|
|
39
|
-
Click me
|
|
40
|
-
</span>
|
|
31
|
+
Click me
|
|
41
32
|
</a>
|
|
42
33
|
`;
|
|
43
34
|
|
|
@@ -64,21 +55,12 @@ exports[`Link <Link tabIndex={0}> 1`] = `
|
|
|
64
55
|
"cursor": "pointer",
|
|
65
56
|
"outline": "none",
|
|
66
57
|
"textDecoration": "none",
|
|
67
|
-
"textUnderlineOffset": "3px",
|
|
68
58
|
"verticalAlign": "bottom",
|
|
69
59
|
}
|
|
70
60
|
}
|
|
71
61
|
tabIndex={0}
|
|
72
62
|
>
|
|
73
|
-
|
|
74
|
-
style={
|
|
75
|
-
{
|
|
76
|
-
"verticalAlign": "middle",
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
>
|
|
80
|
-
Click me
|
|
81
|
-
</span>
|
|
63
|
+
Click me
|
|
82
64
|
</a>
|
|
83
65
|
`;
|
|
84
66
|
|
|
@@ -105,21 +87,12 @@ exports[`Link <Link tabIndex={1}> 1`] = `
|
|
|
105
87
|
"cursor": "pointer",
|
|
106
88
|
"outline": "none",
|
|
107
89
|
"textDecoration": "none",
|
|
108
|
-
"textUnderlineOffset": "3px",
|
|
109
90
|
"verticalAlign": "bottom",
|
|
110
91
|
}
|
|
111
92
|
}
|
|
112
93
|
tabIndex={1}
|
|
113
94
|
>
|
|
114
|
-
|
|
115
|
-
style={
|
|
116
|
-
{
|
|
117
|
-
"verticalAlign": "middle",
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
>
|
|
121
|
-
Click me
|
|
122
|
-
</span>
|
|
95
|
+
Click me
|
|
123
96
|
</a>
|
|
124
97
|
`;
|
|
125
98
|
|
|
@@ -151,21 +124,13 @@ exports[`LinkCore kind:primary href:# light:false visitable:false focused 1`] =
|
|
|
151
124
|
"cursor": "pointer",
|
|
152
125
|
"outline": "none",
|
|
153
126
|
"textDecoration": "underline currentcolor solid",
|
|
154
|
-
"textUnderlineOffset":
|
|
127
|
+
"textUnderlineOffset": 2,
|
|
155
128
|
"verticalAlign": "bottom",
|
|
156
129
|
}
|
|
157
130
|
}
|
|
158
131
|
tabIndex={0}
|
|
159
132
|
>
|
|
160
|
-
|
|
161
|
-
style={
|
|
162
|
-
{
|
|
163
|
-
"verticalAlign": "middle",
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
>
|
|
167
|
-
Click me
|
|
168
|
-
</span>
|
|
133
|
+
Click me
|
|
169
134
|
</a>
|
|
170
135
|
`;
|
|
171
136
|
|
|
@@ -197,21 +162,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:false focused 2`] =
|
|
|
197
162
|
"cursor": "pointer",
|
|
198
163
|
"outline": "none",
|
|
199
164
|
"textDecoration": "none",
|
|
200
|
-
"textUnderlineOffset": "3px",
|
|
201
165
|
"verticalAlign": "bottom",
|
|
202
166
|
}
|
|
203
167
|
}
|
|
204
168
|
tabIndex={0}
|
|
205
169
|
>
|
|
206
|
-
|
|
207
|
-
style={
|
|
208
|
-
{
|
|
209
|
-
"verticalAlign": "middle",
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
>
|
|
213
|
-
Click me
|
|
214
|
-
</span>
|
|
170
|
+
Click me
|
|
215
171
|
</a>
|
|
216
172
|
`;
|
|
217
173
|
|
|
@@ -238,21 +194,13 @@ exports[`LinkCore kind:primary href:# light:false visitable:false hovered 1`] =
|
|
|
238
194
|
"cursor": "pointer",
|
|
239
195
|
"outline": "none",
|
|
240
196
|
"textDecoration": "underline currentcolor solid",
|
|
241
|
-
"textUnderlineOffset":
|
|
197
|
+
"textUnderlineOffset": 2,
|
|
242
198
|
"verticalAlign": "bottom",
|
|
243
199
|
}
|
|
244
200
|
}
|
|
245
201
|
tabIndex={0}
|
|
246
202
|
>
|
|
247
|
-
|
|
248
|
-
style={
|
|
249
|
-
{
|
|
250
|
-
"verticalAlign": "middle",
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
>
|
|
254
|
-
Click me
|
|
255
|
-
</span>
|
|
203
|
+
Click me
|
|
256
204
|
</a>
|
|
257
205
|
`;
|
|
258
206
|
|
|
@@ -279,21 +227,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:false hovered 2`] =
|
|
|
279
227
|
"cursor": "pointer",
|
|
280
228
|
"outline": "none",
|
|
281
229
|
"textDecoration": "underline currentcolor solid",
|
|
282
|
-
"textUnderlineOffset": "3px",
|
|
283
230
|
"verticalAlign": "bottom",
|
|
284
231
|
}
|
|
285
232
|
}
|
|
286
233
|
tabIndex={0}
|
|
287
234
|
>
|
|
288
|
-
|
|
289
|
-
style={
|
|
290
|
-
{
|
|
291
|
-
"verticalAlign": "middle",
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
>
|
|
295
|
-
Click me
|
|
296
|
-
</span>
|
|
235
|
+
Click me
|
|
297
236
|
</a>
|
|
298
237
|
`;
|
|
299
238
|
|
|
@@ -320,21 +259,13 @@ exports[`LinkCore kind:primary href:# light:false visitable:false pressed 1`] =
|
|
|
320
259
|
"cursor": "pointer",
|
|
321
260
|
"outline": "none",
|
|
322
261
|
"textDecoration": "underline currentcolor solid",
|
|
323
|
-
"textUnderlineOffset":
|
|
262
|
+
"textUnderlineOffset": 2,
|
|
324
263
|
"verticalAlign": "bottom",
|
|
325
264
|
}
|
|
326
265
|
}
|
|
327
266
|
tabIndex={0}
|
|
328
267
|
>
|
|
329
|
-
|
|
330
|
-
style={
|
|
331
|
-
{
|
|
332
|
-
"verticalAlign": "middle",
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
>
|
|
336
|
-
Click me
|
|
337
|
-
</span>
|
|
268
|
+
Click me
|
|
338
269
|
</a>
|
|
339
270
|
`;
|
|
340
271
|
|
|
@@ -361,21 +292,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:false pressed 2`] =
|
|
|
361
292
|
"cursor": "pointer",
|
|
362
293
|
"outline": "none",
|
|
363
294
|
"textDecoration": "underline currentcolor solid",
|
|
364
|
-
"textUnderlineOffset": "3px",
|
|
365
295
|
"verticalAlign": "bottom",
|
|
366
296
|
}
|
|
367
297
|
}
|
|
368
298
|
tabIndex={0}
|
|
369
299
|
>
|
|
370
|
-
|
|
371
|
-
style={
|
|
372
|
-
{
|
|
373
|
-
"verticalAlign": "middle",
|
|
374
|
-
}
|
|
375
|
-
}
|
|
376
|
-
>
|
|
377
|
-
Click me
|
|
378
|
-
</span>
|
|
300
|
+
Click me
|
|
379
301
|
</a>
|
|
380
302
|
`;
|
|
381
303
|
|
|
@@ -413,21 +335,13 @@ exports[`LinkCore kind:primary href:# light:false visitable:true focused 1`] = `
|
|
|
413
335
|
"cursor": "pointer",
|
|
414
336
|
"outline": "none",
|
|
415
337
|
"textDecoration": "underline currentcolor solid",
|
|
416
|
-
"textUnderlineOffset":
|
|
338
|
+
"textUnderlineOffset": 2,
|
|
417
339
|
"verticalAlign": "bottom",
|
|
418
340
|
}
|
|
419
341
|
}
|
|
420
342
|
tabIndex={0}
|
|
421
343
|
>
|
|
422
|
-
|
|
423
|
-
style={
|
|
424
|
-
{
|
|
425
|
-
"verticalAlign": "middle",
|
|
426
|
-
}
|
|
427
|
-
}
|
|
428
|
-
>
|
|
429
|
-
Click me
|
|
430
|
-
</span>
|
|
344
|
+
Click me
|
|
431
345
|
</a>
|
|
432
346
|
`;
|
|
433
347
|
|
|
@@ -465,21 +379,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:true focused 2`] = `
|
|
|
465
379
|
"cursor": "pointer",
|
|
466
380
|
"outline": "none",
|
|
467
381
|
"textDecoration": "none",
|
|
468
|
-
"textUnderlineOffset": "3px",
|
|
469
382
|
"verticalAlign": "bottom",
|
|
470
383
|
}
|
|
471
384
|
}
|
|
472
385
|
tabIndex={0}
|
|
473
386
|
>
|
|
474
|
-
|
|
475
|
-
style={
|
|
476
|
-
{
|
|
477
|
-
"verticalAlign": "middle",
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
>
|
|
481
|
-
Click me
|
|
482
|
-
</span>
|
|
387
|
+
Click me
|
|
483
388
|
</a>
|
|
484
389
|
`;
|
|
485
390
|
|
|
@@ -509,21 +414,13 @@ exports[`LinkCore kind:primary href:# light:false visitable:true hovered 1`] = `
|
|
|
509
414
|
"cursor": "pointer",
|
|
510
415
|
"outline": "none",
|
|
511
416
|
"textDecoration": "underline currentcolor solid",
|
|
512
|
-
"textUnderlineOffset":
|
|
417
|
+
"textUnderlineOffset": 2,
|
|
513
418
|
"verticalAlign": "bottom",
|
|
514
419
|
}
|
|
515
420
|
}
|
|
516
421
|
tabIndex={0}
|
|
517
422
|
>
|
|
518
|
-
|
|
519
|
-
style={
|
|
520
|
-
{
|
|
521
|
-
"verticalAlign": "middle",
|
|
522
|
-
}
|
|
523
|
-
}
|
|
524
|
-
>
|
|
525
|
-
Click me
|
|
526
|
-
</span>
|
|
423
|
+
Click me
|
|
527
424
|
</a>
|
|
528
425
|
`;
|
|
529
426
|
|
|
@@ -553,21 +450,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:true hovered 2`] = `
|
|
|
553
450
|
"cursor": "pointer",
|
|
554
451
|
"outline": "none",
|
|
555
452
|
"textDecoration": "underline currentcolor solid",
|
|
556
|
-
"textUnderlineOffset": "3px",
|
|
557
453
|
"verticalAlign": "bottom",
|
|
558
454
|
}
|
|
559
455
|
}
|
|
560
456
|
tabIndex={0}
|
|
561
457
|
>
|
|
562
|
-
|
|
563
|
-
style={
|
|
564
|
-
{
|
|
565
|
-
"verticalAlign": "middle",
|
|
566
|
-
}
|
|
567
|
-
}
|
|
568
|
-
>
|
|
569
|
-
Click me
|
|
570
|
-
</span>
|
|
458
|
+
Click me
|
|
571
459
|
</a>
|
|
572
460
|
`;
|
|
573
461
|
|
|
@@ -597,21 +485,13 @@ exports[`LinkCore kind:primary href:# light:false visitable:true pressed 1`] = `
|
|
|
597
485
|
"cursor": "pointer",
|
|
598
486
|
"outline": "none",
|
|
599
487
|
"textDecoration": "underline currentcolor solid",
|
|
600
|
-
"textUnderlineOffset":
|
|
488
|
+
"textUnderlineOffset": 2,
|
|
601
489
|
"verticalAlign": "bottom",
|
|
602
490
|
}
|
|
603
491
|
}
|
|
604
492
|
tabIndex={0}
|
|
605
493
|
>
|
|
606
|
-
|
|
607
|
-
style={
|
|
608
|
-
{
|
|
609
|
-
"verticalAlign": "middle",
|
|
610
|
-
}
|
|
611
|
-
}
|
|
612
|
-
>
|
|
613
|
-
Click me
|
|
614
|
-
</span>
|
|
494
|
+
Click me
|
|
615
495
|
</a>
|
|
616
496
|
`;
|
|
617
497
|
|
|
@@ -641,21 +521,12 @@ exports[`LinkCore kind:primary href:# light:false visitable:true pressed 2`] = `
|
|
|
641
521
|
"cursor": "pointer",
|
|
642
522
|
"outline": "none",
|
|
643
523
|
"textDecoration": "underline currentcolor solid",
|
|
644
|
-
"textUnderlineOffset": "3px",
|
|
645
524
|
"verticalAlign": "bottom",
|
|
646
525
|
}
|
|
647
526
|
}
|
|
648
527
|
tabIndex={0}
|
|
649
528
|
>
|
|
650
|
-
|
|
651
|
-
style={
|
|
652
|
-
{
|
|
653
|
-
"verticalAlign": "middle",
|
|
654
|
-
}
|
|
655
|
-
}
|
|
656
|
-
>
|
|
657
|
-
Click me
|
|
658
|
-
</span>
|
|
529
|
+
Click me
|
|
659
530
|
</a>
|
|
660
531
|
`;
|
|
661
532
|
|
|
@@ -687,21 +558,13 @@ exports[`LinkCore kind:primary href:# light:true visitable:false focused 1`] = `
|
|
|
687
558
|
"cursor": "pointer",
|
|
688
559
|
"outline": "none",
|
|
689
560
|
"textDecoration": "underline currentcolor solid",
|
|
690
|
-
"textUnderlineOffset":
|
|
561
|
+
"textUnderlineOffset": 2,
|
|
691
562
|
"verticalAlign": "bottom",
|
|
692
563
|
}
|
|
693
564
|
}
|
|
694
565
|
tabIndex={0}
|
|
695
566
|
>
|
|
696
|
-
|
|
697
|
-
style={
|
|
698
|
-
{
|
|
699
|
-
"verticalAlign": "middle",
|
|
700
|
-
}
|
|
701
|
-
}
|
|
702
|
-
>
|
|
703
|
-
Click me
|
|
704
|
-
</span>
|
|
567
|
+
Click me
|
|
705
568
|
</a>
|
|
706
569
|
`;
|
|
707
570
|
|
|
@@ -733,21 +596,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:false focused 2`] = `
|
|
|
733
596
|
"cursor": "pointer",
|
|
734
597
|
"outline": "none",
|
|
735
598
|
"textDecoration": "none",
|
|
736
|
-
"textUnderlineOffset": "3px",
|
|
737
599
|
"verticalAlign": "bottom",
|
|
738
600
|
}
|
|
739
601
|
}
|
|
740
602
|
tabIndex={0}
|
|
741
603
|
>
|
|
742
|
-
|
|
743
|
-
style={
|
|
744
|
-
{
|
|
745
|
-
"verticalAlign": "middle",
|
|
746
|
-
}
|
|
747
|
-
}
|
|
748
|
-
>
|
|
749
|
-
Click me
|
|
750
|
-
</span>
|
|
604
|
+
Click me
|
|
751
605
|
</a>
|
|
752
606
|
`;
|
|
753
607
|
|
|
@@ -774,21 +628,13 @@ exports[`LinkCore kind:primary href:# light:true visitable:false hovered 1`] = `
|
|
|
774
628
|
"cursor": "pointer",
|
|
775
629
|
"outline": "none",
|
|
776
630
|
"textDecoration": "underline currentcolor solid",
|
|
777
|
-
"textUnderlineOffset":
|
|
631
|
+
"textUnderlineOffset": 2,
|
|
778
632
|
"verticalAlign": "bottom",
|
|
779
633
|
}
|
|
780
634
|
}
|
|
781
635
|
tabIndex={0}
|
|
782
636
|
>
|
|
783
|
-
|
|
784
|
-
style={
|
|
785
|
-
{
|
|
786
|
-
"verticalAlign": "middle",
|
|
787
|
-
}
|
|
788
|
-
}
|
|
789
|
-
>
|
|
790
|
-
Click me
|
|
791
|
-
</span>
|
|
637
|
+
Click me
|
|
792
638
|
</a>
|
|
793
639
|
`;
|
|
794
640
|
|
|
@@ -815,21 +661,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:false hovered 2`] = `
|
|
|
815
661
|
"cursor": "pointer",
|
|
816
662
|
"outline": "none",
|
|
817
663
|
"textDecoration": "underline currentcolor solid",
|
|
818
|
-
"textUnderlineOffset": "3px",
|
|
819
664
|
"verticalAlign": "bottom",
|
|
820
665
|
}
|
|
821
666
|
}
|
|
822
667
|
tabIndex={0}
|
|
823
668
|
>
|
|
824
|
-
|
|
825
|
-
style={
|
|
826
|
-
{
|
|
827
|
-
"verticalAlign": "middle",
|
|
828
|
-
}
|
|
829
|
-
}
|
|
830
|
-
>
|
|
831
|
-
Click me
|
|
832
|
-
</span>
|
|
669
|
+
Click me
|
|
833
670
|
</a>
|
|
834
671
|
`;
|
|
835
672
|
|
|
@@ -856,21 +693,13 @@ exports[`LinkCore kind:primary href:# light:true visitable:false pressed 1`] = `
|
|
|
856
693
|
"cursor": "pointer",
|
|
857
694
|
"outline": "none",
|
|
858
695
|
"textDecoration": "underline currentcolor solid",
|
|
859
|
-
"textUnderlineOffset":
|
|
696
|
+
"textUnderlineOffset": 2,
|
|
860
697
|
"verticalAlign": "bottom",
|
|
861
698
|
}
|
|
862
699
|
}
|
|
863
700
|
tabIndex={0}
|
|
864
701
|
>
|
|
865
|
-
|
|
866
|
-
style={
|
|
867
|
-
{
|
|
868
|
-
"verticalAlign": "middle",
|
|
869
|
-
}
|
|
870
|
-
}
|
|
871
|
-
>
|
|
872
|
-
Click me
|
|
873
|
-
</span>
|
|
702
|
+
Click me
|
|
874
703
|
</a>
|
|
875
704
|
`;
|
|
876
705
|
|
|
@@ -897,21 +726,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:false pressed 2`] = `
|
|
|
897
726
|
"cursor": "pointer",
|
|
898
727
|
"outline": "none",
|
|
899
728
|
"textDecoration": "underline currentcolor solid",
|
|
900
|
-
"textUnderlineOffset": "3px",
|
|
901
729
|
"verticalAlign": "bottom",
|
|
902
730
|
}
|
|
903
731
|
}
|
|
904
732
|
tabIndex={0}
|
|
905
733
|
>
|
|
906
|
-
|
|
907
|
-
style={
|
|
908
|
-
{
|
|
909
|
-
"verticalAlign": "middle",
|
|
910
|
-
}
|
|
911
|
-
}
|
|
912
|
-
>
|
|
913
|
-
Click me
|
|
914
|
-
</span>
|
|
734
|
+
Click me
|
|
915
735
|
</a>
|
|
916
736
|
`;
|
|
917
737
|
|
|
@@ -949,21 +769,13 @@ exports[`LinkCore kind:primary href:# light:true visitable:true focused 1`] = `
|
|
|
949
769
|
"cursor": "pointer",
|
|
950
770
|
"outline": "none",
|
|
951
771
|
"textDecoration": "underline currentcolor solid",
|
|
952
|
-
"textUnderlineOffset":
|
|
772
|
+
"textUnderlineOffset": 2,
|
|
953
773
|
"verticalAlign": "bottom",
|
|
954
774
|
}
|
|
955
775
|
}
|
|
956
776
|
tabIndex={0}
|
|
957
777
|
>
|
|
958
|
-
|
|
959
|
-
style={
|
|
960
|
-
{
|
|
961
|
-
"verticalAlign": "middle",
|
|
962
|
-
}
|
|
963
|
-
}
|
|
964
|
-
>
|
|
965
|
-
Click me
|
|
966
|
-
</span>
|
|
778
|
+
Click me
|
|
967
779
|
</a>
|
|
968
780
|
`;
|
|
969
781
|
|
|
@@ -1001,21 +813,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:true focused 2`] = `
|
|
|
1001
813
|
"cursor": "pointer",
|
|
1002
814
|
"outline": "none",
|
|
1003
815
|
"textDecoration": "none",
|
|
1004
|
-
"textUnderlineOffset": "3px",
|
|
1005
816
|
"verticalAlign": "bottom",
|
|
1006
817
|
}
|
|
1007
818
|
}
|
|
1008
819
|
tabIndex={0}
|
|
1009
820
|
>
|
|
1010
|
-
|
|
1011
|
-
style={
|
|
1012
|
-
{
|
|
1013
|
-
"verticalAlign": "middle",
|
|
1014
|
-
}
|
|
1015
|
-
}
|
|
1016
|
-
>
|
|
1017
|
-
Click me
|
|
1018
|
-
</span>
|
|
821
|
+
Click me
|
|
1019
822
|
</a>
|
|
1020
823
|
`;
|
|
1021
824
|
|
|
@@ -1045,21 +848,13 @@ exports[`LinkCore kind:primary href:# light:true visitable:true hovered 1`] = `
|
|
|
1045
848
|
"cursor": "pointer",
|
|
1046
849
|
"outline": "none",
|
|
1047
850
|
"textDecoration": "underline currentcolor solid",
|
|
1048
|
-
"textUnderlineOffset":
|
|
851
|
+
"textUnderlineOffset": 2,
|
|
1049
852
|
"verticalAlign": "bottom",
|
|
1050
853
|
}
|
|
1051
854
|
}
|
|
1052
855
|
tabIndex={0}
|
|
1053
856
|
>
|
|
1054
|
-
|
|
1055
|
-
style={
|
|
1056
|
-
{
|
|
1057
|
-
"verticalAlign": "middle",
|
|
1058
|
-
}
|
|
1059
|
-
}
|
|
1060
|
-
>
|
|
1061
|
-
Click me
|
|
1062
|
-
</span>
|
|
857
|
+
Click me
|
|
1063
858
|
</a>
|
|
1064
859
|
`;
|
|
1065
860
|
|
|
@@ -1089,21 +884,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:true hovered 2`] = `
|
|
|
1089
884
|
"cursor": "pointer",
|
|
1090
885
|
"outline": "none",
|
|
1091
886
|
"textDecoration": "underline currentcolor solid",
|
|
1092
|
-
"textUnderlineOffset": "3px",
|
|
1093
887
|
"verticalAlign": "bottom",
|
|
1094
888
|
}
|
|
1095
889
|
}
|
|
1096
890
|
tabIndex={0}
|
|
1097
891
|
>
|
|
1098
|
-
|
|
1099
|
-
style={
|
|
1100
|
-
{
|
|
1101
|
-
"verticalAlign": "middle",
|
|
1102
|
-
}
|
|
1103
|
-
}
|
|
1104
|
-
>
|
|
1105
|
-
Click me
|
|
1106
|
-
</span>
|
|
892
|
+
Click me
|
|
1107
893
|
</a>
|
|
1108
894
|
`;
|
|
1109
895
|
|
|
@@ -1133,21 +919,13 @@ exports[`LinkCore kind:primary href:# light:true visitable:true pressed 1`] = `
|
|
|
1133
919
|
"cursor": "pointer",
|
|
1134
920
|
"outline": "none",
|
|
1135
921
|
"textDecoration": "underline currentcolor solid",
|
|
1136
|
-
"textUnderlineOffset":
|
|
922
|
+
"textUnderlineOffset": 2,
|
|
1137
923
|
"verticalAlign": "bottom",
|
|
1138
924
|
}
|
|
1139
925
|
}
|
|
1140
926
|
tabIndex={0}
|
|
1141
927
|
>
|
|
1142
|
-
|
|
1143
|
-
style={
|
|
1144
|
-
{
|
|
1145
|
-
"verticalAlign": "middle",
|
|
1146
|
-
}
|
|
1147
|
-
}
|
|
1148
|
-
>
|
|
1149
|
-
Click me
|
|
1150
|
-
</span>
|
|
928
|
+
Click me
|
|
1151
929
|
</a>
|
|
1152
930
|
`;
|
|
1153
931
|
|
|
@@ -1177,21 +955,12 @@ exports[`LinkCore kind:primary href:# light:true visitable:true pressed 2`] = `
|
|
|
1177
955
|
"cursor": "pointer",
|
|
1178
956
|
"outline": "none",
|
|
1179
957
|
"textDecoration": "underline currentcolor solid",
|
|
1180
|
-
"textUnderlineOffset": "3px",
|
|
1181
958
|
"verticalAlign": "bottom",
|
|
1182
959
|
}
|
|
1183
960
|
}
|
|
1184
961
|
tabIndex={0}
|
|
1185
962
|
>
|
|
1186
|
-
|
|
1187
|
-
style={
|
|
1188
|
-
{
|
|
1189
|
-
"verticalAlign": "middle",
|
|
1190
|
-
}
|
|
1191
|
-
}
|
|
1192
|
-
>
|
|
1193
|
-
Click me
|
|
1194
|
-
</span>
|
|
963
|
+
Click me
|
|
1195
964
|
</a>
|
|
1196
965
|
`;
|
|
1197
966
|
|
|
@@ -1223,21 +992,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1223
992
|
"cursor": "pointer",
|
|
1224
993
|
"outline": "none",
|
|
1225
994
|
"textDecoration": "underline currentcolor solid",
|
|
1226
|
-
"textUnderlineOffset":
|
|
995
|
+
"textUnderlineOffset": 2,
|
|
1227
996
|
"verticalAlign": "bottom",
|
|
1228
997
|
}
|
|
1229
998
|
}
|
|
1230
999
|
tabIndex={0}
|
|
1231
1000
|
>
|
|
1232
|
-
|
|
1233
|
-
style={
|
|
1234
|
-
{
|
|
1235
|
-
"verticalAlign": "middle",
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
>
|
|
1239
|
-
Click me
|
|
1240
|
-
</span>
|
|
1001
|
+
Click me
|
|
1241
1002
|
</a>
|
|
1242
1003
|
`;
|
|
1243
1004
|
|
|
@@ -1269,21 +1030,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1269
1030
|
"cursor": "pointer",
|
|
1270
1031
|
"outline": "none",
|
|
1271
1032
|
"textDecoration": "none",
|
|
1272
|
-
"textUnderlineOffset": "3px",
|
|
1273
1033
|
"verticalAlign": "bottom",
|
|
1274
1034
|
}
|
|
1275
1035
|
}
|
|
1276
1036
|
tabIndex={0}
|
|
1277
1037
|
>
|
|
1278
|
-
|
|
1279
|
-
style={
|
|
1280
|
-
{
|
|
1281
|
-
"verticalAlign": "middle",
|
|
1282
|
-
}
|
|
1283
|
-
}
|
|
1284
|
-
>
|
|
1285
|
-
Click me
|
|
1286
|
-
</span>
|
|
1038
|
+
Click me
|
|
1287
1039
|
</a>
|
|
1288
1040
|
`;
|
|
1289
1041
|
|
|
@@ -1310,21 +1062,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1310
1062
|
"cursor": "pointer",
|
|
1311
1063
|
"outline": "none",
|
|
1312
1064
|
"textDecoration": "underline currentcolor solid",
|
|
1313
|
-
"textUnderlineOffset":
|
|
1065
|
+
"textUnderlineOffset": 2,
|
|
1314
1066
|
"verticalAlign": "bottom",
|
|
1315
1067
|
}
|
|
1316
1068
|
}
|
|
1317
1069
|
tabIndex={0}
|
|
1318
1070
|
>
|
|
1319
|
-
|
|
1320
|
-
style={
|
|
1321
|
-
{
|
|
1322
|
-
"verticalAlign": "middle",
|
|
1323
|
-
}
|
|
1324
|
-
}
|
|
1325
|
-
>
|
|
1326
|
-
Click me
|
|
1327
|
-
</span>
|
|
1071
|
+
Click me
|
|
1328
1072
|
</a>
|
|
1329
1073
|
`;
|
|
1330
1074
|
|
|
@@ -1351,21 +1095,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1351
1095
|
"cursor": "pointer",
|
|
1352
1096
|
"outline": "none",
|
|
1353
1097
|
"textDecoration": "underline currentcolor solid",
|
|
1354
|
-
"textUnderlineOffset": "3px",
|
|
1355
1098
|
"verticalAlign": "bottom",
|
|
1356
1099
|
}
|
|
1357
1100
|
}
|
|
1358
1101
|
tabIndex={0}
|
|
1359
1102
|
>
|
|
1360
|
-
|
|
1361
|
-
style={
|
|
1362
|
-
{
|
|
1363
|
-
"verticalAlign": "middle",
|
|
1364
|
-
}
|
|
1365
|
-
}
|
|
1366
|
-
>
|
|
1367
|
-
Click me
|
|
1368
|
-
</span>
|
|
1103
|
+
Click me
|
|
1369
1104
|
</a>
|
|
1370
1105
|
`;
|
|
1371
1106
|
|
|
@@ -1392,21 +1127,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1392
1127
|
"cursor": "pointer",
|
|
1393
1128
|
"outline": "none",
|
|
1394
1129
|
"textDecoration": "underline currentcolor solid",
|
|
1395
|
-
"textUnderlineOffset":
|
|
1130
|
+
"textUnderlineOffset": 2,
|
|
1396
1131
|
"verticalAlign": "bottom",
|
|
1397
1132
|
}
|
|
1398
1133
|
}
|
|
1399
1134
|
tabIndex={0}
|
|
1400
1135
|
>
|
|
1401
|
-
|
|
1402
|
-
style={
|
|
1403
|
-
{
|
|
1404
|
-
"verticalAlign": "middle",
|
|
1405
|
-
}
|
|
1406
|
-
}
|
|
1407
|
-
>
|
|
1408
|
-
Click me
|
|
1409
|
-
</span>
|
|
1136
|
+
Click me
|
|
1410
1137
|
</a>
|
|
1411
1138
|
`;
|
|
1412
1139
|
|
|
@@ -1433,21 +1160,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1433
1160
|
"cursor": "pointer",
|
|
1434
1161
|
"outline": "none",
|
|
1435
1162
|
"textDecoration": "underline currentcolor solid",
|
|
1436
|
-
"textUnderlineOffset": "3px",
|
|
1437
1163
|
"verticalAlign": "bottom",
|
|
1438
1164
|
}
|
|
1439
1165
|
}
|
|
1440
1166
|
tabIndex={0}
|
|
1441
1167
|
>
|
|
1442
|
-
|
|
1443
|
-
style={
|
|
1444
|
-
{
|
|
1445
|
-
"verticalAlign": "middle",
|
|
1446
|
-
}
|
|
1447
|
-
}
|
|
1448
|
-
>
|
|
1449
|
-
Click me
|
|
1450
|
-
</span>
|
|
1168
|
+
Click me
|
|
1451
1169
|
</a>
|
|
1452
1170
|
`;
|
|
1453
1171
|
|
|
@@ -1485,21 +1203,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1485
1203
|
"cursor": "pointer",
|
|
1486
1204
|
"outline": "none",
|
|
1487
1205
|
"textDecoration": "underline currentcolor solid",
|
|
1488
|
-
"textUnderlineOffset":
|
|
1206
|
+
"textUnderlineOffset": 2,
|
|
1489
1207
|
"verticalAlign": "bottom",
|
|
1490
1208
|
}
|
|
1491
1209
|
}
|
|
1492
1210
|
tabIndex={0}
|
|
1493
1211
|
>
|
|
1494
|
-
|
|
1495
|
-
style={
|
|
1496
|
-
{
|
|
1497
|
-
"verticalAlign": "middle",
|
|
1498
|
-
}
|
|
1499
|
-
}
|
|
1500
|
-
>
|
|
1501
|
-
Click me
|
|
1502
|
-
</span>
|
|
1212
|
+
Click me
|
|
1503
1213
|
</a>
|
|
1504
1214
|
`;
|
|
1505
1215
|
|
|
@@ -1537,21 +1247,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1537
1247
|
"cursor": "pointer",
|
|
1538
1248
|
"outline": "none",
|
|
1539
1249
|
"textDecoration": "none",
|
|
1540
|
-
"textUnderlineOffset": "3px",
|
|
1541
1250
|
"verticalAlign": "bottom",
|
|
1542
1251
|
}
|
|
1543
1252
|
}
|
|
1544
1253
|
tabIndex={0}
|
|
1545
1254
|
>
|
|
1546
|
-
|
|
1547
|
-
style={
|
|
1548
|
-
{
|
|
1549
|
-
"verticalAlign": "middle",
|
|
1550
|
-
}
|
|
1551
|
-
}
|
|
1552
|
-
>
|
|
1553
|
-
Click me
|
|
1554
|
-
</span>
|
|
1255
|
+
Click me
|
|
1555
1256
|
</a>
|
|
1556
1257
|
`;
|
|
1557
1258
|
|
|
@@ -1581,21 +1282,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1581
1282
|
"cursor": "pointer",
|
|
1582
1283
|
"outline": "none",
|
|
1583
1284
|
"textDecoration": "underline currentcolor solid",
|
|
1584
|
-
"textUnderlineOffset":
|
|
1285
|
+
"textUnderlineOffset": 2,
|
|
1585
1286
|
"verticalAlign": "bottom",
|
|
1586
1287
|
}
|
|
1587
1288
|
}
|
|
1588
1289
|
tabIndex={0}
|
|
1589
1290
|
>
|
|
1590
|
-
|
|
1591
|
-
style={
|
|
1592
|
-
{
|
|
1593
|
-
"verticalAlign": "middle",
|
|
1594
|
-
}
|
|
1595
|
-
}
|
|
1596
|
-
>
|
|
1597
|
-
Click me
|
|
1598
|
-
</span>
|
|
1291
|
+
Click me
|
|
1599
1292
|
</a>
|
|
1600
1293
|
`;
|
|
1601
1294
|
|
|
@@ -1625,21 +1318,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1625
1318
|
"cursor": "pointer",
|
|
1626
1319
|
"outline": "none",
|
|
1627
1320
|
"textDecoration": "underline currentcolor solid",
|
|
1628
|
-
"textUnderlineOffset": "3px",
|
|
1629
1321
|
"verticalAlign": "bottom",
|
|
1630
1322
|
}
|
|
1631
1323
|
}
|
|
1632
1324
|
tabIndex={0}
|
|
1633
1325
|
>
|
|
1634
|
-
|
|
1635
|
-
style={
|
|
1636
|
-
{
|
|
1637
|
-
"verticalAlign": "middle",
|
|
1638
|
-
}
|
|
1639
|
-
}
|
|
1640
|
-
>
|
|
1641
|
-
Click me
|
|
1642
|
-
</span>
|
|
1326
|
+
Click me
|
|
1643
1327
|
</a>
|
|
1644
1328
|
`;
|
|
1645
1329
|
|
|
@@ -1669,21 +1353,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1669
1353
|
"cursor": "pointer",
|
|
1670
1354
|
"outline": "none",
|
|
1671
1355
|
"textDecoration": "underline currentcolor solid",
|
|
1672
|
-
"textUnderlineOffset":
|
|
1356
|
+
"textUnderlineOffset": 2,
|
|
1673
1357
|
"verticalAlign": "bottom",
|
|
1674
1358
|
}
|
|
1675
1359
|
}
|
|
1676
1360
|
tabIndex={0}
|
|
1677
1361
|
>
|
|
1678
|
-
|
|
1679
|
-
style={
|
|
1680
|
-
{
|
|
1681
|
-
"verticalAlign": "middle",
|
|
1682
|
-
}
|
|
1683
|
-
}
|
|
1684
|
-
>
|
|
1685
|
-
Click me
|
|
1686
|
-
</span>
|
|
1362
|
+
Click me
|
|
1687
1363
|
</a>
|
|
1688
1364
|
`;
|
|
1689
1365
|
|
|
@@ -1713,21 +1389,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1713
1389
|
"cursor": "pointer",
|
|
1714
1390
|
"outline": "none",
|
|
1715
1391
|
"textDecoration": "underline currentcolor solid",
|
|
1716
|
-
"textUnderlineOffset": "3px",
|
|
1717
1392
|
"verticalAlign": "bottom",
|
|
1718
1393
|
}
|
|
1719
1394
|
}
|
|
1720
1395
|
tabIndex={0}
|
|
1721
1396
|
>
|
|
1722
|
-
|
|
1723
|
-
style={
|
|
1724
|
-
{
|
|
1725
|
-
"verticalAlign": "middle",
|
|
1726
|
-
}
|
|
1727
|
-
}
|
|
1728
|
-
>
|
|
1729
|
-
Click me
|
|
1730
|
-
</span>
|
|
1397
|
+
Click me
|
|
1731
1398
|
</a>
|
|
1732
1399
|
`;
|
|
1733
1400
|
|
|
@@ -1759,21 +1426,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1759
1426
|
"cursor": "pointer",
|
|
1760
1427
|
"outline": "none",
|
|
1761
1428
|
"textDecoration": "underline currentcolor solid",
|
|
1762
|
-
"textUnderlineOffset":
|
|
1429
|
+
"textUnderlineOffset": 2,
|
|
1763
1430
|
"verticalAlign": "bottom",
|
|
1764
1431
|
}
|
|
1765
1432
|
}
|
|
1766
1433
|
tabIndex={0}
|
|
1767
1434
|
>
|
|
1768
|
-
|
|
1769
|
-
style={
|
|
1770
|
-
{
|
|
1771
|
-
"verticalAlign": "middle",
|
|
1772
|
-
}
|
|
1773
|
-
}
|
|
1774
|
-
>
|
|
1775
|
-
Click me
|
|
1776
|
-
</span>
|
|
1435
|
+
Click me
|
|
1777
1436
|
</a>
|
|
1778
1437
|
`;
|
|
1779
1438
|
|
|
@@ -1805,21 +1464,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1805
1464
|
"cursor": "pointer",
|
|
1806
1465
|
"outline": "none",
|
|
1807
1466
|
"textDecoration": "none",
|
|
1808
|
-
"textUnderlineOffset": "3px",
|
|
1809
1467
|
"verticalAlign": "bottom",
|
|
1810
1468
|
}
|
|
1811
1469
|
}
|
|
1812
1470
|
tabIndex={0}
|
|
1813
1471
|
>
|
|
1814
|
-
|
|
1815
|
-
style={
|
|
1816
|
-
{
|
|
1817
|
-
"verticalAlign": "middle",
|
|
1818
|
-
}
|
|
1819
|
-
}
|
|
1820
|
-
>
|
|
1821
|
-
Click me
|
|
1822
|
-
</span>
|
|
1472
|
+
Click me
|
|
1823
1473
|
</a>
|
|
1824
1474
|
`;
|
|
1825
1475
|
|
|
@@ -1846,21 +1496,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1846
1496
|
"cursor": "pointer",
|
|
1847
1497
|
"outline": "none",
|
|
1848
1498
|
"textDecoration": "underline currentcolor solid",
|
|
1849
|
-
"textUnderlineOffset":
|
|
1499
|
+
"textUnderlineOffset": 2,
|
|
1850
1500
|
"verticalAlign": "bottom",
|
|
1851
1501
|
}
|
|
1852
1502
|
}
|
|
1853
1503
|
tabIndex={0}
|
|
1854
1504
|
>
|
|
1855
|
-
|
|
1856
|
-
style={
|
|
1857
|
-
{
|
|
1858
|
-
"verticalAlign": "middle",
|
|
1859
|
-
}
|
|
1860
|
-
}
|
|
1861
|
-
>
|
|
1862
|
-
Click me
|
|
1863
|
-
</span>
|
|
1505
|
+
Click me
|
|
1864
1506
|
</a>
|
|
1865
1507
|
`;
|
|
1866
1508
|
|
|
@@ -1887,21 +1529,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1887
1529
|
"cursor": "pointer",
|
|
1888
1530
|
"outline": "none",
|
|
1889
1531
|
"textDecoration": "underline currentcolor solid",
|
|
1890
|
-
"textUnderlineOffset": "3px",
|
|
1891
1532
|
"verticalAlign": "bottom",
|
|
1892
1533
|
}
|
|
1893
1534
|
}
|
|
1894
1535
|
tabIndex={0}
|
|
1895
1536
|
>
|
|
1896
|
-
|
|
1897
|
-
style={
|
|
1898
|
-
{
|
|
1899
|
-
"verticalAlign": "middle",
|
|
1900
|
-
}
|
|
1901
|
-
}
|
|
1902
|
-
>
|
|
1903
|
-
Click me
|
|
1904
|
-
</span>
|
|
1537
|
+
Click me
|
|
1905
1538
|
</a>
|
|
1906
1539
|
`;
|
|
1907
1540
|
|
|
@@ -1928,21 +1561,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1928
1561
|
"cursor": "pointer",
|
|
1929
1562
|
"outline": "none",
|
|
1930
1563
|
"textDecoration": "underline currentcolor solid",
|
|
1931
|
-
"textUnderlineOffset":
|
|
1564
|
+
"textUnderlineOffset": 2,
|
|
1932
1565
|
"verticalAlign": "bottom",
|
|
1933
1566
|
}
|
|
1934
1567
|
}
|
|
1935
1568
|
tabIndex={0}
|
|
1936
1569
|
>
|
|
1937
|
-
|
|
1938
|
-
style={
|
|
1939
|
-
{
|
|
1940
|
-
"verticalAlign": "middle",
|
|
1941
|
-
}
|
|
1942
|
-
}
|
|
1943
|
-
>
|
|
1944
|
-
Click me
|
|
1945
|
-
</span>
|
|
1570
|
+
Click me
|
|
1946
1571
|
</a>
|
|
1947
1572
|
`;
|
|
1948
1573
|
|
|
@@ -1969,21 +1594,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1969
1594
|
"cursor": "pointer",
|
|
1970
1595
|
"outline": "none",
|
|
1971
1596
|
"textDecoration": "underline currentcolor solid",
|
|
1972
|
-
"textUnderlineOffset": "3px",
|
|
1973
1597
|
"verticalAlign": "bottom",
|
|
1974
1598
|
}
|
|
1975
1599
|
}
|
|
1976
1600
|
tabIndex={0}
|
|
1977
1601
|
>
|
|
1978
|
-
|
|
1979
|
-
style={
|
|
1980
|
-
{
|
|
1981
|
-
"verticalAlign": "middle",
|
|
1982
|
-
}
|
|
1983
|
-
}
|
|
1984
|
-
>
|
|
1985
|
-
Click me
|
|
1986
|
-
</span>
|
|
1602
|
+
Click me
|
|
1987
1603
|
</a>
|
|
1988
1604
|
`;
|
|
1989
1605
|
|
|
@@ -2021,21 +1637,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2021
1637
|
"cursor": "pointer",
|
|
2022
1638
|
"outline": "none",
|
|
2023
1639
|
"textDecoration": "underline currentcolor solid",
|
|
2024
|
-
"textUnderlineOffset":
|
|
1640
|
+
"textUnderlineOffset": 2,
|
|
2025
1641
|
"verticalAlign": "bottom",
|
|
2026
1642
|
}
|
|
2027
1643
|
}
|
|
2028
1644
|
tabIndex={0}
|
|
2029
1645
|
>
|
|
2030
|
-
|
|
2031
|
-
style={
|
|
2032
|
-
{
|
|
2033
|
-
"verticalAlign": "middle",
|
|
2034
|
-
}
|
|
2035
|
-
}
|
|
2036
|
-
>
|
|
2037
|
-
Click me
|
|
2038
|
-
</span>
|
|
1646
|
+
Click me
|
|
2039
1647
|
</a>
|
|
2040
1648
|
`;
|
|
2041
1649
|
|
|
@@ -2073,21 +1681,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2073
1681
|
"cursor": "pointer",
|
|
2074
1682
|
"outline": "none",
|
|
2075
1683
|
"textDecoration": "none",
|
|
2076
|
-
"textUnderlineOffset": "3px",
|
|
2077
1684
|
"verticalAlign": "bottom",
|
|
2078
1685
|
}
|
|
2079
1686
|
}
|
|
2080
1687
|
tabIndex={0}
|
|
2081
1688
|
>
|
|
2082
|
-
|
|
2083
|
-
style={
|
|
2084
|
-
{
|
|
2085
|
-
"verticalAlign": "middle",
|
|
2086
|
-
}
|
|
2087
|
-
}
|
|
2088
|
-
>
|
|
2089
|
-
Click me
|
|
2090
|
-
</span>
|
|
1689
|
+
Click me
|
|
2091
1690
|
</a>
|
|
2092
1691
|
`;
|
|
2093
1692
|
|
|
@@ -2117,21 +1716,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2117
1716
|
"cursor": "pointer",
|
|
2118
1717
|
"outline": "none",
|
|
2119
1718
|
"textDecoration": "underline currentcolor solid",
|
|
2120
|
-
"textUnderlineOffset":
|
|
1719
|
+
"textUnderlineOffset": 2,
|
|
2121
1720
|
"verticalAlign": "bottom",
|
|
2122
1721
|
}
|
|
2123
1722
|
}
|
|
2124
1723
|
tabIndex={0}
|
|
2125
1724
|
>
|
|
2126
|
-
|
|
2127
|
-
style={
|
|
2128
|
-
{
|
|
2129
|
-
"verticalAlign": "middle",
|
|
2130
|
-
}
|
|
2131
|
-
}
|
|
2132
|
-
>
|
|
2133
|
-
Click me
|
|
2134
|
-
</span>
|
|
1725
|
+
Click me
|
|
2135
1726
|
</a>
|
|
2136
1727
|
`;
|
|
2137
1728
|
|
|
@@ -2161,21 +1752,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2161
1752
|
"cursor": "pointer",
|
|
2162
1753
|
"outline": "none",
|
|
2163
1754
|
"textDecoration": "underline currentcolor solid",
|
|
2164
|
-
"textUnderlineOffset": "3px",
|
|
2165
1755
|
"verticalAlign": "bottom",
|
|
2166
1756
|
}
|
|
2167
1757
|
}
|
|
2168
1758
|
tabIndex={0}
|
|
2169
1759
|
>
|
|
2170
|
-
|
|
2171
|
-
style={
|
|
2172
|
-
{
|
|
2173
|
-
"verticalAlign": "middle",
|
|
2174
|
-
}
|
|
2175
|
-
}
|
|
2176
|
-
>
|
|
2177
|
-
Click me
|
|
2178
|
-
</span>
|
|
1760
|
+
Click me
|
|
2179
1761
|
</a>
|
|
2180
1762
|
`;
|
|
2181
1763
|
|
|
@@ -2205,21 +1787,13 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2205
1787
|
"cursor": "pointer",
|
|
2206
1788
|
"outline": "none",
|
|
2207
1789
|
"textDecoration": "underline currentcolor solid",
|
|
2208
|
-
"textUnderlineOffset":
|
|
1790
|
+
"textUnderlineOffset": 2,
|
|
2209
1791
|
"verticalAlign": "bottom",
|
|
2210
1792
|
}
|
|
2211
1793
|
}
|
|
2212
1794
|
tabIndex={0}
|
|
2213
1795
|
>
|
|
2214
|
-
|
|
2215
|
-
style={
|
|
2216
|
-
{
|
|
2217
|
-
"verticalAlign": "middle",
|
|
2218
|
-
}
|
|
2219
|
-
}
|
|
2220
|
-
>
|
|
2221
|
-
Click me
|
|
2222
|
-
</span>
|
|
1796
|
+
Click me
|
|
2223
1797
|
</a>
|
|
2224
1798
|
`;
|
|
2225
1799
|
|
|
@@ -2249,21 +1823,12 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
2249
1823
|
"cursor": "pointer",
|
|
2250
1824
|
"outline": "none",
|
|
2251
1825
|
"textDecoration": "underline currentcolor solid",
|
|
2252
|
-
"textUnderlineOffset": "3px",
|
|
2253
1826
|
"verticalAlign": "bottom",
|
|
2254
1827
|
}
|
|
2255
1828
|
}
|
|
2256
1829
|
tabIndex={0}
|
|
2257
1830
|
>
|
|
2258
|
-
|
|
2259
|
-
style={
|
|
2260
|
-
{
|
|
2261
|
-
"verticalAlign": "middle",
|
|
2262
|
-
}
|
|
2263
|
-
}
|
|
2264
|
-
>
|
|
2265
|
-
Click me
|
|
2266
|
-
</span>
|
|
1831
|
+
Click me
|
|
2267
1832
|
</a>
|
|
2268
1833
|
`;
|
|
2269
1834
|
|
|
@@ -2295,21 +1860,13 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false focused 1`]
|
|
|
2295
1860
|
"cursor": "pointer",
|
|
2296
1861
|
"outline": "none",
|
|
2297
1862
|
"textDecoration": "underline currentcolor solid",
|
|
2298
|
-
"textUnderlineOffset":
|
|
1863
|
+
"textUnderlineOffset": 2,
|
|
2299
1864
|
"verticalAlign": "bottom",
|
|
2300
1865
|
}
|
|
2301
1866
|
}
|
|
2302
1867
|
tabIndex={0}
|
|
2303
1868
|
>
|
|
2304
|
-
|
|
2305
|
-
style={
|
|
2306
|
-
{
|
|
2307
|
-
"verticalAlign": "middle",
|
|
2308
|
-
}
|
|
2309
|
-
}
|
|
2310
|
-
>
|
|
2311
|
-
Click me
|
|
2312
|
-
</span>
|
|
1869
|
+
Click me
|
|
2313
1870
|
</a>
|
|
2314
1871
|
`;
|
|
2315
1872
|
|
|
@@ -2341,21 +1898,12 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false focused 2`]
|
|
|
2341
1898
|
"cursor": "pointer",
|
|
2342
1899
|
"outline": "none",
|
|
2343
1900
|
"textDecoration": "none",
|
|
2344
|
-
"textUnderlineOffset": "3px",
|
|
2345
1901
|
"verticalAlign": "bottom",
|
|
2346
1902
|
}
|
|
2347
1903
|
}
|
|
2348
1904
|
tabIndex={0}
|
|
2349
1905
|
>
|
|
2350
|
-
|
|
2351
|
-
style={
|
|
2352
|
-
{
|
|
2353
|
-
"verticalAlign": "middle",
|
|
2354
|
-
}
|
|
2355
|
-
}
|
|
2356
|
-
>
|
|
2357
|
-
Click me
|
|
2358
|
-
</span>
|
|
1906
|
+
Click me
|
|
2359
1907
|
</a>
|
|
2360
1908
|
`;
|
|
2361
1909
|
|
|
@@ -2382,21 +1930,13 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false hovered 1`]
|
|
|
2382
1930
|
"cursor": "pointer",
|
|
2383
1931
|
"outline": "none",
|
|
2384
1932
|
"textDecoration": "underline currentcolor solid",
|
|
2385
|
-
"textUnderlineOffset":
|
|
1933
|
+
"textUnderlineOffset": 2,
|
|
2386
1934
|
"verticalAlign": "bottom",
|
|
2387
1935
|
}
|
|
2388
1936
|
}
|
|
2389
1937
|
tabIndex={0}
|
|
2390
1938
|
>
|
|
2391
|
-
|
|
2392
|
-
style={
|
|
2393
|
-
{
|
|
2394
|
-
"verticalAlign": "middle",
|
|
2395
|
-
}
|
|
2396
|
-
}
|
|
2397
|
-
>
|
|
2398
|
-
Click me
|
|
2399
|
-
</span>
|
|
1939
|
+
Click me
|
|
2400
1940
|
</a>
|
|
2401
1941
|
`;
|
|
2402
1942
|
|
|
@@ -2423,21 +1963,12 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false hovered 2`]
|
|
|
2423
1963
|
"cursor": "pointer",
|
|
2424
1964
|
"outline": "none",
|
|
2425
1965
|
"textDecoration": "underline currentcolor solid",
|
|
2426
|
-
"textUnderlineOffset": "3px",
|
|
2427
1966
|
"verticalAlign": "bottom",
|
|
2428
1967
|
}
|
|
2429
1968
|
}
|
|
2430
1969
|
tabIndex={0}
|
|
2431
1970
|
>
|
|
2432
|
-
|
|
2433
|
-
style={
|
|
2434
|
-
{
|
|
2435
|
-
"verticalAlign": "middle",
|
|
2436
|
-
}
|
|
2437
|
-
}
|
|
2438
|
-
>
|
|
2439
|
-
Click me
|
|
2440
|
-
</span>
|
|
1971
|
+
Click me
|
|
2441
1972
|
</a>
|
|
2442
1973
|
`;
|
|
2443
1974
|
|
|
@@ -2464,21 +1995,13 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false pressed 1`]
|
|
|
2464
1995
|
"cursor": "pointer",
|
|
2465
1996
|
"outline": "none",
|
|
2466
1997
|
"textDecoration": "underline currentcolor solid",
|
|
2467
|
-
"textUnderlineOffset":
|
|
1998
|
+
"textUnderlineOffset": 2,
|
|
2468
1999
|
"verticalAlign": "bottom",
|
|
2469
2000
|
}
|
|
2470
2001
|
}
|
|
2471
2002
|
tabIndex={0}
|
|
2472
2003
|
>
|
|
2473
|
-
|
|
2474
|
-
style={
|
|
2475
|
-
{
|
|
2476
|
-
"verticalAlign": "middle",
|
|
2477
|
-
}
|
|
2478
|
-
}
|
|
2479
|
-
>
|
|
2480
|
-
Click me
|
|
2481
|
-
</span>
|
|
2004
|
+
Click me
|
|
2482
2005
|
</a>
|
|
2483
2006
|
`;
|
|
2484
2007
|
|
|
@@ -2505,21 +2028,12 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false pressed 2`]
|
|
|
2505
2028
|
"cursor": "pointer",
|
|
2506
2029
|
"outline": "none",
|
|
2507
2030
|
"textDecoration": "underline currentcolor solid",
|
|
2508
|
-
"textUnderlineOffset": "3px",
|
|
2509
2031
|
"verticalAlign": "bottom",
|
|
2510
2032
|
}
|
|
2511
2033
|
}
|
|
2512
2034
|
tabIndex={0}
|
|
2513
2035
|
>
|
|
2514
|
-
|
|
2515
|
-
style={
|
|
2516
|
-
{
|
|
2517
|
-
"verticalAlign": "middle",
|
|
2518
|
-
}
|
|
2519
|
-
}
|
|
2520
|
-
>
|
|
2521
|
-
Click me
|
|
2522
|
-
</span>
|
|
2036
|
+
Click me
|
|
2523
2037
|
</a>
|
|
2524
2038
|
`;
|
|
2525
2039
|
|
|
@@ -2551,21 +2065,13 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2551
2065
|
"cursor": "pointer",
|
|
2552
2066
|
"outline": "none",
|
|
2553
2067
|
"textDecoration": "underline currentcolor solid",
|
|
2554
|
-
"textUnderlineOffset":
|
|
2068
|
+
"textUnderlineOffset": 2,
|
|
2555
2069
|
"verticalAlign": "bottom",
|
|
2556
2070
|
}
|
|
2557
2071
|
}
|
|
2558
2072
|
tabIndex={0}
|
|
2559
2073
|
>
|
|
2560
|
-
|
|
2561
|
-
style={
|
|
2562
|
-
{
|
|
2563
|
-
"verticalAlign": "middle",
|
|
2564
|
-
}
|
|
2565
|
-
}
|
|
2566
|
-
>
|
|
2567
|
-
Click me
|
|
2568
|
-
</span>
|
|
2074
|
+
Click me
|
|
2569
2075
|
</a>
|
|
2570
2076
|
`;
|
|
2571
2077
|
|
|
@@ -2597,21 +2103,12 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2597
2103
|
"cursor": "pointer",
|
|
2598
2104
|
"outline": "none",
|
|
2599
2105
|
"textDecoration": "none",
|
|
2600
|
-
"textUnderlineOffset": "3px",
|
|
2601
2106
|
"verticalAlign": "bottom",
|
|
2602
2107
|
}
|
|
2603
2108
|
}
|
|
2604
2109
|
tabIndex={0}
|
|
2605
2110
|
>
|
|
2606
|
-
|
|
2607
|
-
style={
|
|
2608
|
-
{
|
|
2609
|
-
"verticalAlign": "middle",
|
|
2610
|
-
}
|
|
2611
|
-
}
|
|
2612
|
-
>
|
|
2613
|
-
Click me
|
|
2614
|
-
</span>
|
|
2111
|
+
Click me
|
|
2615
2112
|
</a>
|
|
2616
2113
|
`;
|
|
2617
2114
|
|
|
@@ -2638,21 +2135,13 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2638
2135
|
"cursor": "pointer",
|
|
2639
2136
|
"outline": "none",
|
|
2640
2137
|
"textDecoration": "underline currentcolor solid",
|
|
2641
|
-
"textUnderlineOffset":
|
|
2138
|
+
"textUnderlineOffset": 2,
|
|
2642
2139
|
"verticalAlign": "bottom",
|
|
2643
2140
|
}
|
|
2644
2141
|
}
|
|
2645
2142
|
tabIndex={0}
|
|
2646
2143
|
>
|
|
2647
|
-
|
|
2648
|
-
style={
|
|
2649
|
-
{
|
|
2650
|
-
"verticalAlign": "middle",
|
|
2651
|
-
}
|
|
2652
|
-
}
|
|
2653
|
-
>
|
|
2654
|
-
Click me
|
|
2655
|
-
</span>
|
|
2144
|
+
Click me
|
|
2656
2145
|
</a>
|
|
2657
2146
|
`;
|
|
2658
2147
|
|
|
@@ -2679,21 +2168,12 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2679
2168
|
"cursor": "pointer",
|
|
2680
2169
|
"outline": "none",
|
|
2681
2170
|
"textDecoration": "underline currentcolor solid",
|
|
2682
|
-
"textUnderlineOffset": "3px",
|
|
2683
2171
|
"verticalAlign": "bottom",
|
|
2684
2172
|
}
|
|
2685
2173
|
}
|
|
2686
2174
|
tabIndex={0}
|
|
2687
2175
|
>
|
|
2688
|
-
|
|
2689
|
-
style={
|
|
2690
|
-
{
|
|
2691
|
-
"verticalAlign": "middle",
|
|
2692
|
-
}
|
|
2693
|
-
}
|
|
2694
|
-
>
|
|
2695
|
-
Click me
|
|
2696
|
-
</span>
|
|
2176
|
+
Click me
|
|
2697
2177
|
</a>
|
|
2698
2178
|
`;
|
|
2699
2179
|
|
|
@@ -2720,21 +2200,13 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2720
2200
|
"cursor": "pointer",
|
|
2721
2201
|
"outline": "none",
|
|
2722
2202
|
"textDecoration": "underline currentcolor solid",
|
|
2723
|
-
"textUnderlineOffset":
|
|
2203
|
+
"textUnderlineOffset": 2,
|
|
2724
2204
|
"verticalAlign": "bottom",
|
|
2725
2205
|
}
|
|
2726
2206
|
}
|
|
2727
2207
|
tabIndex={0}
|
|
2728
2208
|
>
|
|
2729
|
-
|
|
2730
|
-
style={
|
|
2731
|
-
{
|
|
2732
|
-
"verticalAlign": "middle",
|
|
2733
|
-
}
|
|
2734
|
-
}
|
|
2735
|
-
>
|
|
2736
|
-
Click me
|
|
2737
|
-
</span>
|
|
2209
|
+
Click me
|
|
2738
2210
|
</a>
|
|
2739
2211
|
`;
|
|
2740
2212
|
|
|
@@ -2761,20 +2233,11 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2761
2233
|
"cursor": "pointer",
|
|
2762
2234
|
"outline": "none",
|
|
2763
2235
|
"textDecoration": "underline currentcolor solid",
|
|
2764
|
-
"textUnderlineOffset": "3px",
|
|
2765
2236
|
"verticalAlign": "bottom",
|
|
2766
2237
|
}
|
|
2767
2238
|
}
|
|
2768
2239
|
tabIndex={0}
|
|
2769
2240
|
>
|
|
2770
|
-
|
|
2771
|
-
style={
|
|
2772
|
-
{
|
|
2773
|
-
"verticalAlign": "middle",
|
|
2774
|
-
}
|
|
2775
|
-
}
|
|
2776
|
-
>
|
|
2777
|
-
Click me
|
|
2778
|
-
</span>
|
|
2241
|
+
Click me
|
|
2779
2242
|
</a>
|
|
2780
2243
|
`;
|