@patternfly/patternfly 4.210.0 → 4.211.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.
Files changed (41) hide show
  1. package/RELEASE-NOTES.md +27 -0
  2. package/components/ExpandableSection/expandable-section.css +3 -0
  3. package/components/ExpandableSection/expandable-section.scss +4 -0
  4. package/components/Masthead/masthead.css +1 -1
  5. package/components/Masthead/masthead.scss +1 -1
  6. package/components/NotificationBadge/notification-badge.css +13 -1
  7. package/components/NotificationBadge/notification-badge.scss +13 -1
  8. package/components/NotificationBadge/themes/dark/notification-badge.scss +2 -0
  9. package/components/Page/page.css +1 -0
  10. package/components/Page/page.scss +1 -0
  11. package/docs/components/Dropdown/examples/Dropdown.md +2 -2
  12. package/docs/components/NotificationBadge/examples/NotificationBadge.md +81 -24
  13. package/docs/components/Tabs/examples/Tabs.md +866 -139
  14. package/docs/demos/AboutModal/examples/AboutModal.md +1 -12
  15. package/docs/demos/Alert/examples/Alert.md +3 -36
  16. package/docs/demos/BackToTop/examples/BackToTop.md +1 -12
  17. package/docs/demos/Banner/examples/Banner.md +2 -24
  18. package/docs/demos/Card/examples/Card.md +15 -3
  19. package/docs/demos/CardView/examples/CardView.md +1 -12
  20. package/docs/demos/ContextSelector/examples/ContextSelector.md +3 -36
  21. package/docs/demos/Dashboard/examples/Dashboard.md +1 -12
  22. package/docs/demos/DataList/examples/DataList.md +4 -48
  23. package/docs/demos/DescriptionList/examples/DescriptionList.md +5 -36
  24. package/docs/demos/Drawer/examples/Drawer.md +7 -60
  25. package/docs/demos/JumpLinks/examples/JumpLinks.md +6 -72
  26. package/docs/demos/Masthead/examples/Masthead.md +2 -24
  27. package/docs/demos/Modal/examples/Modal.md +6 -72
  28. package/docs/demos/Nav/examples/Nav.md +8 -96
  29. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +30 -23
  30. package/docs/demos/Page/examples/Page.md +9 -108
  31. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +19 -85
  32. package/docs/demos/Skeleton/examples/Skeleton.md +1 -12
  33. package/docs/demos/Table/examples/Table.md +14 -168
  34. package/docs/demos/Tabs/examples/Tabs.md +56 -96
  35. package/docs/demos/Toolbar/examples/Toolbar.md +1 -12
  36. package/docs/demos/Wizard/examples/Wizard.md +8 -96
  37. package/package.json +2 -2
  38. package/patternfly-no-reset.css +18 -2
  39. package/patternfly.css +18 -2
  40. package/patternfly.min.css +1 -1
  41. package/patternfly.min.css.map +1 -1
@@ -12,6 +12,7 @@ cssPrefix: pf-c-tabs
12
12
  <div class="pf-c-tabs" id="default-example">
13
13
  <button
14
14
  class="pf-c-tabs__scroll-button"
15
+ type="button"
15
16
  disabled
16
17
  aria-hidden="true"
17
18
  aria-label="Scroll left"
@@ -20,23 +21,36 @@ cssPrefix: pf-c-tabs
20
21
  </button>
21
22
  <ul class="pf-c-tabs__list">
22
23
  <li class="pf-c-tabs__item">
23
- <button class="pf-c-tabs__link" id="default-example-users-link">
24
+ <button
25
+ type="button"
26
+ class="pf-c-tabs__link"
27
+ id="default-example-users-link"
28
+ >
24
29
  <span class="pf-c-tabs__item-text">Users</span>
25
30
  </button>
26
31
  </li>
27
32
  <li class="pf-c-tabs__item pf-m-current">
28
- <button class="pf-c-tabs__link" id="default-example-containers-link">
33
+ <button
34
+ type="button"
35
+ class="pf-c-tabs__link"
36
+ id="default-example-containers-link"
37
+ >
29
38
  <span class="pf-c-tabs__item-text">Containers</span>
30
39
  </button>
31
40
  </li>
32
41
  <li class="pf-c-tabs__item">
33
- <button class="pf-c-tabs__link" id="default-example-database-link">
42
+ <button
43
+ type="button"
44
+ class="pf-c-tabs__link"
45
+ id="default-example-database-link"
46
+ >
34
47
  <span class="pf-c-tabs__item-text">Database</span>
35
48
  </button>
36
49
  </li>
37
50
 
38
51
  <li class="pf-c-tabs__item">
39
52
  <button
53
+ type="button"
40
54
  class="pf-c-tabs__link"
41
55
  disabled
42
56
  id="default-example-disabled-link"
@@ -46,6 +60,7 @@ cssPrefix: pf-c-tabs
46
60
  </li>
47
61
  <li class="pf-c-tabs__item">
48
62
  <button
63
+ type="button"
49
64
  class="pf-c-tabs__link pf-m-aria-disabled"
50
65
  aria-disabled="true"
51
66
  id="default-example-aria-disabled-link"
@@ -54,7 +69,11 @@ cssPrefix: pf-c-tabs
54
69
  </button>
55
70
  </li>
56
71
  <li class="pf-c-tabs__item">
57
- <button class="pf-c-tabs__link" id="default-example-network-wired-link">
72
+ <button
73
+ type="button"
74
+ class="pf-c-tabs__link"
75
+ id="default-example-network-wired-link"
76
+ >
58
77
  <span class="pf-c-tabs__item-text">Network</span>
59
78
  </button>
60
79
  </li>
@@ -62,6 +81,7 @@ cssPrefix: pf-c-tabs
62
81
 
63
82
  <button
64
83
  class="pf-c-tabs__scroll-button"
84
+ type="button"
65
85
  disabled
66
86
  aria-hidden="true"
67
87
  aria-label="Scroll right"
@@ -93,12 +113,18 @@ cssPrefix: pf-c-tabs
93
113
  class="pf-c-tabs pf-m-scrollable"
94
114
  id="default-overflow-beginning-of-list-example"
95
115
  >
96
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
116
+ <button
117
+ class="pf-c-tabs__scroll-button"
118
+ type="button"
119
+ disabled
120
+ aria-label="Scroll left"
121
+ >
97
122
  <i class="fas fa-angle-left" aria-hidden="true"></i>
98
123
  </button>
99
124
  <ul class="pf-c-tabs__list">
100
125
  <li class="pf-c-tabs__item">
101
126
  <button
127
+ type="button"
102
128
  class="pf-c-tabs__link"
103
129
  id="default-overflow-beginning-of-list-example-users-link"
104
130
  >
@@ -107,6 +133,7 @@ cssPrefix: pf-c-tabs
107
133
  </li>
108
134
  <li class="pf-c-tabs__item pf-m-current">
109
135
  <button
136
+ type="button"
110
137
  class="pf-c-tabs__link"
111
138
  id="default-overflow-beginning-of-list-example-containers-link"
112
139
  >
@@ -115,6 +142,7 @@ cssPrefix: pf-c-tabs
115
142
  </li>
116
143
  <li class="pf-c-tabs__item">
117
144
  <button
145
+ type="button"
118
146
  class="pf-c-tabs__link"
119
147
  id="default-overflow-beginning-of-list-example-database-link"
120
148
  >
@@ -124,6 +152,7 @@ cssPrefix: pf-c-tabs
124
152
 
125
153
  <li class="pf-c-tabs__item">
126
154
  <button
155
+ type="button"
127
156
  class="pf-c-tabs__link"
128
157
  id="default-overflow-beginning-of-list-example-server-link"
129
158
  >
@@ -132,6 +161,7 @@ cssPrefix: pf-c-tabs
132
161
  </li>
133
162
  <li class="pf-c-tabs__item">
134
163
  <button
164
+ type="button"
135
165
  class="pf-c-tabs__link"
136
166
  id="default-overflow-beginning-of-list-example-system-link"
137
167
  >
@@ -140,6 +170,7 @@ cssPrefix: pf-c-tabs
140
170
  </li>
141
171
  <li class="pf-c-tabs__item">
142
172
  <button
173
+ type="button"
143
174
  class="pf-c-tabs__link"
144
175
  id="default-overflow-beginning-of-list-example-network-wired-link"
145
176
  >
@@ -148,6 +179,7 @@ cssPrefix: pf-c-tabs
148
179
  </li>
149
180
  <li class="pf-c-tabs__item">
150
181
  <button
182
+ type="button"
151
183
  class="pf-c-tabs__link"
152
184
  id="default-overflow-beginning-of-list-example-cloud-link"
153
185
  >
@@ -156,6 +188,7 @@ cssPrefix: pf-c-tabs
156
188
  </li>
157
189
  <li class="pf-c-tabs__item">
158
190
  <button
191
+ type="button"
159
192
  class="pf-c-tabs__link"
160
193
  id="default-overflow-beginning-of-list-example-automation-link"
161
194
  >
@@ -164,6 +197,7 @@ cssPrefix: pf-c-tabs
164
197
  </li>
165
198
  <li class="pf-c-tabs__item">
166
199
  <button
200
+ type="button"
167
201
  class="pf-c-tabs__link"
168
202
  id="default-overflow-beginning-of-list-example-files-link"
169
203
  >
@@ -172,7 +206,11 @@ cssPrefix: pf-c-tabs
172
206
  </li>
173
207
  </ul>
174
208
 
175
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
209
+ <button
210
+ class="pf-c-tabs__scroll-button"
211
+ type="button"
212
+ aria-label="Scroll right"
213
+ >
176
214
  <i class="fas fa-angle-right" aria-hidden="true"></i>
177
215
  </button>
178
216
  </div>
@@ -200,6 +238,7 @@ cssPrefix: pf-c-tabs
200
238
  <ul class="pf-c-tabs__list">
201
239
  <li class="pf-c-tabs__item">
202
240
  <button
241
+ type="button"
203
242
  class="pf-c-tabs__link"
204
243
  id="horizontal-overflow-example-users-link"
205
244
  >
@@ -208,6 +247,7 @@ cssPrefix: pf-c-tabs
208
247
  </li>
209
248
  <li class="pf-c-tabs__item pf-m-current">
210
249
  <button
250
+ type="button"
211
251
  class="pf-c-tabs__link"
212
252
  id="horizontal-overflow-example-containers-link"
213
253
  >
@@ -216,6 +256,7 @@ cssPrefix: pf-c-tabs
216
256
  </li>
217
257
  <li class="pf-c-tabs__item">
218
258
  <button
259
+ type="button"
219
260
  class="pf-c-tabs__link"
220
261
  id="horizontal-overflow-example-database-link"
221
262
  >
@@ -225,6 +266,7 @@ cssPrefix: pf-c-tabs
225
266
 
226
267
  <li class="pf-c-tabs__item">
227
268
  <button
269
+ type="button"
228
270
  class="pf-c-tabs__link"
229
271
  id="horizontal-overflow-example-server-link"
230
272
  >
@@ -233,6 +275,7 @@ cssPrefix: pf-c-tabs
233
275
  </li>
234
276
  <li class="pf-c-tabs__item">
235
277
  <button
278
+ type="button"
236
279
  class="pf-c-tabs__link"
237
280
  id="horizontal-overflow-example-system-link"
238
281
  >
@@ -241,6 +284,7 @@ cssPrefix: pf-c-tabs
241
284
  </li>
242
285
  <li class="pf-c-tabs__item">
243
286
  <button
287
+ type="button"
244
288
  class="pf-c-tabs__link"
245
289
  id="horizontal-overflow-example-network-wired-link"
246
290
  >
@@ -249,6 +293,7 @@ cssPrefix: pf-c-tabs
249
293
  </li>
250
294
  <li class="pf-c-tabs__item pf-m-overflow">
251
295
  <button
296
+ type="button"
252
297
  class="pf-c-tabs__link"
253
298
  id="horizontal-overflow-example-more-link"
254
299
  >
@@ -270,6 +315,7 @@ cssPrefix: pf-c-tabs
270
315
  <ul class="pf-c-tabs__list">
271
316
  <li class="pf-c-tabs__item">
272
317
  <button
318
+ type="button"
273
319
  class="pf-c-tabs__link"
274
320
  id="horizontal-overflow-expanded-example-users-link"
275
321
  >
@@ -278,6 +324,7 @@ cssPrefix: pf-c-tabs
278
324
  </li>
279
325
  <li class="pf-c-tabs__item pf-m-current">
280
326
  <button
327
+ type="button"
281
328
  class="pf-c-tabs__link"
282
329
  id="horizontal-overflow-expanded-example-containers-link"
283
330
  >
@@ -286,6 +333,7 @@ cssPrefix: pf-c-tabs
286
333
  </li>
287
334
  <li class="pf-c-tabs__item">
288
335
  <button
336
+ type="button"
289
337
  class="pf-c-tabs__link"
290
338
  id="horizontal-overflow-expanded-example-database-link"
291
339
  >
@@ -295,6 +343,7 @@ cssPrefix: pf-c-tabs
295
343
 
296
344
  <li class="pf-c-tabs__item">
297
345
  <button
346
+ type="button"
298
347
  class="pf-c-tabs__link"
299
348
  id="horizontal-overflow-expanded-example-server-link"
300
349
  >
@@ -303,6 +352,7 @@ cssPrefix: pf-c-tabs
303
352
  </li>
304
353
  <li class="pf-c-tabs__item">
305
354
  <button
355
+ type="button"
306
356
  class="pf-c-tabs__link"
307
357
  id="horizontal-overflow-expanded-example-system-link"
308
358
  >
@@ -311,6 +361,7 @@ cssPrefix: pf-c-tabs
311
361
  </li>
312
362
  <li class="pf-c-tabs__item">
313
363
  <button
364
+ type="button"
314
365
  class="pf-c-tabs__link"
315
366
  id="horizontal-overflow-expanded-example-network-wired-link"
316
367
  >
@@ -319,6 +370,7 @@ cssPrefix: pf-c-tabs
319
370
  </li>
320
371
  <li class="pf-c-tabs__item pf-m-overflow">
321
372
  <button
373
+ type="button"
322
374
  class="pf-c-tabs__link pf-m-expanded"
323
375
  aria-expanded="true"
324
376
  id="horizontal-overflow-expanded-example-more-link"
@@ -341,6 +393,7 @@ cssPrefix: pf-c-tabs
341
393
  <ul class="pf-c-tabs__list">
342
394
  <li class="pf-c-tabs__item">
343
395
  <button
396
+ type="button"
344
397
  class="pf-c-tabs__link"
345
398
  id="horizontal-overflow-selected-example-users-link"
346
399
  >
@@ -349,6 +402,7 @@ cssPrefix: pf-c-tabs
349
402
  </li>
350
403
  <li class="pf-c-tabs__item">
351
404
  <button
405
+ type="button"
352
406
  class="pf-c-tabs__link"
353
407
  id="horizontal-overflow-selected-example-containers-link"
354
408
  >
@@ -357,6 +411,7 @@ cssPrefix: pf-c-tabs
357
411
  </li>
358
412
  <li class="pf-c-tabs__item">
359
413
  <button
414
+ type="button"
360
415
  class="pf-c-tabs__link"
361
416
  id="horizontal-overflow-selected-example-database-link"
362
417
  >
@@ -366,6 +421,7 @@ cssPrefix: pf-c-tabs
366
421
 
367
422
  <li class="pf-c-tabs__item">
368
423
  <button
424
+ type="button"
369
425
  class="pf-c-tabs__link"
370
426
  id="horizontal-overflow-selected-example-server-link"
371
427
  >
@@ -374,6 +430,7 @@ cssPrefix: pf-c-tabs
374
430
  </li>
375
431
  <li class="pf-c-tabs__item">
376
432
  <button
433
+ type="button"
377
434
  class="pf-c-tabs__link"
378
435
  id="horizontal-overflow-selected-example-system-link"
379
436
  >
@@ -382,6 +439,7 @@ cssPrefix: pf-c-tabs
382
439
  </li>
383
440
  <li class="pf-c-tabs__item">
384
441
  <button
442
+ type="button"
385
443
  class="pf-c-tabs__link"
386
444
  id="horizontal-overflow-selected-example-network-wired-link"
387
445
  >
@@ -390,6 +448,7 @@ cssPrefix: pf-c-tabs
390
448
  </li>
391
449
  <li class="pf-c-tabs__item pf-m-current pf-m-overflow">
392
450
  <button
451
+ type="button"
393
452
  class="pf-c-tabs__link"
394
453
  id="horizontal-overflow-selected-example-more-link"
395
454
  >
@@ -410,23 +469,36 @@ cssPrefix: pf-c-tabs
410
469
  <div class="pf-c-tabs pf-m-vertical" id="vertical-example">
411
470
  <ul class="pf-c-tabs__list">
412
471
  <li class="pf-c-tabs__item">
413
- <button class="pf-c-tabs__link" id="vertical-example-users-link">
472
+ <button
473
+ type="button"
474
+ class="pf-c-tabs__link"
475
+ id="vertical-example-users-link"
476
+ >
414
477
  <span class="pf-c-tabs__item-text">Users</span>
415
478
  </button>
416
479
  </li>
417
480
  <li class="pf-c-tabs__item pf-m-current">
418
- <button class="pf-c-tabs__link" id="vertical-example-containers-link">
481
+ <button
482
+ type="button"
483
+ class="pf-c-tabs__link"
484
+ id="vertical-example-containers-link"
485
+ >
419
486
  <span class="pf-c-tabs__item-text">Containers</span>
420
487
  </button>
421
488
  </li>
422
489
  <li class="pf-c-tabs__item">
423
- <button class="pf-c-tabs__link" id="vertical-example-database-link">
490
+ <button
491
+ type="button"
492
+ class="pf-c-tabs__link"
493
+ id="vertical-example-database-link"
494
+ >
424
495
  <span class="pf-c-tabs__item-text">Database</span>
425
496
  </button>
426
497
  </li>
427
498
 
428
499
  <li class="pf-c-tabs__item">
429
500
  <button
501
+ type="button"
430
502
  class="pf-c-tabs__link"
431
503
  disabled
432
504
  id="vertical-example-disabled-link"
@@ -436,6 +508,7 @@ cssPrefix: pf-c-tabs
436
508
  </li>
437
509
  <li class="pf-c-tabs__item">
438
510
  <button
511
+ type="button"
439
512
  class="pf-c-tabs__link pf-m-aria-disabled"
440
513
  aria-disabled="true"
441
514
  id="vertical-example-aria-disabled-link"
@@ -444,7 +517,11 @@ cssPrefix: pf-c-tabs
444
517
  </button>
445
518
  </li>
446
519
  <li class="pf-c-tabs__item">
447
- <button class="pf-c-tabs__link" id="vertical-example-network-wired-link">
520
+ <button
521
+ type="button"
522
+ class="pf-c-tabs__link"
523
+ id="vertical-example-network-wired-link"
524
+ >
448
525
  <span class="pf-c-tabs__item-text">Network</span>
449
526
  </button>
450
527
  </li>
@@ -459,6 +536,7 @@ cssPrefix: pf-c-tabs
459
536
  <div class="pf-c-tabs pf-m-box" id="box-example">
460
537
  <button
461
538
  class="pf-c-tabs__scroll-button"
539
+ type="button"
462
540
  disabled
463
541
  aria-hidden="true"
464
542
  aria-label="Scroll left"
@@ -467,28 +545,42 @@ cssPrefix: pf-c-tabs
467
545
  </button>
468
546
  <ul class="pf-c-tabs__list">
469
547
  <li class="pf-c-tabs__item">
470
- <button class="pf-c-tabs__link" id="box-example-users-link">
548
+ <button type="button" class="pf-c-tabs__link" id="box-example-users-link">
471
549
  <span class="pf-c-tabs__item-text">Users</span>
472
550
  </button>
473
551
  </li>
474
552
  <li class="pf-c-tabs__item pf-m-current">
475
- <button class="pf-c-tabs__link" id="box-example-containers-link">
553
+ <button
554
+ type="button"
555
+ class="pf-c-tabs__link"
556
+ id="box-example-containers-link"
557
+ >
476
558
  <span class="pf-c-tabs__item-text">Containers</span>
477
559
  </button>
478
560
  </li>
479
561
  <li class="pf-c-tabs__item">
480
- <button class="pf-c-tabs__link" id="box-example-database-link">
562
+ <button
563
+ type="button"
564
+ class="pf-c-tabs__link"
565
+ id="box-example-database-link"
566
+ >
481
567
  <span class="pf-c-tabs__item-text">Database</span>
482
568
  </button>
483
569
  </li>
484
570
 
485
571
  <li class="pf-c-tabs__item">
486
- <button class="pf-c-tabs__link" disabled id="box-example-disabled-link">
572
+ <button
573
+ type="button"
574
+ class="pf-c-tabs__link"
575
+ disabled
576
+ id="box-example-disabled-link"
577
+ >
487
578
  <span class="pf-c-tabs__item-text">Disabled</span>
488
579
  </button>
489
580
  </li>
490
581
  <li class="pf-c-tabs__item">
491
582
  <button
583
+ type="button"
492
584
  class="pf-c-tabs__link pf-m-aria-disabled"
493
585
  aria-disabled="true"
494
586
  id="box-example-aria-disabled-link"
@@ -497,7 +589,11 @@ cssPrefix: pf-c-tabs
497
589
  </button>
498
590
  </li>
499
591
  <li class="pf-c-tabs__item">
500
- <button class="pf-c-tabs__link" id="box-example-network-wired-link">
592
+ <button
593
+ type="button"
594
+ class="pf-c-tabs__link"
595
+ id="box-example-network-wired-link"
596
+ >
501
597
  <span class="pf-c-tabs__item-text">Network</span>
502
598
  </button>
503
599
  </li>
@@ -505,6 +601,7 @@ cssPrefix: pf-c-tabs
505
601
 
506
602
  <button
507
603
  class="pf-c-tabs__scroll-button"
604
+ type="button"
508
605
  disabled
509
606
  aria-hidden="true"
510
607
  aria-label="Scroll right"
@@ -519,38 +616,64 @@ cssPrefix: pf-c-tabs
519
616
 
520
617
  ```html
521
618
  <div class="pf-c-tabs pf-m-box pf-m-scrollable" id="box-overflow-example">
522
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
619
+ <button
620
+ class="pf-c-tabs__scroll-button"
621
+ type="button"
622
+ disabled
623
+ aria-label="Scroll left"
624
+ >
523
625
  <i class="fas fa-angle-left" aria-hidden="true"></i>
524
626
  </button>
525
627
  <ul class="pf-c-tabs__list">
526
628
  <li class="pf-c-tabs__item">
527
- <button class="pf-c-tabs__link" id="box-overflow-example-users-link">
629
+ <button
630
+ type="button"
631
+ class="pf-c-tabs__link"
632
+ id="box-overflow-example-users-link"
633
+ >
528
634
  <span class="pf-c-tabs__item-text">Users</span>
529
635
  </button>
530
636
  </li>
531
637
  <li class="pf-c-tabs__item pf-m-current">
532
- <button class="pf-c-tabs__link" id="box-overflow-example-containers-link">
638
+ <button
639
+ type="button"
640
+ class="pf-c-tabs__link"
641
+ id="box-overflow-example-containers-link"
642
+ >
533
643
  <span class="pf-c-tabs__item-text">Containers</span>
534
644
  </button>
535
645
  </li>
536
646
  <li class="pf-c-tabs__item">
537
- <button class="pf-c-tabs__link" id="box-overflow-example-database-link">
647
+ <button
648
+ type="button"
649
+ class="pf-c-tabs__link"
650
+ id="box-overflow-example-database-link"
651
+ >
538
652
  <span class="pf-c-tabs__item-text">Database</span>
539
653
  </button>
540
654
  </li>
541
655
 
542
656
  <li class="pf-c-tabs__item">
543
- <button class="pf-c-tabs__link" id="box-overflow-example-server-link">
657
+ <button
658
+ type="button"
659
+ class="pf-c-tabs__link"
660
+ id="box-overflow-example-server-link"
661
+ >
544
662
  <span class="pf-c-tabs__item-text">Server</span>
545
663
  </button>
546
664
  </li>
547
665
  <li class="pf-c-tabs__item">
548
- <button class="pf-c-tabs__link" id="box-overflow-example-system-link">
666
+ <button
667
+ type="button"
668
+ class="pf-c-tabs__link"
669
+ id="box-overflow-example-system-link"
670
+ >
549
671
  <span class="pf-c-tabs__item-text">System</span>
550
672
  </button>
551
673
  </li>
552
674
  <li class="pf-c-tabs__item">
553
675
  <button
676
+ type="button"
554
677
  class="pf-c-tabs__link"
555
678
  id="box-overflow-example-network-wired-link"
556
679
  >
@@ -558,23 +681,39 @@ cssPrefix: pf-c-tabs
558
681
  </button>
559
682
  </li>
560
683
  <li class="pf-c-tabs__item">
561
- <button class="pf-c-tabs__link" id="box-overflow-example-cloud-link">
684
+ <button
685
+ type="button"
686
+ class="pf-c-tabs__link"
687
+ id="box-overflow-example-cloud-link"
688
+ >
562
689
  <span class="pf-c-tabs__item-text">Hybrid Cloud</span>
563
690
  </button>
564
691
  </li>
565
692
  <li class="pf-c-tabs__item">
566
- <button class="pf-c-tabs__link" id="box-overflow-example-automation-link">
693
+ <button
694
+ type="button"
695
+ class="pf-c-tabs__link"
696
+ id="box-overflow-example-automation-link"
697
+ >
567
698
  <span class="pf-c-tabs__item-text">Automation</span>
568
699
  </button>
569
700
  </li>
570
701
  <li class="pf-c-tabs__item">
571
- <button class="pf-c-tabs__link" id="box-overflow-example-files-link">
702
+ <button
703
+ type="button"
704
+ class="pf-c-tabs__link"
705
+ id="box-overflow-example-files-link"
706
+ >
572
707
  <span class="pf-c-tabs__item-text">Files</span>
573
708
  </button>
574
709
  </li>
575
710
  </ul>
576
711
 
577
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
712
+ <button
713
+ class="pf-c-tabs__scroll-button"
714
+ type="button"
715
+ aria-label="Scroll right"
716
+ >
578
717
  <i class="fas fa-angle-right" aria-hidden="true"></i>
579
718
  </button>
580
719
  </div>
@@ -587,23 +726,36 @@ cssPrefix: pf-c-tabs
587
726
  <div class="pf-c-tabs pf-m-box pf-m-vertical" id="box-vertical-example">
588
727
  <ul class="pf-c-tabs__list">
589
728
  <li class="pf-c-tabs__item">
590
- <button class="pf-c-tabs__link" id="box-vertical-example-users-link">
729
+ <button
730
+ type="button"
731
+ class="pf-c-tabs__link"
732
+ id="box-vertical-example-users-link"
733
+ >
591
734
  <span class="pf-c-tabs__item-text">Users</span>
592
735
  </button>
593
736
  </li>
594
737
  <li class="pf-c-tabs__item pf-m-current">
595
- <button class="pf-c-tabs__link" id="box-vertical-example-containers-link">
738
+ <button
739
+ type="button"
740
+ class="pf-c-tabs__link"
741
+ id="box-vertical-example-containers-link"
742
+ >
596
743
  <span class="pf-c-tabs__item-text">Containers</span>
597
744
  </button>
598
745
  </li>
599
746
  <li class="pf-c-tabs__item">
600
- <button class="pf-c-tabs__link" id="box-vertical-example-database-link">
747
+ <button
748
+ type="button"
749
+ class="pf-c-tabs__link"
750
+ id="box-vertical-example-database-link"
751
+ >
601
752
  <span class="pf-c-tabs__item-text">Database</span>
602
753
  </button>
603
754
  </li>
604
755
 
605
756
  <li class="pf-c-tabs__item">
606
757
  <button
758
+ type="button"
607
759
  class="pf-c-tabs__link"
608
760
  disabled
609
761
  id="box-vertical-example-disabled-link"
@@ -613,6 +765,7 @@ cssPrefix: pf-c-tabs
613
765
  </li>
614
766
  <li class="pf-c-tabs__item">
615
767
  <button
768
+ type="button"
616
769
  class="pf-c-tabs__link pf-m-aria-disabled"
617
770
  aria-disabled="true"
618
771
  id="box-vertical-example-aria-disabled-link"
@@ -622,6 +775,7 @@ cssPrefix: pf-c-tabs
622
775
  </li>
623
776
  <li class="pf-c-tabs__item">
624
777
  <button
778
+ type="button"
625
779
  class="pf-c-tabs__link"
626
780
  id="box-vertical-example-network-wired-link"
627
781
  >
@@ -642,6 +796,7 @@ cssPrefix: pf-c-tabs
642
796
  >
643
797
  <button
644
798
  class="pf-c-tabs__scroll-button"
799
+ type="button"
645
800
  disabled
646
801
  aria-hidden="true"
647
802
  aria-label="Scroll left"
@@ -650,12 +805,17 @@ cssPrefix: pf-c-tabs
650
805
  </button>
651
806
  <ul class="pf-c-tabs__list">
652
807
  <li class="pf-c-tabs__item">
653
- <button class="pf-c-tabs__link" id="box-tabs-alt-color-scheme-users-link">
808
+ <button
809
+ type="button"
810
+ class="pf-c-tabs__link"
811
+ id="box-tabs-alt-color-scheme-users-link"
812
+ >
654
813
  <span class="pf-c-tabs__item-text">Users</span>
655
814
  </button>
656
815
  </li>
657
816
  <li class="pf-c-tabs__item pf-m-current">
658
817
  <button
818
+ type="button"
659
819
  class="pf-c-tabs__link"
660
820
  id="box-tabs-alt-color-scheme-containers-link"
661
821
  >
@@ -664,6 +824,7 @@ cssPrefix: pf-c-tabs
664
824
  </li>
665
825
  <li class="pf-c-tabs__item">
666
826
  <button
827
+ type="button"
667
828
  class="pf-c-tabs__link"
668
829
  id="box-tabs-alt-color-scheme-database-link"
669
830
  >
@@ -673,6 +834,7 @@ cssPrefix: pf-c-tabs
673
834
 
674
835
  <li class="pf-c-tabs__item">
675
836
  <button
837
+ type="button"
676
838
  class="pf-c-tabs__link"
677
839
  disabled
678
840
  id="box-tabs-alt-color-scheme-disabled-link"
@@ -682,6 +844,7 @@ cssPrefix: pf-c-tabs
682
844
  </li>
683
845
  <li class="pf-c-tabs__item">
684
846
  <button
847
+ type="button"
685
848
  class="pf-c-tabs__link pf-m-aria-disabled"
686
849
  aria-disabled="true"
687
850
  id="box-tabs-alt-color-scheme-aria-disabled-link"
@@ -691,6 +854,7 @@ cssPrefix: pf-c-tabs
691
854
  </li>
692
855
  <li class="pf-c-tabs__item">
693
856
  <button
857
+ type="button"
694
858
  class="pf-c-tabs__link"
695
859
  id="box-tabs-alt-color-scheme-network-wired-link"
696
860
  >
@@ -701,6 +865,7 @@ cssPrefix: pf-c-tabs
701
865
 
702
866
  <button
703
867
  class="pf-c-tabs__scroll-button"
868
+ type="button"
704
869
  disabled
705
870
  aria-hidden="true"
706
871
  aria-label="Scroll right"
@@ -721,6 +886,7 @@ cssPrefix: pf-c-tabs
721
886
  >
722
887
  <button
723
888
  class="pf-c-tabs__scroll-button"
889
+ type="button"
724
890
  disabled
725
891
  aria-hidden="true"
726
892
  aria-label="Scroll left"
@@ -729,33 +895,57 @@ cssPrefix: pf-c-tabs
729
895
  </button>
730
896
  <ul class="pf-c-tabs__list">
731
897
  <li class="pf-c-tabs__item">
732
- <button class="pf-c-tabs__link" id="inset-example-users-link">
898
+ <button
899
+ type="button"
900
+ class="pf-c-tabs__link"
901
+ id="inset-example-users-link"
902
+ >
733
903
  <span class="pf-c-tabs__item-text">Users</span>
734
904
  </button>
735
905
  </li>
736
906
  <li class="pf-c-tabs__item pf-m-current">
737
- <button class="pf-c-tabs__link" id="inset-example-containers-link">
907
+ <button
908
+ type="button"
909
+ class="pf-c-tabs__link"
910
+ id="inset-example-containers-link"
911
+ >
738
912
  <span class="pf-c-tabs__item-text">Containers</span>
739
913
  </button>
740
914
  </li>
741
915
  <li class="pf-c-tabs__item">
742
- <button class="pf-c-tabs__link" id="inset-example-database-link">
916
+ <button
917
+ type="button"
918
+ class="pf-c-tabs__link"
919
+ id="inset-example-database-link"
920
+ >
743
921
  <span class="pf-c-tabs__item-text">Database</span>
744
922
  </button>
745
923
  </li>
746
924
 
747
925
  <li class="pf-c-tabs__item">
748
- <button class="pf-c-tabs__link" id="inset-example-server-link">
926
+ <button
927
+ type="button"
928
+ class="pf-c-tabs__link"
929
+ id="inset-example-server-link"
930
+ >
749
931
  <span class="pf-c-tabs__item-text">Server</span>
750
932
  </button>
751
933
  </li>
752
934
  <li class="pf-c-tabs__item">
753
- <button class="pf-c-tabs__link" id="inset-example-system-link">
935
+ <button
936
+ type="button"
937
+ class="pf-c-tabs__link"
938
+ id="inset-example-system-link"
939
+ >
754
940
  <span class="pf-c-tabs__item-text">System</span>
755
941
  </button>
756
942
  </li>
757
943
  <li class="pf-c-tabs__item">
758
- <button class="pf-c-tabs__link" id="inset-example-network-wired-link">
944
+ <button
945
+ type="button"
946
+ class="pf-c-tabs__link"
947
+ id="inset-example-network-wired-link"
948
+ >
759
949
  <span class="pf-c-tabs__item-text">Network</span>
760
950
  </button>
761
951
  </li>
@@ -763,6 +953,7 @@ cssPrefix: pf-c-tabs
763
953
 
764
954
  <button
765
955
  class="pf-c-tabs__scroll-button"
956
+ type="button"
766
957
  disabled
767
958
  aria-hidden="true"
768
959
  aria-label="Scroll right"
@@ -782,6 +973,7 @@ cssPrefix: pf-c-tabs
782
973
  >
783
974
  <button
784
975
  class="pf-c-tabs__scroll-button"
976
+ type="button"
785
977
  disabled
786
978
  aria-hidden="true"
787
979
  aria-label="Scroll left"
@@ -790,33 +982,57 @@ cssPrefix: pf-c-tabs
790
982
  </button>
791
983
  <ul class="pf-c-tabs__list">
792
984
  <li class="pf-c-tabs__item">
793
- <button class="pf-c-tabs__link" id="inset-box-example-users-link">
985
+ <button
986
+ type="button"
987
+ class="pf-c-tabs__link"
988
+ id="inset-box-example-users-link"
989
+ >
794
990
  <span class="pf-c-tabs__item-text">Users</span>
795
991
  </button>
796
992
  </li>
797
993
  <li class="pf-c-tabs__item pf-m-current">
798
- <button class="pf-c-tabs__link" id="inset-box-example-containers-link">
994
+ <button
995
+ type="button"
996
+ class="pf-c-tabs__link"
997
+ id="inset-box-example-containers-link"
998
+ >
799
999
  <span class="pf-c-tabs__item-text">Containers</span>
800
1000
  </button>
801
1001
  </li>
802
1002
  <li class="pf-c-tabs__item">
803
- <button class="pf-c-tabs__link" id="inset-box-example-database-link">
1003
+ <button
1004
+ type="button"
1005
+ class="pf-c-tabs__link"
1006
+ id="inset-box-example-database-link"
1007
+ >
804
1008
  <span class="pf-c-tabs__item-text">Database</span>
805
1009
  </button>
806
1010
  </li>
807
1011
 
808
1012
  <li class="pf-c-tabs__item">
809
- <button class="pf-c-tabs__link" id="inset-box-example-server-link">
1013
+ <button
1014
+ type="button"
1015
+ class="pf-c-tabs__link"
1016
+ id="inset-box-example-server-link"
1017
+ >
810
1018
  <span class="pf-c-tabs__item-text">Server</span>
811
1019
  </button>
812
1020
  </li>
813
1021
  <li class="pf-c-tabs__item">
814
- <button class="pf-c-tabs__link" id="inset-box-example-system-link">
1022
+ <button
1023
+ type="button"
1024
+ class="pf-c-tabs__link"
1025
+ id="inset-box-example-system-link"
1026
+ >
815
1027
  <span class="pf-c-tabs__item-text">System</span>
816
1028
  </button>
817
1029
  </li>
818
1030
  <li class="pf-c-tabs__item">
819
- <button class="pf-c-tabs__link" id="inset-box-example-network-wired-link">
1031
+ <button
1032
+ type="button"
1033
+ class="pf-c-tabs__link"
1034
+ id="inset-box-example-network-wired-link"
1035
+ >
820
1036
  <span class="pf-c-tabs__item-text">Network</span>
821
1037
  </button>
822
1038
  </li>
@@ -824,6 +1040,7 @@ cssPrefix: pf-c-tabs
824
1040
 
825
1041
  <button
826
1042
  class="pf-c-tabs__scroll-button"
1043
+ type="button"
827
1044
  disabled
828
1045
  aria-hidden="true"
829
1046
  aria-label="Scroll right"
@@ -840,6 +1057,7 @@ cssPrefix: pf-c-tabs
840
1057
  <div class="pf-c-tabs pf-m-page-insets" id="page-insets-example">
841
1058
  <button
842
1059
  class="pf-c-tabs__scroll-button"
1060
+ type="button"
843
1061
  disabled
844
1062
  aria-hidden="true"
845
1063
  aria-label="Scroll left"
@@ -848,33 +1066,54 @@ cssPrefix: pf-c-tabs
848
1066
  </button>
849
1067
  <ul class="pf-c-tabs__list">
850
1068
  <li class="pf-c-tabs__item">
851
- <button class="pf-c-tabs__link" id="page-insets-example-users-link">
1069
+ <button
1070
+ type="button"
1071
+ class="pf-c-tabs__link"
1072
+ id="page-insets-example-users-link"
1073
+ >
852
1074
  <span class="pf-c-tabs__item-text">Users</span>
853
1075
  </button>
854
1076
  </li>
855
1077
  <li class="pf-c-tabs__item pf-m-current">
856
- <button class="pf-c-tabs__link" id="page-insets-example-containers-link">
1078
+ <button
1079
+ type="button"
1080
+ class="pf-c-tabs__link"
1081
+ id="page-insets-example-containers-link"
1082
+ >
857
1083
  <span class="pf-c-tabs__item-text">Containers</span>
858
1084
  </button>
859
1085
  </li>
860
1086
  <li class="pf-c-tabs__item">
861
- <button class="pf-c-tabs__link" id="page-insets-example-database-link">
1087
+ <button
1088
+ type="button"
1089
+ class="pf-c-tabs__link"
1090
+ id="page-insets-example-database-link"
1091
+ >
862
1092
  <span class="pf-c-tabs__item-text">Database</span>
863
1093
  </button>
864
1094
  </li>
865
1095
 
866
1096
  <li class="pf-c-tabs__item">
867
- <button class="pf-c-tabs__link" id="page-insets-example-server-link">
1097
+ <button
1098
+ type="button"
1099
+ class="pf-c-tabs__link"
1100
+ id="page-insets-example-server-link"
1101
+ >
868
1102
  <span class="pf-c-tabs__item-text">Server</span>
869
1103
  </button>
870
1104
  </li>
871
1105
  <li class="pf-c-tabs__item">
872
- <button class="pf-c-tabs__link" id="page-insets-example-system-link">
1106
+ <button
1107
+ type="button"
1108
+ class="pf-c-tabs__link"
1109
+ id="page-insets-example-system-link"
1110
+ >
873
1111
  <span class="pf-c-tabs__item-text">System</span>
874
1112
  </button>
875
1113
  </li>
876
1114
  <li class="pf-c-tabs__item">
877
1115
  <button
1116
+ type="button"
878
1117
  class="pf-c-tabs__link"
879
1118
  id="page-insets-example-network-wired-link"
880
1119
  >
@@ -885,6 +1124,7 @@ cssPrefix: pf-c-tabs
885
1124
 
886
1125
  <button
887
1126
  class="pf-c-tabs__scroll-button"
1127
+ type="button"
888
1128
  disabled
889
1129
  aria-hidden="true"
890
1130
  aria-label="Scroll right"
@@ -908,6 +1148,7 @@ cssPrefix: pf-c-tabs
908
1148
  <div class="pf-c-tabs" id="icons-example">
909
1149
  <button
910
1150
  class="pf-c-tabs__scroll-button"
1151
+ type="button"
911
1152
  disabled
912
1153
  aria-hidden="true"
913
1154
  aria-label="Scroll left"
@@ -916,7 +1157,11 @@ cssPrefix: pf-c-tabs
916
1157
  </button>
917
1158
  <ul class="pf-c-tabs__list">
918
1159
  <li class="pf-c-tabs__item">
919
- <button class="pf-c-tabs__link" id="icons-example-users-link">
1160
+ <button
1161
+ type="button"
1162
+ class="pf-c-tabs__link"
1163
+ id="icons-example-users-link"
1164
+ >
920
1165
  <span class="pf-c-tabs__item-icon">
921
1166
  <i class="fas fa-fas fa-users" aria-hidden="true"></i>
922
1167
  </span>
@@ -924,7 +1169,11 @@ cssPrefix: pf-c-tabs
924
1169
  </button>
925
1170
  </li>
926
1171
  <li class="pf-c-tabs__item pf-m-current">
927
- <button class="pf-c-tabs__link" id="icons-example-containers-link">
1172
+ <button
1173
+ type="button"
1174
+ class="pf-c-tabs__link"
1175
+ id="icons-example-containers-link"
1176
+ >
928
1177
  <span class="pf-c-tabs__item-icon">
929
1178
  <i class="fas fa-fas fa-box" aria-hidden="true"></i>
930
1179
  </span>
@@ -932,7 +1181,11 @@ cssPrefix: pf-c-tabs
932
1181
  </button>
933
1182
  </li>
934
1183
  <li class="pf-c-tabs__item">
935
- <button class="pf-c-tabs__link" id="icons-example-database-link">
1184
+ <button
1185
+ type="button"
1186
+ class="pf-c-tabs__link"
1187
+ id="icons-example-database-link"
1188
+ >
936
1189
  <span class="pf-c-tabs__item-icon">
937
1190
  <i class="fas fa-database" aria-hidden="true"></i>
938
1191
  </span>
@@ -941,7 +1194,11 @@ cssPrefix: pf-c-tabs
941
1194
  </li>
942
1195
 
943
1196
  <li class="pf-c-tabs__item">
944
- <button class="pf-c-tabs__link" id="icons-example-server-link">
1197
+ <button
1198
+ type="button"
1199
+ class="pf-c-tabs__link"
1200
+ id="icons-example-server-link"
1201
+ >
945
1202
  <span class="pf-c-tabs__item-icon">
946
1203
  <i class="fas fa-server" aria-hidden="true"></i>
947
1204
  </span>
@@ -949,7 +1206,11 @@ cssPrefix: pf-c-tabs
949
1206
  </button>
950
1207
  </li>
951
1208
  <li class="pf-c-tabs__item">
952
- <button class="pf-c-tabs__link" id="icons-example-system-link">
1209
+ <button
1210
+ type="button"
1211
+ class="pf-c-tabs__link"
1212
+ id="icons-example-system-link"
1213
+ >
953
1214
  <span class="pf-c-tabs__item-icon">
954
1215
  <i class="fas fa-laptop" aria-hidden="true"></i>
955
1216
  </span>
@@ -957,7 +1218,11 @@ cssPrefix: pf-c-tabs
957
1218
  </button>
958
1219
  </li>
959
1220
  <li class="pf-c-tabs__item">
960
- <button class="pf-c-tabs__link" id="icons-example-network-wired-link">
1221
+ <button
1222
+ type="button"
1223
+ class="pf-c-tabs__link"
1224
+ id="icons-example-network-wired-link"
1225
+ >
961
1226
  <span class="pf-c-tabs__item-icon">
962
1227
  <i class="fas fa-project-diagram" aria-hidden="true"></i>
963
1228
  </span>
@@ -968,6 +1233,7 @@ cssPrefix: pf-c-tabs
968
1233
 
969
1234
  <button
970
1235
  class="pf-c-tabs__scroll-button"
1236
+ type="button"
971
1237
  disabled
972
1238
  aria-hidden="true"
973
1239
  aria-label="Scroll right"
@@ -982,17 +1248,26 @@ cssPrefix: pf-c-tabs
982
1248
 
983
1249
  ```html
984
1250
  <div class="pf-c-tabs pf-m-scrollable" id="default-parent-example">
985
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll left">
1251
+ <button
1252
+ class="pf-c-tabs__scroll-button"
1253
+ type="button"
1254
+ aria-label="Scroll left"
1255
+ >
986
1256
  <i class="fas fa-angle-left" aria-hidden="true"></i>
987
1257
  </button>
988
1258
  <ul class="pf-c-tabs__list">
989
1259
  <li class="pf-c-tabs__item">
990
- <button class="pf-c-tabs__link" id="default-parent-example-users-link">
1260
+ <button
1261
+ type="button"
1262
+ class="pf-c-tabs__link"
1263
+ id="default-parent-example-users-link"
1264
+ >
991
1265
  <span class="pf-c-tabs__item-text">Users</span>
992
1266
  </button>
993
1267
  </li>
994
1268
  <li class="pf-c-tabs__item pf-m-current">
995
1269
  <button
1270
+ type="button"
996
1271
  class="pf-c-tabs__link"
997
1272
  id="default-parent-example-containers-link"
998
1273
  >
@@ -1000,23 +1275,36 @@ cssPrefix: pf-c-tabs
1000
1275
  </button>
1001
1276
  </li>
1002
1277
  <li class="pf-c-tabs__item">
1003
- <button class="pf-c-tabs__link" id="default-parent-example-database-link">
1278
+ <button
1279
+ type="button"
1280
+ class="pf-c-tabs__link"
1281
+ id="default-parent-example-database-link"
1282
+ >
1004
1283
  <span class="pf-c-tabs__item-text">Database</span>
1005
1284
  </button>
1006
1285
  </li>
1007
1286
 
1008
1287
  <li class="pf-c-tabs__item">
1009
- <button class="pf-c-tabs__link" id="default-parent-example-server-link">
1288
+ <button
1289
+ type="button"
1290
+ class="pf-c-tabs__link"
1291
+ id="default-parent-example-server-link"
1292
+ >
1010
1293
  <span class="pf-c-tabs__item-text">Server</span>
1011
1294
  </button>
1012
1295
  </li>
1013
1296
  <li class="pf-c-tabs__item">
1014
- <button class="pf-c-tabs__link" id="default-parent-example-system-link">
1297
+ <button
1298
+ type="button"
1299
+ class="pf-c-tabs__link"
1300
+ id="default-parent-example-system-link"
1301
+ >
1015
1302
  <span class="pf-c-tabs__item-text">System</span>
1016
1303
  </button>
1017
1304
  </li>
1018
1305
  <li class="pf-c-tabs__item">
1019
1306
  <button
1307
+ type="button"
1020
1308
  class="pf-c-tabs__link"
1021
1309
  id="default-parent-example-network-wired-link"
1022
1310
  >
@@ -1025,7 +1313,11 @@ cssPrefix: pf-c-tabs
1025
1313
  </li>
1026
1314
  </ul>
1027
1315
 
1028
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
1316
+ <button
1317
+ class="pf-c-tabs__scroll-button"
1318
+ type="button"
1319
+ aria-label="Scroll right"
1320
+ >
1029
1321
  <i class="fas fa-angle-right" aria-hidden="true"></i>
1030
1322
  </button>
1031
1323
  </div>
@@ -1034,44 +1326,76 @@ cssPrefix: pf-c-tabs
1034
1326
  class="pf-c-tabs pf-m-secondary pf-m-scrollable"
1035
1327
  id="default-child-example"
1036
1328
  >
1037
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll left">
1329
+ <button
1330
+ class="pf-c-tabs__scroll-button"
1331
+ type="button"
1332
+ aria-label="Scroll left"
1333
+ >
1038
1334
  <i class="fas fa-angle-left" aria-hidden="true"></i>
1039
1335
  </button>
1040
1336
  <ul class="pf-c-tabs__list">
1041
1337
  <li class="pf-c-tabs__item">
1042
- <button class="pf-c-tabs__link" id="default-child-example-sub-1-link">
1338
+ <button
1339
+ type="button"
1340
+ class="pf-c-tabs__link"
1341
+ id="default-child-example-sub-1-link"
1342
+ >
1043
1343
  <span class="pf-c-tabs__item-text">Item 1</span>
1044
1344
  </button>
1045
1345
  </li>
1046
1346
  <li class="pf-c-tabs__item">
1047
- <button class="pf-c-tabs__link" id="default-child-example-sub-2-link">
1347
+ <button
1348
+ type="button"
1349
+ class="pf-c-tabs__link"
1350
+ id="default-child-example-sub-2-link"
1351
+ >
1048
1352
  <span class="pf-c-tabs__item-text">Item 2</span>
1049
1353
  </button>
1050
1354
  </li>
1051
1355
  <li class="pf-c-tabs__item pf-m-current">
1052
- <button class="pf-c-tabs__link" id="default-child-example-sub-3-link">
1356
+ <button
1357
+ type="button"
1358
+ class="pf-c-tabs__link"
1359
+ id="default-child-example-sub-3-link"
1360
+ >
1053
1361
  <span class="pf-c-tabs__item-text">Item 3</span>
1054
1362
  </button>
1055
1363
  </li>
1056
1364
 
1057
1365
  <li class="pf-c-tabs__item">
1058
- <button class="pf-c-tabs__link" id="default-child-example-sub-4-link">
1366
+ <button
1367
+ type="button"
1368
+ class="pf-c-tabs__link"
1369
+ id="default-child-example-sub-4-link"
1370
+ >
1059
1371
  <span class="pf-c-tabs__item-text">Item 4</span>
1060
1372
  </button>
1061
1373
  </li>
1062
1374
  <li class="pf-c-tabs__item">
1063
- <button class="pf-c-tabs__link" id="default-child-example-sub-5-link">
1375
+ <button
1376
+ type="button"
1377
+ class="pf-c-tabs__link"
1378
+ id="default-child-example-sub-5-link"
1379
+ >
1064
1380
  <span class="pf-c-tabs__item-text">Item 5</span>
1065
1381
  </button>
1066
1382
  </li>
1067
1383
  <li class="pf-c-tabs__item">
1068
- <button class="pf-c-tabs__link" id="default-child-example-sub-6-link">
1384
+ <button
1385
+ type="button"
1386
+ class="pf-c-tabs__link"
1387
+ id="default-child-example-sub-6-link"
1388
+ >
1069
1389
  <span class="pf-c-tabs__item-text">Item 6</span>
1070
1390
  </button>
1071
1391
  </li>
1072
1392
  </ul>
1073
1393
 
1074
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
1394
+ <button
1395
+ class="pf-c-tabs__scroll-button"
1396
+ type="button"
1397
+ aria-label="Scroll right"
1398
+ >
1075
1399
  <i class="fas fa-angle-right" aria-hidden="true"></i>
1076
1400
  </button>
1077
1401
  </div>
@@ -1082,38 +1406,63 @@ cssPrefix: pf-c-tabs
1082
1406
 
1083
1407
  ```html
1084
1408
  <div class="pf-c-tabs pf-m-box pf-m-scrollable" id="box-parent-example">
1085
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll left">
1409
+ <button
1410
+ class="pf-c-tabs__scroll-button"
1411
+ type="button"
1412
+ aria-label="Scroll left"
1413
+ >
1086
1414
  <i class="fas fa-angle-left" aria-hidden="true"></i>
1087
1415
  </button>
1088
1416
  <ul class="pf-c-tabs__list">
1089
1417
  <li class="pf-c-tabs__item">
1090
- <button class="pf-c-tabs__link" id="box-parent-example-users-link">
1418
+ <button
1419
+ type="button"
1420
+ class="pf-c-tabs__link"
1421
+ id="box-parent-example-users-link"
1422
+ >
1091
1423
  <span class="pf-c-tabs__item-text">Users</span>
1092
1424
  </button>
1093
1425
  </li>
1094
1426
  <li class="pf-c-tabs__item pf-m-current">
1095
- <button class="pf-c-tabs__link" id="box-parent-example-containers-link">
1427
+ <button
1428
+ type="button"
1429
+ class="pf-c-tabs__link"
1430
+ id="box-parent-example-containers-link"
1431
+ >
1096
1432
  <span class="pf-c-tabs__item-text">Containers</span>
1097
1433
  </button>
1098
1434
  </li>
1099
1435
  <li class="pf-c-tabs__item">
1100
- <button class="pf-c-tabs__link" id="box-parent-example-database-link">
1436
+ <button
1437
+ type="button"
1438
+ class="pf-c-tabs__link"
1439
+ id="box-parent-example-database-link"
1440
+ >
1101
1441
  <span class="pf-c-tabs__item-text">Database</span>
1102
1442
  </button>
1103
1443
  </li>
1104
1444
 
1105
1445
  <li class="pf-c-tabs__item">
1106
- <button class="pf-c-tabs__link" id="box-parent-example-server-link">
1446
+ <button
1447
+ type="button"
1448
+ class="pf-c-tabs__link"
1449
+ id="box-parent-example-server-link"
1450
+ >
1107
1451
  <span class="pf-c-tabs__item-text">Server</span>
1108
1452
  </button>
1109
1453
  </li>
1110
1454
  <li class="pf-c-tabs__item">
1111
- <button class="pf-c-tabs__link" id="box-parent-example-system-link">
1455
+ <button
1456
+ type="button"
1457
+ class="pf-c-tabs__link"
1458
+ id="box-parent-example-system-link"
1459
+ >
1112
1460
  <span class="pf-c-tabs__item-text">System</span>
1113
1461
  </button>
1114
1462
  </li>
1115
1463
  <li class="pf-c-tabs__item">
1116
1464
  <button
1465
+ type="button"
1117
1466
  class="pf-c-tabs__link"
1118
1467
  id="box-parent-example-network-wired-link"
1119
1468
  >
@@ -1122,50 +1471,86 @@ cssPrefix: pf-c-tabs
1122
1471
  </li>
1123
1472
  </ul>
1124
1473
 
1125
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
1474
+ <button
1475
+ class="pf-c-tabs__scroll-button"
1476
+ type="button"
1477
+ aria-label="Scroll right"
1478
+ >
1126
1479
  <i class="fas fa-angle-right" aria-hidden="true"></i>
1127
1480
  </button>
1128
1481
  </div>
1129
1482
 
1130
1483
  <div class="pf-c-tabs pf-m-secondary pf-m-scrollable" id="box-child-example">
1131
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll left">
1484
+ <button
1485
+ class="pf-c-tabs__scroll-button"
1486
+ type="button"
1487
+ aria-label="Scroll left"
1488
+ >
1132
1489
  <i class="fas fa-angle-left" aria-hidden="true"></i>
1133
1490
  </button>
1134
1491
  <ul class="pf-c-tabs__list">
1135
1492
  <li class="pf-c-tabs__item">
1136
- <button class="pf-c-tabs__link" id="box-child-example-sub-1-link">
1493
+ <button
1494
+ type="button"
1495
+ class="pf-c-tabs__link"
1496
+ id="box-child-example-sub-1-link"
1497
+ >
1137
1498
  <span class="pf-c-tabs__item-text">Item 1</span>
1138
1499
  </button>
1139
1500
  </li>
1140
1501
  <li class="pf-c-tabs__item">
1141
- <button class="pf-c-tabs__link" id="box-child-example-sub-2-link">
1502
+ <button
1503
+ type="button"
1504
+ class="pf-c-tabs__link"
1505
+ id="box-child-example-sub-2-link"
1506
+ >
1142
1507
  <span class="pf-c-tabs__item-text">Item 2</span>
1143
1508
  </button>
1144
1509
  </li>
1145
1510
  <li class="pf-c-tabs__item pf-m-current">
1146
- <button class="pf-c-tabs__link" id="box-child-example-sub-3-link">
1511
+ <button
1512
+ type="button"
1513
+ class="pf-c-tabs__link"
1514
+ id="box-child-example-sub-3-link"
1515
+ >
1147
1516
  <span class="pf-c-tabs__item-text">Item 3</span>
1148
1517
  </button>
1149
1518
  </li>
1150
1519
 
1151
1520
  <li class="pf-c-tabs__item">
1152
- <button class="pf-c-tabs__link" id="box-child-example-sub-4-link">
1521
+ <button
1522
+ type="button"
1523
+ class="pf-c-tabs__link"
1524
+ id="box-child-example-sub-4-link"
1525
+ >
1153
1526
  <span class="pf-c-tabs__item-text">Item 4</span>
1154
1527
  </button>
1155
1528
  </li>
1156
1529
  <li class="pf-c-tabs__item">
1157
- <button class="pf-c-tabs__link" id="box-child-example-sub-5-link">
1530
+ <button
1531
+ type="button"
1532
+ class="pf-c-tabs__link"
1533
+ id="box-child-example-sub-5-link"
1534
+ >
1158
1535
  <span class="pf-c-tabs__item-text">Item 5</span>
1159
1536
  </button>
1160
1537
  </li>
1161
1538
  <li class="pf-c-tabs__item">
1162
- <button class="pf-c-tabs__link" id="box-child-example-sub-6-link">
1539
+ <button
1540
+ type="button"
1541
+ class="pf-c-tabs__link"
1542
+ id="box-child-example-sub-6-link"
1543
+ >
1163
1544
  <span class="pf-c-tabs__item-text">Item 6</span>
1164
1545
  </button>
1165
1546
  </li>
1166
1547
  </ul>
1167
1548
 
1168
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
1549
+ <button
1550
+ class="pf-c-tabs__scroll-button"
1551
+ type="button"
1552
+ aria-label="Scroll right"
1553
+ >
1169
1554
  <i class="fas fa-angle-right" aria-hidden="true"></i>
1170
1555
  </button>
1171
1556
  </div>
@@ -1178,6 +1563,7 @@ cssPrefix: pf-c-tabs
1178
1563
  <div class="pf-c-tabs pf-m-fill" id="filled-example">
1179
1564
  <button
1180
1565
  class="pf-c-tabs__scroll-button"
1566
+ type="button"
1181
1567
  disabled
1182
1568
  aria-hidden="true"
1183
1569
  aria-label="Scroll left"
@@ -1186,17 +1572,29 @@ cssPrefix: pf-c-tabs
1186
1572
  </button>
1187
1573
  <ul class="pf-c-tabs__list">
1188
1574
  <li class="pf-c-tabs__item">
1189
- <button class="pf-c-tabs__link" id="filled-example-users-link">
1575
+ <button
1576
+ type="button"
1577
+ class="pf-c-tabs__link"
1578
+ id="filled-example-users-link"
1579
+ >
1190
1580
  <span class="pf-c-tabs__item-text">Users</span>
1191
1581
  </button>
1192
1582
  </li>
1193
1583
  <li class="pf-c-tabs__item pf-m-current">
1194
- <button class="pf-c-tabs__link" id="filled-example-containers-link">
1584
+ <button
1585
+ type="button"
1586
+ class="pf-c-tabs__link"
1587
+ id="filled-example-containers-link"
1588
+ >
1195
1589
  <span class="pf-c-tabs__item-text">Containers</span>
1196
1590
  </button>
1197
1591
  </li>
1198
1592
  <li class="pf-c-tabs__item">
1199
- <button class="pf-c-tabs__link" id="filled-example-database-link">
1593
+ <button
1594
+ type="button"
1595
+ class="pf-c-tabs__link"
1596
+ id="filled-example-database-link"
1597
+ >
1200
1598
  <span class="pf-c-tabs__item-text">Database</span>
1201
1599
  </button>
1202
1600
  </li>
@@ -1204,6 +1602,7 @@ cssPrefix: pf-c-tabs
1204
1602
 
1205
1603
  <button
1206
1604
  class="pf-c-tabs__scroll-button"
1605
+ type="button"
1207
1606
  disabled
1208
1607
  aria-hidden="true"
1209
1608
  aria-label="Scroll right"
@@ -1220,6 +1619,7 @@ cssPrefix: pf-c-tabs
1220
1619
  <div class="pf-c-tabs pf-m-fill" id="filled-with-icons-example">
1221
1620
  <button
1222
1621
  class="pf-c-tabs__scroll-button"
1622
+ type="button"
1223
1623
  disabled
1224
1624
  aria-hidden="true"
1225
1625
  aria-label="Scroll left"
@@ -1228,7 +1628,11 @@ cssPrefix: pf-c-tabs
1228
1628
  </button>
1229
1629
  <ul class="pf-c-tabs__list">
1230
1630
  <li class="pf-c-tabs__item">
1231
- <button class="pf-c-tabs__link" id="filled-with-icons-example-users-link">
1631
+ <button
1632
+ type="button"
1633
+ class="pf-c-tabs__link"
1634
+ id="filled-with-icons-example-users-link"
1635
+ >
1232
1636
  <span class="pf-c-tabs__item-icon">
1233
1637
  <i class="fas fa-fas fa-users" aria-hidden="true"></i>
1234
1638
  </span>
@@ -1237,6 +1641,7 @@ cssPrefix: pf-c-tabs
1237
1641
  </li>
1238
1642
  <li class="pf-c-tabs__item pf-m-current">
1239
1643
  <button
1644
+ type="button"
1240
1645
  class="pf-c-tabs__link"
1241
1646
  id="filled-with-icons-example-containers-link"
1242
1647
  >
@@ -1248,6 +1653,7 @@ cssPrefix: pf-c-tabs
1248
1653
  </li>
1249
1654
  <li class="pf-c-tabs__item">
1250
1655
  <button
1656
+ type="button"
1251
1657
  class="pf-c-tabs__link"
1252
1658
  id="filled-with-icons-example-database-link"
1253
1659
  >
@@ -1261,6 +1667,7 @@ cssPrefix: pf-c-tabs
1261
1667
 
1262
1668
  <button
1263
1669
  class="pf-c-tabs__scroll-button"
1670
+ type="button"
1264
1671
  disabled
1265
1672
  aria-hidden="true"
1266
1673
  aria-label="Scroll right"
@@ -1277,6 +1684,7 @@ cssPrefix: pf-c-tabs
1277
1684
  <div class="pf-c-tabs pf-m-fill pf-m-box" id="filled-box-example">
1278
1685
  <button
1279
1686
  class="pf-c-tabs__scroll-button"
1687
+ type="button"
1280
1688
  disabled
1281
1689
  aria-hidden="true"
1282
1690
  aria-label="Scroll left"
@@ -1285,17 +1693,29 @@ cssPrefix: pf-c-tabs
1285
1693
  </button>
1286
1694
  <ul class="pf-c-tabs__list">
1287
1695
  <li class="pf-c-tabs__item">
1288
- <button class="pf-c-tabs__link" id="filled-box-example-users-link">
1696
+ <button
1697
+ type="button"
1698
+ class="pf-c-tabs__link"
1699
+ id="filled-box-example-users-link"
1700
+ >
1289
1701
  <span class="pf-c-tabs__item-text">Users</span>
1290
1702
  </button>
1291
1703
  </li>
1292
1704
  <li class="pf-c-tabs__item pf-m-current">
1293
- <button class="pf-c-tabs__link" id="filled-box-example-containers-link">
1705
+ <button
1706
+ type="button"
1707
+ class="pf-c-tabs__link"
1708
+ id="filled-box-example-containers-link"
1709
+ >
1294
1710
  <span class="pf-c-tabs__item-text">Containers</span>
1295
1711
  </button>
1296
1712
  </li>
1297
1713
  <li class="pf-c-tabs__item">
1298
- <button class="pf-c-tabs__link" id="filled-box-example-database-link">
1714
+ <button
1715
+ type="button"
1716
+ class="pf-c-tabs__link"
1717
+ id="filled-box-example-database-link"
1718
+ >
1299
1719
  <span class="pf-c-tabs__item-text">Database</span>
1300
1720
  </button>
1301
1721
  </li>
@@ -1303,6 +1723,7 @@ cssPrefix: pf-c-tabs
1303
1723
 
1304
1724
  <button
1305
1725
  class="pf-c-tabs__scroll-button"
1726
+ type="button"
1306
1727
  disabled
1307
1728
  aria-hidden="true"
1308
1729
  aria-label="Scroll right"
@@ -1319,6 +1740,7 @@ cssPrefix: pf-c-tabs
1319
1740
  <div class="pf-c-tabs pf-m-fill pf-m-box" id="filled-box-with-icons-example">
1320
1741
  <button
1321
1742
  class="pf-c-tabs__scroll-button"
1743
+ type="button"
1322
1744
  disabled
1323
1745
  aria-hidden="true"
1324
1746
  aria-label="Scroll left"
@@ -1328,6 +1750,7 @@ cssPrefix: pf-c-tabs
1328
1750
  <ul class="pf-c-tabs__list">
1329
1751
  <li class="pf-c-tabs__item">
1330
1752
  <button
1753
+ type="button"
1331
1754
  class="pf-c-tabs__link"
1332
1755
  id="filled-box-with-icons-example-users-link"
1333
1756
  >
@@ -1339,6 +1762,7 @@ cssPrefix: pf-c-tabs
1339
1762
  </li>
1340
1763
  <li class="pf-c-tabs__item pf-m-current">
1341
1764
  <button
1765
+ type="button"
1342
1766
  class="pf-c-tabs__link"
1343
1767
  id="filled-box-with-icons-example-containers-link"
1344
1768
  >
@@ -1350,6 +1774,7 @@ cssPrefix: pf-c-tabs
1350
1774
  </li>
1351
1775
  <li class="pf-c-tabs__item">
1352
1776
  <button
1777
+ type="button"
1353
1778
  class="pf-c-tabs__link"
1354
1779
  id="filled-box-with-icons-example-database-link"
1355
1780
  >
@@ -1363,6 +1788,7 @@ cssPrefix: pf-c-tabs
1363
1788
 
1364
1789
  <button
1365
1790
  class="pf-c-tabs__scroll-button"
1791
+ type="button"
1366
1792
  disabled
1367
1793
  aria-hidden="true"
1368
1794
  aria-label="Scroll right"
@@ -1387,7 +1813,11 @@ cssPrefix: pf-c-tabs
1387
1813
  aria-label="Tabs nav"
1388
1814
  id="default-scroll-nav-example"
1389
1815
  >
1390
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll left">
1816
+ <button
1817
+ class="pf-c-tabs__scroll-button"
1818
+ type="button"
1819
+ aria-label="Scroll left"
1820
+ >
1391
1821
  <i class="fas fa-angle-left" aria-hidden="true"></i>
1392
1822
  </button>
1393
1823
  <ul class="pf-c-tabs__list">
@@ -1451,7 +1881,11 @@ cssPrefix: pf-c-tabs
1451
1881
  </li>
1452
1882
  </ul>
1453
1883
 
1454
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
1884
+ <button
1885
+ class="pf-c-tabs__scroll-button"
1886
+ type="button"
1887
+ aria-label="Scroll right"
1888
+ >
1455
1889
  <i class="fas fa-angle-right" aria-hidden="true"></i>
1456
1890
  </button>
1457
1891
  </nav>
@@ -1464,6 +1898,7 @@ cssPrefix: pf-c-tabs
1464
1898
  <nav class="pf-c-tabs" aria-label="Tabs primary nav" id="primary-nav-example">
1465
1899
  <button
1466
1900
  class="pf-c-tabs__scroll-button"
1901
+ type="button"
1467
1902
  disabled
1468
1903
  aria-hidden="true"
1469
1904
  aria-label="Scroll left"
@@ -1518,6 +1953,7 @@ cssPrefix: pf-c-tabs
1518
1953
 
1519
1954
  <button
1520
1955
  class="pf-c-tabs__scroll-button"
1956
+ type="button"
1521
1957
  disabled
1522
1958
  aria-hidden="true"
1523
1959
  aria-label="Scroll right"
@@ -1533,6 +1969,7 @@ cssPrefix: pf-c-tabs
1533
1969
  >
1534
1970
  <button
1535
1971
  class="pf-c-tabs__scroll-button"
1972
+ type="button"
1536
1973
  disabled
1537
1974
  aria-hidden="true"
1538
1975
  aria-label="Scroll left"
@@ -1586,6 +2023,7 @@ cssPrefix: pf-c-tabs
1586
2023
 
1587
2024
  <button
1588
2025
  class="pf-c-tabs__scroll-button"
2026
+ type="button"
1589
2027
  disabled
1590
2028
  aria-hidden="true"
1591
2029
  aria-label="Scroll right"
@@ -1627,6 +2065,7 @@ cssPrefix: pf-c-tabs
1627
2065
  <ul class="pf-c-tabs__list">
1628
2066
  <li class="pf-c-tabs__item">
1629
2067
  <button
2068
+ type="button"
1630
2069
  class="pf-c-tabs__link"
1631
2070
  id="vertical-expandable-example-users-link"
1632
2071
  >
@@ -1635,6 +2074,7 @@ cssPrefix: pf-c-tabs
1635
2074
  </li>
1636
2075
  <li class="pf-c-tabs__item pf-m-current">
1637
2076
  <button
2077
+ type="button"
1638
2078
  class="pf-c-tabs__link"
1639
2079
  id="vertical-expandable-example-containers-link"
1640
2080
  >
@@ -1643,6 +2083,7 @@ cssPrefix: pf-c-tabs
1643
2083
  </li>
1644
2084
  <li class="pf-c-tabs__item">
1645
2085
  <button
2086
+ type="button"
1646
2087
  class="pf-c-tabs__link"
1647
2088
  id="vertical-expandable-example-database-link"
1648
2089
  >
@@ -1652,6 +2093,7 @@ cssPrefix: pf-c-tabs
1652
2093
 
1653
2094
  <li class="pf-c-tabs__item">
1654
2095
  <button
2096
+ type="button"
1655
2097
  class="pf-c-tabs__link"
1656
2098
  id="vertical-expandable-example-server-link"
1657
2099
  >
@@ -1660,6 +2102,7 @@ cssPrefix: pf-c-tabs
1660
2102
  </li>
1661
2103
  <li class="pf-c-tabs__item">
1662
2104
  <button
2105
+ type="button"
1663
2106
  class="pf-c-tabs__link"
1664
2107
  id="vertical-expandable-example-system-link"
1665
2108
  >
@@ -1668,6 +2111,7 @@ cssPrefix: pf-c-tabs
1668
2111
  </li>
1669
2112
  <li class="pf-c-tabs__item">
1670
2113
  <button
2114
+ type="button"
1671
2115
  class="pf-c-tabs__link"
1672
2116
  id="vertical-expandable-example-network-wired-link"
1673
2117
  >
@@ -1709,12 +2153,17 @@ cssPrefix: pf-c-tabs
1709
2153
 
1710
2154
  <ul class="pf-c-tabs__list">
1711
2155
  <li class="pf-c-tabs__item">
1712
- <button class="pf-c-tabs__link" id="vertical-expanded-example-users-link">
2156
+ <button
2157
+ type="button"
2158
+ class="pf-c-tabs__link"
2159
+ id="vertical-expanded-example-users-link"
2160
+ >
1713
2161
  <span class="pf-c-tabs__item-text">Users</span>
1714
2162
  </button>
1715
2163
  </li>
1716
2164
  <li class="pf-c-tabs__item pf-m-current">
1717
2165
  <button
2166
+ type="button"
1718
2167
  class="pf-c-tabs__link"
1719
2168
  id="vertical-expanded-example-containers-link"
1720
2169
  >
@@ -1723,6 +2172,7 @@ cssPrefix: pf-c-tabs
1723
2172
  </li>
1724
2173
  <li class="pf-c-tabs__item">
1725
2174
  <button
2175
+ type="button"
1726
2176
  class="pf-c-tabs__link"
1727
2177
  id="vertical-expanded-example-database-link"
1728
2178
  >
@@ -1732,6 +2182,7 @@ cssPrefix: pf-c-tabs
1732
2182
 
1733
2183
  <li class="pf-c-tabs__item">
1734
2184
  <button
2185
+ type="button"
1735
2186
  class="pf-c-tabs__link"
1736
2187
  id="vertical-expanded-example-server-link"
1737
2188
  >
@@ -1740,6 +2191,7 @@ cssPrefix: pf-c-tabs
1740
2191
  </li>
1741
2192
  <li class="pf-c-tabs__item">
1742
2193
  <button
2194
+ type="button"
1743
2195
  class="pf-c-tabs__link"
1744
2196
  id="vertical-expanded-example-system-link"
1745
2197
  >
@@ -1748,6 +2200,7 @@ cssPrefix: pf-c-tabs
1748
2200
  </li>
1749
2201
  <li class="pf-c-tabs__item">
1750
2202
  <button
2203
+ type="button"
1751
2204
  class="pf-c-tabs__link"
1752
2205
  id="vertical-expanded-example-network-wired-link"
1753
2206
  >
@@ -1790,6 +2243,7 @@ cssPrefix: pf-c-tabs
1790
2243
  <ul class="pf-c-tabs__list">
1791
2244
  <li class="pf-c-tabs__item">
1792
2245
  <button
2246
+ type="button"
1793
2247
  class="pf-c-tabs__link"
1794
2248
  id="vertical-expandable-responsive-example-users-link"
1795
2249
  >
@@ -1798,6 +2252,7 @@ cssPrefix: pf-c-tabs
1798
2252
  </li>
1799
2253
  <li class="pf-c-tabs__item pf-m-current">
1800
2254
  <button
2255
+ type="button"
1801
2256
  class="pf-c-tabs__link"
1802
2257
  id="vertical-expandable-responsive-example-containers-link"
1803
2258
  >
@@ -1806,6 +2261,7 @@ cssPrefix: pf-c-tabs
1806
2261
  </li>
1807
2262
  <li class="pf-c-tabs__item">
1808
2263
  <button
2264
+ type="button"
1809
2265
  class="pf-c-tabs__link"
1810
2266
  id="vertical-expandable-responsive-example-database-link"
1811
2267
  >
@@ -1815,6 +2271,7 @@ cssPrefix: pf-c-tabs
1815
2271
 
1816
2272
  <li class="pf-c-tabs__item">
1817
2273
  <button
2274
+ type="button"
1818
2275
  class="pf-c-tabs__link"
1819
2276
  id="vertical-expandable-responsive-example-server-link"
1820
2277
  >
@@ -1823,6 +2280,7 @@ cssPrefix: pf-c-tabs
1823
2280
  </li>
1824
2281
  <li class="pf-c-tabs__item">
1825
2282
  <button
2283
+ type="button"
1826
2284
  class="pf-c-tabs__link"
1827
2285
  id="vertical-expandable-responsive-example-system-link"
1828
2286
  >
@@ -1831,6 +2289,7 @@ cssPrefix: pf-c-tabs
1831
2289
  </li>
1832
2290
  <li class="pf-c-tabs__item">
1833
2291
  <button
2292
+ type="button"
1834
2293
  class="pf-c-tabs__link"
1835
2294
  id="vertical-expandable-responsive-example-network-wired-link"
1836
2295
  >
@@ -1873,6 +2332,7 @@ cssPrefix: pf-c-tabs
1873
2332
  <ul class="pf-c-tabs__list">
1874
2333
  <li class="pf-c-tabs__item">
1875
2334
  <button
2335
+ type="button"
1876
2336
  class="pf-c-tabs__link"
1877
2337
  id="vertical-expandable-legacy-example-users-link"
1878
2338
  >
@@ -1881,6 +2341,7 @@ cssPrefix: pf-c-tabs
1881
2341
  </li>
1882
2342
  <li class="pf-c-tabs__item pf-m-current">
1883
2343
  <button
2344
+ type="button"
1884
2345
  class="pf-c-tabs__link"
1885
2346
  id="vertical-expandable-legacy-example-containers-link"
1886
2347
  >
@@ -1889,6 +2350,7 @@ cssPrefix: pf-c-tabs
1889
2350
  </li>
1890
2351
  <li class="pf-c-tabs__item">
1891
2352
  <button
2353
+ type="button"
1892
2354
  class="pf-c-tabs__link"
1893
2355
  id="vertical-expandable-legacy-example-database-link"
1894
2356
  >
@@ -1898,6 +2360,7 @@ cssPrefix: pf-c-tabs
1898
2360
 
1899
2361
  <li class="pf-c-tabs__item">
1900
2362
  <button
2363
+ type="button"
1901
2364
  class="pf-c-tabs__link"
1902
2365
  id="vertical-expandable-legacy-example-server-link"
1903
2366
  >
@@ -1906,6 +2369,7 @@ cssPrefix: pf-c-tabs
1906
2369
  </li>
1907
2370
  <li class="pf-c-tabs__item">
1908
2371
  <button
2372
+ type="button"
1909
2373
  class="pf-c-tabs__link"
1910
2374
  id="vertical-expandable-legacy-example-system-link"
1911
2375
  >
@@ -1914,6 +2378,7 @@ cssPrefix: pf-c-tabs
1914
2378
  </li>
1915
2379
  <li class="pf-c-tabs__item">
1916
2380
  <button
2381
+ type="button"
1917
2382
  class="pf-c-tabs__link"
1918
2383
  id="vertical-expandable-legacy-example-network-wired-link"
1919
2384
  >
@@ -1956,6 +2421,7 @@ cssPrefix: pf-c-tabs
1956
2421
  <ul class="pf-c-tabs__list">
1957
2422
  <li class="pf-c-tabs__item">
1958
2423
  <button
2424
+ type="button"
1959
2425
  class="pf-c-tabs__link"
1960
2426
  id="vertical-expanded-legacy-example-users-link"
1961
2427
  >
@@ -1964,6 +2430,7 @@ cssPrefix: pf-c-tabs
1964
2430
  </li>
1965
2431
  <li class="pf-c-tabs__item pf-m-current">
1966
2432
  <button
2433
+ type="button"
1967
2434
  class="pf-c-tabs__link"
1968
2435
  id="vertical-expanded-legacy-example-containers-link"
1969
2436
  >
@@ -1972,6 +2439,7 @@ cssPrefix: pf-c-tabs
1972
2439
  </li>
1973
2440
  <li class="pf-c-tabs__item">
1974
2441
  <button
2442
+ type="button"
1975
2443
  class="pf-c-tabs__link"
1976
2444
  id="vertical-expanded-legacy-example-database-link"
1977
2445
  >
@@ -1981,6 +2449,7 @@ cssPrefix: pf-c-tabs
1981
2449
 
1982
2450
  <li class="pf-c-tabs__item">
1983
2451
  <button
2452
+ type="button"
1984
2453
  class="pf-c-tabs__link"
1985
2454
  id="vertical-expanded-legacy-example-server-link"
1986
2455
  >
@@ -1989,6 +2458,7 @@ cssPrefix: pf-c-tabs
1989
2458
  </li>
1990
2459
  <li class="pf-c-tabs__item">
1991
2460
  <button
2461
+ type="button"
1992
2462
  class="pf-c-tabs__link"
1993
2463
  id="vertical-expanded-legacy-example-system-link"
1994
2464
  >
@@ -1997,6 +2467,7 @@ cssPrefix: pf-c-tabs
1997
2467
  </li>
1998
2468
  <li class="pf-c-tabs__item">
1999
2469
  <button
2470
+ type="button"
2000
2471
  class="pf-c-tabs__link"
2001
2472
  id="vertical-expanded-legacy-example-network-wired-link"
2002
2473
  >
@@ -2039,6 +2510,7 @@ cssPrefix: pf-c-tabs
2039
2510
  <ul class="pf-c-tabs__list">
2040
2511
  <li class="pf-c-tabs__item">
2041
2512
  <button
2513
+ type="button"
2042
2514
  class="pf-c-tabs__link"
2043
2515
  id="vertical-expandable-responsive-legacy-example-users-link"
2044
2516
  >
@@ -2047,6 +2519,7 @@ cssPrefix: pf-c-tabs
2047
2519
  </li>
2048
2520
  <li class="pf-c-tabs__item pf-m-current">
2049
2521
  <button
2522
+ type="button"
2050
2523
  class="pf-c-tabs__link"
2051
2524
  id="vertical-expandable-responsive-legacy-example-containers-link"
2052
2525
  >
@@ -2055,6 +2528,7 @@ cssPrefix: pf-c-tabs
2055
2528
  </li>
2056
2529
  <li class="pf-c-tabs__item">
2057
2530
  <button
2531
+ type="button"
2058
2532
  class="pf-c-tabs__link"
2059
2533
  id="vertical-expandable-responsive-legacy-example-database-link"
2060
2534
  >
@@ -2064,6 +2538,7 @@ cssPrefix: pf-c-tabs
2064
2538
 
2065
2539
  <li class="pf-c-tabs__item">
2066
2540
  <button
2541
+ type="button"
2067
2542
  class="pf-c-tabs__link"
2068
2543
  id="vertical-expandable-responsive-legacy-example-server-link"
2069
2544
  >
@@ -2072,6 +2547,7 @@ cssPrefix: pf-c-tabs
2072
2547
  </li>
2073
2548
  <li class="pf-c-tabs__item">
2074
2549
  <button
2550
+ type="button"
2075
2551
  class="pf-c-tabs__link"
2076
2552
  id="vertical-expandable-responsive-legacy-example-system-link"
2077
2553
  >
@@ -2080,6 +2556,7 @@ cssPrefix: pf-c-tabs
2080
2556
  </li>
2081
2557
  <li class="pf-c-tabs__item">
2082
2558
  <button
2559
+ type="button"
2083
2560
  class="pf-c-tabs__link"
2084
2561
  id="vertical-expandable-responsive-legacy-example-network-wired-link"
2085
2562
  >
@@ -2095,12 +2572,21 @@ cssPrefix: pf-c-tabs
2095
2572
 
2096
2573
  ```html
2097
2574
  <div class="pf-c-tabs pf-m-scrollable" id="close-default-example">
2098
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
2575
+ <button
2576
+ class="pf-c-tabs__scroll-button"
2577
+ type="button"
2578
+ disabled
2579
+ aria-label="Scroll left"
2580
+ >
2099
2581
  <i class="fas fa-angle-left" aria-hidden="true"></i>
2100
2582
  </button>
2101
2583
  <ul class="pf-c-tabs__list">
2102
2584
  <li class="pf-c-tabs__item pf-m-action">
2103
- <button class="pf-c-tabs__link" id="close-default-example-users-link">
2585
+ <button
2586
+ type="button"
2587
+ class="pf-c-tabs__link"
2588
+ id="close-default-example-users-link"
2589
+ >
2104
2590
  <span class="pf-c-tabs__item-text">Users</span>
2105
2591
  </button>
2106
2592
  <span class="pf-c-tabs__item-close">
@@ -2117,6 +2603,7 @@ cssPrefix: pf-c-tabs
2117
2603
  </li>
2118
2604
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
2119
2605
  <button
2606
+ type="button"
2120
2607
  class="pf-c-tabs__link"
2121
2608
  id="close-default-example-containers-link"
2122
2609
  >
@@ -2135,7 +2622,11 @@ cssPrefix: pf-c-tabs
2135
2622
  </span>
2136
2623
  </li>
2137
2624
  <li class="pf-c-tabs__item pf-m-action">
2138
- <button class="pf-c-tabs__link" id="close-default-example-database-link">
2625
+ <button
2626
+ type="button"
2627
+ class="pf-c-tabs__link"
2628
+ id="close-default-example-database-link"
2629
+ >
2139
2630
  <span class="pf-c-tabs__item-text">Database</span>
2140
2631
  </button>
2141
2632
  <span class="pf-c-tabs__item-close">
@@ -2153,6 +2644,7 @@ cssPrefix: pf-c-tabs
2153
2644
 
2154
2645
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2155
2646
  <button
2647
+ type="button"
2156
2648
  class="pf-c-tabs__link"
2157
2649
  disabled
2158
2650
  id="close-default-example-disabled-link"
@@ -2173,6 +2665,7 @@ cssPrefix: pf-c-tabs
2173
2665
  </li>
2174
2666
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2175
2667
  <button
2668
+ type="button"
2176
2669
  class="pf-c-tabs__link pf-m-aria-disabled"
2177
2670
  aria-disabled="true"
2178
2671
  id="close-default-example-aria-disabled-link"
@@ -2193,6 +2686,7 @@ cssPrefix: pf-c-tabs
2193
2686
  </li>
2194
2687
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2195
2688
  <button
2689
+ type="button"
2196
2690
  class="pf-c-tabs__link"
2197
2691
  disabled
2198
2692
  id="close-default-example-close-disabled-link"
@@ -2214,6 +2708,7 @@ cssPrefix: pf-c-tabs
2214
2708
  </li>
2215
2709
  <li class="pf-c-tabs__item pf-m-action">
2216
2710
  <button
2711
+ type="button"
2217
2712
  class="pf-c-tabs__link"
2218
2713
  id="close-default-example-network-wired-link"
2219
2714
  >
@@ -2233,7 +2728,11 @@ cssPrefix: pf-c-tabs
2233
2728
  </li>
2234
2729
  </ul>
2235
2730
 
2236
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
2731
+ <button
2732
+ class="pf-c-tabs__scroll-button"
2733
+ type="button"
2734
+ aria-label="Scroll right"
2735
+ >
2237
2736
  <i class="fas fa-angle-right" aria-hidden="true"></i>
2238
2737
  </button>
2239
2738
  </div>
@@ -2242,12 +2741,21 @@ cssPrefix: pf-c-tabs
2242
2741
  <br />
2243
2742
 
2244
2743
  <div class="pf-c-tabs pf-m-box pf-m-scrollable" id="close-box-example">
2245
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
2744
+ <button
2745
+ class="pf-c-tabs__scroll-button"
2746
+ type="button"
2747
+ disabled
2748
+ aria-label="Scroll left"
2749
+ >
2246
2750
  <i class="fas fa-angle-left" aria-hidden="true"></i>
2247
2751
  </button>
2248
2752
  <ul class="pf-c-tabs__list">
2249
2753
  <li class="pf-c-tabs__item pf-m-action">
2250
- <button class="pf-c-tabs__link" id="close-box-example-users-link">
2754
+ <button
2755
+ type="button"
2756
+ class="pf-c-tabs__link"
2757
+ id="close-box-example-users-link"
2758
+ >
2251
2759
  <span class="pf-c-tabs__item-text">Users</span>
2252
2760
  </button>
2253
2761
  <span class="pf-c-tabs__item-close">
@@ -2263,7 +2771,11 @@ cssPrefix: pf-c-tabs
2263
2771
  </span>
2264
2772
  </li>
2265
2773
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
2266
- <button class="pf-c-tabs__link" id="close-box-example-containers-link">
2774
+ <button
2775
+ type="button"
2776
+ class="pf-c-tabs__link"
2777
+ id="close-box-example-containers-link"
2778
+ >
2267
2779
  <span class="pf-c-tabs__item-text">Containers</span>
2268
2780
  </button>
2269
2781
  <span class="pf-c-tabs__item-close">
@@ -2279,7 +2791,11 @@ cssPrefix: pf-c-tabs
2279
2791
  </span>
2280
2792
  </li>
2281
2793
  <li class="pf-c-tabs__item pf-m-action">
2282
- <button class="pf-c-tabs__link" id="close-box-example-database-link">
2794
+ <button
2795
+ type="button"
2796
+ class="pf-c-tabs__link"
2797
+ id="close-box-example-database-link"
2798
+ >
2283
2799
  <span class="pf-c-tabs__item-text">Database</span>
2284
2800
  </button>
2285
2801
  <span class="pf-c-tabs__item-close">
@@ -2297,6 +2813,7 @@ cssPrefix: pf-c-tabs
2297
2813
 
2298
2814
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2299
2815
  <button
2816
+ type="button"
2300
2817
  class="pf-c-tabs__link"
2301
2818
  disabled
2302
2819
  id="close-box-example-disabled-link"
@@ -2317,6 +2834,7 @@ cssPrefix: pf-c-tabs
2317
2834
  </li>
2318
2835
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2319
2836
  <button
2837
+ type="button"
2320
2838
  class="pf-c-tabs__link pf-m-aria-disabled"
2321
2839
  aria-disabled="true"
2322
2840
  id="close-box-example-aria-disabled-link"
@@ -2337,6 +2855,7 @@ cssPrefix: pf-c-tabs
2337
2855
  </li>
2338
2856
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2339
2857
  <button
2858
+ type="button"
2340
2859
  class="pf-c-tabs__link"
2341
2860
  disabled
2342
2861
  id="close-box-example-close-disabled-link"
@@ -2357,7 +2876,11 @@ cssPrefix: pf-c-tabs
2357
2876
  </span>
2358
2877
  </li>
2359
2878
  <li class="pf-c-tabs__item pf-m-action">
2360
- <button class="pf-c-tabs__link" id="close-box-example-network-wired-link">
2879
+ <button
2880
+ type="button"
2881
+ class="pf-c-tabs__link"
2882
+ id="close-box-example-network-wired-link"
2883
+ >
2361
2884
  <span class="pf-c-tabs__item-text">Network</span>
2362
2885
  </button>
2363
2886
  <span class="pf-c-tabs__item-close">
@@ -2374,7 +2897,11 @@ cssPrefix: pf-c-tabs
2374
2897
  </li>
2375
2898
  </ul>
2376
2899
 
2377
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
2900
+ <button
2901
+ class="pf-c-tabs__scroll-button"
2902
+ type="button"
2903
+ aria-label="Scroll right"
2904
+ >
2378
2905
  <i class="fas fa-angle-right" aria-hidden="true"></i>
2379
2906
  </button>
2380
2907
  </div>
@@ -2386,12 +2913,18 @@ cssPrefix: pf-c-tabs
2386
2913
  class="pf-c-tabs pf-m-box pf-m-color-scheme--light-300 pf-m-scrollable"
2387
2914
  id="close-box-light-300-example"
2388
2915
  >
2389
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
2916
+ <button
2917
+ class="pf-c-tabs__scroll-button"
2918
+ type="button"
2919
+ disabled
2920
+ aria-label="Scroll left"
2921
+ >
2390
2922
  <i class="fas fa-angle-left" aria-hidden="true"></i>
2391
2923
  </button>
2392
2924
  <ul class="pf-c-tabs__list">
2393
2925
  <li class="pf-c-tabs__item pf-m-action">
2394
2926
  <button
2927
+ type="button"
2395
2928
  class="pf-c-tabs__link"
2396
2929
  id="close-box-light-300-example-users-link"
2397
2930
  >
@@ -2411,6 +2944,7 @@ cssPrefix: pf-c-tabs
2411
2944
  </li>
2412
2945
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
2413
2946
  <button
2947
+ type="button"
2414
2948
  class="pf-c-tabs__link"
2415
2949
  id="close-box-light-300-example-containers-link"
2416
2950
  >
@@ -2430,6 +2964,7 @@ cssPrefix: pf-c-tabs
2430
2964
  </li>
2431
2965
  <li class="pf-c-tabs__item pf-m-action">
2432
2966
  <button
2967
+ type="button"
2433
2968
  class="pf-c-tabs__link"
2434
2969
  id="close-box-light-300-example-database-link"
2435
2970
  >
@@ -2450,6 +2985,7 @@ cssPrefix: pf-c-tabs
2450
2985
 
2451
2986
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2452
2987
  <button
2988
+ type="button"
2453
2989
  class="pf-c-tabs__link"
2454
2990
  disabled
2455
2991
  id="close-box-light-300-example-disabled-link"
@@ -2470,6 +3006,7 @@ cssPrefix: pf-c-tabs
2470
3006
  </li>
2471
3007
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2472
3008
  <button
3009
+ type="button"
2473
3010
  class="pf-c-tabs__link pf-m-aria-disabled"
2474
3011
  aria-disabled="true"
2475
3012
  id="close-box-light-300-example-aria-disabled-link"
@@ -2490,6 +3027,7 @@ cssPrefix: pf-c-tabs
2490
3027
  </li>
2491
3028
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2492
3029
  <button
3030
+ type="button"
2493
3031
  class="pf-c-tabs__link"
2494
3032
  disabled
2495
3033
  id="close-box-light-300-example-close-disabled-link"
@@ -2511,6 +3049,7 @@ cssPrefix: pf-c-tabs
2511
3049
  </li>
2512
3050
  <li class="pf-c-tabs__item pf-m-action">
2513
3051
  <button
3052
+ type="button"
2514
3053
  class="pf-c-tabs__link"
2515
3054
  id="close-box-light-300-example-network-wired-link"
2516
3055
  >
@@ -2530,7 +3069,11 @@ cssPrefix: pf-c-tabs
2530
3069
  </li>
2531
3070
  </ul>
2532
3071
 
2533
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
3072
+ <button
3073
+ class="pf-c-tabs__scroll-button"
3074
+ type="button"
3075
+ aria-label="Scroll right"
3076
+ >
2534
3077
  <i class="fas fa-angle-right" aria-hidden="true"></i>
2535
3078
  </button>
2536
3079
  </div>
@@ -2539,12 +3082,21 @@ cssPrefix: pf-c-tabs
2539
3082
  <br />
2540
3083
 
2541
3084
  <div class="pf-c-tabs pf-m-scrollable" id="close-icons-text-example">
2542
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
3085
+ <button
3086
+ class="pf-c-tabs__scroll-button"
3087
+ type="button"
3088
+ disabled
3089
+ aria-label="Scroll left"
3090
+ >
2543
3091
  <i class="fas fa-angle-left" aria-hidden="true"></i>
2544
3092
  </button>
2545
3093
  <ul class="pf-c-tabs__list">
2546
3094
  <li class="pf-c-tabs__item pf-m-action">
2547
- <button class="pf-c-tabs__link" id="close-icons-text-example-users-link">
3095
+ <button
3096
+ type="button"
3097
+ class="pf-c-tabs__link"
3098
+ id="close-icons-text-example-users-link"
3099
+ >
2548
3100
  <span class="pf-c-tabs__item-icon">
2549
3101
  <i class="fas fa-fas fa-users" aria-hidden="true"></i>
2550
3102
  </span>
@@ -2564,6 +3116,7 @@ cssPrefix: pf-c-tabs
2564
3116
  </li>
2565
3117
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
2566
3118
  <button
3119
+ type="button"
2567
3120
  class="pf-c-tabs__link"
2568
3121
  id="close-icons-text-example-containers-link"
2569
3122
  >
@@ -2586,6 +3139,7 @@ cssPrefix: pf-c-tabs
2586
3139
  </li>
2587
3140
  <li class="pf-c-tabs__item pf-m-action">
2588
3141
  <button
3142
+ type="button"
2589
3143
  class="pf-c-tabs__link"
2590
3144
  id="close-icons-text-example-database-link"
2591
3145
  >
@@ -2609,6 +3163,7 @@ cssPrefix: pf-c-tabs
2609
3163
 
2610
3164
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2611
3165
  <button
3166
+ type="button"
2612
3167
  class="pf-c-tabs__link"
2613
3168
  disabled
2614
3169
  id="close-icons-text-example-disabled-link"
@@ -2632,6 +3187,7 @@ cssPrefix: pf-c-tabs
2632
3187
  </li>
2633
3188
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2634
3189
  <button
3190
+ type="button"
2635
3191
  class="pf-c-tabs__link pf-m-aria-disabled"
2636
3192
  aria-disabled="true"
2637
3193
  id="close-icons-text-example-aria-disabled-link"
@@ -2655,6 +3211,7 @@ cssPrefix: pf-c-tabs
2655
3211
  </li>
2656
3212
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2657
3213
  <button
3214
+ type="button"
2658
3215
  class="pf-c-tabs__link"
2659
3216
  disabled
2660
3217
  id="close-icons-text-example-close-disabled-link"
@@ -2679,6 +3236,7 @@ cssPrefix: pf-c-tabs
2679
3236
  </li>
2680
3237
  <li class="pf-c-tabs__item pf-m-action">
2681
3238
  <button
3239
+ type="button"
2682
3240
  class="pf-c-tabs__link"
2683
3241
  id="close-icons-text-example-network-wired-link"
2684
3242
  >
@@ -2701,7 +3259,11 @@ cssPrefix: pf-c-tabs
2701
3259
  </li>
2702
3260
  </ul>
2703
3261
 
2704
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
3262
+ <button
3263
+ class="pf-c-tabs__scroll-button"
3264
+ type="button"
3265
+ aria-label="Scroll right"
3266
+ >
2705
3267
  <i class="fas fa-angle-right" aria-hidden="true"></i>
2706
3268
  </button>
2707
3269
  </div>
@@ -2710,12 +3272,21 @@ cssPrefix: pf-c-tabs
2710
3272
  <br />
2711
3273
 
2712
3274
  <div class="pf-c-tabs pf-m-fill pf-m-scrollable" id="close-filled-example">
2713
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
3275
+ <button
3276
+ class="pf-c-tabs__scroll-button"
3277
+ type="button"
3278
+ disabled
3279
+ aria-label="Scroll left"
3280
+ >
2714
3281
  <i class="fas fa-angle-left" aria-hidden="true"></i>
2715
3282
  </button>
2716
3283
  <ul class="pf-c-tabs__list">
2717
3284
  <li class="pf-c-tabs__item pf-m-action">
2718
- <button class="pf-c-tabs__link" id="close-filled-example-users-link">
3285
+ <button
3286
+ type="button"
3287
+ class="pf-c-tabs__link"
3288
+ id="close-filled-example-users-link"
3289
+ >
2719
3290
  <span class="pf-c-tabs__item-text">Users</span>
2720
3291
  </button>
2721
3292
  <span class="pf-c-tabs__item-close">
@@ -2731,7 +3302,11 @@ cssPrefix: pf-c-tabs
2731
3302
  </span>
2732
3303
  </li>
2733
3304
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
2734
- <button class="pf-c-tabs__link" id="close-filled-example-containers-link">
3305
+ <button
3306
+ type="button"
3307
+ class="pf-c-tabs__link"
3308
+ id="close-filled-example-containers-link"
3309
+ >
2735
3310
  <span class="pf-c-tabs__item-text">Containers</span>
2736
3311
  </button>
2737
3312
  <span class="pf-c-tabs__item-close">
@@ -2747,7 +3322,11 @@ cssPrefix: pf-c-tabs
2747
3322
  </span>
2748
3323
  </li>
2749
3324
  <li class="pf-c-tabs__item pf-m-action">
2750
- <button class="pf-c-tabs__link" id="close-filled-example-database-link">
3325
+ <button
3326
+ type="button"
3327
+ class="pf-c-tabs__link"
3328
+ id="close-filled-example-database-link"
3329
+ >
2751
3330
  <span class="pf-c-tabs__item-text">Database</span>
2752
3331
  </button>
2753
3332
  <span class="pf-c-tabs__item-close">
@@ -2765,6 +3344,7 @@ cssPrefix: pf-c-tabs
2765
3344
 
2766
3345
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2767
3346
  <button
3347
+ type="button"
2768
3348
  class="pf-c-tabs__link"
2769
3349
  disabled
2770
3350
  id="close-filled-example-disabled-link"
@@ -2785,6 +3365,7 @@ cssPrefix: pf-c-tabs
2785
3365
  </li>
2786
3366
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2787
3367
  <button
3368
+ type="button"
2788
3369
  class="pf-c-tabs__link pf-m-aria-disabled"
2789
3370
  aria-disabled="true"
2790
3371
  id="close-filled-example-aria-disabled-link"
@@ -2805,6 +3386,7 @@ cssPrefix: pf-c-tabs
2805
3386
  </li>
2806
3387
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2807
3388
  <button
3389
+ type="button"
2808
3390
  class="pf-c-tabs__link"
2809
3391
  disabled
2810
3392
  id="close-filled-example-close-disabled-link"
@@ -2826,6 +3408,7 @@ cssPrefix: pf-c-tabs
2826
3408
  </li>
2827
3409
  <li class="pf-c-tabs__item pf-m-action">
2828
3410
  <button
3411
+ type="button"
2829
3412
  class="pf-c-tabs__link"
2830
3413
  id="close-filled-example-network-wired-link"
2831
3414
  >
@@ -2845,7 +3428,11 @@ cssPrefix: pf-c-tabs
2845
3428
  </li>
2846
3429
  </ul>
2847
3430
 
2848
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
3431
+ <button
3432
+ class="pf-c-tabs__scroll-button"
3433
+ type="button"
3434
+ aria-label="Scroll right"
3435
+ >
2849
3436
  <i class="fas fa-angle-right" aria-hidden="true"></i>
2850
3437
  </button>
2851
3438
  </div>
@@ -2854,12 +3441,18 @@ cssPrefix: pf-c-tabs
2854
3441
  <br />
2855
3442
 
2856
3443
  <div class="pf-c-tabs pf-m-scrollable" id="close-secondary-primary-example">
2857
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
3444
+ <button
3445
+ class="pf-c-tabs__scroll-button"
3446
+ type="button"
3447
+ disabled
3448
+ aria-label="Scroll left"
3449
+ >
2858
3450
  <i class="fas fa-angle-left" aria-hidden="true"></i>
2859
3451
  </button>
2860
3452
  <ul class="pf-c-tabs__list">
2861
3453
  <li class="pf-c-tabs__item pf-m-action">
2862
3454
  <button
3455
+ type="button"
2863
3456
  class="pf-c-tabs__link"
2864
3457
  id="close-secondary-primary-example-users-link"
2865
3458
  >
@@ -2879,6 +3472,7 @@ cssPrefix: pf-c-tabs
2879
3472
  </li>
2880
3473
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
2881
3474
  <button
3475
+ type="button"
2882
3476
  class="pf-c-tabs__link"
2883
3477
  id="close-secondary-primary-example-containers-link"
2884
3478
  >
@@ -2898,6 +3492,7 @@ cssPrefix: pf-c-tabs
2898
3492
  </li>
2899
3493
  <li class="pf-c-tabs__item pf-m-action">
2900
3494
  <button
3495
+ type="button"
2901
3496
  class="pf-c-tabs__link"
2902
3497
  id="close-secondary-primary-example-database-link"
2903
3498
  >
@@ -2918,6 +3513,7 @@ cssPrefix: pf-c-tabs
2918
3513
 
2919
3514
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2920
3515
  <button
3516
+ type="button"
2921
3517
  class="pf-c-tabs__link"
2922
3518
  disabled
2923
3519
  id="close-secondary-primary-example-disabled-link"
@@ -2938,6 +3534,7 @@ cssPrefix: pf-c-tabs
2938
3534
  </li>
2939
3535
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2940
3536
  <button
3537
+ type="button"
2941
3538
  class="pf-c-tabs__link pf-m-aria-disabled"
2942
3539
  aria-disabled="true"
2943
3540
  id="close-secondary-primary-example-aria-disabled-link"
@@ -2958,6 +3555,7 @@ cssPrefix: pf-c-tabs
2958
3555
  </li>
2959
3556
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
2960
3557
  <button
3558
+ type="button"
2961
3559
  class="pf-c-tabs__link"
2962
3560
  disabled
2963
3561
  id="close-secondary-primary-example-close-disabled-link"
@@ -2979,6 +3577,7 @@ cssPrefix: pf-c-tabs
2979
3577
  </li>
2980
3578
  <li class="pf-c-tabs__item pf-m-action">
2981
3579
  <button
3580
+ type="button"
2982
3581
  class="pf-c-tabs__link"
2983
3582
  id="close-secondary-primary-example-network-wired-link"
2984
3583
  >
@@ -2998,7 +3597,11 @@ cssPrefix: pf-c-tabs
2998
3597
  </li>
2999
3598
  </ul>
3000
3599
 
3001
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
3600
+ <button
3601
+ class="pf-c-tabs__scroll-button"
3602
+ type="button"
3603
+ aria-label="Scroll right"
3604
+ >
3002
3605
  <i class="fas fa-angle-right" aria-hidden="true"></i>
3003
3606
  </button>
3004
3607
  </div>
@@ -3006,12 +3609,18 @@ cssPrefix: pf-c-tabs
3006
3609
  class="pf-c-tabs pf-m-secondary pf-m-scrollable"
3007
3610
  id="close-secondary-secondary-example"
3008
3611
  >
3009
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
3612
+ <button
3613
+ class="pf-c-tabs__scroll-button"
3614
+ type="button"
3615
+ disabled
3616
+ aria-label="Scroll left"
3617
+ >
3010
3618
  <i class="fas fa-angle-left" aria-hidden="true"></i>
3011
3619
  </button>
3012
3620
  <ul class="pf-c-tabs__list">
3013
3621
  <li class="pf-c-tabs__item pf-m-action">
3014
3622
  <button
3623
+ type="button"
3015
3624
  class="pf-c-tabs__link"
3016
3625
  id="close-secondary-secondary-example-users-link"
3017
3626
  >
@@ -3031,6 +3640,7 @@ cssPrefix: pf-c-tabs
3031
3640
  </li>
3032
3641
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
3033
3642
  <button
3643
+ type="button"
3034
3644
  class="pf-c-tabs__link"
3035
3645
  id="close-secondary-secondary-example-containers-link"
3036
3646
  >
@@ -3050,6 +3660,7 @@ cssPrefix: pf-c-tabs
3050
3660
  </li>
3051
3661
  <li class="pf-c-tabs__item pf-m-action">
3052
3662
  <button
3663
+ type="button"
3053
3664
  class="pf-c-tabs__link"
3054
3665
  id="close-secondary-secondary-example-database-link"
3055
3666
  >
@@ -3070,6 +3681,7 @@ cssPrefix: pf-c-tabs
3070
3681
 
3071
3682
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
3072
3683
  <button
3684
+ type="button"
3073
3685
  class="pf-c-tabs__link"
3074
3686
  disabled
3075
3687
  id="close-secondary-secondary-example-disabled-link"
@@ -3090,6 +3702,7 @@ cssPrefix: pf-c-tabs
3090
3702
  </li>
3091
3703
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
3092
3704
  <button
3705
+ type="button"
3093
3706
  class="pf-c-tabs__link pf-m-aria-disabled"
3094
3707
  aria-disabled="true"
3095
3708
  id="close-secondary-secondary-example-aria-disabled-link"
@@ -3110,6 +3723,7 @@ cssPrefix: pf-c-tabs
3110
3723
  </li>
3111
3724
  <li class="pf-c-tabs__item pf-m-action pf-m-disabled">
3112
3725
  <button
3726
+ type="button"
3113
3727
  class="pf-c-tabs__link"
3114
3728
  disabled
3115
3729
  id="close-secondary-secondary-example-close-disabled-link"
@@ -3131,6 +3745,7 @@ cssPrefix: pf-c-tabs
3131
3745
  </li>
3132
3746
  <li class="pf-c-tabs__item pf-m-action">
3133
3747
  <button
3748
+ type="button"
3134
3749
  class="pf-c-tabs__link"
3135
3750
  id="close-secondary-secondary-example-network-wired-link"
3136
3751
  >
@@ -3150,7 +3765,11 @@ cssPrefix: pf-c-tabs
3150
3765
  </li>
3151
3766
  </ul>
3152
3767
 
3153
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
3768
+ <button
3769
+ class="pf-c-tabs__scroll-button"
3770
+ type="button"
3771
+ aria-label="Scroll right"
3772
+ >
3154
3773
  <i class="fas fa-angle-right" aria-hidden="true"></i>
3155
3774
  </button>
3156
3775
  </div>
@@ -3161,12 +3780,21 @@ cssPrefix: pf-c-tabs
3161
3780
 
3162
3781
  ```html
3163
3782
  <div class="pf-c-tabs pf-m-scrollable" id="add-default-example">
3164
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
3783
+ <button
3784
+ class="pf-c-tabs__scroll-button"
3785
+ type="button"
3786
+ disabled
3787
+ aria-label="Scroll left"
3788
+ >
3165
3789
  <i class="fas fa-angle-left" aria-hidden="true"></i>
3166
3790
  </button>
3167
3791
  <ul class="pf-c-tabs__list">
3168
3792
  <li class="pf-c-tabs__item pf-m-action">
3169
- <button class="pf-c-tabs__link" id="add-default-example-users-link">
3793
+ <button
3794
+ type="button"
3795
+ class="pf-c-tabs__link"
3796
+ id="add-default-example-users-link"
3797
+ >
3170
3798
  <span class="pf-c-tabs__item-text">Users</span>
3171
3799
  </button>
3172
3800
  <span class="pf-c-tabs__item-close">
@@ -3182,7 +3810,11 @@ cssPrefix: pf-c-tabs
3182
3810
  </span>
3183
3811
  </li>
3184
3812
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
3185
- <button class="pf-c-tabs__link" id="add-default-example-containers-link">
3813
+ <button
3814
+ type="button"
3815
+ class="pf-c-tabs__link"
3816
+ id="add-default-example-containers-link"
3817
+ >
3186
3818
  <span class="pf-c-tabs__item-text">Containers</span>
3187
3819
  </button>
3188
3820
  <span class="pf-c-tabs__item-close">
@@ -3198,7 +3830,11 @@ cssPrefix: pf-c-tabs
3198
3830
  </span>
3199
3831
  </li>
3200
3832
  <li class="pf-c-tabs__item pf-m-action">
3201
- <button class="pf-c-tabs__link" id="add-default-example-database-link">
3833
+ <button
3834
+ type="button"
3835
+ class="pf-c-tabs__link"
3836
+ id="add-default-example-database-link"
3837
+ >
3202
3838
  <span class="pf-c-tabs__item-text">Database</span>
3203
3839
  </button>
3204
3840
  <span class="pf-c-tabs__item-close">
@@ -3215,7 +3851,11 @@ cssPrefix: pf-c-tabs
3215
3851
  </li>
3216
3852
 
3217
3853
  <li class="pf-c-tabs__item pf-m-action">
3218
- <button class="pf-c-tabs__link" id="add-default-example-server-link">
3854
+ <button
3855
+ type="button"
3856
+ class="pf-c-tabs__link"
3857
+ id="add-default-example-server-link"
3858
+ >
3219
3859
  <span class="pf-c-tabs__item-text">Server</span>
3220
3860
  </button>
3221
3861
  <span class="pf-c-tabs__item-close">
@@ -3231,7 +3871,11 @@ cssPrefix: pf-c-tabs
3231
3871
  </span>
3232
3872
  </li>
3233
3873
  <li class="pf-c-tabs__item pf-m-action">
3234
- <button class="pf-c-tabs__link" id="add-default-example-system-link">
3874
+ <button
3875
+ type="button"
3876
+ class="pf-c-tabs__link"
3877
+ id="add-default-example-system-link"
3878
+ >
3235
3879
  <span class="pf-c-tabs__item-text">System</span>
3236
3880
  </button>
3237
3881
  <span class="pf-c-tabs__item-close">
@@ -3248,6 +3892,7 @@ cssPrefix: pf-c-tabs
3248
3892
  </li>
3249
3893
  <li class="pf-c-tabs__item pf-m-action">
3250
3894
  <button
3895
+ type="button"
3251
3896
  class="pf-c-tabs__link"
3252
3897
  id="add-default-example-network-wired-link"
3253
3898
  >
@@ -3267,7 +3912,11 @@ cssPrefix: pf-c-tabs
3267
3912
  </li>
3268
3913
  </ul>
3269
3914
 
3270
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
3915
+ <button
3916
+ class="pf-c-tabs__scroll-button"
3917
+ type="button"
3918
+ aria-label="Scroll right"
3919
+ >
3271
3920
  <i class="fas fa-angle-right" aria-hidden="true"></i>
3272
3921
  </button>
3273
3922
  <span class="pf-c-tabs__add">
@@ -3280,12 +3929,21 @@ cssPrefix: pf-c-tabs
3280
3929
  class="pf-c-tabs pf-m-secondary pf-m-scrollable"
3281
3930
  id="add-secondary-example"
3282
3931
  >
3283
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
3932
+ <button
3933
+ class="pf-c-tabs__scroll-button"
3934
+ type="button"
3935
+ disabled
3936
+ aria-label="Scroll left"
3937
+ >
3284
3938
  <i class="fas fa-angle-left" aria-hidden="true"></i>
3285
3939
  </button>
3286
3940
  <ul class="pf-c-tabs__list">
3287
3941
  <li class="pf-c-tabs__item pf-m-action">
3288
- <button class="pf-c-tabs__link" id="add-secondary-example-users-link">
3942
+ <button
3943
+ type="button"
3944
+ class="pf-c-tabs__link"
3945
+ id="add-secondary-example-users-link"
3946
+ >
3289
3947
  <span class="pf-c-tabs__item-text">Users</span>
3290
3948
  </button>
3291
3949
  <span class="pf-c-tabs__item-close">
@@ -3302,6 +3960,7 @@ cssPrefix: pf-c-tabs
3302
3960
  </li>
3303
3961
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
3304
3962
  <button
3963
+ type="button"
3305
3964
  class="pf-c-tabs__link"
3306
3965
  id="add-secondary-example-containers-link"
3307
3966
  >
@@ -3320,7 +3979,11 @@ cssPrefix: pf-c-tabs
3320
3979
  </span>
3321
3980
  </li>
3322
3981
  <li class="pf-c-tabs__item pf-m-action">
3323
- <button class="pf-c-tabs__link" id="add-secondary-example-database-link">
3982
+ <button
3983
+ type="button"
3984
+ class="pf-c-tabs__link"
3985
+ id="add-secondary-example-database-link"
3986
+ >
3324
3987
  <span class="pf-c-tabs__item-text">Database</span>
3325
3988
  </button>
3326
3989
  <span class="pf-c-tabs__item-close">
@@ -3337,7 +4000,11 @@ cssPrefix: pf-c-tabs
3337
4000
  </li>
3338
4001
 
3339
4002
  <li class="pf-c-tabs__item pf-m-action">
3340
- <button class="pf-c-tabs__link" id="add-secondary-example-server-link">
4003
+ <button
4004
+ type="button"
4005
+ class="pf-c-tabs__link"
4006
+ id="add-secondary-example-server-link"
4007
+ >
3341
4008
  <span class="pf-c-tabs__item-text">Server</span>
3342
4009
  </button>
3343
4010
  <span class="pf-c-tabs__item-close">
@@ -3353,7 +4020,11 @@ cssPrefix: pf-c-tabs
3353
4020
  </span>
3354
4021
  </li>
3355
4022
  <li class="pf-c-tabs__item pf-m-action">
3356
- <button class="pf-c-tabs__link" id="add-secondary-example-system-link">
4023
+ <button
4024
+ type="button"
4025
+ class="pf-c-tabs__link"
4026
+ id="add-secondary-example-system-link"
4027
+ >
3357
4028
  <span class="pf-c-tabs__item-text">System</span>
3358
4029
  </button>
3359
4030
  <span class="pf-c-tabs__item-close">
@@ -3370,6 +4041,7 @@ cssPrefix: pf-c-tabs
3370
4041
  </li>
3371
4042
  <li class="pf-c-tabs__item pf-m-action">
3372
4043
  <button
4044
+ type="button"
3373
4045
  class="pf-c-tabs__link"
3374
4046
  id="add-secondary-example-network-wired-link"
3375
4047
  >
@@ -3389,7 +4061,11 @@ cssPrefix: pf-c-tabs
3389
4061
  </li>
3390
4062
  </ul>
3391
4063
 
3392
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
4064
+ <button
4065
+ class="pf-c-tabs__scroll-button"
4066
+ type="button"
4067
+ aria-label="Scroll right"
4068
+ >
3393
4069
  <i class="fas fa-angle-right" aria-hidden="true"></i>
3394
4070
  </button>
3395
4071
  <span class="pf-c-tabs__add">
@@ -3403,12 +4079,21 @@ cssPrefix: pf-c-tabs
3403
4079
  <br />
3404
4080
 
3405
4081
  <div class="pf-c-tabs pf-m-box pf-m-scrollable" id="add-box-example">
3406
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
4082
+ <button
4083
+ class="pf-c-tabs__scroll-button"
4084
+ type="button"
4085
+ disabled
4086
+ aria-label="Scroll left"
4087
+ >
3407
4088
  <i class="fas fa-angle-left" aria-hidden="true"></i>
3408
4089
  </button>
3409
4090
  <ul class="pf-c-tabs__list">
3410
4091
  <li class="pf-c-tabs__item pf-m-action">
3411
- <button class="pf-c-tabs__link" id="add-box-example-users-link">
4092
+ <button
4093
+ type="button"
4094
+ class="pf-c-tabs__link"
4095
+ id="add-box-example-users-link"
4096
+ >
3412
4097
  <span class="pf-c-tabs__item-text">Users</span>
3413
4098
  </button>
3414
4099
  <span class="pf-c-tabs__item-close">
@@ -3424,7 +4109,11 @@ cssPrefix: pf-c-tabs
3424
4109
  </span>
3425
4110
  </li>
3426
4111
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
3427
- <button class="pf-c-tabs__link" id="add-box-example-containers-link">
4112
+ <button
4113
+ type="button"
4114
+ class="pf-c-tabs__link"
4115
+ id="add-box-example-containers-link"
4116
+ >
3428
4117
  <span class="pf-c-tabs__item-text">Containers</span>
3429
4118
  </button>
3430
4119
  <span class="pf-c-tabs__item-close">
@@ -3440,7 +4129,11 @@ cssPrefix: pf-c-tabs
3440
4129
  </span>
3441
4130
  </li>
3442
4131
  <li class="pf-c-tabs__item pf-m-action">
3443
- <button class="pf-c-tabs__link" id="add-box-example-database-link">
4132
+ <button
4133
+ type="button"
4134
+ class="pf-c-tabs__link"
4135
+ id="add-box-example-database-link"
4136
+ >
3444
4137
  <span class="pf-c-tabs__item-text">Database</span>
3445
4138
  </button>
3446
4139
  <span class="pf-c-tabs__item-close">
@@ -3457,7 +4150,11 @@ cssPrefix: pf-c-tabs
3457
4150
  </li>
3458
4151
 
3459
4152
  <li class="pf-c-tabs__item pf-m-action">
3460
- <button class="pf-c-tabs__link" id="add-box-example-server-link">
4153
+ <button
4154
+ type="button"
4155
+ class="pf-c-tabs__link"
4156
+ id="add-box-example-server-link"
4157
+ >
3461
4158
  <span class="pf-c-tabs__item-text">Server</span>
3462
4159
  </button>
3463
4160
  <span class="pf-c-tabs__item-close">
@@ -3473,7 +4170,11 @@ cssPrefix: pf-c-tabs
3473
4170
  </span>
3474
4171
  </li>
3475
4172
  <li class="pf-c-tabs__item pf-m-action">
3476
- <button class="pf-c-tabs__link" id="add-box-example-system-link">
4173
+ <button
4174
+ type="button"
4175
+ class="pf-c-tabs__link"
4176
+ id="add-box-example-system-link"
4177
+ >
3477
4178
  <span class="pf-c-tabs__item-text">System</span>
3478
4179
  </button>
3479
4180
  <span class="pf-c-tabs__item-close">
@@ -3489,7 +4190,11 @@ cssPrefix: pf-c-tabs
3489
4190
  </span>
3490
4191
  </li>
3491
4192
  <li class="pf-c-tabs__item pf-m-action">
3492
- <button class="pf-c-tabs__link" id="add-box-example-network-wired-link">
4193
+ <button
4194
+ type="button"
4195
+ class="pf-c-tabs__link"
4196
+ id="add-box-example-network-wired-link"
4197
+ >
3493
4198
  <span class="pf-c-tabs__item-text">Network</span>
3494
4199
  </button>
3495
4200
  <span class="pf-c-tabs__item-close">
@@ -3506,7 +4211,11 @@ cssPrefix: pf-c-tabs
3506
4211
  </li>
3507
4212
  </ul>
3508
4213
 
3509
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
4214
+ <button
4215
+ class="pf-c-tabs__scroll-button"
4216
+ type="button"
4217
+ aria-label="Scroll right"
4218
+ >
3510
4219
  <i class="fas fa-angle-right" aria-hidden="true"></i>
3511
4220
  </button>
3512
4221
  <span class="pf-c-tabs__add">
@@ -3523,12 +4232,21 @@ cssPrefix: pf-c-tabs
3523
4232
  class="pf-c-tabs pf-m-box pf-m-color-scheme--light-300 pf-m-scrollable"
3524
4233
  id="add-box-light-300-example"
3525
4234
  >
3526
- <button class="pf-c-tabs__scroll-button" disabled aria-label="Scroll left">
4235
+ <button
4236
+ class="pf-c-tabs__scroll-button"
4237
+ type="button"
4238
+ disabled
4239
+ aria-label="Scroll left"
4240
+ >
3527
4241
  <i class="fas fa-angle-left" aria-hidden="true"></i>
3528
4242
  </button>
3529
4243
  <ul class="pf-c-tabs__list">
3530
4244
  <li class="pf-c-tabs__item pf-m-action">
3531
- <button class="pf-c-tabs__link" id="add-box-light-300-example-users-link">
4245
+ <button
4246
+ type="button"
4247
+ class="pf-c-tabs__link"
4248
+ id="add-box-light-300-example-users-link"
4249
+ >
3532
4250
  <span class="pf-c-tabs__item-text">Users</span>
3533
4251
  </button>
3534
4252
  <span class="pf-c-tabs__item-close">
@@ -3545,6 +4263,7 @@ cssPrefix: pf-c-tabs
3545
4263
  </li>
3546
4264
  <li class="pf-c-tabs__item pf-m-current pf-m-action">
3547
4265
  <button
4266
+ type="button"
3548
4267
  class="pf-c-tabs__link"
3549
4268
  id="add-box-light-300-example-containers-link"
3550
4269
  >
@@ -3564,6 +4283,7 @@ cssPrefix: pf-c-tabs
3564
4283
  </li>
3565
4284
  <li class="pf-c-tabs__item pf-m-action">
3566
4285
  <button
4286
+ type="button"
3567
4287
  class="pf-c-tabs__link"
3568
4288
  id="add-box-light-300-example-database-link"
3569
4289
  >
@@ -3584,6 +4304,7 @@ cssPrefix: pf-c-tabs
3584
4304
 
3585
4305
  <li class="pf-c-tabs__item pf-m-action">
3586
4306
  <button
4307
+ type="button"
3587
4308
  class="pf-c-tabs__link"
3588
4309
  id="add-box-light-300-example-server-link"
3589
4310
  >
@@ -3603,6 +4324,7 @@ cssPrefix: pf-c-tabs
3603
4324
  </li>
3604
4325
  <li class="pf-c-tabs__item pf-m-action">
3605
4326
  <button
4327
+ type="button"
3606
4328
  class="pf-c-tabs__link"
3607
4329
  id="add-box-light-300-example-system-link"
3608
4330
  >
@@ -3622,6 +4344,7 @@ cssPrefix: pf-c-tabs
3622
4344
  </li>
3623
4345
  <li class="pf-c-tabs__item pf-m-action">
3624
4346
  <button
4347
+ type="button"
3625
4348
  class="pf-c-tabs__link"
3626
4349
  id="add-box-light-300-example-network-wired-link"
3627
4350
  >
@@ -3641,7 +4364,11 @@ cssPrefix: pf-c-tabs
3641
4364
  </li>
3642
4365
  </ul>
3643
4366
 
3644
- <button class="pf-c-tabs__scroll-button" aria-label="Scroll right">
4367
+ <button
4368
+ class="pf-c-tabs__scroll-button"
4369
+ type="button"
4370
+ aria-label="Scroll right"
4371
+ >
3645
4372
  <i class="fas fa-angle-right" aria-hidden="true"></i>
3646
4373
  </button>
3647
4374
  <span class="pf-c-tabs__add">