forked from patternfly/patternfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackstop.config.js
1118 lines (1115 loc) · 58.2 KB
/
backstop.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Viewports to test against
const viewports = {
mobile: {
width: 320,
height: 480
},
tablet: {
width: 1024,
height: 768
},
desktop: {
width: 1280,
height: 1024
}
};
// Base URL for the test relative URLs - defaults to the PF core default dev server
const baseUrl = 'http://localhost:8001';
// Relative URLs to test
// These can be regular array item with the URL as the item, or an object with a 'url' item for the URL and additional items for scenario options outlined at https://github.com/garris/BackstopJS#advanced-scenarios
/* For example
const relativeUrls = [
'/components/about-modal/html-demos/basic',
{
url: '/components/about-modal/html/basic',
delay: 1000,
hoverSelectors: [".my-nav-menu-item",".my-nav-menu-dropdown-item"]
},
'/components/accordion/html/bordered',
*/
const relativeUrls = [
'/components/about-modal/html-demos/basic',
'/components/about-modal/html/basic',
'/components/accordion/html/bordered',
'/components/accordion/html/definition-list',
'/components/accordion/html/fixed',
'/components/accordion/html/fluid',
'/components/accordion/html/large-bordered',
'/components/action-list/html/action-list-multiple-groups',
'/components/action-list/html/action-list-single-group',
'/components/action-list/html/action-list-with-cancel-button',
'/components/action-list/html/action-list-with-icons',
'/components/alert/html-demos/inline-alert-in-horizontal-form',
'/components/alert/html-demos/inline-alert-in-stacked-form',
'/components/alert/html-demos/toast',
'/components/alert/html/custom-icon',
'/components/alert/html/expandable',
'/components/alert/html/inline-plain',
'/components/alert/html/inline-types',
'/components/alert/html/inline-variations',
'/components/alert/html/static-alert-group',
'/components/alert/html/toast-alert-group',
'/components/alert/html/types',
'/components/alert/html/variations',
'/components/avatar/html/basic',
'/components/avatar/html/bordered---dark',
'/components/avatar/html/bordered---light',
'/components/avatar/html/extra-large',
'/components/avatar/html/large',
'/components/avatar/html/medium',
'/components/avatar/html/small',
'/components/back-to-top/html-demos/basic',
'/components/back-to-top/html/basic',
'/components/backdrop/html/basic',
'/components/background-image/html/basic',
'/components/badge/html/read',
'/components/badge/html/unread',
'/components/banner/html-demos/basic',
'/components/banner/html-demos/topbottom',
'/components/banner/html/banner-with-links',
'/components/banner/html/basic',
'/components/banner/html/status',
'/components/brand/html/basic',
'/components/brand/html/responsive',
'/components/breadcrumb/html/basic',
'/components/breadcrumb/html/with-buttons',
'/components/breadcrumb/html/with-dropdown',
'/components/breadcrumb/html/with-heading',
'/components/breadcrumb/html/without-home-link',
'/components/button/html-demos/progress-button---complete',
'/components/button/html-demos/progress-button---initial',
'/components/button/html-demos/progress-button---loading',
'/components/button/html/aria-disabled',
'/components/button/html/block-level',
'/components/button/html/call-to-action',
'/components/button/html/disabled',
'/components/button/html/inline-link-as-span',
'/components/button/html/link-button-with-a-count',
'/components/button/html/links-as-buttons',
'/components/button/html/progress',
'/components/button/html/types',
'/components/button/html/variations',
'/components/card/html-demos/aggregate-status-card',
'/components/card/html-demos/details-card',
'/components/card/html-demos/events-view',
'/components/card/html-demos/horizontal-grid-collapsed',
'/components/card/html-demos/horizontal-grid-expanded',
'/components/card/html-demos/horizontal-split',
'/components/card/html-demos/log-view',
'/components/card/html-demos/nested-cards-with-expand-toggle',
'/components/card/html-demos/nested-cards-with-expand-toggle-on-the-right',
'/components/card/html-demos/status-card',
'/components/card/html-demos/status-card-expanded-notifications',
'/components/card/html-demos/status-card-expanded-with-popover',
'/components/card/html-demos/status-tabbed-card',
'/components/card/html-demos/trend-card-1',
'/components/card/html-demos/trend-card-2',
'/components/card/html-demos/utilization-card-1',
'/components/card/html-demos/utilization-card-2',
'/components/card/html-demos/utilization-card-3',
'/components/card/html-demos/utilization-card-4',
'/components/card/html-demos/with-accordion',
'/components/card/html/actions-with-no-offset',
'/components/card/html/basic',
'/components/card/html/card-with-dividers-between-sections',
'/components/card/html/clickable',
'/components/card/html/clickable-and-selectable',
'/components/card/html/compact',
'/components/card/html/expandable',
'/components/card/html/expandable-toggle-on-right',
'/components/card/html/expandable-with-image',
'/components/card/html/expanded',
'/components/card/html/flat',
'/components/card/html/full-height-card',
'/components/card/html/hoverable-raised',
'/components/card/html/large',
'/components/card/html/non-selectable-raised',
'/components/card/html/plain',
'/components/card/html/rounded',
'/components/card/html/selectable',
'/components/card/html/selectable-raised',
'/components/card/html/selectable-raised-with-a-hidden-input-for-improved-screen-reader-accessibility',
'/components/card/html/selected-raised',
'/components/card/html/single-selectable',
'/components/card/html/with-image-and-action',
'/components/card/html/with-multiple-body-sections',
'/components/card/html/with-no-footer',
'/components/card/html/with-no-title',
'/components/card/html/with-only-a-content-section',
'/components/card/html/with-only-actions-in-head-no-titlefooter',
'/components/card/html/with-only-image-in-head',
'/components/card/html/with-only-one-body-that-fills',
'/components/card/html/with-title-in-head',
'/components/chip/html/chip-group-with-categories',
'/components/chip/html/chip-group-with-categories-and-overflow',
'/components/chip/html/chip-group-with-categories-and-overflow-expanded',
'/components/chip/html/chip-group-with-removable-categories',
'/components/chip/html/chip-variants',
'/components/chip/html/simple-inline-chip-group-expanded',
'/components/chip/html/simple-inline-chip-group-with-overflow',
'/components/clipboard-copy/html/basic',
'/components/clipboard-copy/html/expandable',
'/components/clipboard-copy/html/inline-compact',
'/components/clipboard-copy/html/inline-compact-code',
'/components/clipboard-copy/html/inline-compact-in-sentence',
'/components/clipboard-copy/html/inline-compact-with-additional-action',
'/components/code-block/html/basic',
'/components/code-block/html/expandable',
'/components/code-block/html/expandable-expanded',
'/components/code-editor/html/default',
'/components/code-editor/html/drag-file-and-hover-over-component',
'/components/code-editor/html/read-only',
'/components/code-editor/html/with-optional-header-content-and-keyboard-shortcuts',
'/components/code-editor/html/without-actions',
'/components/data-list/html-demos/actionable',
'/components/data-list/html-demos/basic',
'/components/data-list/html-demos/expandable-demo',
'/components/data-list/html-demos/static-bottom-pagination',
'/components/data-list/html/basic',
'/components/data-list/html/checkboxes-actions-and-additional-cells',
'/components/data-list/html/clickable-expandable-rows',
'/components/data-list/html/clickable-rows',
'/components/data-list/html/compact',
'/components/data-list/html/draggable',
'/components/data-list/html/expandable',
'/components/data-list/html/expandable-compact',
'/components/data-list/html/expandable-nested',
'/components/data-list/html/grid',
'/components/data-list/html/grid-none',
'/components/data-list/html/grid-small-breakpoint',
'/components/data-list/html/modifiers',
'/components/data-list/html/text-modifiers',
'/components/data-list/html/text-modifiers-data-list-text',
'/components/data-list/html/with-headings',
'/components/date-and-time/calendar-month/html/date-selected',
'/components/date-and-time/calendar-month/html/range-end-date-selected-start-date-focused',
'/components/date-and-time/calendar-month/html/range-start-and-end-dates-selected',
'/components/date-and-time/calendar-month/html/range-start-date-selected-end-date-hovered',
'/components/date-and-time/date-picker/html/basic',
'/components/date-and-time/date-picker/html/custom-width-input',
'/components/date-and-time/date-picker/html/custom-width-input-based-on-number-of-characters',
'/components/date-and-time/date-picker/html/expanded',
'/components/date-and-time/date-picker/html/helper-text',
'/components/date-and-time/date-picker/html/invalid',
'/components/description-list/html-demos/basic',
'/components/description-list/html-demos/complex-content',
'/components/description-list/html-demos/in-drawer',
'/components/description-list/html/auto-fit-basic',
'/components/description-list/html/auto-fit-min-width-modified-grid-template-columns',
'/components/description-list/html/auto-fit-min-width-modified-responsive-grid-template-columns',
'/components/description-list/html/column-fill',
'/components/description-list/html/compact',
'/components/description-list/html/compact-horizontal',
'/components/description-list/html/default',
'/components/description-list/html/default-auto-columns-width',
'/components/description-list/html/default-inline-grid',
'/components/description-list/html/default-responsive-columns',
'/components/description-list/html/default-three-column-on-lg-breakpoint',
'/components/description-list/html/default-two-column',
'/components/description-list/html/description-list-group-wrapper-as-card',
'/components/description-list/html/display-2xl-and-card-variant',
'/components/description-list/html/display-and-card-variant-horizontal-modified-term-width',
'/components/description-list/html/display-and-card-variant-three-column-on-lg-breakpoint',
'/components/description-list/html/display-lg-and-card-variant',
'/components/description-list/html/display-variant',
'/components/description-list/html/fluid-horizontal',
'/components/description-list/html/horizontal',
'/components/description-list/html/horizontal-auto-column-width',
'/components/description-list/html/horizontal-responsive-columns',
'/components/description-list/html/horizontal-three-column-on-lg-breakpoint',
'/components/description-list/html/horizontal-two-column',
'/components/description-list/html/icons-on-terms',
'/components/description-list/html/responsive-horizontal-vertical-group-layout',
'/components/description-list/html/term-help-text',
'/components/divider/html/div',
'/components/divider/html/horizontal-on-lg',
'/components/divider/html/hr',
'/components/divider/html/inset-medium',
'/components/divider/html/li',
'/components/divider/html/md-inset-no-inset-on-md-3xl-inset-on-lg-lg-inset-on-xl',
'/components/divider/html/vertical',
'/components/divider/html/vertical-inset-medium',
'/components/divider/html/vertical-md-inset-no-inset-on-md-lg-inset-on-lg-sm-inset-on-xl',
'/components/divider/html/vertical-on-lg',
'/components/drag-and-drop/html/basic',
'/components/drag-and-drop/html/drag-outside',
'/components/drag-and-drop/html/dragging',
'/components/drawer/html-demos/collapsed',
'/components/drawer/html-demos/drawer-with-jump-links',
'/components/drawer/html-demos/expanded',
'/components/drawer/html-demos/expanded-bottom',
'/components/drawer/html-demos/expanded-drawer-with-jump-links',
'/components/drawer/html/additional-section-above-main',
'/components/drawer/html/closed-panel-on-bottom',
'/components/drawer/html/closed-panel-on-left',
'/components/drawer/html/closed-panel-on-right-default',
'/components/drawer/html/expanded-inline-panel',
'/components/drawer/html/expanded-inline-panel-on-left',
'/components/drawer/html/expanded-panel-on-bottom',
'/components/drawer/html/expanded-panel-on-left',
'/components/drawer/html/expanded-panel-on-right',
'/components/drawer/html/modified-content-padding',
'/components/drawer/html/modified-panel-padding',
'/components/drawer/html/modified-panel-width',
'/components/drawer/html/panel-with-secondary-background',
'/components/drawer/html/resizable-bottom-panel',
'/components/drawer/html/resizable-inline-panel',
'/components/drawer/html/resizable-left-panel',
'/components/drawer/html/resizable-panel',
'/components/drawer/html/stacked-content-body-elements',
'/components/drawer/html/static',
'/components/dual-list-selector/html/available-item-selected',
'/components/dual-list-selector/html/basic',
'/components/dual-list-selector/html/chosen-item',
'/components/dual-list-selector/html/chosen-item-selected',
'/components/dual-list-selector/html/draggable',
'/components/dual-list-selector/html/multiple-available-items-selected',
'/components/dual-list-selector/html/tree-view',
'/components/dual-list-selector/html/tree-view-with-chosen-and-disabled-options',
'/components/empty-state/html/basic',
'/components/empty-state/html/extra-large',
'/components/empty-state/html/extra-small',
'/components/empty-state/html/large',
'/components/empty-state/html/small',
'/components/expandable-section/html/detached-toggle',
'/components/expandable-section/html/disclosure-variation-expanded',
'/components/expandable-section/html/disclosure-variation-hidden',
'/components/expandable-section/html/expanded',
'/components/expandable-section/html/hidden',
'/components/expandable-section/html/indented',
'/components/expandable-section/html/truncate-expansion',
'/components/expandable-section/html/truncate-expansion-expanded',
'/components/file-upload/multiple-file-upload/html/basic',
'/components/file-upload/multiple-file-upload/html/drag-over',
'/components/file-upload/multiple-file-upload/html/file-upload-status',
'/components/file-upload/multiple-file-upload/html/file-upload-status-expanded',
'/components/file-upload/multiple-file-upload/html/horizontal',
'/components/file-upload/multiple-file-upload/html/horizontal-drag-over',
'/components/file-upload/multiple-file-upload/html/horizontal-file-upload-status-expanded',
'/components/file-upload/simple-file-upload/html/basic-file-upload',
'/components/file-upload/simple-file-upload/html/drag-file-hover-component',
'/components/file-upload/simple-file-upload/html/file-upload-in-form-with-error',
'/components/file-upload/simple-file-upload/html/file-upload-loading',
'/components/file-upload/simple-file-upload/html/upload-complete-editable',
'/components/file-upload/simple-file-upload/html/upload-complete-non-editable',
'/components/forms/checkbox/html/basic',
'/components/forms/checkbox/html/checked',
'/components/forms/checkbox/html/disabled',
'/components/forms/checkbox/html/label-wrapping-input',
'/components/forms/checkbox/html/required',
'/components/forms/checkbox/html/reversed',
'/components/forms/checkbox/html/standalone-input',
'/components/forms/checkbox/html/with-body',
'/components/forms/checkbox/html/with-description',
'/components/forms/checkbox/html/with-description-and-body',
'/components/forms/form-control/html/input',
'/components/forms/form-control/html/select',
'/components/forms/form-control/html/textarea',
'/components/forms/form/html-demos/basic',
'/components/forms/form/html-demos/complex-form',
'/components/forms/form/html-demos/grid',
'/components/forms/form/html-demos/horizontal',
'/components/forms/form/html-demos/sections-with-repeatable-fields',
'/components/forms/form/html/action-group',
'/components/forms/form/html/expandable-and-nested-field-groups',
'/components/forms/form/html/field-group-non-expandable',
'/components/forms/form/html/form-sections',
'/components/forms/form/html/help-text',
'/components/forms/form/html/horizontal-layout-at-a-custom-breakpoint',
'/components/forms/form/html/horizontally-aligned-labels',
'/components/forms/form/html/label-with-additional-info',
'/components/forms/form/html/vertically-aligned-labels',
'/components/forms/radio/html/basic',
'/components/forms/radio/html/checked',
'/components/forms/radio/html/disabled',
'/components/forms/radio/html/label-wrapping-input',
'/components/forms/radio/html/reversed',
'/components/forms/radio/html/standalone-input',
'/components/forms/radio/html/with-body',
'/components/forms/radio/html/with-description',
'/components/forms/radio/html/with-description-and-body',
'/components/helper-text/html-demos/helper-text-on-a-form',
'/components/helper-text/html/dynamic',
'/components/helper-text/html/dynamic-list',
'/components/helper-text/html/icon',
'/components/helper-text/html/multiple-static',
'/components/helper-text/html/static',
'/components/hint/html/default-with-no-title',
'/components/hint/html/hint-with-title',
'/components/icon/html/basic',
'/components/icon/html/in-progress',
'/components/icon/html/inline',
'/components/icon/html/sizes',
'/components/icon/html/sizing-content-within-the-icon-container',
'/components/icon/html/status-colors',
'/components/inline-edit/html/free-form-edit',
'/components/inline-edit/html/inline-edit-action-group',
'/components/inline-edit/html/inline-edit-action-group-icon-buttons',
'/components/inline-edit/html/inline-edit-table-row',
'/components/inline-edit/html/inline-edit-toggle',
'/components/inline-edit/html/inline-edit-value',
'/components/inline-edit/html/single-inline-edit-active',
'/components/inline-edit/html/single-inline-edit-default',
'/components/inline-edit/html/single-inline-edit-with-label-default',
'/components/inline-edit/html/state-invalid',
'/components/inline-edit/html/state-valid',
'/components/input-group/html/variations',
'/components/jump-links/html-demos/horizontal-jump-links',
'/components/jump-links/html-demos/jump-links-in-drawer',
'/components/jump-links/html-demos/jump-links-in-expanded-drawer',
'/components/jump-links/html-demos/vertical-jump-links-collapsed-on-mobile',
'/components/jump-links/html-demos/vertical-jump-links-expanded-on-mobile',
'/components/jump-links/html-demos/vertical-jump-links-toggle-text-on-mobile',
'/components/jump-links/html/expandable',
'/components/jump-links/html/expandable-responsive',
'/components/jump-links/html/expandable-responsive-with-no-label',
'/components/jump-links/html/expanded',
'/components/jump-links/html/horizontal-default',
'/components/jump-links/html/horizontal-with-centered-list',
'/components/jump-links/html/horizontal-with-label',
'/components/jump-links/html/vertical-default',
'/components/jump-links/html/vertical-with-active-subsections',
'/components/jump-links/html/vertical-with-inactive-subsections',
'/components/jump-links/html/vertical-with-label',
'/components/label/html/add-label',
'/components/label/html/basic-label-group',
'/components/label/html/compact',
'/components/label/html/editable',
'/components/label/html/editable-label-group-with-add-button',
'/components/label/html/editable-labels-dynamic-label-group',
'/components/label/html/editable-labels-label-active-dynamic-label-group',
'/components/label/html/filled',
'/components/label/html/label-group-with-category-label',
'/components/label/html/label-group-with-compact-labels',
'/components/label/html/label-group-with-compact-labels-and-overflow',
'/components/label/html/label-group-with-overflow',
'/components/label/html/label-group-with-overflow-expanded',
'/components/label/html/label-group-with-removable-categories',
'/components/label/html/mixed-labels-static--editable-dynamic-label-group',
'/components/label/html/outline',
'/components/label/html/overflow',
'/components/label/html/static-labels-dynamic-label-group',
'/components/label/html/vertical-label-group',
'/components/label/html/vertical-label-group-with-category',
'/components/label/html/vertical-label-group-with-compact-labels',
'/components/label/html/vertical-label-group-with-overflow',
'/components/label/html/vertical-label-group-with-overflow-expanded',
'/components/label/html/vertical-label-group-with-removable-category',
'/components/list/html/inline',
'/components/list/html/ordered',
'/components/list/html/plain',
'/components/list/html/unordered',
'/components/list/html/with-horizontal-rules',
'/components/list/html/with-large-icons',
'/components/list/html/with-small-icons',
'/components/login-page/html/basic',
'/components/login-page/html/hide-password',
'/components/login-page/html/invalid',
'/components/login-page/html/show-password',
'/components/login-page/html/with-language-selector',
'/components/masthead/html-demos/advanced-integration-with-menu-options',
'/components/masthead/html-demos/basic',
'/components/masthead/html-demos/horizontal-nav',
'/components/masthead/html-demos/with-context-selector-and-dropdown',
'/components/masthead/html-demos/with-expandable-search-collapsed',
'/components/masthead/html-demos/with-expandable-search-expanded',
'/components/masthead/html-demos/with-toggle-group-and-filters',
'/components/masthead/html-demos/with-toggle-group-filters-expandable-content-expanded-mobile',
'/components/masthead/html-demos/with-toolbar-filters',
'/components/masthead/html/basic',
'/components/masthead/html/basic-with-mixed-content',
'/components/masthead/html/display-inline',
'/components/masthead/html/display-stack',
'/components/masthead/html/display-stack-display-inline-responsive',
'/components/masthead/html/insets',
'/components/masthead/html/light-200-variant',
'/components/masthead/html/light-variant',
'/components/menus/application-launcher/html-deprecated/aligned-right',
'/components/menus/application-launcher/html-deprecated/aligned-top',
'/components/menus/application-launcher/html-deprecated/collapsed',
'/components/menus/application-launcher/html-deprecated/disabled',
'/components/menus/application-launcher/html-deprecated/expanded',
'/components/menus/application-launcher/html-deprecated/favorites',
'/components/menus/application-launcher/html-deprecated/with-sections-and-dividers-between-items',
'/components/menus/application-launcher/html-deprecated/with-sections-and-dividers-between-sections',
'/components/menus/application-launcher/html-deprecated/with-sections-dividers-icons-and-external-links',
'/components/menus/context-selector/html-demos/context-selector-in-masthead',
'/components/menus/context-selector/html-demos/context-selector-in-page-content',
'/components/menus/context-selector/html-demos/context-selector-in-sidebar',
'/components/menus/context-selector/html-demos/context-selector-in-sidebar-expanded',
'/components/menus/context-selector/html-deprecated/basic',
'/components/menus/context-selector/html-deprecated/plain-with-text',
'/components/menus/context-selector/html-deprecated/with-footer',
'/components/menus/dropdown/html-deprecated/align-on-different-breakpoint',
'/components/menus/dropdown/html-deprecated/align-right',
'/components/menus/dropdown/html-deprecated/align-top',
'/components/menus/dropdown/html-deprecated/aria-disabled-items',
'/components/menus/dropdown/html-deprecated/badge-toggle',
'/components/menus/dropdown/html-deprecated/collapsed',
'/components/menus/dropdown/html-deprecated/disabled',
'/components/menus/dropdown/html-deprecated/dropdown-with-description',
'/components/menus/dropdown/html-deprecated/dropdown-with-image-and-text',
'/components/menus/dropdown/html-deprecated/expanded',
'/components/menus/dropdown/html-deprecated/kebab',
'/components/menus/dropdown/html-deprecated/kebab-align-right',
'/components/menus/dropdown/html-deprecated/menu-item-icons',
'/components/menus/dropdown/html-deprecated/panel',
'/components/menus/dropdown/html-deprecated/plain-with-text',
'/components/menus/dropdown/html-deprecated/primary-toggle',
'/components/menus/dropdown/html-deprecated/secondary-toggle',
'/components/menus/dropdown/html-deprecated/split-button-action',
'/components/menus/dropdown/html-deprecated/split-button-checkbox',
'/components/menus/dropdown/html-deprecated/split-button-checkbox-with-toggle-text',
'/components/menus/dropdown/html-deprecated/split-button-primary-action',
'/components/menus/dropdown/html-deprecated/split-button-progress-checkbox',
'/components/menus/dropdown/html-deprecated/split-button-secondary-action',
'/components/menus/dropdown/html-deprecated/with-groups',
'/components/menus/dropdown/html-deprecated/with-groups-and-dividers-between-groups',
'/components/menus/dropdown/html-deprecated/with-groups-and-dividers-between-items',
'/components/menus/menu-toggle/html/collapsed',
'/components/menus/menu-toggle/html/count',
'/components/menus/menu-toggle/html/disabled',
'/components/menus/menu-toggle/html/expanded',
'/components/menus/menu-toggle/html/full-height',
'/components/menus/menu-toggle/html/plain',
'/components/menus/menu-toggle/html/plain-with-text',
'/components/menus/menu-toggle/html/primary',
'/components/menus/menu-toggle/html/secondary',
'/components/menus/menu-toggle/html/split-button-action',
'/components/menus/menu-toggle/html/split-button-checkbox',
'/components/menus/menu-toggle/html/split-button-checkbox-with-toggle-text',
'/components/menus/menu-toggle/html/split-button-primary',
'/components/menus/menu-toggle/html/split-button-primary-action',
'/components/menus/menu-toggle/html/split-button-secondary',
'/components/menus/menu-toggle/html/split-button-secondary-action',
'/components/menus/menu-toggle/html/typeahead',
'/components/menus/menu-toggle/html/with-avatar-and-text',
'/components/menus/menu-toggle/html/with-iconimage-and-text',
'/components/menus/menu/html/basic',
'/components/menus/menu/html/danger-menu-item',
'/components/menus/menu/html/drilldown',
'/components/menus/menu/html/drilldown-level-four',
'/components/menus/menu/html/drilldown-level-three',
'/components/menus/menu/html/drilldown-level-two',
'/components/menus/menu/html/drilldown-with-breadcrumbs---level-1',
'/components/menus/menu/html/drilldown-with-breadcrumbs---level-2',
'/components/menus/menu/html/drilldown-with-breadcrumbs---level-3',
'/components/menus/menu/html/drilldown-with-breadcrumbs---level-4',
'/components/menus/menu/html/footer',
'/components/menus/menu/html/loading',
'/components/menus/menu/html/option-multi-select',
'/components/menus/menu/html/option-single-select',
'/components/menus/menu/html/plain',
'/components/menus/menu/html/plain-scrollable-with-search-and-footer',
'/components/menus/menu/html/plain-with-search-and-footer',
'/components/menus/menu/html/scrollable',
'/components/menus/menu/html/scrollable-drilldown',
'/components/menus/menu/html/scrollable-menu-with-header-and-footer',
'/components/menus/menu/html/scrollable-menu-with-search-and-footer',
'/components/menus/menu/html/scrollable-with-custom-menu-height',
'/components/menus/menu/html/standard-menu-flyout-child',
'/components/menus/menu/html/view-more',
'/components/menus/menu/html/width-modified-drilldown',
'/components/menus/menu/html/with-actions',
'/components/menus/menu/html/with-checkbox',
'/components/menus/menu/html/with-description',
'/components/menus/menu/html/with-favorites',
'/components/menus/menu/html/with-filtering',
'/components/menus/menu/html/with-flyout',
'/components/menus/menu/html/with-flyout-menu-left',
'/components/menus/menu/html/with-flyout-menu-left-top',
'/components/menus/menu/html/with-flyout-menu-top',
'/components/menus/menu/html/with-icons',
'/components/menus/menu/html/with-links',
'/components/menus/menu/html/with-separators',
'/components/menus/menu/html/with-titled-groups',
'/components/menus/options-menu/html-deprecated/align-right',
'/components/menus/options-menu/html-deprecated/align-top',
'/components/menus/options-menu/html-deprecated/disabled',
'/components/menus/options-menu/html-deprecated/multiple-options',
'/components/menus/options-menu/html-deprecated/plain',
'/components/menus/options-menu/html-deprecated/plain-with-text',
'/components/menus/options-menu/html-deprecated/single-option',
'/components/menus/options-menu/html-deprecated/with-groups',
'/components/menus/options-menu/html-deprecated/with-groups-and-dividers-between-groups',
'/components/menus/options-menu/html-deprecated/with-groups-and-dividers-between-items',
'/components/menus/select/html-deprecated/checkbox-expanded',
'/components/menus/select/html-deprecated/checkbox-expanded-and-selected-with-groups',
'/components/menus/select/html-deprecated/checkbox-expanded-and-selected-with-groups-and-filter',
'/components/menus/select/html-deprecated/checkbox-expanded-without-badge',
'/components/menus/select/html-deprecated/checkbox-item-description',
'/components/menus/select/html-deprecated/checkbox-select',
'/components/menus/select/html-deprecated/checkbox-with-counts',
'/components/menus/select/html-deprecated/disabled',
'/components/menus/select/html-deprecated/disabled-with-typeahead',
'/components/menus/select/html-deprecated/invalid',
'/components/menus/select/html-deprecated/invalid-with-typeahead',
'/components/menus/select/html-deprecated/item-description',
'/components/menus/select/html-deprecated/loading-menu-item',
'/components/menus/select/html-deprecated/menu-footer',
'/components/menus/select/html-deprecated/menu-item-favorites',
'/components/menus/select/html-deprecated/multi-with-typeahead-chip-group-collapsed',
'/components/menus/select/html-deprecated/multi-with-typeahead-chip-group-expanded',
'/components/menus/select/html-deprecated/multi-with-typeahead-invalid',
'/components/menus/select/html-deprecated/panel-menu',
'/components/menus/select/html-deprecated/placeholder-collapsed',
'/components/menus/select/html-deprecated/placeholder-expanded',
'/components/menus/select/html-deprecated/placeholder-item-disabled',
'/components/menus/select/html-deprecated/placeholder-item-enabled',
'/components/menus/select/html-deprecated/plain-toggle',
'/components/menus/select/html-deprecated/plain-toggle-expanded',
'/components/menus/select/html-deprecated/select-multi-with-typeahead',
'/components/menus/select/html-deprecated/single-expanded',
'/components/menus/select/html-deprecated/single-expanded-and-selected',
'/components/menus/select/html-deprecated/single-select',
'/components/menus/select/html-deprecated/single-with-top-expanded',
'/components/menus/select/html-deprecated/single-with-typeahead',
'/components/menus/select/html-deprecated/single-with-typeahead-expanded',
'/components/menus/select/html-deprecated/single-with-typeahead-expanded-and-selected',
'/components/menus/select/html-deprecated/success',
'/components/menus/select/html-deprecated/toggle-icon',
'/components/menus/select/html-deprecated/view-more-menu-item',
'/components/menus/select/html-deprecated/warning',
'/components/modal/html-demos/basic',
'/components/modal/html-demos/large',
'/components/modal/html-demos/medium',
'/components/modal/html-demos/modal-with-form',
'/components/modal/html-demos/scrollable-content',
'/components/modal/html-demos/top-aligned',
'/components/modal/html/basic',
'/components/modal/html/custom-alert',
'/components/modal/html/custom-title',
'/components/modal/html/danger-alert',
'/components/modal/html/icon',
'/components/modal/html/info-alert',
'/components/modal/html/large',
'/components/modal/html/medium',
'/components/modal/html/modal-box-as-generic-container',
'/components/modal/html/small',
'/components/modal/html/success-alert',
'/components/modal/html/warning-alert',
'/components/modal/html/with-description',
'/components/modal/html/with-help-button',
'/components/modal/html/without-title',
'/components/navigation/html-demos/default-nav',
'/components/navigation/html-demos/expandable-nav',
'/components/navigation/html-demos/grouped-nav',
'/components/navigation/html-demos/horizontal-nav',
'/components/navigation/html-demos/horizontal-nav-with-horizontal-subnav',
'/components/navigation/html-demos/horizontal-subnav',
'/components/navigation/html-demos/light-theme-sidebar-and-nav',
'/components/navigation/html-demos/tertiary-nav',
'/components/navigation/html/default',
'/components/navigation/html/default-in-light-mode',
'/components/navigation/html/expandable-third-level',
'/components/navigation/html/expanded',
'/components/navigation/html/expanded-in-light-mode',
'/components/navigation/html/expanded-with-subnav-titles',
'/components/navigation/html/grouped-nav',
'/components/navigation/html/grouped-nav-no-titles',
'/components/navigation/html/horizontal',
'/components/navigation/html/horizontal-overflow',
'/components/navigation/html/horizontal-subnav',
'/components/navigation/html/horizontal-subnav-overflow',
'/components/navigation/html/mixed',
'/components/navigation/html/nav-with-drilldown-menu',
'/components/navigation/html/nav-with-drilldown-menu-level-three',
'/components/navigation/html/nav-with-drilldown-menu-level-two',
'/components/navigation/html/nav-with-flyout',
'/components/navigation/html/tertiary',
'/components/navigation/html/tertiary-overflow',
'/components/notification-badge/html/basic',
'/components/notification-badge/html/expanded',
'/components/notification-badge/html/with-count',
'/components/notification-drawer/html-demos/collapsed',
'/components/notification-drawer/html-demos/expanded-attention',
'/components/notification-drawer/html-demos/expanded-read',
'/components/notification-drawer/html-demos/expanded-unread',
'/components/notification-drawer/html-demos/expanded-with-groups',
'/components/notification-drawer/html/basic',
'/components/notification-drawer/html/groups',
'/components/number-input/html/default',
'/components/number-input/html/disabled',
'/components/number-input/html/varying-sizes',
'/components/number-input/html/with-status',
'/components/number-input/html/with-unit',
'/components/number-input/html/with-unit-and-lower-threshold-reached',
'/components/number-input/html/with-unit-and-upper-threshold-reached',
'/components/overflow-menu/html/additional-options-in-dropdown-hidden',
'/components/overflow-menu/html/additional-options-in-dropdown-visible',
'/components/overflow-menu/html/group-types',
'/components/overflow-menu/html/persistent-additional-options-hidden',
'/components/overflow-menu/html/persistent-additional-options-visible',
'/components/overflow-menu/html/simple-collapsed',
'/components/overflow-menu/html/simple-expanded',
'/components/page/html-demos/basic',
'/components/page/html-demos/centered-section',
'/components/page/html-demos/multiple-sidebar-body-elements',
'/components/page/html-demos/overflow-scroll',
'/components/page/html-demos/sticky-breadcrumb',
'/components/page/html-demos/sticky-breadcrumb-on-medium',
'/components/page/html-demos/sticky-horizontal-subnav',
'/components/page/html-demos/sticky-section-bottom',
'/components/page/html-demos/sticky-section-group',
'/components/page/html-deprecated/centered-section',
'/components/page/html-deprecated/horizontal-nav',
'/components/page/html-deprecated/main-section-padding',
'/components/page/html-deprecated/main-section-variations',
'/components/page/html-deprecated/multiple-sidebar-body-elements-padding-and-fill',
'/components/page/html-deprecated/vertical-nav',
'/components/page/html-deprecated/with-or-without-fill',
'/components/page/html/centered-section',
'/components/page/html/horizontal-nav',
'/components/page/html/main-section-padding',
'/components/page/html/main-section-variations',
'/components/page/html/multiple-sidebar-body-elements-padding-and-fill',
'/components/page/html/vertical-nav',
'/components/page/html/with-or-without-fill',
'/components/pagination/html/bottom',
'/components/pagination/html/bottom-sticky',
'/components/pagination/html/compact',
'/components/pagination/html/compact-display-full-modifier',
'/components/pagination/html/indeterminate-item-count-is-not-known',
'/components/pagination/html/inset',
'/components/pagination/html/top',
'/components/pagination/html/top-disabled',
'/components/pagination/html/top-expanded',
'/components/pagination/html/top-sticky',
'/components/pagination/html/top-with-display-full-modifier',
'/components/pagination/html/top-with-display-summary-modifier',
'/components/pagination/html/top-with-responsive-display-summary-and-display-full-modifiers',
'/components/panel/html/basic',
'/components/panel/html/bordered',
'/components/panel/html/footer',
'/components/panel/html/header',
'/components/panel/html/header-and-footer',
'/components/panel/html/no-body',
'/components/panel/html/raised',
'/components/panel/html/scrollable',
'/components/panel/html/scrollable-with-header-and-footer',
'/components/password-generator/html-demos/provide-a-generated-password',
'/components/password-strength/html-demos/initial-state',
'/components/password-strength/html-demos/invalid-password',
'/components/password-strength/html-demos/valid-strong-password',
'/components/password-strength/html-demos/valid-weak-password',
'/components/popover/html/bottom',
'/components/popover/html/bottom-left',
'/components/popover/html/bottom-right',
'/components/popover/html/custom-alert-popover',
'/components/popover/html/danger-alert-popover',
'/components/popover/html/info-alert-popover',
'/components/popover/html/left',
'/components/popover/html/left-bottom',
'/components/popover/html/left-top',
'/components/popover/html/no-padding',
'/components/popover/html/popover-with-icon-in-the-title',
'/components/popover/html/right',
'/components/popover/html/success-alert-popover',
'/components/popover/html/top',
'/components/popover/html/warning-alert-popover',
'/components/popover/html/width-auto',
'/components/popover/html/without-headerfooter',
'/components/progress-stepper/html/basic',
'/components/progress-stepper/html/basic-with-a-failure',
'/components/progress-stepper/html/basic-with-an-issue',
'/components/progress-stepper/html/basic-with-descriptions',
'/components/progress-stepper/html/basic-with-patternfly-icons',
'/components/progress-stepper/html/center-aligned-vertical',
'/components/progress-stepper/html/center-aligned-with-descriptions',
'/components/progress-stepper/html/compact',
'/components/progress-stepper/html/compact-centered',
'/components/progress-stepper/html/compact-vertical',
'/components/progress-stepper/html/compact-vertical-centered',
'/components/progress-stepper/html/compact-vertical-responsive',
'/components/progress-stepper/html/vertical-horizontal-responsive',
'/components/progress-stepper/html/vertical-with-descriptions',
'/components/progress-stepper/html/with-help-text',
'/components/progress/html/failure',
'/components/progress/html/failure-without-measure',
'/components/progress/html/finite-step',
'/components/progress/html/helper-text',
'/components/progress/html/inside',
'/components/progress/html/inside-success',
'/components/progress/html/inside-warning',
'/components/progress/html/large',
'/components/progress/html/on-single-line',
'/components/progress/html/outside',
'/components/progress/html/outside-failure',
'/components/progress/html/outside-static-width-measure',
'/components/progress/html/progress-step-instruction',
'/components/progress/html/simple',
'/components/progress/html/small',
'/components/progress/html/success',
'/components/progress/html/truncate-description',
'/components/progress/html/warning',
'/components/progress/html/without-measure',
'/components/sidebar/html/basic',
'/components/sidebar/html/border',
'/components/sidebar/html/gutter',
'/components/sidebar/html/padding-on-content',
'/components/sidebar/html/padding-on-panel',
'/components/sidebar/html/panel-right-html',
'/components/sidebar/html/panel-right-modifier',
'/components/sidebar/html/responsive-panel-width',
'/components/sidebar/html/split',
'/components/sidebar/html/stack',
'/components/sidebar/html/static-panel',
'/components/sidebar/html/sticky-panel',
'/components/simple-list/html/grouped-list',
'/components/simple-list/html/simple-list',
'/components/simple-list/html/simple-list-with-links',
'/components/skeleton/html-demos/skeleton-card',
'/components/skeleton/html/default',
'/components/skeleton/html/percentage-height-modifiers',
'/components/skeleton/html/percentage-width-modifiers',
'/components/skeleton/html/static-height-width-and-shape-modifiers',
'/components/skeleton/html/text-modifiers',
'/components/skip-to-content/html/basic',
'/components/slider/html/actions',
'/components/slider/html/continuous',
'/components/slider/html/disabled',
'/components/slider/html/discrete',
'/components/slider/html/thumb-value-input',
'/components/slider/html/value-input',
'/components/spinner/html/basic',
'/components/spinner/html/custom-size',
'/components/spinner/html/inline',
'/components/spinner/html/sizes',
'/components/switch/html/basic',
'/components/switch/html/disabled',
'/components/switch/html/label-and-check',
'/components/switch/html/reverse-toggle-on-right',
'/components/switch/html/without-label',
'/components/tab-content/html/basic',
'/components/tab-content/html/light-300-background',
'/components/tab-content/html/padding',
'/components/table/html-demos/basic',
'/components/table/html-demos/cell-with-image-alignment',
'/components/table/html-demos/column-management-modal',
'/components/table/html-demos/compact',
'/components/table/html-demos/compound-expansion',
'/components/table/html-demos/empty-state',
'/components/table/html-demos/expandable',
'/components/table/html-demos/loading-state-demo',
'/components/table/html-demos/sortable',
'/components/table/html-demos/static-bottom-pagination',
'/components/table/html-demos/sticky-first-column',
'/components/table/html-demos/sticky-header',
'/components/table/html-demos/sticky-header-and-last-column',
'/components/table/html-demos/sticky-header-and-multiple-columns',
'/components/table/html-demos/sticky-multiple-columns',
'/components/table/html/basic-table-example',
'/components/table/html/borderless-compact-example',
'/components/table/html/borderless-example',
'/components/table/html/borderless-expandable-example',
'/components/table/html/borderless-with-compound-expansion-example',
'/components/table/html/checkboxes-and-actions-example',
'/components/table/html/clickable-and-expandable-example',
'/components/table/html/clickable-example',
'/components/table/html/compact-example',
'/components/table/html/compact-expandable-example',
'/components/table/html/compound-expansion-example',
'/components/table/html/draggable-rows-example',
'/components/table/html/expandable-example',
'/components/table/html/expandable-with-nested-table-example',
'/components/table/html/expandable-with-set-width-columns-example',
'/components/table/html/favorites-examples',
'/components/table/html/favorites-sortable-example',
'/components/table/html/hiddenvisible-breakpoint-modifiers-example',
'/components/table/html/multiple-sticky-columns',
'/components/table/html/nested-column-headers-and-expandable-rows',
'/components/table/html/nested-column-headers-example',
'/components/table/html/nested-column-headers-sticky-header',
'/components/table/html/overflow-menu-usage-desktop',
'/components/table/html/overflow-menu-usage-mobile',
'/components/table/html/overflow-menu-usage-overflow-menu-collapsed',
'/components/table/html/single-select-radio-example',
'/components/table/html/sortable-example',
'/components/table/html/sticky-column',
'/components/table/html/sticky-columns-and-header',
'/components/table/html/sticky-header',
'/components/table/html/sticky-right-column',
'/components/table/html/striped-expandable-table-example',
'/components/table/html/striped-multiple-tbody-example',
'/components/table/html/striped-table-example',
'/components/table/html/striped-tr-example',
'/components/table/html/table-with-long-strings-in-the-content',
'/components/table/html/text-control-example',
'/components/table/html/text-control-using-the-table-text-element-example',
'/components/table/html/tree-table-basic',
'/components/table/html/tree-table-with-checkboxes',
'/components/table/html/tree-table-with-checkboxes-and-icons',
'/components/table/html/tree-with-no-children-or-indentation',
'/components/table/html/width-constrained',
'/components/table/html/width-modifiers-examples',
'/components/tabs/html-demos/modal-tabs',
'/components/tabs/html-demos/nested-tabs',
'/components/tabs/html-demos/nested-unindented-tabs',
'/components/tabs/html-demos/open-tabs',
'/components/tabs/html-demos/open-tabs-with-secondary-tabs',
'/components/tabs/html-demos/tables-and-tabs',
'/components/tabs/html/add-tab-button-example',
'/components/tabs/html/box-overflow-example',
'/components/tabs/html/box-tab-insets-example',
'/components/tabs/html/box-tabs-color-scheme-light-300-example',
'/components/tabs/html/box-tabs-example',
'/components/tabs/html/box-tabs-with-sub-tabs-example',
'/components/tabs/html/box-vertical-example',
'/components/tabs/html/close-button-example',
'/components/tabs/html/default-tab-insets-example',
'/components/tabs/html/default-tabs-example',
'/components/tabs/html/filled-box-example',
'/components/tabs/html/filled-box-with-icons-example',
'/components/tabs/html/filled-tabs-example',
'/components/tabs/html/filled-with-icons-example',
'/components/tabs/html/help-and-close-button-example',
'/components/tabs/html/help-button-example',
'/components/tabs/html/horizontal-overflow-example',
'/components/tabs/html/horizontal-overflow-expanded-example',
'/components/tabs/html/horizontal-overflow-selected-example',
'/components/tabs/html/icons-and-text-example',
'/components/tabs/html/overflow-beginning-of-list-example',
'/components/tabs/html/page-insets-example',
'/components/tabs/html/sub-tabs-using-the-nav-element-example',
'/components/tabs/html/tabs-with-sub-tabs-example',
'/components/tabs/html/using-the-nav-element-example',
'/components/tabs/html/vertical-expandable-example',
'/components/tabs/html/vertical-expandable-example-deprecated',
'/components/tabs/html/vertical-expandable-responsive-example',
'/components/tabs/html/vertical-expandable-responsive-example-deprecated',
'/components/tabs/html/vertical-expanded-example',
'/components/tabs/html/vertical-expanded-example-deprecated',
'/components/tabs/html/vertical-tabs-example',
'/components/text-input-group/html/autocomplete-last-option-hint',
'/components/text-input-group/html/basic',
'/components/text-input-group/html/disabled',
'/components/text-input-group/html/filters',
'/components/text-input-group/html/filters-expanded',
'/components/text-input-group/html/search-input-group',
'/components/text-input-group/html/search-input-group-advanced-search',
'/components/text-input-group/html/search-input-group-advanced-search-expanded',
'/components/text-input-group/html/search-input-group-advanced-search-expanded-with-autocomplete',
'/components/text-input-group/html/search-input-group-autocomplete',
'/components/text-input-group/html/search-input-group-autocomplete-last-option-hint',
'/components/text-input-group/html/search-input-group-expandable',
'/components/text-input-group/html/search-input-group-match-with-navigable-options',
'/components/text-input-group/html/search-input-group-match-with-result-count',
'/components/text-input-group/html/search-input-group-no-match',
'/components/text-input-group/html/search-input-group-with-submit-button',
'/components/text-input-group/html/utilities-and-icon-with-placeholder-text',
'/components/text/html/basic',
'/components/tile/html/basic-tiles',
'/components/tile/html/extra-content',
'/components/tile/html/stacked-tiles',
'/components/tile/html/stacked-tiles-large',
'/components/timestamp/html/basic',
'/components/title/html/size-modifiers',
'/components/toggle-group/html/compact',
'/components/toggle-group/html/default',
'/components/toggle-group/html/icon-and-text',
'/components/toggle-group/html/with-icon',
'/components/toolbar/html-demos/toolbar-attribute-value-checkbox-select-filter-on-desktop',
'/components/toolbar/html-demos/toolbar-attribute-value-checkbox-select-filter-on-mobile',
'/components/toolbar/html-demos/toolbar-attribute-value-search-filter-on-desktop',
'/components/toolbar/html-demos/toolbar-attribute-value-search-filter-on-mobile',
'/components/toolbar/html-demos/toolbar-attribute-value-single-select-filter-on-desktop',
'/components/toolbar/html-demos/toolbar-attribute-value-single-select-filter-on-mobile',
'/components/toolbar/html-demos/toolbar-pagination-management-on-mobile',
'/components/toolbar/html-demos/toolbar-with-validation-on-desktop',
'/components/toolbar/html/adjusted-group-spacers',
'/components/toolbar/html/adjusted-spacers',
'/components/toolbar/html/expanded-elements',
'/components/toolbar/html/group-types',
'/components/toolbar/html/insets',
'/components/toolbar/html/page-insets',
'/components/toolbar/html/selected-filters-on-desktop-not-responsive',
'/components/toolbar/html/selected-filters-on-mobile-filters-collapsed-expandable-content-expanded',
'/components/toolbar/html/selected-filters-on-mobile-filters-collapsed-selected-filters-summary-visible',
'/components/toolbar/html/simple',
'/components/toolbar/html/stacked-on-desktop',
'/components/toolbar/html/stacked-on-mobile-filters-collapsed-expandable-content-expanded',
'/components/toolbar/html/toggle-group',
'/components/toolbar/html/toggle-group-on-mobile-filters-collapsed-expandable-content-expanded',
'/components/toolbar/html/width-control',
'/components/tooltip/html/bottom',
'/components/tooltip/html/bottom-with-left-and-right-positions',
'/components/tooltip/html/left',
'/components/tooltip/html/left-aligned-text',
'/components/tooltip/html/left-with-top-and-bottom-positions',
'/components/tooltip/html/right',
'/components/tooltip/html/top',
'/components/tree-view/html/compact',
'/components/tree-view/html/compact-no-background',
'/components/tree-view/html/default',
'/components/tree-view/html/guides',
'/components/tree-view/html/with-action-item',
'/components/tree-view/html/with-badges',
'/components/tree-view/html/with-checkboxes',
'/components/tree-view/html/with-icons',
'/components/tree-view/html/with-non-expandable-top-level-nodes',
'/components/tree-view/html/with-search',
'/components/tree-view/html/with-selectable-expandable-nodes',
'/components/truncate/html/default',
'/components/truncate/html/middle',
'/components/truncate/html/start',
'/components/wizard/html-demos/basic',
'/components/wizard/html-demos/in-page',
'/components/wizard/html-demos/in-page-nav-expanded-mobile',
'/components/wizard/html-demos/nav-expanded-mobile',
'/components/wizard/html-demos/with-drawer-and-informational-step',
'/components/wizard/html-demos/with-drawer-closed',
'/components/wizard/html-demos/with-drawer-expanded',
'/components/wizard/html-demos/with-drawer-in-page',
'/components/wizard/html-demos/with-drawer-in-page-expanded',
'/components/wizard/html/basic',
'/components/wizard/html/expandable-collapsed',
'/components/wizard/html/expandable-expanded',
'/components/wizard/html/finished',
'/components/wizard/html/nav-expanded-mobile',
'/components/wizard/html/with-drawer',
'/extensions/log-viewer/html/basic',
'/extensions/log-viewer/html/dark',
'/extensions/log-viewer/html/with-dropdown-drilldown-search-expanded',
'/extensions/log-viewer/html/with-line-number-chars-specified',
'/extensions/log-viewer/html/with-line-numbers',
'/extensions/log-viewer/html/with-max-height',
'/extensions/log-viewer/html/with-popover-open',
'/extensions/log-viewer/html/with-search-results',
'/extensions/log-viewer/html/with-text-wrapping',
'/extensions/log-viewer/html/without-text-wrapping',
'/layouts/bullseye/html/basic',
'/layouts/flex/html/align-right-on-multiple-groups-example',
'/layouts/flex/html/align-right-on-single-item-example',
'/layouts/flex/html/aligning-nested-columns-with-.pf-m-align-self-baseline-example',
'/layouts/flex/html/aligning-nested-columns-with-.pf-m-align-self-center-example',
'/layouts/flex/html/aligning-nested-columns-with-.pf-m-align-self-stretch-example',
'/layouts/flex/html/alignment-using-.pf-m-align-self-flex-end-example',
'/layouts/flex/html/basic-align-right-example',
'/layouts/flex/html/basic-column-example',
'/layouts/flex/html/basic-flex-example',
'/layouts/flex/html/basic-flex-grow-example',
'/layouts/flex/html/basic-ordering-example',
'/layouts/flex/html/column-gap-example',
'/layouts/flex/html/default-layout-example',
'/layouts/flex/html/first-and-last-ordering-example',
'/layouts/flex/html/flex-direction-responsive-example',
'/layouts/flex/html/flex-grow-1-4-example',
'/layouts/flex/html/flex-grow-1-example',
'/layouts/flex/html/gap-example',