@khanacademy/wonder-blocks-link 4.1.0 → 4.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/components/link.d.ts +11 -0
- package/dist/components/link.js.flow +13 -0
- package/dist/es/index.js +40 -14
- package/dist/index.js +40 -14
- package/package.json +3 -3
- package/src/__tests__/__snapshots__/custom-snapshot.test.tsx.snap +910 -176
- package/src/components/__tests__/link.test.tsx +90 -62
- package/src/components/link-core.tsx +54 -12
- package/src/components/link.tsx +11 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -21,14 +21,24 @@ 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
|
+
className=""
|
|
34
|
+
style={
|
|
35
|
+
{
|
|
36
|
+
"verticalAlign": "middle",
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
>
|
|
40
|
+
Click me
|
|
41
|
+
</span>
|
|
32
42
|
</a>
|
|
33
43
|
`;
|
|
34
44
|
|
|
@@ -53,14 +63,24 @@ exports[`Link <Link tabIndex={0}> 1`] = `
|
|
|
53
63
|
"alignItems": "center",
|
|
54
64
|
"color": "#1865f2",
|
|
55
65
|
"cursor": "pointer",
|
|
56
|
-
"display": "inline-flex",
|
|
57
66
|
"outline": "none",
|
|
58
67
|
"textDecoration": "none",
|
|
68
|
+
"textUnderlineOffset": "3px",
|
|
69
|
+
"verticalAlign": "bottom",
|
|
59
70
|
}
|
|
60
71
|
}
|
|
61
72
|
tabIndex={0}
|
|
62
73
|
>
|
|
63
|
-
|
|
74
|
+
<span
|
|
75
|
+
className=""
|
|
76
|
+
style={
|
|
77
|
+
{
|
|
78
|
+
"verticalAlign": "middle",
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
>
|
|
82
|
+
Click me
|
|
83
|
+
</span>
|
|
64
84
|
</a>
|
|
65
85
|
`;
|
|
66
86
|
|
|
@@ -85,14 +105,24 @@ exports[`Link <Link tabIndex={1}> 1`] = `
|
|
|
85
105
|
"alignItems": "center",
|
|
86
106
|
"color": "#1865f2",
|
|
87
107
|
"cursor": "pointer",
|
|
88
|
-
"display": "inline-flex",
|
|
89
108
|
"outline": "none",
|
|
90
109
|
"textDecoration": "none",
|
|
110
|
+
"textUnderlineOffset": "3px",
|
|
111
|
+
"verticalAlign": "bottom",
|
|
91
112
|
}
|
|
92
113
|
}
|
|
93
114
|
tabIndex={1}
|
|
94
115
|
>
|
|
95
|
-
|
|
116
|
+
<span
|
|
117
|
+
className=""
|
|
118
|
+
style={
|
|
119
|
+
{
|
|
120
|
+
"verticalAlign": "middle",
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
>
|
|
124
|
+
Click me
|
|
125
|
+
</span>
|
|
96
126
|
</a>
|
|
97
127
|
`;
|
|
98
128
|
|
|
@@ -114,18 +144,32 @@ exports[`LinkCore kind:primary href:# light:false visitable:false focused 1`] =
|
|
|
114
144
|
onTouchStart={[Function]}
|
|
115
145
|
style={
|
|
116
146
|
{
|
|
147
|
+
":focusVisible": {
|
|
148
|
+
"borderRadius": 3,
|
|
149
|
+
"color": "#1865f2",
|
|
150
|
+
"outline": "1px solid #1865f2",
|
|
151
|
+
},
|
|
117
152
|
"alignItems": "center",
|
|
118
|
-
"borderRadius": 3,
|
|
119
153
|
"color": "#1865f2",
|
|
120
154
|
"cursor": "pointer",
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
155
|
+
"outline": "none",
|
|
156
|
+
"textDecoration": "underline currentcolor solid",
|
|
157
|
+
"textUnderlineOffset": "3px",
|
|
158
|
+
"verticalAlign": "bottom",
|
|
124
159
|
}
|
|
125
160
|
}
|
|
126
161
|
tabIndex={0}
|
|
127
162
|
>
|
|
128
|
-
|
|
163
|
+
<span
|
|
164
|
+
className=""
|
|
165
|
+
style={
|
|
166
|
+
{
|
|
167
|
+
"verticalAlign": "middle",
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
>
|
|
171
|
+
Click me
|
|
172
|
+
</span>
|
|
129
173
|
</a>
|
|
130
174
|
`;
|
|
131
175
|
|
|
@@ -147,18 +191,32 @@ exports[`LinkCore kind:primary href:# light:false visitable:false focused 2`] =
|
|
|
147
191
|
onTouchStart={[Function]}
|
|
148
192
|
style={
|
|
149
193
|
{
|
|
194
|
+
":focusVisible": {
|
|
195
|
+
"borderRadius": 3,
|
|
196
|
+
"color": "#1865f2",
|
|
197
|
+
"outline": "1px solid #1865f2",
|
|
198
|
+
},
|
|
150
199
|
"alignItems": "center",
|
|
151
|
-
"borderRadius": 3,
|
|
152
200
|
"color": "#1865f2",
|
|
153
201
|
"cursor": "pointer",
|
|
154
|
-
"
|
|
155
|
-
"outline": "1px solid #1865f2",
|
|
202
|
+
"outline": "none",
|
|
156
203
|
"textDecoration": "none",
|
|
204
|
+
"textUnderlineOffset": "3px",
|
|
205
|
+
"verticalAlign": "bottom",
|
|
157
206
|
}
|
|
158
207
|
}
|
|
159
208
|
tabIndex={0}
|
|
160
209
|
>
|
|
161
|
-
|
|
210
|
+
<span
|
|
211
|
+
className=""
|
|
212
|
+
style={
|
|
213
|
+
{
|
|
214
|
+
"verticalAlign": "middle",
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
>
|
|
218
|
+
Click me
|
|
219
|
+
</span>
|
|
162
220
|
</a>
|
|
163
221
|
`;
|
|
164
222
|
|
|
@@ -183,14 +241,24 @@ exports[`LinkCore kind:primary href:# light:false visitable:false hovered 1`] =
|
|
|
183
241
|
"alignItems": "center",
|
|
184
242
|
"color": "#1865f2",
|
|
185
243
|
"cursor": "pointer",
|
|
186
|
-
"display": "inline-flex",
|
|
187
244
|
"outline": "none",
|
|
188
245
|
"textDecoration": "underline currentcolor solid",
|
|
246
|
+
"textUnderlineOffset": "3px",
|
|
247
|
+
"verticalAlign": "bottom",
|
|
189
248
|
}
|
|
190
249
|
}
|
|
191
250
|
tabIndex={0}
|
|
192
251
|
>
|
|
193
|
-
|
|
252
|
+
<span
|
|
253
|
+
className=""
|
|
254
|
+
style={
|
|
255
|
+
{
|
|
256
|
+
"verticalAlign": "middle",
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
>
|
|
260
|
+
Click me
|
|
261
|
+
</span>
|
|
194
262
|
</a>
|
|
195
263
|
`;
|
|
196
264
|
|
|
@@ -215,14 +283,24 @@ exports[`LinkCore kind:primary href:# light:false visitable:false hovered 2`] =
|
|
|
215
283
|
"alignItems": "center",
|
|
216
284
|
"color": "#1865f2",
|
|
217
285
|
"cursor": "pointer",
|
|
218
|
-
"display": "inline-flex",
|
|
219
286
|
"outline": "none",
|
|
220
287
|
"textDecoration": "underline currentcolor solid",
|
|
288
|
+
"textUnderlineOffset": "3px",
|
|
289
|
+
"verticalAlign": "bottom",
|
|
221
290
|
}
|
|
222
291
|
}
|
|
223
292
|
tabIndex={0}
|
|
224
293
|
>
|
|
225
|
-
|
|
294
|
+
<span
|
|
295
|
+
className=""
|
|
296
|
+
style={
|
|
297
|
+
{
|
|
298
|
+
"verticalAlign": "middle",
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
>
|
|
302
|
+
Click me
|
|
303
|
+
</span>
|
|
226
304
|
</a>
|
|
227
305
|
`;
|
|
228
306
|
|
|
@@ -247,14 +325,24 @@ exports[`LinkCore kind:primary href:# light:false visitable:false pressed 1`] =
|
|
|
247
325
|
"alignItems": "center",
|
|
248
326
|
"color": "#1b50b3",
|
|
249
327
|
"cursor": "pointer",
|
|
250
|
-
"display": "inline-flex",
|
|
251
328
|
"outline": "none",
|
|
252
329
|
"textDecoration": "underline currentcolor solid",
|
|
330
|
+
"textUnderlineOffset": "3px",
|
|
331
|
+
"verticalAlign": "bottom",
|
|
253
332
|
}
|
|
254
333
|
}
|
|
255
334
|
tabIndex={0}
|
|
256
335
|
>
|
|
257
|
-
|
|
336
|
+
<span
|
|
337
|
+
className=""
|
|
338
|
+
style={
|
|
339
|
+
{
|
|
340
|
+
"verticalAlign": "middle",
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
>
|
|
344
|
+
Click me
|
|
345
|
+
</span>
|
|
258
346
|
</a>
|
|
259
347
|
`;
|
|
260
348
|
|
|
@@ -279,14 +367,24 @@ exports[`LinkCore kind:primary href:# light:false visitable:false pressed 2`] =
|
|
|
279
367
|
"alignItems": "center",
|
|
280
368
|
"color": "#1b50b3",
|
|
281
369
|
"cursor": "pointer",
|
|
282
|
-
"display": "inline-flex",
|
|
283
370
|
"outline": "none",
|
|
284
371
|
"textDecoration": "underline currentcolor solid",
|
|
372
|
+
"textUnderlineOffset": "3px",
|
|
373
|
+
"verticalAlign": "bottom",
|
|
285
374
|
}
|
|
286
375
|
}
|
|
287
376
|
tabIndex={0}
|
|
288
377
|
>
|
|
289
|
-
|
|
378
|
+
<span
|
|
379
|
+
className=""
|
|
380
|
+
style={
|
|
381
|
+
{
|
|
382
|
+
"verticalAlign": "middle",
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
>
|
|
386
|
+
Click me
|
|
387
|
+
</span>
|
|
290
388
|
</a>
|
|
291
389
|
`;
|
|
292
390
|
|
|
@@ -308,21 +406,38 @@ exports[`LinkCore kind:primary href:# light:false visitable:true focused 1`] = `
|
|
|
308
406
|
onTouchStart={[Function]}
|
|
309
407
|
style={
|
|
310
408
|
{
|
|
409
|
+
":focusVisible": {
|
|
410
|
+
":visited": {
|
|
411
|
+
"color": "#8755ee",
|
|
412
|
+
},
|
|
413
|
+
"borderRadius": 3,
|
|
414
|
+
"color": "#1865f2",
|
|
415
|
+
"outline": "1px solid #1865f2",
|
|
416
|
+
},
|
|
311
417
|
":visited": {
|
|
312
418
|
"color": "#8755ee",
|
|
313
419
|
},
|
|
314
420
|
"alignItems": "center",
|
|
315
|
-
"borderRadius": 3,
|
|
316
421
|
"color": "#1865f2",
|
|
317
422
|
"cursor": "pointer",
|
|
318
|
-
"
|
|
319
|
-
"
|
|
320
|
-
"
|
|
423
|
+
"outline": "none",
|
|
424
|
+
"textDecoration": "underline currentcolor solid",
|
|
425
|
+
"textUnderlineOffset": "3px",
|
|
426
|
+
"verticalAlign": "bottom",
|
|
321
427
|
}
|
|
322
428
|
}
|
|
323
429
|
tabIndex={0}
|
|
324
430
|
>
|
|
325
|
-
|
|
431
|
+
<span
|
|
432
|
+
className=""
|
|
433
|
+
style={
|
|
434
|
+
{
|
|
435
|
+
"verticalAlign": "middle",
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
>
|
|
439
|
+
Click me
|
|
440
|
+
</span>
|
|
326
441
|
</a>
|
|
327
442
|
`;
|
|
328
443
|
|
|
@@ -344,21 +459,38 @@ exports[`LinkCore kind:primary href:# light:false visitable:true focused 2`] = `
|
|
|
344
459
|
onTouchStart={[Function]}
|
|
345
460
|
style={
|
|
346
461
|
{
|
|
462
|
+
":focusVisible": {
|
|
463
|
+
":visited": {
|
|
464
|
+
"color": "#8755ee",
|
|
465
|
+
},
|
|
466
|
+
"borderRadius": 3,
|
|
467
|
+
"color": "#1865f2",
|
|
468
|
+
"outline": "1px solid #1865f2",
|
|
469
|
+
},
|
|
347
470
|
":visited": {
|
|
348
471
|
"color": "#8755ee",
|
|
349
472
|
},
|
|
350
473
|
"alignItems": "center",
|
|
351
|
-
"borderRadius": 3,
|
|
352
474
|
"color": "#1865f2",
|
|
353
475
|
"cursor": "pointer",
|
|
354
|
-
"
|
|
355
|
-
"outline": "1px solid #1865f2",
|
|
476
|
+
"outline": "none",
|
|
356
477
|
"textDecoration": "none",
|
|
478
|
+
"textUnderlineOffset": "3px",
|
|
479
|
+
"verticalAlign": "bottom",
|
|
357
480
|
}
|
|
358
481
|
}
|
|
359
482
|
tabIndex={0}
|
|
360
483
|
>
|
|
361
|
-
|
|
484
|
+
<span
|
|
485
|
+
className=""
|
|
486
|
+
style={
|
|
487
|
+
{
|
|
488
|
+
"verticalAlign": "middle",
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
>
|
|
492
|
+
Click me
|
|
493
|
+
</span>
|
|
362
494
|
</a>
|
|
363
495
|
`;
|
|
364
496
|
|
|
@@ -386,14 +518,24 @@ exports[`LinkCore kind:primary href:# light:false visitable:true hovered 1`] = `
|
|
|
386
518
|
"alignItems": "center",
|
|
387
519
|
"color": "#1865f2",
|
|
388
520
|
"cursor": "pointer",
|
|
389
|
-
"display": "inline-flex",
|
|
390
521
|
"outline": "none",
|
|
391
522
|
"textDecoration": "underline currentcolor solid",
|
|
523
|
+
"textUnderlineOffset": "3px",
|
|
524
|
+
"verticalAlign": "bottom",
|
|
392
525
|
}
|
|
393
526
|
}
|
|
394
527
|
tabIndex={0}
|
|
395
528
|
>
|
|
396
|
-
|
|
529
|
+
<span
|
|
530
|
+
className=""
|
|
531
|
+
style={
|
|
532
|
+
{
|
|
533
|
+
"verticalAlign": "middle",
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
>
|
|
537
|
+
Click me
|
|
538
|
+
</span>
|
|
397
539
|
</a>
|
|
398
540
|
`;
|
|
399
541
|
|
|
@@ -421,14 +563,24 @@ exports[`LinkCore kind:primary href:# light:false visitable:true hovered 2`] = `
|
|
|
421
563
|
"alignItems": "center",
|
|
422
564
|
"color": "#1865f2",
|
|
423
565
|
"cursor": "pointer",
|
|
424
|
-
"display": "inline-flex",
|
|
425
566
|
"outline": "none",
|
|
426
567
|
"textDecoration": "underline currentcolor solid",
|
|
568
|
+
"textUnderlineOffset": "3px",
|
|
569
|
+
"verticalAlign": "bottom",
|
|
427
570
|
}
|
|
428
571
|
}
|
|
429
572
|
tabIndex={0}
|
|
430
573
|
>
|
|
431
|
-
|
|
574
|
+
<span
|
|
575
|
+
className=""
|
|
576
|
+
style={
|
|
577
|
+
{
|
|
578
|
+
"verticalAlign": "middle",
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
>
|
|
582
|
+
Click me
|
|
583
|
+
</span>
|
|
432
584
|
</a>
|
|
433
585
|
`;
|
|
434
586
|
|
|
@@ -456,14 +608,24 @@ exports[`LinkCore kind:primary href:# light:false visitable:true pressed 1`] = `
|
|
|
456
608
|
"alignItems": "center",
|
|
457
609
|
"color": "#1b50b3",
|
|
458
610
|
"cursor": "pointer",
|
|
459
|
-
"display": "inline-flex",
|
|
460
611
|
"outline": "none",
|
|
461
612
|
"textDecoration": "underline currentcolor solid",
|
|
613
|
+
"textUnderlineOffset": "3px",
|
|
614
|
+
"verticalAlign": "bottom",
|
|
462
615
|
}
|
|
463
616
|
}
|
|
464
617
|
tabIndex={0}
|
|
465
618
|
>
|
|
466
|
-
|
|
619
|
+
<span
|
|
620
|
+
className=""
|
|
621
|
+
style={
|
|
622
|
+
{
|
|
623
|
+
"verticalAlign": "middle",
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
>
|
|
627
|
+
Click me
|
|
628
|
+
</span>
|
|
467
629
|
</a>
|
|
468
630
|
`;
|
|
469
631
|
|
|
@@ -491,14 +653,24 @@ exports[`LinkCore kind:primary href:# light:false visitable:true pressed 2`] = `
|
|
|
491
653
|
"alignItems": "center",
|
|
492
654
|
"color": "#1b50b3",
|
|
493
655
|
"cursor": "pointer",
|
|
494
|
-
"display": "inline-flex",
|
|
495
656
|
"outline": "none",
|
|
496
657
|
"textDecoration": "underline currentcolor solid",
|
|
658
|
+
"textUnderlineOffset": "3px",
|
|
659
|
+
"verticalAlign": "bottom",
|
|
497
660
|
}
|
|
498
661
|
}
|
|
499
662
|
tabIndex={0}
|
|
500
663
|
>
|
|
501
|
-
|
|
664
|
+
<span
|
|
665
|
+
className=""
|
|
666
|
+
style={
|
|
667
|
+
{
|
|
668
|
+
"verticalAlign": "middle",
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
>
|
|
672
|
+
Click me
|
|
673
|
+
</span>
|
|
502
674
|
</a>
|
|
503
675
|
`;
|
|
504
676
|
|
|
@@ -520,18 +692,32 @@ exports[`LinkCore kind:primary href:# light:true visitable:false focused 1`] = `
|
|
|
520
692
|
onTouchStart={[Function]}
|
|
521
693
|
style={
|
|
522
694
|
{
|
|
695
|
+
":focusVisible": {
|
|
696
|
+
"borderRadius": 3,
|
|
697
|
+
"color": "#ffffff",
|
|
698
|
+
"outline": "1px solid #ffffff",
|
|
699
|
+
},
|
|
523
700
|
"alignItems": "center",
|
|
524
|
-
"borderRadius": 3,
|
|
525
701
|
"color": "#ffffff",
|
|
526
702
|
"cursor": "pointer",
|
|
527
|
-
"
|
|
528
|
-
"
|
|
529
|
-
"
|
|
703
|
+
"outline": "none",
|
|
704
|
+
"textDecoration": "underline currentcolor solid",
|
|
705
|
+
"textUnderlineOffset": "3px",
|
|
706
|
+
"verticalAlign": "bottom",
|
|
530
707
|
}
|
|
531
708
|
}
|
|
532
709
|
tabIndex={0}
|
|
533
710
|
>
|
|
534
|
-
|
|
711
|
+
<span
|
|
712
|
+
className=""
|
|
713
|
+
style={
|
|
714
|
+
{
|
|
715
|
+
"verticalAlign": "middle",
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
>
|
|
719
|
+
Click me
|
|
720
|
+
</span>
|
|
535
721
|
</a>
|
|
536
722
|
`;
|
|
537
723
|
|
|
@@ -553,18 +739,32 @@ exports[`LinkCore kind:primary href:# light:true visitable:false focused 2`] = `
|
|
|
553
739
|
onTouchStart={[Function]}
|
|
554
740
|
style={
|
|
555
741
|
{
|
|
742
|
+
":focusVisible": {
|
|
743
|
+
"borderRadius": 3,
|
|
744
|
+
"color": "#ffffff",
|
|
745
|
+
"outline": "1px solid #ffffff",
|
|
746
|
+
},
|
|
556
747
|
"alignItems": "center",
|
|
557
|
-
"borderRadius": 3,
|
|
558
748
|
"color": "#ffffff",
|
|
559
749
|
"cursor": "pointer",
|
|
560
|
-
"
|
|
561
|
-
"outline": "1px solid #ffffff",
|
|
750
|
+
"outline": "none",
|
|
562
751
|
"textDecoration": "none",
|
|
752
|
+
"textUnderlineOffset": "3px",
|
|
753
|
+
"verticalAlign": "bottom",
|
|
563
754
|
}
|
|
564
755
|
}
|
|
565
756
|
tabIndex={0}
|
|
566
757
|
>
|
|
567
|
-
|
|
758
|
+
<span
|
|
759
|
+
className=""
|
|
760
|
+
style={
|
|
761
|
+
{
|
|
762
|
+
"verticalAlign": "middle",
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
>
|
|
766
|
+
Click me
|
|
767
|
+
</span>
|
|
568
768
|
</a>
|
|
569
769
|
`;
|
|
570
770
|
|
|
@@ -589,14 +789,24 @@ exports[`LinkCore kind:primary href:# light:true visitable:false hovered 1`] = `
|
|
|
589
789
|
"alignItems": "center",
|
|
590
790
|
"color": "#ffffff",
|
|
591
791
|
"cursor": "pointer",
|
|
592
|
-
"display": "inline-flex",
|
|
593
792
|
"outline": "none",
|
|
594
793
|
"textDecoration": "underline currentcolor solid",
|
|
794
|
+
"textUnderlineOffset": "3px",
|
|
795
|
+
"verticalAlign": "bottom",
|
|
595
796
|
}
|
|
596
797
|
}
|
|
597
798
|
tabIndex={0}
|
|
598
799
|
>
|
|
599
|
-
|
|
800
|
+
<span
|
|
801
|
+
className=""
|
|
802
|
+
style={
|
|
803
|
+
{
|
|
804
|
+
"verticalAlign": "middle",
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
>
|
|
808
|
+
Click me
|
|
809
|
+
</span>
|
|
600
810
|
</a>
|
|
601
811
|
`;
|
|
602
812
|
|
|
@@ -621,14 +831,24 @@ exports[`LinkCore kind:primary href:# light:true visitable:false hovered 2`] = `
|
|
|
621
831
|
"alignItems": "center",
|
|
622
832
|
"color": "#ffffff",
|
|
623
833
|
"cursor": "pointer",
|
|
624
|
-
"display": "inline-flex",
|
|
625
834
|
"outline": "none",
|
|
626
835
|
"textDecoration": "underline currentcolor solid",
|
|
836
|
+
"textUnderlineOffset": "3px",
|
|
837
|
+
"verticalAlign": "bottom",
|
|
627
838
|
}
|
|
628
839
|
}
|
|
629
840
|
tabIndex={0}
|
|
630
841
|
>
|
|
631
|
-
|
|
842
|
+
<span
|
|
843
|
+
className=""
|
|
844
|
+
style={
|
|
845
|
+
{
|
|
846
|
+
"verticalAlign": "middle",
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
>
|
|
850
|
+
Click me
|
|
851
|
+
</span>
|
|
632
852
|
</a>
|
|
633
853
|
`;
|
|
634
854
|
|
|
@@ -653,14 +873,24 @@ exports[`LinkCore kind:primary href:# light:true visitable:false pressed 1`] = `
|
|
|
653
873
|
"alignItems": "center",
|
|
654
874
|
"color": "#b5cefb",
|
|
655
875
|
"cursor": "pointer",
|
|
656
|
-
"display": "inline-flex",
|
|
657
876
|
"outline": "none",
|
|
658
877
|
"textDecoration": "underline currentcolor solid",
|
|
878
|
+
"textUnderlineOffset": "3px",
|
|
879
|
+
"verticalAlign": "bottom",
|
|
659
880
|
}
|
|
660
881
|
}
|
|
661
882
|
tabIndex={0}
|
|
662
883
|
>
|
|
663
|
-
|
|
884
|
+
<span
|
|
885
|
+
className=""
|
|
886
|
+
style={
|
|
887
|
+
{
|
|
888
|
+
"verticalAlign": "middle",
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
>
|
|
892
|
+
Click me
|
|
893
|
+
</span>
|
|
664
894
|
</a>
|
|
665
895
|
`;
|
|
666
896
|
|
|
@@ -685,14 +915,24 @@ exports[`LinkCore kind:primary href:# light:true visitable:false pressed 2`] = `
|
|
|
685
915
|
"alignItems": "center",
|
|
686
916
|
"color": "#b5cefb",
|
|
687
917
|
"cursor": "pointer",
|
|
688
|
-
"display": "inline-flex",
|
|
689
918
|
"outline": "none",
|
|
690
919
|
"textDecoration": "underline currentcolor solid",
|
|
920
|
+
"textUnderlineOffset": "3px",
|
|
921
|
+
"verticalAlign": "bottom",
|
|
691
922
|
}
|
|
692
923
|
}
|
|
693
924
|
tabIndex={0}
|
|
694
925
|
>
|
|
695
|
-
|
|
926
|
+
<span
|
|
927
|
+
className=""
|
|
928
|
+
style={
|
|
929
|
+
{
|
|
930
|
+
"verticalAlign": "middle",
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
>
|
|
934
|
+
Click me
|
|
935
|
+
</span>
|
|
696
936
|
</a>
|
|
697
937
|
`;
|
|
698
938
|
|
|
@@ -714,21 +954,38 @@ exports[`LinkCore kind:primary href:# light:true visitable:true focused 1`] = `
|
|
|
714
954
|
onTouchStart={[Function]}
|
|
715
955
|
style={
|
|
716
956
|
{
|
|
957
|
+
":focusVisible": {
|
|
958
|
+
":visited": {
|
|
959
|
+
"color": "#fa50ae",
|
|
960
|
+
},
|
|
961
|
+
"borderRadius": 3,
|
|
962
|
+
"color": "#ffffff",
|
|
963
|
+
"outline": "1px solid #ffffff",
|
|
964
|
+
},
|
|
717
965
|
":visited": {
|
|
718
966
|
"color": "#fa50ae",
|
|
719
967
|
},
|
|
720
968
|
"alignItems": "center",
|
|
721
|
-
"borderRadius": 3,
|
|
722
969
|
"color": "#ffffff",
|
|
723
970
|
"cursor": "pointer",
|
|
724
|
-
"
|
|
725
|
-
"
|
|
726
|
-
"
|
|
971
|
+
"outline": "none",
|
|
972
|
+
"textDecoration": "underline currentcolor solid",
|
|
973
|
+
"textUnderlineOffset": "3px",
|
|
974
|
+
"verticalAlign": "bottom",
|
|
727
975
|
}
|
|
728
976
|
}
|
|
729
977
|
tabIndex={0}
|
|
730
978
|
>
|
|
731
|
-
|
|
979
|
+
<span
|
|
980
|
+
className=""
|
|
981
|
+
style={
|
|
982
|
+
{
|
|
983
|
+
"verticalAlign": "middle",
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
>
|
|
987
|
+
Click me
|
|
988
|
+
</span>
|
|
732
989
|
</a>
|
|
733
990
|
`;
|
|
734
991
|
|
|
@@ -750,21 +1007,38 @@ exports[`LinkCore kind:primary href:# light:true visitable:true focused 2`] = `
|
|
|
750
1007
|
onTouchStart={[Function]}
|
|
751
1008
|
style={
|
|
752
1009
|
{
|
|
1010
|
+
":focusVisible": {
|
|
1011
|
+
":visited": {
|
|
1012
|
+
"color": "#fa50ae",
|
|
1013
|
+
},
|
|
1014
|
+
"borderRadius": 3,
|
|
1015
|
+
"color": "#ffffff",
|
|
1016
|
+
"outline": "1px solid #ffffff",
|
|
1017
|
+
},
|
|
753
1018
|
":visited": {
|
|
754
1019
|
"color": "#fa50ae",
|
|
755
1020
|
},
|
|
756
1021
|
"alignItems": "center",
|
|
757
|
-
"borderRadius": 3,
|
|
758
1022
|
"color": "#ffffff",
|
|
759
1023
|
"cursor": "pointer",
|
|
760
|
-
"
|
|
761
|
-
"outline": "1px solid #ffffff",
|
|
1024
|
+
"outline": "none",
|
|
762
1025
|
"textDecoration": "none",
|
|
1026
|
+
"textUnderlineOffset": "3px",
|
|
1027
|
+
"verticalAlign": "bottom",
|
|
763
1028
|
}
|
|
764
1029
|
}
|
|
765
1030
|
tabIndex={0}
|
|
766
1031
|
>
|
|
767
|
-
|
|
1032
|
+
<span
|
|
1033
|
+
className=""
|
|
1034
|
+
style={
|
|
1035
|
+
{
|
|
1036
|
+
"verticalAlign": "middle",
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
1039
|
+
>
|
|
1040
|
+
Click me
|
|
1041
|
+
</span>
|
|
768
1042
|
</a>
|
|
769
1043
|
`;
|
|
770
1044
|
|
|
@@ -792,14 +1066,24 @@ exports[`LinkCore kind:primary href:# light:true visitable:true hovered 1`] = `
|
|
|
792
1066
|
"alignItems": "center",
|
|
793
1067
|
"color": "#ffffff",
|
|
794
1068
|
"cursor": "pointer",
|
|
795
|
-
"display": "inline-flex",
|
|
796
1069
|
"outline": "none",
|
|
797
1070
|
"textDecoration": "underline currentcolor solid",
|
|
1071
|
+
"textUnderlineOffset": "3px",
|
|
1072
|
+
"verticalAlign": "bottom",
|
|
798
1073
|
}
|
|
799
1074
|
}
|
|
800
1075
|
tabIndex={0}
|
|
801
1076
|
>
|
|
802
|
-
|
|
1077
|
+
<span
|
|
1078
|
+
className=""
|
|
1079
|
+
style={
|
|
1080
|
+
{
|
|
1081
|
+
"verticalAlign": "middle",
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
>
|
|
1085
|
+
Click me
|
|
1086
|
+
</span>
|
|
803
1087
|
</a>
|
|
804
1088
|
`;
|
|
805
1089
|
|
|
@@ -827,14 +1111,24 @@ exports[`LinkCore kind:primary href:# light:true visitable:true hovered 2`] = `
|
|
|
827
1111
|
"alignItems": "center",
|
|
828
1112
|
"color": "#ffffff",
|
|
829
1113
|
"cursor": "pointer",
|
|
830
|
-
"display": "inline-flex",
|
|
831
1114
|
"outline": "none",
|
|
832
1115
|
"textDecoration": "underline currentcolor solid",
|
|
1116
|
+
"textUnderlineOffset": "3px",
|
|
1117
|
+
"verticalAlign": "bottom",
|
|
833
1118
|
}
|
|
834
1119
|
}
|
|
835
1120
|
tabIndex={0}
|
|
836
1121
|
>
|
|
837
|
-
|
|
1122
|
+
<span
|
|
1123
|
+
className=""
|
|
1124
|
+
style={
|
|
1125
|
+
{
|
|
1126
|
+
"verticalAlign": "middle",
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
>
|
|
1130
|
+
Click me
|
|
1131
|
+
</span>
|
|
838
1132
|
</a>
|
|
839
1133
|
`;
|
|
840
1134
|
|
|
@@ -862,14 +1156,24 @@ exports[`LinkCore kind:primary href:# light:true visitable:true pressed 1`] = `
|
|
|
862
1156
|
"alignItems": "center",
|
|
863
1157
|
"color": "#b5cefb",
|
|
864
1158
|
"cursor": "pointer",
|
|
865
|
-
"display": "inline-flex",
|
|
866
1159
|
"outline": "none",
|
|
867
1160
|
"textDecoration": "underline currentcolor solid",
|
|
1161
|
+
"textUnderlineOffset": "3px",
|
|
1162
|
+
"verticalAlign": "bottom",
|
|
868
1163
|
}
|
|
869
1164
|
}
|
|
870
1165
|
tabIndex={0}
|
|
871
1166
|
>
|
|
872
|
-
|
|
1167
|
+
<span
|
|
1168
|
+
className=""
|
|
1169
|
+
style={
|
|
1170
|
+
{
|
|
1171
|
+
"verticalAlign": "middle",
|
|
1172
|
+
}
|
|
1173
|
+
}
|
|
1174
|
+
>
|
|
1175
|
+
Click me
|
|
1176
|
+
</span>
|
|
873
1177
|
</a>
|
|
874
1178
|
`;
|
|
875
1179
|
|
|
@@ -897,14 +1201,24 @@ exports[`LinkCore kind:primary href:# light:true visitable:true pressed 2`] = `
|
|
|
897
1201
|
"alignItems": "center",
|
|
898
1202
|
"color": "#b5cefb",
|
|
899
1203
|
"cursor": "pointer",
|
|
900
|
-
"display": "inline-flex",
|
|
901
1204
|
"outline": "none",
|
|
902
1205
|
"textDecoration": "underline currentcolor solid",
|
|
1206
|
+
"textUnderlineOffset": "3px",
|
|
1207
|
+
"verticalAlign": "bottom",
|
|
903
1208
|
}
|
|
904
1209
|
}
|
|
905
1210
|
tabIndex={0}
|
|
906
1211
|
>
|
|
907
|
-
|
|
1212
|
+
<span
|
|
1213
|
+
className=""
|
|
1214
|
+
style={
|
|
1215
|
+
{
|
|
1216
|
+
"verticalAlign": "middle",
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
>
|
|
1220
|
+
Click me
|
|
1221
|
+
</span>
|
|
908
1222
|
</a>
|
|
909
1223
|
`;
|
|
910
1224
|
|
|
@@ -926,18 +1240,32 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
926
1240
|
onTouchStart={[Function]}
|
|
927
1241
|
style={
|
|
928
1242
|
{
|
|
1243
|
+
":focusVisible": {
|
|
1244
|
+
"borderRadius": 3,
|
|
1245
|
+
"color": "#1865f2",
|
|
1246
|
+
"outline": "1px solid #1865f2",
|
|
1247
|
+
},
|
|
929
1248
|
"alignItems": "center",
|
|
930
|
-
"borderRadius": 3,
|
|
931
1249
|
"color": "#1865f2",
|
|
932
1250
|
"cursor": "pointer",
|
|
933
|
-
"
|
|
934
|
-
"
|
|
935
|
-
"
|
|
1251
|
+
"outline": "none",
|
|
1252
|
+
"textDecoration": "underline currentcolor solid",
|
|
1253
|
+
"textUnderlineOffset": "3px",
|
|
1254
|
+
"verticalAlign": "bottom",
|
|
936
1255
|
}
|
|
937
1256
|
}
|
|
938
1257
|
tabIndex={0}
|
|
939
1258
|
>
|
|
940
|
-
|
|
1259
|
+
<span
|
|
1260
|
+
className=""
|
|
1261
|
+
style={
|
|
1262
|
+
{
|
|
1263
|
+
"verticalAlign": "middle",
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
>
|
|
1267
|
+
Click me
|
|
1268
|
+
</span>
|
|
941
1269
|
</a>
|
|
942
1270
|
`;
|
|
943
1271
|
|
|
@@ -959,18 +1287,32 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
959
1287
|
onTouchStart={[Function]}
|
|
960
1288
|
style={
|
|
961
1289
|
{
|
|
1290
|
+
":focusVisible": {
|
|
1291
|
+
"borderRadius": 3,
|
|
1292
|
+
"color": "#1865f2",
|
|
1293
|
+
"outline": "1px solid #1865f2",
|
|
1294
|
+
},
|
|
962
1295
|
"alignItems": "center",
|
|
963
|
-
"borderRadius": 3,
|
|
964
1296
|
"color": "#1865f2",
|
|
965
1297
|
"cursor": "pointer",
|
|
966
|
-
"
|
|
967
|
-
"outline": "1px solid #1865f2",
|
|
1298
|
+
"outline": "none",
|
|
968
1299
|
"textDecoration": "none",
|
|
1300
|
+
"textUnderlineOffset": "3px",
|
|
1301
|
+
"verticalAlign": "bottom",
|
|
969
1302
|
}
|
|
970
1303
|
}
|
|
971
1304
|
tabIndex={0}
|
|
972
1305
|
>
|
|
973
|
-
|
|
1306
|
+
<span
|
|
1307
|
+
className=""
|
|
1308
|
+
style={
|
|
1309
|
+
{
|
|
1310
|
+
"verticalAlign": "middle",
|
|
1311
|
+
}
|
|
1312
|
+
}
|
|
1313
|
+
>
|
|
1314
|
+
Click me
|
|
1315
|
+
</span>
|
|
974
1316
|
</a>
|
|
975
1317
|
`;
|
|
976
1318
|
|
|
@@ -995,14 +1337,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
995
1337
|
"alignItems": "center",
|
|
996
1338
|
"color": "#1865f2",
|
|
997
1339
|
"cursor": "pointer",
|
|
998
|
-
"display": "inline-flex",
|
|
999
1340
|
"outline": "none",
|
|
1000
1341
|
"textDecoration": "underline currentcolor solid",
|
|
1342
|
+
"textUnderlineOffset": "3px",
|
|
1343
|
+
"verticalAlign": "bottom",
|
|
1001
1344
|
}
|
|
1002
1345
|
}
|
|
1003
1346
|
tabIndex={0}
|
|
1004
1347
|
>
|
|
1005
|
-
|
|
1348
|
+
<span
|
|
1349
|
+
className=""
|
|
1350
|
+
style={
|
|
1351
|
+
{
|
|
1352
|
+
"verticalAlign": "middle",
|
|
1353
|
+
}
|
|
1354
|
+
}
|
|
1355
|
+
>
|
|
1356
|
+
Click me
|
|
1357
|
+
</span>
|
|
1006
1358
|
</a>
|
|
1007
1359
|
`;
|
|
1008
1360
|
|
|
@@ -1027,14 +1379,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1027
1379
|
"alignItems": "center",
|
|
1028
1380
|
"color": "#1865f2",
|
|
1029
1381
|
"cursor": "pointer",
|
|
1030
|
-
"display": "inline-flex",
|
|
1031
1382
|
"outline": "none",
|
|
1032
1383
|
"textDecoration": "underline currentcolor solid",
|
|
1384
|
+
"textUnderlineOffset": "3px",
|
|
1385
|
+
"verticalAlign": "bottom",
|
|
1033
1386
|
}
|
|
1034
1387
|
}
|
|
1035
1388
|
tabIndex={0}
|
|
1036
1389
|
>
|
|
1037
|
-
|
|
1390
|
+
<span
|
|
1391
|
+
className=""
|
|
1392
|
+
style={
|
|
1393
|
+
{
|
|
1394
|
+
"verticalAlign": "middle",
|
|
1395
|
+
}
|
|
1396
|
+
}
|
|
1397
|
+
>
|
|
1398
|
+
Click me
|
|
1399
|
+
</span>
|
|
1038
1400
|
</a>
|
|
1039
1401
|
`;
|
|
1040
1402
|
|
|
@@ -1059,14 +1421,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1059
1421
|
"alignItems": "center",
|
|
1060
1422
|
"color": "#1b50b3",
|
|
1061
1423
|
"cursor": "pointer",
|
|
1062
|
-
"display": "inline-flex",
|
|
1063
1424
|
"outline": "none",
|
|
1064
1425
|
"textDecoration": "underline currentcolor solid",
|
|
1426
|
+
"textUnderlineOffset": "3px",
|
|
1427
|
+
"verticalAlign": "bottom",
|
|
1065
1428
|
}
|
|
1066
1429
|
}
|
|
1067
1430
|
tabIndex={0}
|
|
1068
1431
|
>
|
|
1069
|
-
|
|
1432
|
+
<span
|
|
1433
|
+
className=""
|
|
1434
|
+
style={
|
|
1435
|
+
{
|
|
1436
|
+
"verticalAlign": "middle",
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
>
|
|
1440
|
+
Click me
|
|
1441
|
+
</span>
|
|
1070
1442
|
</a>
|
|
1071
1443
|
`;
|
|
1072
1444
|
|
|
@@ -1091,14 +1463,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:fal
|
|
|
1091
1463
|
"alignItems": "center",
|
|
1092
1464
|
"color": "#1b50b3",
|
|
1093
1465
|
"cursor": "pointer",
|
|
1094
|
-
"display": "inline-flex",
|
|
1095
1466
|
"outline": "none",
|
|
1096
1467
|
"textDecoration": "underline currentcolor solid",
|
|
1468
|
+
"textUnderlineOffset": "3px",
|
|
1469
|
+
"verticalAlign": "bottom",
|
|
1097
1470
|
}
|
|
1098
1471
|
}
|
|
1099
1472
|
tabIndex={0}
|
|
1100
1473
|
>
|
|
1101
|
-
|
|
1474
|
+
<span
|
|
1475
|
+
className=""
|
|
1476
|
+
style={
|
|
1477
|
+
{
|
|
1478
|
+
"verticalAlign": "middle",
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
>
|
|
1482
|
+
Click me
|
|
1483
|
+
</span>
|
|
1102
1484
|
</a>
|
|
1103
1485
|
`;
|
|
1104
1486
|
|
|
@@ -1120,21 +1502,38 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1120
1502
|
onTouchStart={[Function]}
|
|
1121
1503
|
style={
|
|
1122
1504
|
{
|
|
1505
|
+
":focusVisible": {
|
|
1506
|
+
":visited": {
|
|
1507
|
+
"color": "#8755ee",
|
|
1508
|
+
},
|
|
1509
|
+
"borderRadius": 3,
|
|
1510
|
+
"color": "#1865f2",
|
|
1511
|
+
"outline": "1px solid #1865f2",
|
|
1512
|
+
},
|
|
1123
1513
|
":visited": {
|
|
1124
1514
|
"color": "#8755ee",
|
|
1125
1515
|
},
|
|
1126
1516
|
"alignItems": "center",
|
|
1127
|
-
"borderRadius": 3,
|
|
1128
1517
|
"color": "#1865f2",
|
|
1129
1518
|
"cursor": "pointer",
|
|
1130
|
-
"
|
|
1131
|
-
"
|
|
1132
|
-
"
|
|
1519
|
+
"outline": "none",
|
|
1520
|
+
"textDecoration": "underline currentcolor solid",
|
|
1521
|
+
"textUnderlineOffset": "3px",
|
|
1522
|
+
"verticalAlign": "bottom",
|
|
1133
1523
|
}
|
|
1134
1524
|
}
|
|
1135
1525
|
tabIndex={0}
|
|
1136
1526
|
>
|
|
1137
|
-
|
|
1527
|
+
<span
|
|
1528
|
+
className=""
|
|
1529
|
+
style={
|
|
1530
|
+
{
|
|
1531
|
+
"verticalAlign": "middle",
|
|
1532
|
+
}
|
|
1533
|
+
}
|
|
1534
|
+
>
|
|
1535
|
+
Click me
|
|
1536
|
+
</span>
|
|
1138
1537
|
</a>
|
|
1139
1538
|
`;
|
|
1140
1539
|
|
|
@@ -1156,21 +1555,38 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1156
1555
|
onTouchStart={[Function]}
|
|
1157
1556
|
style={
|
|
1158
1557
|
{
|
|
1558
|
+
":focusVisible": {
|
|
1559
|
+
":visited": {
|
|
1560
|
+
"color": "#8755ee",
|
|
1561
|
+
},
|
|
1562
|
+
"borderRadius": 3,
|
|
1563
|
+
"color": "#1865f2",
|
|
1564
|
+
"outline": "1px solid #1865f2",
|
|
1565
|
+
},
|
|
1159
1566
|
":visited": {
|
|
1160
1567
|
"color": "#8755ee",
|
|
1161
1568
|
},
|
|
1162
1569
|
"alignItems": "center",
|
|
1163
|
-
"borderRadius": 3,
|
|
1164
1570
|
"color": "#1865f2",
|
|
1165
1571
|
"cursor": "pointer",
|
|
1166
|
-
"
|
|
1167
|
-
"outline": "1px solid #1865f2",
|
|
1572
|
+
"outline": "none",
|
|
1168
1573
|
"textDecoration": "none",
|
|
1574
|
+
"textUnderlineOffset": "3px",
|
|
1575
|
+
"verticalAlign": "bottom",
|
|
1169
1576
|
}
|
|
1170
1577
|
}
|
|
1171
1578
|
tabIndex={0}
|
|
1172
1579
|
>
|
|
1173
|
-
|
|
1580
|
+
<span
|
|
1581
|
+
className=""
|
|
1582
|
+
style={
|
|
1583
|
+
{
|
|
1584
|
+
"verticalAlign": "middle",
|
|
1585
|
+
}
|
|
1586
|
+
}
|
|
1587
|
+
>
|
|
1588
|
+
Click me
|
|
1589
|
+
</span>
|
|
1174
1590
|
</a>
|
|
1175
1591
|
`;
|
|
1176
1592
|
|
|
@@ -1198,14 +1614,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1198
1614
|
"alignItems": "center",
|
|
1199
1615
|
"color": "#1865f2",
|
|
1200
1616
|
"cursor": "pointer",
|
|
1201
|
-
"display": "inline-flex",
|
|
1202
1617
|
"outline": "none",
|
|
1203
1618
|
"textDecoration": "underline currentcolor solid",
|
|
1619
|
+
"textUnderlineOffset": "3px",
|
|
1620
|
+
"verticalAlign": "bottom",
|
|
1204
1621
|
}
|
|
1205
1622
|
}
|
|
1206
1623
|
tabIndex={0}
|
|
1207
1624
|
>
|
|
1208
|
-
|
|
1625
|
+
<span
|
|
1626
|
+
className=""
|
|
1627
|
+
style={
|
|
1628
|
+
{
|
|
1629
|
+
"verticalAlign": "middle",
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
>
|
|
1633
|
+
Click me
|
|
1634
|
+
</span>
|
|
1209
1635
|
</a>
|
|
1210
1636
|
`;
|
|
1211
1637
|
|
|
@@ -1233,14 +1659,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1233
1659
|
"alignItems": "center",
|
|
1234
1660
|
"color": "#1865f2",
|
|
1235
1661
|
"cursor": "pointer",
|
|
1236
|
-
"display": "inline-flex",
|
|
1237
1662
|
"outline": "none",
|
|
1238
1663
|
"textDecoration": "underline currentcolor solid",
|
|
1664
|
+
"textUnderlineOffset": "3px",
|
|
1665
|
+
"verticalAlign": "bottom",
|
|
1239
1666
|
}
|
|
1240
1667
|
}
|
|
1241
1668
|
tabIndex={0}
|
|
1242
1669
|
>
|
|
1243
|
-
|
|
1670
|
+
<span
|
|
1671
|
+
className=""
|
|
1672
|
+
style={
|
|
1673
|
+
{
|
|
1674
|
+
"verticalAlign": "middle",
|
|
1675
|
+
}
|
|
1676
|
+
}
|
|
1677
|
+
>
|
|
1678
|
+
Click me
|
|
1679
|
+
</span>
|
|
1244
1680
|
</a>
|
|
1245
1681
|
`;
|
|
1246
1682
|
|
|
@@ -1268,14 +1704,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1268
1704
|
"alignItems": "center",
|
|
1269
1705
|
"color": "#1b50b3",
|
|
1270
1706
|
"cursor": "pointer",
|
|
1271
|
-
"display": "inline-flex",
|
|
1272
1707
|
"outline": "none",
|
|
1273
1708
|
"textDecoration": "underline currentcolor solid",
|
|
1709
|
+
"textUnderlineOffset": "3px",
|
|
1710
|
+
"verticalAlign": "bottom",
|
|
1274
1711
|
}
|
|
1275
1712
|
}
|
|
1276
1713
|
tabIndex={0}
|
|
1277
1714
|
>
|
|
1278
|
-
|
|
1715
|
+
<span
|
|
1716
|
+
className=""
|
|
1717
|
+
style={
|
|
1718
|
+
{
|
|
1719
|
+
"verticalAlign": "middle",
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
>
|
|
1723
|
+
Click me
|
|
1724
|
+
</span>
|
|
1279
1725
|
</a>
|
|
1280
1726
|
`;
|
|
1281
1727
|
|
|
@@ -1303,14 +1749,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:false visitable:tru
|
|
|
1303
1749
|
"alignItems": "center",
|
|
1304
1750
|
"color": "#1b50b3",
|
|
1305
1751
|
"cursor": "pointer",
|
|
1306
|
-
"display": "inline-flex",
|
|
1307
1752
|
"outline": "none",
|
|
1308
1753
|
"textDecoration": "underline currentcolor solid",
|
|
1754
|
+
"textUnderlineOffset": "3px",
|
|
1755
|
+
"verticalAlign": "bottom",
|
|
1309
1756
|
}
|
|
1310
1757
|
}
|
|
1311
1758
|
tabIndex={0}
|
|
1312
1759
|
>
|
|
1313
|
-
|
|
1760
|
+
<span
|
|
1761
|
+
className=""
|
|
1762
|
+
style={
|
|
1763
|
+
{
|
|
1764
|
+
"verticalAlign": "middle",
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1767
|
+
>
|
|
1768
|
+
Click me
|
|
1769
|
+
</span>
|
|
1314
1770
|
</a>
|
|
1315
1771
|
`;
|
|
1316
1772
|
|
|
@@ -1332,18 +1788,32 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1332
1788
|
onTouchStart={[Function]}
|
|
1333
1789
|
style={
|
|
1334
1790
|
{
|
|
1791
|
+
":focusVisible": {
|
|
1792
|
+
"borderRadius": 3,
|
|
1793
|
+
"color": "#ffffff",
|
|
1794
|
+
"outline": "1px solid #ffffff",
|
|
1795
|
+
},
|
|
1335
1796
|
"alignItems": "center",
|
|
1336
|
-
"borderRadius": 3,
|
|
1337
1797
|
"color": "#ffffff",
|
|
1338
1798
|
"cursor": "pointer",
|
|
1339
|
-
"
|
|
1340
|
-
"
|
|
1341
|
-
"
|
|
1799
|
+
"outline": "none",
|
|
1800
|
+
"textDecoration": "underline currentcolor solid",
|
|
1801
|
+
"textUnderlineOffset": "3px",
|
|
1802
|
+
"verticalAlign": "bottom",
|
|
1342
1803
|
}
|
|
1343
1804
|
}
|
|
1344
1805
|
tabIndex={0}
|
|
1345
1806
|
>
|
|
1346
|
-
|
|
1807
|
+
<span
|
|
1808
|
+
className=""
|
|
1809
|
+
style={
|
|
1810
|
+
{
|
|
1811
|
+
"verticalAlign": "middle",
|
|
1812
|
+
}
|
|
1813
|
+
}
|
|
1814
|
+
>
|
|
1815
|
+
Click me
|
|
1816
|
+
</span>
|
|
1347
1817
|
</a>
|
|
1348
1818
|
`;
|
|
1349
1819
|
|
|
@@ -1365,18 +1835,32 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1365
1835
|
onTouchStart={[Function]}
|
|
1366
1836
|
style={
|
|
1367
1837
|
{
|
|
1838
|
+
":focusVisible": {
|
|
1839
|
+
"borderRadius": 3,
|
|
1840
|
+
"color": "#ffffff",
|
|
1841
|
+
"outline": "1px solid #ffffff",
|
|
1842
|
+
},
|
|
1368
1843
|
"alignItems": "center",
|
|
1369
|
-
"borderRadius": 3,
|
|
1370
1844
|
"color": "#ffffff",
|
|
1371
1845
|
"cursor": "pointer",
|
|
1372
|
-
"
|
|
1373
|
-
"outline": "1px solid #ffffff",
|
|
1846
|
+
"outline": "none",
|
|
1374
1847
|
"textDecoration": "none",
|
|
1848
|
+
"textUnderlineOffset": "3px",
|
|
1849
|
+
"verticalAlign": "bottom",
|
|
1375
1850
|
}
|
|
1376
1851
|
}
|
|
1377
1852
|
tabIndex={0}
|
|
1378
1853
|
>
|
|
1379
|
-
|
|
1854
|
+
<span
|
|
1855
|
+
className=""
|
|
1856
|
+
style={
|
|
1857
|
+
{
|
|
1858
|
+
"verticalAlign": "middle",
|
|
1859
|
+
}
|
|
1860
|
+
}
|
|
1861
|
+
>
|
|
1862
|
+
Click me
|
|
1863
|
+
</span>
|
|
1380
1864
|
</a>
|
|
1381
1865
|
`;
|
|
1382
1866
|
|
|
@@ -1401,14 +1885,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1401
1885
|
"alignItems": "center",
|
|
1402
1886
|
"color": "#ffffff",
|
|
1403
1887
|
"cursor": "pointer",
|
|
1404
|
-
"display": "inline-flex",
|
|
1405
1888
|
"outline": "none",
|
|
1406
1889
|
"textDecoration": "underline currentcolor solid",
|
|
1890
|
+
"textUnderlineOffset": "3px",
|
|
1891
|
+
"verticalAlign": "bottom",
|
|
1407
1892
|
}
|
|
1408
1893
|
}
|
|
1409
1894
|
tabIndex={0}
|
|
1410
1895
|
>
|
|
1411
|
-
|
|
1896
|
+
<span
|
|
1897
|
+
className=""
|
|
1898
|
+
style={
|
|
1899
|
+
{
|
|
1900
|
+
"verticalAlign": "middle",
|
|
1901
|
+
}
|
|
1902
|
+
}
|
|
1903
|
+
>
|
|
1904
|
+
Click me
|
|
1905
|
+
</span>
|
|
1412
1906
|
</a>
|
|
1413
1907
|
`;
|
|
1414
1908
|
|
|
@@ -1433,14 +1927,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1433
1927
|
"alignItems": "center",
|
|
1434
1928
|
"color": "#ffffff",
|
|
1435
1929
|
"cursor": "pointer",
|
|
1436
|
-
"display": "inline-flex",
|
|
1437
1930
|
"outline": "none",
|
|
1438
1931
|
"textDecoration": "underline currentcolor solid",
|
|
1932
|
+
"textUnderlineOffset": "3px",
|
|
1933
|
+
"verticalAlign": "bottom",
|
|
1439
1934
|
}
|
|
1440
1935
|
}
|
|
1441
1936
|
tabIndex={0}
|
|
1442
1937
|
>
|
|
1443
|
-
|
|
1938
|
+
<span
|
|
1939
|
+
className=""
|
|
1940
|
+
style={
|
|
1941
|
+
{
|
|
1942
|
+
"verticalAlign": "middle",
|
|
1943
|
+
}
|
|
1944
|
+
}
|
|
1945
|
+
>
|
|
1946
|
+
Click me
|
|
1947
|
+
</span>
|
|
1444
1948
|
</a>
|
|
1445
1949
|
`;
|
|
1446
1950
|
|
|
@@ -1465,14 +1969,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1465
1969
|
"alignItems": "center",
|
|
1466
1970
|
"color": "#b5cefb",
|
|
1467
1971
|
"cursor": "pointer",
|
|
1468
|
-
"display": "inline-flex",
|
|
1469
1972
|
"outline": "none",
|
|
1470
1973
|
"textDecoration": "underline currentcolor solid",
|
|
1974
|
+
"textUnderlineOffset": "3px",
|
|
1975
|
+
"verticalAlign": "bottom",
|
|
1471
1976
|
}
|
|
1472
1977
|
}
|
|
1473
1978
|
tabIndex={0}
|
|
1474
1979
|
>
|
|
1475
|
-
|
|
1980
|
+
<span
|
|
1981
|
+
className=""
|
|
1982
|
+
style={
|
|
1983
|
+
{
|
|
1984
|
+
"verticalAlign": "middle",
|
|
1985
|
+
}
|
|
1986
|
+
}
|
|
1987
|
+
>
|
|
1988
|
+
Click me
|
|
1989
|
+
</span>
|
|
1476
1990
|
</a>
|
|
1477
1991
|
`;
|
|
1478
1992
|
|
|
@@ -1497,14 +2011,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:fals
|
|
|
1497
2011
|
"alignItems": "center",
|
|
1498
2012
|
"color": "#b5cefb",
|
|
1499
2013
|
"cursor": "pointer",
|
|
1500
|
-
"display": "inline-flex",
|
|
1501
2014
|
"outline": "none",
|
|
1502
2015
|
"textDecoration": "underline currentcolor solid",
|
|
2016
|
+
"textUnderlineOffset": "3px",
|
|
2017
|
+
"verticalAlign": "bottom",
|
|
1503
2018
|
}
|
|
1504
2019
|
}
|
|
1505
2020
|
tabIndex={0}
|
|
1506
2021
|
>
|
|
1507
|
-
|
|
2022
|
+
<span
|
|
2023
|
+
className=""
|
|
2024
|
+
style={
|
|
2025
|
+
{
|
|
2026
|
+
"verticalAlign": "middle",
|
|
2027
|
+
}
|
|
2028
|
+
}
|
|
2029
|
+
>
|
|
2030
|
+
Click me
|
|
2031
|
+
</span>
|
|
1508
2032
|
</a>
|
|
1509
2033
|
`;
|
|
1510
2034
|
|
|
@@ -1526,21 +2050,38 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1526
2050
|
onTouchStart={[Function]}
|
|
1527
2051
|
style={
|
|
1528
2052
|
{
|
|
2053
|
+
":focusVisible": {
|
|
2054
|
+
":visited": {
|
|
2055
|
+
"color": "#fa50ae",
|
|
2056
|
+
},
|
|
2057
|
+
"borderRadius": 3,
|
|
2058
|
+
"color": "#ffffff",
|
|
2059
|
+
"outline": "1px solid #ffffff",
|
|
2060
|
+
},
|
|
1529
2061
|
":visited": {
|
|
1530
2062
|
"color": "#fa50ae",
|
|
1531
2063
|
},
|
|
1532
2064
|
"alignItems": "center",
|
|
1533
|
-
"borderRadius": 3,
|
|
1534
2065
|
"color": "#ffffff",
|
|
1535
2066
|
"cursor": "pointer",
|
|
1536
|
-
"
|
|
1537
|
-
"
|
|
1538
|
-
"
|
|
2067
|
+
"outline": "none",
|
|
2068
|
+
"textDecoration": "underline currentcolor solid",
|
|
2069
|
+
"textUnderlineOffset": "3px",
|
|
2070
|
+
"verticalAlign": "bottom",
|
|
1539
2071
|
}
|
|
1540
2072
|
}
|
|
1541
2073
|
tabIndex={0}
|
|
1542
2074
|
>
|
|
1543
|
-
|
|
2075
|
+
<span
|
|
2076
|
+
className=""
|
|
2077
|
+
style={
|
|
2078
|
+
{
|
|
2079
|
+
"verticalAlign": "middle",
|
|
2080
|
+
}
|
|
2081
|
+
}
|
|
2082
|
+
>
|
|
2083
|
+
Click me
|
|
2084
|
+
</span>
|
|
1544
2085
|
</a>
|
|
1545
2086
|
`;
|
|
1546
2087
|
|
|
@@ -1562,21 +2103,38 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1562
2103
|
onTouchStart={[Function]}
|
|
1563
2104
|
style={
|
|
1564
2105
|
{
|
|
2106
|
+
":focusVisible": {
|
|
2107
|
+
":visited": {
|
|
2108
|
+
"color": "#fa50ae",
|
|
2109
|
+
},
|
|
2110
|
+
"borderRadius": 3,
|
|
2111
|
+
"color": "#ffffff",
|
|
2112
|
+
"outline": "1px solid #ffffff",
|
|
2113
|
+
},
|
|
1565
2114
|
":visited": {
|
|
1566
2115
|
"color": "#fa50ae",
|
|
1567
2116
|
},
|
|
1568
2117
|
"alignItems": "center",
|
|
1569
|
-
"borderRadius": 3,
|
|
1570
2118
|
"color": "#ffffff",
|
|
1571
2119
|
"cursor": "pointer",
|
|
1572
|
-
"
|
|
1573
|
-
"outline": "1px solid #ffffff",
|
|
2120
|
+
"outline": "none",
|
|
1574
2121
|
"textDecoration": "none",
|
|
2122
|
+
"textUnderlineOffset": "3px",
|
|
2123
|
+
"verticalAlign": "bottom",
|
|
1575
2124
|
}
|
|
1576
2125
|
}
|
|
1577
2126
|
tabIndex={0}
|
|
1578
2127
|
>
|
|
1579
|
-
|
|
2128
|
+
<span
|
|
2129
|
+
className=""
|
|
2130
|
+
style={
|
|
2131
|
+
{
|
|
2132
|
+
"verticalAlign": "middle",
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
>
|
|
2136
|
+
Click me
|
|
2137
|
+
</span>
|
|
1580
2138
|
</a>
|
|
1581
2139
|
`;
|
|
1582
2140
|
|
|
@@ -1604,14 +2162,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1604
2162
|
"alignItems": "center",
|
|
1605
2163
|
"color": "#ffffff",
|
|
1606
2164
|
"cursor": "pointer",
|
|
1607
|
-
"display": "inline-flex",
|
|
1608
2165
|
"outline": "none",
|
|
1609
2166
|
"textDecoration": "underline currentcolor solid",
|
|
2167
|
+
"textUnderlineOffset": "3px",
|
|
2168
|
+
"verticalAlign": "bottom",
|
|
1610
2169
|
}
|
|
1611
2170
|
}
|
|
1612
2171
|
tabIndex={0}
|
|
1613
2172
|
>
|
|
1614
|
-
|
|
2173
|
+
<span
|
|
2174
|
+
className=""
|
|
2175
|
+
style={
|
|
2176
|
+
{
|
|
2177
|
+
"verticalAlign": "middle",
|
|
2178
|
+
}
|
|
2179
|
+
}
|
|
2180
|
+
>
|
|
2181
|
+
Click me
|
|
2182
|
+
</span>
|
|
1615
2183
|
</a>
|
|
1616
2184
|
`;
|
|
1617
2185
|
|
|
@@ -1639,14 +2207,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1639
2207
|
"alignItems": "center",
|
|
1640
2208
|
"color": "#ffffff",
|
|
1641
2209
|
"cursor": "pointer",
|
|
1642
|
-
"display": "inline-flex",
|
|
1643
2210
|
"outline": "none",
|
|
1644
2211
|
"textDecoration": "underline currentcolor solid",
|
|
2212
|
+
"textUnderlineOffset": "3px",
|
|
2213
|
+
"verticalAlign": "bottom",
|
|
1645
2214
|
}
|
|
1646
2215
|
}
|
|
1647
2216
|
tabIndex={0}
|
|
1648
2217
|
>
|
|
1649
|
-
|
|
2218
|
+
<span
|
|
2219
|
+
className=""
|
|
2220
|
+
style={
|
|
2221
|
+
{
|
|
2222
|
+
"verticalAlign": "middle",
|
|
2223
|
+
}
|
|
2224
|
+
}
|
|
2225
|
+
>
|
|
2226
|
+
Click me
|
|
2227
|
+
</span>
|
|
1650
2228
|
</a>
|
|
1651
2229
|
`;
|
|
1652
2230
|
|
|
@@ -1674,14 +2252,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1674
2252
|
"alignItems": "center",
|
|
1675
2253
|
"color": "#b5cefb",
|
|
1676
2254
|
"cursor": "pointer",
|
|
1677
|
-
"display": "inline-flex",
|
|
1678
2255
|
"outline": "none",
|
|
1679
2256
|
"textDecoration": "underline currentcolor solid",
|
|
2257
|
+
"textUnderlineOffset": "3px",
|
|
2258
|
+
"verticalAlign": "bottom",
|
|
1680
2259
|
}
|
|
1681
2260
|
}
|
|
1682
2261
|
tabIndex={0}
|
|
1683
2262
|
>
|
|
1684
|
-
|
|
2263
|
+
<span
|
|
2264
|
+
className=""
|
|
2265
|
+
style={
|
|
2266
|
+
{
|
|
2267
|
+
"verticalAlign": "middle",
|
|
2268
|
+
}
|
|
2269
|
+
}
|
|
2270
|
+
>
|
|
2271
|
+
Click me
|
|
2272
|
+
</span>
|
|
1685
2273
|
</a>
|
|
1686
2274
|
`;
|
|
1687
2275
|
|
|
@@ -1709,14 +2297,24 @@ exports[`LinkCore kind:primary href:#non-existent-link light:true visitable:true
|
|
|
1709
2297
|
"alignItems": "center",
|
|
1710
2298
|
"color": "#b5cefb",
|
|
1711
2299
|
"cursor": "pointer",
|
|
1712
|
-
"display": "inline-flex",
|
|
1713
2300
|
"outline": "none",
|
|
1714
2301
|
"textDecoration": "underline currentcolor solid",
|
|
2302
|
+
"textUnderlineOffset": "3px",
|
|
2303
|
+
"verticalAlign": "bottom",
|
|
1715
2304
|
}
|
|
1716
2305
|
}
|
|
1717
2306
|
tabIndex={0}
|
|
1718
2307
|
>
|
|
1719
|
-
|
|
2308
|
+
<span
|
|
2309
|
+
className=""
|
|
2310
|
+
style={
|
|
2311
|
+
{
|
|
2312
|
+
"verticalAlign": "middle",
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
>
|
|
2316
|
+
Click me
|
|
2317
|
+
</span>
|
|
1720
2318
|
</a>
|
|
1721
2319
|
`;
|
|
1722
2320
|
|
|
@@ -1738,18 +2336,32 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false focused 1`]
|
|
|
1738
2336
|
onTouchStart={[Function]}
|
|
1739
2337
|
style={
|
|
1740
2338
|
{
|
|
2339
|
+
":focusVisible": {
|
|
2340
|
+
"borderRadius": 3,
|
|
2341
|
+
"color": "#21242c",
|
|
2342
|
+
"outline": "1px solid #1865f2",
|
|
2343
|
+
},
|
|
1741
2344
|
"alignItems": "center",
|
|
1742
|
-
"borderRadius": 3,
|
|
1743
2345
|
"color": "#21242c",
|
|
1744
2346
|
"cursor": "pointer",
|
|
1745
|
-
"
|
|
1746
|
-
"
|
|
1747
|
-
"
|
|
2347
|
+
"outline": "none",
|
|
2348
|
+
"textDecoration": "underline currentcolor solid",
|
|
2349
|
+
"textUnderlineOffset": "3px",
|
|
2350
|
+
"verticalAlign": "bottom",
|
|
1748
2351
|
}
|
|
1749
2352
|
}
|
|
1750
2353
|
tabIndex={0}
|
|
1751
2354
|
>
|
|
1752
|
-
|
|
2355
|
+
<span
|
|
2356
|
+
className=""
|
|
2357
|
+
style={
|
|
2358
|
+
{
|
|
2359
|
+
"verticalAlign": "middle",
|
|
2360
|
+
}
|
|
2361
|
+
}
|
|
2362
|
+
>
|
|
2363
|
+
Click me
|
|
2364
|
+
</span>
|
|
1753
2365
|
</a>
|
|
1754
2366
|
`;
|
|
1755
2367
|
|
|
@@ -1771,18 +2383,32 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false focused 2`]
|
|
|
1771
2383
|
onTouchStart={[Function]}
|
|
1772
2384
|
style={
|
|
1773
2385
|
{
|
|
2386
|
+
":focusVisible": {
|
|
2387
|
+
"borderRadius": 3,
|
|
2388
|
+
"color": "rgba(33,36,44,0.64)",
|
|
2389
|
+
"outline": "1px solid #1865f2",
|
|
2390
|
+
},
|
|
1774
2391
|
"alignItems": "center",
|
|
1775
|
-
"borderRadius": 3,
|
|
1776
2392
|
"color": "rgba(33,36,44,0.64)",
|
|
1777
2393
|
"cursor": "pointer",
|
|
1778
|
-
"
|
|
1779
|
-
"outline": "1px solid #1865f2",
|
|
2394
|
+
"outline": "none",
|
|
1780
2395
|
"textDecoration": "none",
|
|
2396
|
+
"textUnderlineOffset": "3px",
|
|
2397
|
+
"verticalAlign": "bottom",
|
|
1781
2398
|
}
|
|
1782
2399
|
}
|
|
1783
2400
|
tabIndex={0}
|
|
1784
2401
|
>
|
|
1785
|
-
|
|
2402
|
+
<span
|
|
2403
|
+
className=""
|
|
2404
|
+
style={
|
|
2405
|
+
{
|
|
2406
|
+
"verticalAlign": "middle",
|
|
2407
|
+
}
|
|
2408
|
+
}
|
|
2409
|
+
>
|
|
2410
|
+
Click me
|
|
2411
|
+
</span>
|
|
1786
2412
|
</a>
|
|
1787
2413
|
`;
|
|
1788
2414
|
|
|
@@ -1807,14 +2433,24 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false hovered 1`]
|
|
|
1807
2433
|
"alignItems": "center",
|
|
1808
2434
|
"color": "#21242c",
|
|
1809
2435
|
"cursor": "pointer",
|
|
1810
|
-
"display": "inline-flex",
|
|
1811
2436
|
"outline": "none",
|
|
1812
2437
|
"textDecoration": "underline currentcolor solid",
|
|
2438
|
+
"textUnderlineOffset": "3px",
|
|
2439
|
+
"verticalAlign": "bottom",
|
|
1813
2440
|
}
|
|
1814
2441
|
}
|
|
1815
2442
|
tabIndex={0}
|
|
1816
2443
|
>
|
|
1817
|
-
|
|
2444
|
+
<span
|
|
2445
|
+
className=""
|
|
2446
|
+
style={
|
|
2447
|
+
{
|
|
2448
|
+
"verticalAlign": "middle",
|
|
2449
|
+
}
|
|
2450
|
+
}
|
|
2451
|
+
>
|
|
2452
|
+
Click me
|
|
2453
|
+
</span>
|
|
1818
2454
|
</a>
|
|
1819
2455
|
`;
|
|
1820
2456
|
|
|
@@ -1839,14 +2475,24 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false hovered 2`]
|
|
|
1839
2475
|
"alignItems": "center",
|
|
1840
2476
|
"color": "rgba(33,36,44,0.64)",
|
|
1841
2477
|
"cursor": "pointer",
|
|
1842
|
-
"display": "inline-flex",
|
|
1843
2478
|
"outline": "none",
|
|
1844
2479
|
"textDecoration": "underline currentcolor solid",
|
|
2480
|
+
"textUnderlineOffset": "3px",
|
|
2481
|
+
"verticalAlign": "bottom",
|
|
1845
2482
|
}
|
|
1846
2483
|
}
|
|
1847
2484
|
tabIndex={0}
|
|
1848
2485
|
>
|
|
1849
|
-
|
|
2486
|
+
<span
|
|
2487
|
+
className=""
|
|
2488
|
+
style={
|
|
2489
|
+
{
|
|
2490
|
+
"verticalAlign": "middle",
|
|
2491
|
+
}
|
|
2492
|
+
}
|
|
2493
|
+
>
|
|
2494
|
+
Click me
|
|
2495
|
+
</span>
|
|
1850
2496
|
</a>
|
|
1851
2497
|
`;
|
|
1852
2498
|
|
|
@@ -1871,14 +2517,24 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false pressed 1`]
|
|
|
1871
2517
|
"alignItems": "center",
|
|
1872
2518
|
"color": "#1b50b3",
|
|
1873
2519
|
"cursor": "pointer",
|
|
1874
|
-
"display": "inline-flex",
|
|
1875
2520
|
"outline": "none",
|
|
1876
2521
|
"textDecoration": "underline currentcolor solid",
|
|
2522
|
+
"textUnderlineOffset": "3px",
|
|
2523
|
+
"verticalAlign": "bottom",
|
|
1877
2524
|
}
|
|
1878
2525
|
}
|
|
1879
2526
|
tabIndex={0}
|
|
1880
2527
|
>
|
|
1881
|
-
|
|
2528
|
+
<span
|
|
2529
|
+
className=""
|
|
2530
|
+
style={
|
|
2531
|
+
{
|
|
2532
|
+
"verticalAlign": "middle",
|
|
2533
|
+
}
|
|
2534
|
+
}
|
|
2535
|
+
>
|
|
2536
|
+
Click me
|
|
2537
|
+
</span>
|
|
1882
2538
|
</a>
|
|
1883
2539
|
`;
|
|
1884
2540
|
|
|
@@ -1903,14 +2559,24 @@ exports[`LinkCore kind:secondary href:# light:false visitable:false pressed 2`]
|
|
|
1903
2559
|
"alignItems": "center",
|
|
1904
2560
|
"color": "#21242c",
|
|
1905
2561
|
"cursor": "pointer",
|
|
1906
|
-
"display": "inline-flex",
|
|
1907
2562
|
"outline": "none",
|
|
1908
2563
|
"textDecoration": "underline currentcolor solid",
|
|
2564
|
+
"textUnderlineOffset": "3px",
|
|
2565
|
+
"verticalAlign": "bottom",
|
|
1909
2566
|
}
|
|
1910
2567
|
}
|
|
1911
2568
|
tabIndex={0}
|
|
1912
2569
|
>
|
|
1913
|
-
|
|
2570
|
+
<span
|
|
2571
|
+
className=""
|
|
2572
|
+
style={
|
|
2573
|
+
{
|
|
2574
|
+
"verticalAlign": "middle",
|
|
2575
|
+
}
|
|
2576
|
+
}
|
|
2577
|
+
>
|
|
2578
|
+
Click me
|
|
2579
|
+
</span>
|
|
1914
2580
|
</a>
|
|
1915
2581
|
`;
|
|
1916
2582
|
|
|
@@ -1932,18 +2598,32 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
1932
2598
|
onTouchStart={[Function]}
|
|
1933
2599
|
style={
|
|
1934
2600
|
{
|
|
2601
|
+
":focusVisible": {
|
|
2602
|
+
"borderRadius": 3,
|
|
2603
|
+
"color": "#21242c",
|
|
2604
|
+
"outline": "1px solid #1865f2",
|
|
2605
|
+
},
|
|
1935
2606
|
"alignItems": "center",
|
|
1936
|
-
"borderRadius": 3,
|
|
1937
2607
|
"color": "#21242c",
|
|
1938
2608
|
"cursor": "pointer",
|
|
1939
|
-
"
|
|
1940
|
-
"
|
|
1941
|
-
"
|
|
2609
|
+
"outline": "none",
|
|
2610
|
+
"textDecoration": "underline currentcolor solid",
|
|
2611
|
+
"textUnderlineOffset": "3px",
|
|
2612
|
+
"verticalAlign": "bottom",
|
|
1942
2613
|
}
|
|
1943
2614
|
}
|
|
1944
2615
|
tabIndex={0}
|
|
1945
2616
|
>
|
|
1946
|
-
|
|
2617
|
+
<span
|
|
2618
|
+
className=""
|
|
2619
|
+
style={
|
|
2620
|
+
{
|
|
2621
|
+
"verticalAlign": "middle",
|
|
2622
|
+
}
|
|
2623
|
+
}
|
|
2624
|
+
>
|
|
2625
|
+
Click me
|
|
2626
|
+
</span>
|
|
1947
2627
|
</a>
|
|
1948
2628
|
`;
|
|
1949
2629
|
|
|
@@ -1965,18 +2645,32 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
1965
2645
|
onTouchStart={[Function]}
|
|
1966
2646
|
style={
|
|
1967
2647
|
{
|
|
2648
|
+
":focusVisible": {
|
|
2649
|
+
"borderRadius": 3,
|
|
2650
|
+
"color": "rgba(33,36,44,0.64)",
|
|
2651
|
+
"outline": "1px solid #1865f2",
|
|
2652
|
+
},
|
|
1968
2653
|
"alignItems": "center",
|
|
1969
|
-
"borderRadius": 3,
|
|
1970
2654
|
"color": "rgba(33,36,44,0.64)",
|
|
1971
2655
|
"cursor": "pointer",
|
|
1972
|
-
"
|
|
1973
|
-
"outline": "1px solid #1865f2",
|
|
2656
|
+
"outline": "none",
|
|
1974
2657
|
"textDecoration": "none",
|
|
2658
|
+
"textUnderlineOffset": "3px",
|
|
2659
|
+
"verticalAlign": "bottom",
|
|
1975
2660
|
}
|
|
1976
2661
|
}
|
|
1977
2662
|
tabIndex={0}
|
|
1978
2663
|
>
|
|
1979
|
-
|
|
2664
|
+
<span
|
|
2665
|
+
className=""
|
|
2666
|
+
style={
|
|
2667
|
+
{
|
|
2668
|
+
"verticalAlign": "middle",
|
|
2669
|
+
}
|
|
2670
|
+
}
|
|
2671
|
+
>
|
|
2672
|
+
Click me
|
|
2673
|
+
</span>
|
|
1980
2674
|
</a>
|
|
1981
2675
|
`;
|
|
1982
2676
|
|
|
@@ -2001,14 +2695,24 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2001
2695
|
"alignItems": "center",
|
|
2002
2696
|
"color": "#21242c",
|
|
2003
2697
|
"cursor": "pointer",
|
|
2004
|
-
"display": "inline-flex",
|
|
2005
2698
|
"outline": "none",
|
|
2006
2699
|
"textDecoration": "underline currentcolor solid",
|
|
2700
|
+
"textUnderlineOffset": "3px",
|
|
2701
|
+
"verticalAlign": "bottom",
|
|
2007
2702
|
}
|
|
2008
2703
|
}
|
|
2009
2704
|
tabIndex={0}
|
|
2010
2705
|
>
|
|
2011
|
-
|
|
2706
|
+
<span
|
|
2707
|
+
className=""
|
|
2708
|
+
style={
|
|
2709
|
+
{
|
|
2710
|
+
"verticalAlign": "middle",
|
|
2711
|
+
}
|
|
2712
|
+
}
|
|
2713
|
+
>
|
|
2714
|
+
Click me
|
|
2715
|
+
</span>
|
|
2012
2716
|
</a>
|
|
2013
2717
|
`;
|
|
2014
2718
|
|
|
@@ -2033,14 +2737,24 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2033
2737
|
"alignItems": "center",
|
|
2034
2738
|
"color": "rgba(33,36,44,0.64)",
|
|
2035
2739
|
"cursor": "pointer",
|
|
2036
|
-
"display": "inline-flex",
|
|
2037
2740
|
"outline": "none",
|
|
2038
2741
|
"textDecoration": "underline currentcolor solid",
|
|
2742
|
+
"textUnderlineOffset": "3px",
|
|
2743
|
+
"verticalAlign": "bottom",
|
|
2039
2744
|
}
|
|
2040
2745
|
}
|
|
2041
2746
|
tabIndex={0}
|
|
2042
2747
|
>
|
|
2043
|
-
|
|
2748
|
+
<span
|
|
2749
|
+
className=""
|
|
2750
|
+
style={
|
|
2751
|
+
{
|
|
2752
|
+
"verticalAlign": "middle",
|
|
2753
|
+
}
|
|
2754
|
+
}
|
|
2755
|
+
>
|
|
2756
|
+
Click me
|
|
2757
|
+
</span>
|
|
2044
2758
|
</a>
|
|
2045
2759
|
`;
|
|
2046
2760
|
|
|
@@ -2065,14 +2779,24 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2065
2779
|
"alignItems": "center",
|
|
2066
2780
|
"color": "#1b50b3",
|
|
2067
2781
|
"cursor": "pointer",
|
|
2068
|
-
"display": "inline-flex",
|
|
2069
2782
|
"outline": "none",
|
|
2070
2783
|
"textDecoration": "underline currentcolor solid",
|
|
2784
|
+
"textUnderlineOffset": "3px",
|
|
2785
|
+
"verticalAlign": "bottom",
|
|
2071
2786
|
}
|
|
2072
2787
|
}
|
|
2073
2788
|
tabIndex={0}
|
|
2074
2789
|
>
|
|
2075
|
-
|
|
2790
|
+
<span
|
|
2791
|
+
className=""
|
|
2792
|
+
style={
|
|
2793
|
+
{
|
|
2794
|
+
"verticalAlign": "middle",
|
|
2795
|
+
}
|
|
2796
|
+
}
|
|
2797
|
+
>
|
|
2798
|
+
Click me
|
|
2799
|
+
</span>
|
|
2076
2800
|
</a>
|
|
2077
2801
|
`;
|
|
2078
2802
|
|
|
@@ -2097,13 +2821,23 @@ exports[`LinkCore kind:secondary href:#non-existent-link light:false visitable:f
|
|
|
2097
2821
|
"alignItems": "center",
|
|
2098
2822
|
"color": "#21242c",
|
|
2099
2823
|
"cursor": "pointer",
|
|
2100
|
-
"display": "inline-flex",
|
|
2101
2824
|
"outline": "none",
|
|
2102
2825
|
"textDecoration": "underline currentcolor solid",
|
|
2826
|
+
"textUnderlineOffset": "3px",
|
|
2827
|
+
"verticalAlign": "bottom",
|
|
2103
2828
|
}
|
|
2104
2829
|
}
|
|
2105
2830
|
tabIndex={0}
|
|
2106
2831
|
>
|
|
2107
|
-
|
|
2832
|
+
<span
|
|
2833
|
+
className=""
|
|
2834
|
+
style={
|
|
2835
|
+
{
|
|
2836
|
+
"verticalAlign": "middle",
|
|
2837
|
+
}
|
|
2838
|
+
}
|
|
2839
|
+
>
|
|
2840
|
+
Click me
|
|
2841
|
+
</span>
|
|
2108
2842
|
</a>
|
|
2109
2843
|
`;
|