@wordpress/edit-post 6.14.2 → 6.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,106 +1,828 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`KeyboardShortcutHelpModal should match snapshot when the modal is active 1`] = `
4
- <ForwardRef(Modal)
5
- className="edit-post-keyboard-shortcut-help-modal"
6
- closeLabel="Close"
7
- onRequestClose={[Function]}
8
- title="Keyboard shortcuts"
4
+ <div
5
+ aria-labelledby="components-modal-header-0"
6
+ class="components-modal__frame edit-post-keyboard-shortcut-help-modal"
7
+ role="dialog"
8
+ tabindex="-1"
9
9
  >
10
- <ShortcutSection
11
- className="edit-post-keyboard-shortcut-help-modal__main-shortcuts"
12
- shortcuts={
13
- Array [
14
- "core/edit-post/keyboard-shortcuts",
15
- ]
16
- }
17
- />
18
- <ShortcutCategorySection
19
- categoryName="global"
20
- title="Global shortcuts"
21
- />
22
- <ShortcutCategorySection
23
- categoryName="selection"
24
- title="Selection shortcuts"
25
- />
26
- <ShortcutCategorySection
27
- additionalShortcuts={
28
- Array [
29
- Object {
30
- "ariaLabel": "Forward-slash",
31
- "description": "Change the block type after adding a new paragraph.",
32
- "keyCombination": Object {
33
- "character": "/",
34
- },
35
- },
36
- ]
37
- }
38
- categoryName="block"
39
- title="Block shortcuts"
40
- />
41
- <ShortcutSection
42
- shortcuts={
43
- Array [
44
- Object {
45
- "description": "Make the selected text bold.",
46
- "keyCombination": Object {
47
- "character": "b",
48
- "modifier": "primary",
49
- },
50
- },
51
- Object {
52
- "description": "Make the selected text italic.",
53
- "keyCombination": Object {
54
- "character": "i",
55
- "modifier": "primary",
56
- },
57
- },
58
- Object {
59
- "description": "Convert the selected text into a link.",
60
- "keyCombination": Object {
61
- "character": "k",
62
- "modifier": "primary",
63
- },
64
- },
65
- Object {
66
- "description": "Remove a link.",
67
- "keyCombination": Object {
68
- "character": "k",
69
- "modifier": "primaryShift",
70
- },
71
- },
72
- Object {
73
- "description": "Insert a link to a post or page",
74
- "keyCombination": Object {
75
- "character": "[[",
76
- },
77
- },
78
- Object {
79
- "description": "Underline the selected text.",
80
- "keyCombination": Object {
81
- "character": "u",
82
- "modifier": "primary",
83
- },
84
- },
85
- Object {
86
- "description": "Strikethrough the selected text.",
87
- "keyCombination": Object {
88
- "character": "d",
89
- "modifier": "access",
90
- },
91
- },
92
- Object {
93
- "description": "Make the selected text inline code.",
94
- "keyCombination": Object {
95
- "character": "x",
96
- "modifier": "access",
97
- },
98
- },
99
- ]
100
- }
101
- title="Text formatting"
102
- />
103
- </ForwardRef(Modal)>
10
+ <div
11
+ class="components-modal__content"
12
+ role="document"
13
+ >
14
+ <div
15
+ class="components-modal__header"
16
+ >
17
+ <div
18
+ class="components-modal__header-heading-container"
19
+ >
20
+ <h1
21
+ class="components-modal__header-heading"
22
+ id="components-modal-header-0"
23
+ >
24
+ Keyboard shortcuts
25
+ </h1>
26
+ </div>
27
+ <button
28
+ aria-label="Close"
29
+ class="components-button has-icon"
30
+ type="button"
31
+ >
32
+ <svg
33
+ aria-hidden="true"
34
+ focusable="false"
35
+ height="24"
36
+ viewBox="0 0 24 24"
37
+ width="24"
38
+ xmlns="http://www.w3.org/2000/svg"
39
+ >
40
+ <path
41
+ d="M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"
42
+ />
43
+ </svg>
44
+ </button>
45
+ </div>
46
+ <section
47
+ class="edit-post-keyboard-shortcut-help-modal__section edit-post-keyboard-shortcut-help-modal__main-shortcuts"
48
+ >
49
+ <ul
50
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-list"
51
+ role="list"
52
+ >
53
+ <li
54
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
55
+ />
56
+ </ul>
57
+ </section>
58
+ <section
59
+ class="edit-post-keyboard-shortcut-help-modal__section"
60
+ >
61
+ <h2
62
+ class="edit-post-keyboard-shortcut-help-modal__section-title"
63
+ >
64
+ Global shortcuts
65
+ </h2>
66
+ <ul
67
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-list"
68
+ role="list"
69
+ >
70
+ <li
71
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
72
+ >
73
+ <div
74
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
75
+ >
76
+ Navigate to the nearest toolbar.
77
+ </div>
78
+ <div
79
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
80
+ >
81
+ <kbd
82
+ aria-label="Alt + F10"
83
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
84
+ >
85
+ <kbd
86
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
87
+ >
88
+ Alt
89
+ </kbd>
90
+ +
91
+ <kbd
92
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
93
+ >
94
+ F10
95
+ </kbd>
96
+ </kbd>
97
+ </div>
98
+ </li>
99
+ <li
100
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
101
+ >
102
+ <div
103
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
104
+ >
105
+ Save your changes.
106
+ </div>
107
+ <div
108
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
109
+ >
110
+ <kbd
111
+ aria-label="Control + S"
112
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
113
+ >
114
+ <kbd
115
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
116
+ >
117
+ Ctrl
118
+ </kbd>
119
+ +
120
+ <kbd
121
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
122
+ >
123
+ S
124
+ </kbd>
125
+ </kbd>
126
+ </div>
127
+ </li>
128
+ <li
129
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
130
+ >
131
+ <div
132
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
133
+ >
134
+ Undo your last changes.
135
+ </div>
136
+ <div
137
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
138
+ >
139
+ <kbd
140
+ aria-label="Control + Z"
141
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
142
+ >
143
+ <kbd
144
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
145
+ >
146
+ Ctrl
147
+ </kbd>
148
+ +
149
+ <kbd
150
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
151
+ >
152
+ Z
153
+ </kbd>
154
+ </kbd>
155
+ </div>
156
+ </li>
157
+ <li
158
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
159
+ >
160
+ <div
161
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
162
+ >
163
+ Redo your last undo.
164
+ </div>
165
+ <div
166
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
167
+ >
168
+ <kbd
169
+ aria-label="Control + Shift + Z"
170
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
171
+ >
172
+ <kbd
173
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
174
+ >
175
+ Ctrl
176
+ </kbd>
177
+ +
178
+ <kbd
179
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
180
+ >
181
+ Shift
182
+ </kbd>
183
+ +
184
+ <kbd
185
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
186
+ >
187
+ Z
188
+ </kbd>
189
+ </kbd>
190
+ <kbd
191
+ aria-label="Control + Y"
192
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
193
+ >
194
+ <kbd
195
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
196
+ >
197
+ Ctrl
198
+ </kbd>
199
+ +
200
+ <kbd
201
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
202
+ >
203
+ Y
204
+ </kbd>
205
+ </kbd>
206
+ </div>
207
+ </li>
208
+ </ul>
209
+ </section>
210
+ <section
211
+ class="edit-post-keyboard-shortcut-help-modal__section"
212
+ >
213
+ <h2
214
+ class="edit-post-keyboard-shortcut-help-modal__section-title"
215
+ >
216
+ Selection shortcuts
217
+ </h2>
218
+ <ul
219
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-list"
220
+ role="list"
221
+ >
222
+ <li
223
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
224
+ >
225
+ <div
226
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
227
+ >
228
+ Select all text when typing. Press again to select all blocks.
229
+ </div>
230
+ <div
231
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
232
+ >
233
+ <kbd
234
+ aria-label="Control + A"
235
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
236
+ >
237
+ <kbd
238
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
239
+ >
240
+ Ctrl
241
+ </kbd>
242
+ +
243
+ <kbd
244
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
245
+ >
246
+ A
247
+ </kbd>
248
+ </kbd>
249
+ </div>
250
+ </li>
251
+ <li
252
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
253
+ >
254
+ <div
255
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
256
+ >
257
+ Clear selection.
258
+ </div>
259
+ <div
260
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
261
+ >
262
+ <kbd
263
+ aria-label="escape"
264
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
265
+ >
266
+ <kbd
267
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
268
+ >
269
+ escape
270
+ </kbd>
271
+ </kbd>
272
+ </div>
273
+ </li>
274
+ </ul>
275
+ </section>
276
+ <section
277
+ class="edit-post-keyboard-shortcut-help-modal__section"
278
+ >
279
+ <h2
280
+ class="edit-post-keyboard-shortcut-help-modal__section-title"
281
+ >
282
+ Block shortcuts
283
+ </h2>
284
+ <ul
285
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-list"
286
+ role="list"
287
+ >
288
+ <li
289
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
290
+ >
291
+ <div
292
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
293
+ >
294
+ Duplicate the selected block(s).
295
+ </div>
296
+ <div
297
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
298
+ >
299
+ <kbd
300
+ aria-label="Control + Shift + D"
301
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
302
+ >
303
+ <kbd
304
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
305
+ >
306
+ Ctrl
307
+ </kbd>
308
+ +
309
+ <kbd
310
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
311
+ >
312
+ Shift
313
+ </kbd>
314
+ +
315
+ <kbd
316
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
317
+ >
318
+ D
319
+ </kbd>
320
+ </kbd>
321
+ </div>
322
+ </li>
323
+ <li
324
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
325
+ >
326
+ <div
327
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
328
+ >
329
+ Remove the selected block(s).
330
+ </div>
331
+ <div
332
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
333
+ >
334
+ <kbd
335
+ aria-label="Shift + Alt + Z"
336
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
337
+ >
338
+ <kbd
339
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
340
+ >
341
+ Shift
342
+ </kbd>
343
+ +
344
+ <kbd
345
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
346
+ >
347
+ Alt
348
+ </kbd>
349
+ +
350
+ <kbd
351
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
352
+ >
353
+ Z
354
+ </kbd>
355
+ </kbd>
356
+ </div>
357
+ </li>
358
+ <li
359
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
360
+ >
361
+ <div
362
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
363
+ >
364
+ Insert a new block before the selected block(s).
365
+ </div>
366
+ <div
367
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
368
+ >
369
+ <kbd
370
+ aria-label="Control + Alt + T"
371
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
372
+ >
373
+ <kbd
374
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
375
+ >
376
+ Ctrl
377
+ </kbd>
378
+ +
379
+ <kbd
380
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
381
+ >
382
+ Alt
383
+ </kbd>
384
+ +
385
+ <kbd
386
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
387
+ >
388
+ T
389
+ </kbd>
390
+ </kbd>
391
+ </div>
392
+ </li>
393
+ <li
394
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
395
+ >
396
+ <div
397
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
398
+ >
399
+ Insert a new block after the selected block(s).
400
+ </div>
401
+ <div
402
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
403
+ >
404
+ <kbd
405
+ aria-label="Control + Alt + Y"
406
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
407
+ >
408
+ <kbd
409
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
410
+ >
411
+ Ctrl
412
+ </kbd>
413
+ +
414
+ <kbd
415
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
416
+ >
417
+ Alt
418
+ </kbd>
419
+ +
420
+ <kbd
421
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
422
+ >
423
+ Y
424
+ </kbd>
425
+ </kbd>
426
+ </div>
427
+ </li>
428
+ <li
429
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
430
+ >
431
+ <div
432
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
433
+ >
434
+ Delete selection.
435
+ </div>
436
+ <div
437
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
438
+ >
439
+ <kbd
440
+ aria-label="del"
441
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
442
+ >
443
+ <kbd
444
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
445
+ >
446
+ del
447
+ </kbd>
448
+ </kbd>
449
+ <kbd
450
+ aria-label="backspace"
451
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
452
+ >
453
+ <kbd
454
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
455
+ >
456
+ backspace
457
+ </kbd>
458
+ </kbd>
459
+ </div>
460
+ </li>
461
+ <li
462
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
463
+ >
464
+ <div
465
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
466
+ >
467
+ Move the selected block(s) up.
468
+ </div>
469
+ <div
470
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
471
+ >
472
+ <kbd
473
+ aria-label="Control + Shift + Alt + T"
474
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
475
+ >
476
+ <kbd
477
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
478
+ >
479
+ Ctrl
480
+ </kbd>
481
+ +
482
+ <kbd
483
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
484
+ >
485
+ Shift
486
+ </kbd>
487
+ +
488
+ <kbd
489
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
490
+ >
491
+ Alt
492
+ </kbd>
493
+ +
494
+ <kbd
495
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
496
+ >
497
+ T
498
+ </kbd>
499
+ </kbd>
500
+ </div>
501
+ </li>
502
+ <li
503
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
504
+ >
505
+ <div
506
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
507
+ >
508
+ Move the selected block(s) down.
509
+ </div>
510
+ <div
511
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
512
+ >
513
+ <kbd
514
+ aria-label="Control + Shift + Alt + Y"
515
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
516
+ >
517
+ <kbd
518
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
519
+ >
520
+ Ctrl
521
+ </kbd>
522
+ +
523
+ <kbd
524
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
525
+ >
526
+ Shift
527
+ </kbd>
528
+ +
529
+ <kbd
530
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
531
+ >
532
+ Alt
533
+ </kbd>
534
+ +
535
+ <kbd
536
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
537
+ >
538
+ Y
539
+ </kbd>
540
+ </kbd>
541
+ </div>
542
+ </li>
543
+ <li
544
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
545
+ >
546
+ <div
547
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
548
+ >
549
+ Change the block type after adding a new paragraph.
550
+ </div>
551
+ <div
552
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
553
+ >
554
+ <kbd
555
+ aria-label="Forward-slash"
556
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
557
+ >
558
+ <kbd
559
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
560
+ >
561
+ /
562
+ </kbd>
563
+ </kbd>
564
+ </div>
565
+ </li>
566
+ </ul>
567
+ </section>
568
+ <section
569
+ class="edit-post-keyboard-shortcut-help-modal__section"
570
+ >
571
+ <h2
572
+ class="edit-post-keyboard-shortcut-help-modal__section-title"
573
+ >
574
+ Text formatting
575
+ </h2>
576
+ <ul
577
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-list"
578
+ role="list"
579
+ >
580
+ <li
581
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
582
+ >
583
+ <div
584
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
585
+ >
586
+ Make the selected text bold.
587
+ </div>
588
+ <div
589
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
590
+ >
591
+ <kbd
592
+ aria-label="Control + B"
593
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
594
+ >
595
+ <kbd
596
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
597
+ >
598
+ Ctrl
599
+ </kbd>
600
+ +
601
+ <kbd
602
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
603
+ >
604
+ B
605
+ </kbd>
606
+ </kbd>
607
+ </div>
608
+ </li>
609
+ <li
610
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
611
+ >
612
+ <div
613
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
614
+ >
615
+ Make the selected text italic.
616
+ </div>
617
+ <div
618
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
619
+ >
620
+ <kbd
621
+ aria-label="Control + I"
622
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
623
+ >
624
+ <kbd
625
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
626
+ >
627
+ Ctrl
628
+ </kbd>
629
+ +
630
+ <kbd
631
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
632
+ >
633
+ I
634
+ </kbd>
635
+ </kbd>
636
+ </div>
637
+ </li>
638
+ <li
639
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
640
+ >
641
+ <div
642
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
643
+ >
644
+ Convert the selected text into a link.
645
+ </div>
646
+ <div
647
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
648
+ >
649
+ <kbd
650
+ aria-label="Control + K"
651
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
652
+ >
653
+ <kbd
654
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
655
+ >
656
+ Ctrl
657
+ </kbd>
658
+ +
659
+ <kbd
660
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
661
+ >
662
+ K
663
+ </kbd>
664
+ </kbd>
665
+ </div>
666
+ </li>
667
+ <li
668
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
669
+ >
670
+ <div
671
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
672
+ >
673
+ Remove a link.
674
+ </div>
675
+ <div
676
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
677
+ >
678
+ <kbd
679
+ aria-label="Control + Shift + K"
680
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
681
+ >
682
+ <kbd
683
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
684
+ >
685
+ Ctrl
686
+ </kbd>
687
+ +
688
+ <kbd
689
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
690
+ >
691
+ Shift
692
+ </kbd>
693
+ +
694
+ <kbd
695
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
696
+ >
697
+ K
698
+ </kbd>
699
+ </kbd>
700
+ </div>
701
+ </li>
702
+ <li
703
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
704
+ >
705
+ <div
706
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
707
+ >
708
+ Insert a link to a post or page
709
+ </div>
710
+ <div
711
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
712
+ >
713
+ <kbd
714
+ aria-label="[["
715
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
716
+ >
717
+ <kbd
718
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
719
+ >
720
+ [[
721
+ </kbd>
722
+ </kbd>
723
+ </div>
724
+ </li>
725
+ <li
726
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
727
+ >
728
+ <div
729
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
730
+ >
731
+ Underline the selected text.
732
+ </div>
733
+ <div
734
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
735
+ >
736
+ <kbd
737
+ aria-label="Control + U"
738
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
739
+ >
740
+ <kbd
741
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
742
+ >
743
+ Ctrl
744
+ </kbd>
745
+ +
746
+ <kbd
747
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
748
+ >
749
+ U
750
+ </kbd>
751
+ </kbd>
752
+ </div>
753
+ </li>
754
+ <li
755
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
756
+ >
757
+ <div
758
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
759
+ >
760
+ Strikethrough the selected text.
761
+ </div>
762
+ <div
763
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
764
+ >
765
+ <kbd
766
+ aria-label="Shift + Alt + D"
767
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
768
+ >
769
+ <kbd
770
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
771
+ >
772
+ Shift
773
+ </kbd>
774
+ +
775
+ <kbd
776
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
777
+ >
778
+ Alt
779
+ </kbd>
780
+ +
781
+ <kbd
782
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
783
+ >
784
+ D
785
+ </kbd>
786
+ </kbd>
787
+ </div>
788
+ </li>
789
+ <li
790
+ class="edit-post-keyboard-shortcut-help-modal__shortcut"
791
+ >
792
+ <div
793
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-description"
794
+ >
795
+ Make the selected text inline code.
796
+ </div>
797
+ <div
798
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-term"
799
+ >
800
+ <kbd
801
+ aria-label="Shift + Alt + X"
802
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key-combination"
803
+ >
804
+ <kbd
805
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
806
+ >
807
+ Shift
808
+ </kbd>
809
+ +
810
+ <kbd
811
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
812
+ >
813
+ Alt
814
+ </kbd>
815
+ +
816
+ <kbd
817
+ class="edit-post-keyboard-shortcut-help-modal__shortcut-key"
818
+ >
819
+ X
820
+ </kbd>
821
+ </kbd>
822
+ </div>
823
+ </li>
824
+ </ul>
825
+ </section>
826
+ </div>
827
+ </div>
104
828
  `;
105
-
106
- exports[`KeyboardShortcutHelpModal should match snapshot when the modal is not active 1`] = `""`;