@patternfly/patternfly 5.0.0-alpha.30 → 5.0.0-alpha.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/InputGroup/input-group.css +61 -85
- package/components/InputGroup/input-group.scss +55 -61
- package/components/InputGroup/themes/dark/input-group.scss +11 -25
- package/components/OptionsMenu/options-menu.css +0 -5
- package/components/OptionsMenu/options-menu.scss +0 -6
- package/components/Toolbar/toolbar.css +11 -4
- package/components/Toolbar/toolbar.scss +11 -5
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +268 -252
- package/docs/components/DatePicker/examples/DatePicker.md +115 -91
- package/docs/components/FileUpload/examples/FileUpload.md +127 -91
- package/docs/components/InputGroup/examples/InputGroup.md +219 -169
- package/docs/components/NumberInput/examples/NumberInput.md +299 -227
- package/docs/components/SearchInput/examples/SearchInput.md +151 -113
- package/docs/components/Slider/examples/Slider.md +60 -38
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +168 -132
- package/docs/components/Toolbar/examples/Toolbar.md +374 -345
- package/docs/demos/DataList/examples/DataList.md +158 -150
- package/docs/demos/Form/examples/BasicForms.md +77 -66
- package/docs/demos/Masthead/examples/Masthead.md +279 -258
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +21 -17
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +103 -121
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +266 -238
- package/docs/demos/Table/examples/Table.md +949 -901
- package/docs/demos/Toolbar/examples/Toolbar.md +313 -294
- package/package.json +1 -1
- package/patternfly-no-reset.css +71 -83
- package/patternfly.css +71 -83
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -947,86 +947,90 @@ wrapperTag: div
|
|
|
947
947
|
aria-label="search filter"
|
|
948
948
|
role="group"
|
|
949
949
|
>
|
|
950
|
-
<div class="pf-c-
|
|
951
|
-
<
|
|
950
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
951
|
+
<div class="pf-c-select" style="width: 124px">
|
|
952
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
952
953
|
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
954
|
+
<button
|
|
955
|
+
class="pf-c-select__toggle"
|
|
956
|
+
type="button"
|
|
957
|
+
id="-select-name-toggle"
|
|
958
|
+
aria-haspopup="true"
|
|
959
|
+
aria-expanded="false"
|
|
960
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
961
|
+
>
|
|
962
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
963
|
+
<span class="pf-c-select__toggle-icon">
|
|
964
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
965
|
+
</span>
|
|
966
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
967
|
+
</div>
|
|
968
|
+
<span class="pf-c-select__toggle-arrow">
|
|
969
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
964
970
|
</span>
|
|
965
|
-
|
|
966
|
-
</div>
|
|
967
|
-
<span class="pf-c-select__toggle-arrow">
|
|
968
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
969
|
-
</span>
|
|
970
|
-
</button>
|
|
971
|
+
</button>
|
|
971
972
|
|
|
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
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
973
|
+
<ul
|
|
974
|
+
class="pf-c-select__menu"
|
|
975
|
+
role="listbox"
|
|
976
|
+
aria-labelledby="-select-name-label"
|
|
977
|
+
hidden
|
|
978
|
+
>
|
|
979
|
+
<li role="presentation">
|
|
980
|
+
<button
|
|
981
|
+
class="pf-c-select__menu-item"
|
|
982
|
+
role="option"
|
|
983
|
+
>Running</button>
|
|
984
|
+
</li>
|
|
985
|
+
<li role="presentation">
|
|
986
|
+
<button
|
|
987
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
988
|
+
role="option"
|
|
989
|
+
aria-selected="true"
|
|
990
|
+
>
|
|
991
|
+
Stopped
|
|
992
|
+
<span class="pf-c-select__menu-item-icon">
|
|
993
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
994
|
+
</span>
|
|
995
|
+
</button>
|
|
996
|
+
</li>
|
|
997
|
+
<li role="presentation">
|
|
998
|
+
<button
|
|
999
|
+
class="pf-c-select__menu-item"
|
|
1000
|
+
role="option"
|
|
1001
|
+
>Down</button>
|
|
1002
|
+
</li>
|
|
1003
|
+
<li role="presentation">
|
|
1004
|
+
<button
|
|
1005
|
+
class="pf-c-select__menu-item"
|
|
1006
|
+
role="option"
|
|
1007
|
+
>Degraded</button>
|
|
1008
|
+
</li>
|
|
1009
|
+
<li role="presentation">
|
|
1010
|
+
<button
|
|
1011
|
+
class="pf-c-select__menu-item"
|
|
1012
|
+
role="option"
|
|
1013
|
+
>Needs maintenance</button>
|
|
1014
|
+
</li>
|
|
1015
|
+
</ul>
|
|
1016
|
+
</div>
|
|
1015
1017
|
</div>
|
|
1016
|
-
<div class="pf-c-
|
|
1017
|
-
<div class="pf-c-text-input-
|
|
1018
|
-
<
|
|
1019
|
-
<span class="pf-c-text-input-
|
|
1020
|
-
<
|
|
1018
|
+
<div class="pf-c-input-group__item">
|
|
1019
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
1020
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
1021
|
+
<span class="pf-c-text-input-group__text">
|
|
1022
|
+
<span class="pf-c-text-input-group__icon">
|
|
1023
|
+
<i class="fas fa-fw fa-search"></i>
|
|
1024
|
+
</span>
|
|
1025
|
+
<input
|
|
1026
|
+
class="pf-c-text-input-group__text-input"
|
|
1027
|
+
type="search"
|
|
1028
|
+
placeholder="Filter by name"
|
|
1029
|
+
value
|
|
1030
|
+
aria-label="Type to filter"
|
|
1031
|
+
/>
|
|
1021
1032
|
</span>
|
|
1022
|
-
|
|
1023
|
-
class="pf-c-text-input-group__text-input"
|
|
1024
|
-
type="search"
|
|
1025
|
-
placeholder="Filter by name"
|
|
1026
|
-
value
|
|
1027
|
-
aria-label="Type to filter"
|
|
1028
|
-
/>
|
|
1029
|
-
</span>
|
|
1033
|
+
</div>
|
|
1030
1034
|
</div>
|
|
1031
1035
|
</div>
|
|
1032
1036
|
</div>
|
|
@@ -2666,86 +2670,90 @@ wrapperTag: div
|
|
|
2666
2670
|
aria-label="search filter"
|
|
2667
2671
|
role="group"
|
|
2668
2672
|
>
|
|
2669
|
-
<div class="pf-c-
|
|
2670
|
-
<
|
|
2673
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
2674
|
+
<div class="pf-c-select" style="width: 124px">
|
|
2675
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
2671
2676
|
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2677
|
+
<button
|
|
2678
|
+
class="pf-c-select__toggle"
|
|
2679
|
+
type="button"
|
|
2680
|
+
id="-select-name-toggle"
|
|
2681
|
+
aria-haspopup="true"
|
|
2682
|
+
aria-expanded="false"
|
|
2683
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
2684
|
+
>
|
|
2685
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
2686
|
+
<span class="pf-c-select__toggle-icon">
|
|
2687
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
2688
|
+
</span>
|
|
2689
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
2690
|
+
</div>
|
|
2691
|
+
<span class="pf-c-select__toggle-arrow">
|
|
2692
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
2683
2693
|
</span>
|
|
2684
|
-
|
|
2685
|
-
</div>
|
|
2686
|
-
<span class="pf-c-select__toggle-arrow">
|
|
2687
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
2688
|
-
</span>
|
|
2689
|
-
</button>
|
|
2694
|
+
</button>
|
|
2690
2695
|
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2696
|
+
<ul
|
|
2697
|
+
class="pf-c-select__menu"
|
|
2698
|
+
role="listbox"
|
|
2699
|
+
aria-labelledby="-select-name-label"
|
|
2700
|
+
hidden
|
|
2701
|
+
>
|
|
2702
|
+
<li role="presentation">
|
|
2703
|
+
<button
|
|
2704
|
+
class="pf-c-select__menu-item"
|
|
2705
|
+
role="option"
|
|
2706
|
+
>Running</button>
|
|
2707
|
+
</li>
|
|
2708
|
+
<li role="presentation">
|
|
2709
|
+
<button
|
|
2710
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
2711
|
+
role="option"
|
|
2712
|
+
aria-selected="true"
|
|
2713
|
+
>
|
|
2714
|
+
Stopped
|
|
2715
|
+
<span class="pf-c-select__menu-item-icon">
|
|
2716
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
2717
|
+
</span>
|
|
2718
|
+
</button>
|
|
2719
|
+
</li>
|
|
2720
|
+
<li role="presentation">
|
|
2721
|
+
<button
|
|
2722
|
+
class="pf-c-select__menu-item"
|
|
2723
|
+
role="option"
|
|
2724
|
+
>Down</button>
|
|
2725
|
+
</li>
|
|
2726
|
+
<li role="presentation">
|
|
2727
|
+
<button
|
|
2728
|
+
class="pf-c-select__menu-item"
|
|
2729
|
+
role="option"
|
|
2730
|
+
>Degraded</button>
|
|
2731
|
+
</li>
|
|
2732
|
+
<li role="presentation">
|
|
2733
|
+
<button
|
|
2734
|
+
class="pf-c-select__menu-item"
|
|
2735
|
+
role="option"
|
|
2736
|
+
>Needs maintenance</button>
|
|
2737
|
+
</li>
|
|
2738
|
+
</ul>
|
|
2739
|
+
</div>
|
|
2734
2740
|
</div>
|
|
2735
|
-
<div class="pf-c-
|
|
2736
|
-
<div class="pf-c-text-input-
|
|
2737
|
-
<
|
|
2738
|
-
<span class="pf-c-text-input-
|
|
2739
|
-
<
|
|
2741
|
+
<div class="pf-c-input-group__item">
|
|
2742
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
2743
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
2744
|
+
<span class="pf-c-text-input-group__text">
|
|
2745
|
+
<span class="pf-c-text-input-group__icon">
|
|
2746
|
+
<i class="fas fa-fw fa-search"></i>
|
|
2747
|
+
</span>
|
|
2748
|
+
<input
|
|
2749
|
+
class="pf-c-text-input-group__text-input"
|
|
2750
|
+
type="search"
|
|
2751
|
+
placeholder="Filter by name"
|
|
2752
|
+
value
|
|
2753
|
+
aria-label="Type to filter"
|
|
2754
|
+
/>
|
|
2740
2755
|
</span>
|
|
2741
|
-
|
|
2742
|
-
class="pf-c-text-input-group__text-input"
|
|
2743
|
-
type="search"
|
|
2744
|
-
placeholder="Filter by name"
|
|
2745
|
-
value
|
|
2746
|
-
aria-label="Type to filter"
|
|
2747
|
-
/>
|
|
2748
|
-
</span>
|
|
2756
|
+
</div>
|
|
2749
2757
|
</div>
|
|
2750
2758
|
</div>
|
|
2751
2759
|
</div>
|
|
@@ -4565,86 +4573,90 @@ wrapperTag: div
|
|
|
4565
4573
|
aria-label="search filter"
|
|
4566
4574
|
role="group"
|
|
4567
4575
|
>
|
|
4568
|
-
<div class="pf-c-
|
|
4569
|
-
<
|
|
4576
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
4577
|
+
<div class="pf-c-select" style="width: 124px">
|
|
4578
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
4570
4579
|
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4580
|
+
<button
|
|
4581
|
+
class="pf-c-select__toggle"
|
|
4582
|
+
type="button"
|
|
4583
|
+
id="-select-name-toggle"
|
|
4584
|
+
aria-haspopup="true"
|
|
4585
|
+
aria-expanded="false"
|
|
4586
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
4587
|
+
>
|
|
4588
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
4589
|
+
<span class="pf-c-select__toggle-icon">
|
|
4590
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
4591
|
+
</span>
|
|
4592
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
4593
|
+
</div>
|
|
4594
|
+
<span class="pf-c-select__toggle-arrow">
|
|
4595
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
4582
4596
|
</span>
|
|
4583
|
-
|
|
4584
|
-
</div>
|
|
4585
|
-
<span class="pf-c-select__toggle-arrow">
|
|
4586
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
4587
|
-
</span>
|
|
4588
|
-
</button>
|
|
4597
|
+
</button>
|
|
4589
4598
|
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4599
|
+
<ul
|
|
4600
|
+
class="pf-c-select__menu"
|
|
4601
|
+
role="listbox"
|
|
4602
|
+
aria-labelledby="-select-name-label"
|
|
4603
|
+
hidden
|
|
4604
|
+
>
|
|
4605
|
+
<li role="presentation">
|
|
4606
|
+
<button
|
|
4607
|
+
class="pf-c-select__menu-item"
|
|
4608
|
+
role="option"
|
|
4609
|
+
>Running</button>
|
|
4610
|
+
</li>
|
|
4611
|
+
<li role="presentation">
|
|
4612
|
+
<button
|
|
4613
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
4614
|
+
role="option"
|
|
4615
|
+
aria-selected="true"
|
|
4616
|
+
>
|
|
4617
|
+
Stopped
|
|
4618
|
+
<span class="pf-c-select__menu-item-icon">
|
|
4619
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
4620
|
+
</span>
|
|
4621
|
+
</button>
|
|
4622
|
+
</li>
|
|
4623
|
+
<li role="presentation">
|
|
4624
|
+
<button
|
|
4625
|
+
class="pf-c-select__menu-item"
|
|
4626
|
+
role="option"
|
|
4627
|
+
>Down</button>
|
|
4628
|
+
</li>
|
|
4629
|
+
<li role="presentation">
|
|
4630
|
+
<button
|
|
4631
|
+
class="pf-c-select__menu-item"
|
|
4632
|
+
role="option"
|
|
4633
|
+
>Degraded</button>
|
|
4634
|
+
</li>
|
|
4635
|
+
<li role="presentation">
|
|
4636
|
+
<button
|
|
4637
|
+
class="pf-c-select__menu-item"
|
|
4638
|
+
role="option"
|
|
4639
|
+
>Needs maintenance</button>
|
|
4640
|
+
</li>
|
|
4641
|
+
</ul>
|
|
4642
|
+
</div>
|
|
4633
4643
|
</div>
|
|
4634
|
-
<div class="pf-c-
|
|
4635
|
-
<div class="pf-c-text-input-
|
|
4636
|
-
<
|
|
4637
|
-
<span class="pf-c-text-input-
|
|
4638
|
-
<
|
|
4644
|
+
<div class="pf-c-input-group__item">
|
|
4645
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
4646
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
4647
|
+
<span class="pf-c-text-input-group__text">
|
|
4648
|
+
<span class="pf-c-text-input-group__icon">
|
|
4649
|
+
<i class="fas fa-fw fa-search"></i>
|
|
4650
|
+
</span>
|
|
4651
|
+
<input
|
|
4652
|
+
class="pf-c-text-input-group__text-input"
|
|
4653
|
+
type="search"
|
|
4654
|
+
placeholder="Filter by name"
|
|
4655
|
+
value
|
|
4656
|
+
aria-label="Type to filter"
|
|
4657
|
+
/>
|
|
4639
4658
|
</span>
|
|
4640
|
-
|
|
4641
|
-
class="pf-c-text-input-group__text-input"
|
|
4642
|
-
type="search"
|
|
4643
|
-
placeholder="Filter by name"
|
|
4644
|
-
value
|
|
4645
|
-
aria-label="Type to filter"
|
|
4646
|
-
/>
|
|
4647
|
-
</span>
|
|
4659
|
+
</div>
|
|
4648
4660
|
</div>
|
|
4649
4661
|
</div>
|
|
4650
4662
|
</div>
|
|
@@ -6658,86 +6670,90 @@ wrapperTag: div
|
|
|
6658
6670
|
aria-label="search filter"
|
|
6659
6671
|
role="group"
|
|
6660
6672
|
>
|
|
6661
|
-
<div class="pf-c-
|
|
6662
|
-
<
|
|
6673
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
6674
|
+
<div class="pf-c-select" style="width: 124px">
|
|
6675
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
6663
6676
|
|
|
6664
|
-
|
|
6665
|
-
|
|
6666
|
-
|
|
6667
|
-
|
|
6668
|
-
|
|
6669
|
-
|
|
6670
|
-
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6677
|
+
<button
|
|
6678
|
+
class="pf-c-select__toggle"
|
|
6679
|
+
type="button"
|
|
6680
|
+
id="-select-name-toggle"
|
|
6681
|
+
aria-haspopup="true"
|
|
6682
|
+
aria-expanded="false"
|
|
6683
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
6684
|
+
>
|
|
6685
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
6686
|
+
<span class="pf-c-select__toggle-icon">
|
|
6687
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
6688
|
+
</span>
|
|
6689
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
6690
|
+
</div>
|
|
6691
|
+
<span class="pf-c-select__toggle-arrow">
|
|
6692
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
6675
6693
|
</span>
|
|
6676
|
-
|
|
6677
|
-
</div>
|
|
6678
|
-
<span class="pf-c-select__toggle-arrow">
|
|
6679
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
6680
|
-
</span>
|
|
6681
|
-
</button>
|
|
6694
|
+
</button>
|
|
6682
6695
|
|
|
6683
|
-
|
|
6684
|
-
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
|
|
6701
|
-
|
|
6702
|
-
|
|
6703
|
-
|
|
6704
|
-
|
|
6705
|
-
|
|
6706
|
-
|
|
6707
|
-
|
|
6708
|
-
|
|
6709
|
-
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
|
|
6721
|
-
|
|
6722
|
-
|
|
6723
|
-
|
|
6724
|
-
|
|
6725
|
-
|
|
6696
|
+
<ul
|
|
6697
|
+
class="pf-c-select__menu"
|
|
6698
|
+
role="listbox"
|
|
6699
|
+
aria-labelledby="-select-name-label"
|
|
6700
|
+
hidden
|
|
6701
|
+
>
|
|
6702
|
+
<li role="presentation">
|
|
6703
|
+
<button
|
|
6704
|
+
class="pf-c-select__menu-item"
|
|
6705
|
+
role="option"
|
|
6706
|
+
>Running</button>
|
|
6707
|
+
</li>
|
|
6708
|
+
<li role="presentation">
|
|
6709
|
+
<button
|
|
6710
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
6711
|
+
role="option"
|
|
6712
|
+
aria-selected="true"
|
|
6713
|
+
>
|
|
6714
|
+
Stopped
|
|
6715
|
+
<span class="pf-c-select__menu-item-icon">
|
|
6716
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
6717
|
+
</span>
|
|
6718
|
+
</button>
|
|
6719
|
+
</li>
|
|
6720
|
+
<li role="presentation">
|
|
6721
|
+
<button
|
|
6722
|
+
class="pf-c-select__menu-item"
|
|
6723
|
+
role="option"
|
|
6724
|
+
>Down</button>
|
|
6725
|
+
</li>
|
|
6726
|
+
<li role="presentation">
|
|
6727
|
+
<button
|
|
6728
|
+
class="pf-c-select__menu-item"
|
|
6729
|
+
role="option"
|
|
6730
|
+
>Degraded</button>
|
|
6731
|
+
</li>
|
|
6732
|
+
<li role="presentation">
|
|
6733
|
+
<button
|
|
6734
|
+
class="pf-c-select__menu-item"
|
|
6735
|
+
role="option"
|
|
6736
|
+
>Needs maintenance</button>
|
|
6737
|
+
</li>
|
|
6738
|
+
</ul>
|
|
6739
|
+
</div>
|
|
6726
6740
|
</div>
|
|
6727
|
-
<div class="pf-c-
|
|
6728
|
-
<div class="pf-c-text-input-
|
|
6729
|
-
<
|
|
6730
|
-
<span class="pf-c-text-input-
|
|
6731
|
-
<
|
|
6741
|
+
<div class="pf-c-input-group__item">
|
|
6742
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
6743
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
6744
|
+
<span class="pf-c-text-input-group__text">
|
|
6745
|
+
<span class="pf-c-text-input-group__icon">
|
|
6746
|
+
<i class="fas fa-fw fa-search"></i>
|
|
6747
|
+
</span>
|
|
6748
|
+
<input
|
|
6749
|
+
class="pf-c-text-input-group__text-input"
|
|
6750
|
+
type="search"
|
|
6751
|
+
placeholder="Filter by name"
|
|
6752
|
+
value
|
|
6753
|
+
aria-label="Type to filter"
|
|
6754
|
+
/>
|
|
6732
6755
|
</span>
|
|
6733
|
-
|
|
6734
|
-
class="pf-c-text-input-group__text-input"
|
|
6735
|
-
type="search"
|
|
6736
|
-
placeholder="Filter by name"
|
|
6737
|
-
value
|
|
6738
|
-
aria-label="Type to filter"
|
|
6739
|
-
/>
|
|
6740
|
-
</span>
|
|
6756
|
+
</div>
|
|
6741
6757
|
</div>
|
|
6742
6758
|
</div>
|
|
6743
6759
|
</div>
|
|
@@ -8416,86 +8432,90 @@ wrapperTag: div
|
|
|
8416
8432
|
aria-label="search filter"
|
|
8417
8433
|
role="group"
|
|
8418
8434
|
>
|
|
8419
|
-
<div class="pf-c-
|
|
8420
|
-
<
|
|
8435
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
8436
|
+
<div class="pf-c-select" style="width: 124px">
|
|
8437
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
8421
8438
|
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
|
|
8439
|
+
<button
|
|
8440
|
+
class="pf-c-select__toggle"
|
|
8441
|
+
type="button"
|
|
8442
|
+
id="-select-name-toggle"
|
|
8443
|
+
aria-haspopup="true"
|
|
8444
|
+
aria-expanded="false"
|
|
8445
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
8446
|
+
>
|
|
8447
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
8448
|
+
<span class="pf-c-select__toggle-icon">
|
|
8449
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
8450
|
+
</span>
|
|
8451
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
8452
|
+
</div>
|
|
8453
|
+
<span class="pf-c-select__toggle-arrow">
|
|
8454
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
8433
8455
|
</span>
|
|
8434
|
-
|
|
8435
|
-
</div>
|
|
8436
|
-
<span class="pf-c-select__toggle-arrow">
|
|
8437
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
8438
|
-
</span>
|
|
8439
|
-
</button>
|
|
8456
|
+
</button>
|
|
8440
8457
|
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8454
|
-
|
|
8455
|
-
|
|
8456
|
-
|
|
8457
|
-
|
|
8458
|
-
|
|
8459
|
-
|
|
8460
|
-
|
|
8461
|
-
|
|
8462
|
-
|
|
8463
|
-
|
|
8464
|
-
|
|
8465
|
-
|
|
8466
|
-
|
|
8467
|
-
|
|
8468
|
-
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
|
|
8473
|
-
|
|
8474
|
-
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
8480
|
-
|
|
8481
|
-
|
|
8482
|
-
|
|
8483
|
-
|
|
8458
|
+
<ul
|
|
8459
|
+
class="pf-c-select__menu"
|
|
8460
|
+
role="listbox"
|
|
8461
|
+
aria-labelledby="-select-name-label"
|
|
8462
|
+
hidden
|
|
8463
|
+
>
|
|
8464
|
+
<li role="presentation">
|
|
8465
|
+
<button
|
|
8466
|
+
class="pf-c-select__menu-item"
|
|
8467
|
+
role="option"
|
|
8468
|
+
>Running</button>
|
|
8469
|
+
</li>
|
|
8470
|
+
<li role="presentation">
|
|
8471
|
+
<button
|
|
8472
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
8473
|
+
role="option"
|
|
8474
|
+
aria-selected="true"
|
|
8475
|
+
>
|
|
8476
|
+
Stopped
|
|
8477
|
+
<span class="pf-c-select__menu-item-icon">
|
|
8478
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
8479
|
+
</span>
|
|
8480
|
+
</button>
|
|
8481
|
+
</li>
|
|
8482
|
+
<li role="presentation">
|
|
8483
|
+
<button
|
|
8484
|
+
class="pf-c-select__menu-item"
|
|
8485
|
+
role="option"
|
|
8486
|
+
>Down</button>
|
|
8487
|
+
</li>
|
|
8488
|
+
<li role="presentation">
|
|
8489
|
+
<button
|
|
8490
|
+
class="pf-c-select__menu-item"
|
|
8491
|
+
role="option"
|
|
8492
|
+
>Degraded</button>
|
|
8493
|
+
</li>
|
|
8494
|
+
<li role="presentation">
|
|
8495
|
+
<button
|
|
8496
|
+
class="pf-c-select__menu-item"
|
|
8497
|
+
role="option"
|
|
8498
|
+
>Needs maintenance</button>
|
|
8499
|
+
</li>
|
|
8500
|
+
</ul>
|
|
8501
|
+
</div>
|
|
8484
8502
|
</div>
|
|
8485
|
-
<div class="pf-c-
|
|
8486
|
-
<div class="pf-c-text-input-
|
|
8487
|
-
<
|
|
8488
|
-
<span class="pf-c-text-input-
|
|
8489
|
-
<
|
|
8503
|
+
<div class="pf-c-input-group__item">
|
|
8504
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
8505
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
8506
|
+
<span class="pf-c-text-input-group__text">
|
|
8507
|
+
<span class="pf-c-text-input-group__icon">
|
|
8508
|
+
<i class="fas fa-fw fa-search"></i>
|
|
8509
|
+
</span>
|
|
8510
|
+
<input
|
|
8511
|
+
class="pf-c-text-input-group__text-input"
|
|
8512
|
+
type="search"
|
|
8513
|
+
placeholder="Filter by name"
|
|
8514
|
+
value
|
|
8515
|
+
aria-label="Type to filter"
|
|
8516
|
+
/>
|
|
8490
8517
|
</span>
|
|
8491
|
-
|
|
8492
|
-
class="pf-c-text-input-group__text-input"
|
|
8493
|
-
type="search"
|
|
8494
|
-
placeholder="Filter by name"
|
|
8495
|
-
value
|
|
8496
|
-
aria-label="Type to filter"
|
|
8497
|
-
/>
|
|
8498
|
-
</span>
|
|
8518
|
+
</div>
|
|
8499
8519
|
</div>
|
|
8500
8520
|
</div>
|
|
8501
8521
|
</div>
|
|
@@ -15234,86 +15254,90 @@ wrapperTag: div
|
|
|
15234
15254
|
aria-label="search filter"
|
|
15235
15255
|
role="group"
|
|
15236
15256
|
>
|
|
15237
|
-
<div class="pf-c-
|
|
15238
|
-
<
|
|
15257
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
15258
|
+
<div class="pf-c-select" style="width: 124px">
|
|
15259
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
15239
15260
|
|
|
15240
|
-
|
|
15241
|
-
|
|
15242
|
-
|
|
15243
|
-
|
|
15244
|
-
|
|
15245
|
-
|
|
15246
|
-
|
|
15247
|
-
|
|
15248
|
-
|
|
15249
|
-
|
|
15250
|
-
|
|
15261
|
+
<button
|
|
15262
|
+
class="pf-c-select__toggle"
|
|
15263
|
+
type="button"
|
|
15264
|
+
id="-select-name-toggle"
|
|
15265
|
+
aria-haspopup="true"
|
|
15266
|
+
aria-expanded="false"
|
|
15267
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
15268
|
+
>
|
|
15269
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
15270
|
+
<span class="pf-c-select__toggle-icon">
|
|
15271
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
15272
|
+
</span>
|
|
15273
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
15274
|
+
</div>
|
|
15275
|
+
<span class="pf-c-select__toggle-arrow">
|
|
15276
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
15251
15277
|
</span>
|
|
15252
|
-
|
|
15253
|
-
</div>
|
|
15254
|
-
<span class="pf-c-select__toggle-arrow">
|
|
15255
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
15256
|
-
</span>
|
|
15257
|
-
</button>
|
|
15278
|
+
</button>
|
|
15258
15279
|
|
|
15259
|
-
|
|
15260
|
-
|
|
15261
|
-
|
|
15262
|
-
|
|
15263
|
-
|
|
15264
|
-
|
|
15265
|
-
|
|
15266
|
-
|
|
15267
|
-
|
|
15268
|
-
|
|
15269
|
-
|
|
15270
|
-
|
|
15271
|
-
|
|
15272
|
-
|
|
15273
|
-
|
|
15274
|
-
|
|
15275
|
-
|
|
15276
|
-
|
|
15277
|
-
|
|
15278
|
-
|
|
15279
|
-
|
|
15280
|
-
|
|
15281
|
-
|
|
15282
|
-
|
|
15283
|
-
|
|
15284
|
-
|
|
15285
|
-
|
|
15286
|
-
|
|
15287
|
-
|
|
15288
|
-
|
|
15289
|
-
|
|
15290
|
-
|
|
15291
|
-
|
|
15292
|
-
|
|
15293
|
-
|
|
15294
|
-
|
|
15295
|
-
|
|
15296
|
-
|
|
15297
|
-
|
|
15298
|
-
|
|
15299
|
-
|
|
15300
|
-
|
|
15301
|
-
|
|
15280
|
+
<ul
|
|
15281
|
+
class="pf-c-select__menu"
|
|
15282
|
+
role="listbox"
|
|
15283
|
+
aria-labelledby="-select-name-label"
|
|
15284
|
+
hidden
|
|
15285
|
+
>
|
|
15286
|
+
<li role="presentation">
|
|
15287
|
+
<button
|
|
15288
|
+
class="pf-c-select__menu-item"
|
|
15289
|
+
role="option"
|
|
15290
|
+
>Running</button>
|
|
15291
|
+
</li>
|
|
15292
|
+
<li role="presentation">
|
|
15293
|
+
<button
|
|
15294
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
15295
|
+
role="option"
|
|
15296
|
+
aria-selected="true"
|
|
15297
|
+
>
|
|
15298
|
+
Stopped
|
|
15299
|
+
<span class="pf-c-select__menu-item-icon">
|
|
15300
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
15301
|
+
</span>
|
|
15302
|
+
</button>
|
|
15303
|
+
</li>
|
|
15304
|
+
<li role="presentation">
|
|
15305
|
+
<button
|
|
15306
|
+
class="pf-c-select__menu-item"
|
|
15307
|
+
role="option"
|
|
15308
|
+
>Down</button>
|
|
15309
|
+
</li>
|
|
15310
|
+
<li role="presentation">
|
|
15311
|
+
<button
|
|
15312
|
+
class="pf-c-select__menu-item"
|
|
15313
|
+
role="option"
|
|
15314
|
+
>Degraded</button>
|
|
15315
|
+
</li>
|
|
15316
|
+
<li role="presentation">
|
|
15317
|
+
<button
|
|
15318
|
+
class="pf-c-select__menu-item"
|
|
15319
|
+
role="option"
|
|
15320
|
+
>Needs maintenance</button>
|
|
15321
|
+
</li>
|
|
15322
|
+
</ul>
|
|
15323
|
+
</div>
|
|
15302
15324
|
</div>
|
|
15303
|
-
<div class="pf-c-
|
|
15304
|
-
<div class="pf-c-text-input-
|
|
15305
|
-
<
|
|
15306
|
-
<span class="pf-c-text-input-
|
|
15307
|
-
<
|
|
15325
|
+
<div class="pf-c-input-group__item">
|
|
15326
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
15327
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
15328
|
+
<span class="pf-c-text-input-group__text">
|
|
15329
|
+
<span class="pf-c-text-input-group__icon">
|
|
15330
|
+
<i class="fas fa-fw fa-search"></i>
|
|
15331
|
+
</span>
|
|
15332
|
+
<input
|
|
15333
|
+
class="pf-c-text-input-group__text-input"
|
|
15334
|
+
type="search"
|
|
15335
|
+
placeholder="Filter by name"
|
|
15336
|
+
value
|
|
15337
|
+
aria-label="Type to filter"
|
|
15338
|
+
/>
|
|
15308
15339
|
</span>
|
|
15309
|
-
|
|
15310
|
-
class="pf-c-text-input-group__text-input"
|
|
15311
|
-
type="search"
|
|
15312
|
-
placeholder="Filter by name"
|
|
15313
|
-
value
|
|
15314
|
-
aria-label="Type to filter"
|
|
15315
|
-
/>
|
|
15316
|
-
</span>
|
|
15340
|
+
</div>
|
|
15317
15341
|
</div>
|
|
15318
15342
|
</div>
|
|
15319
15343
|
</div>
|
|
@@ -17127,86 +17151,90 @@ wrapperTag: div
|
|
|
17127
17151
|
aria-label="search filter"
|
|
17128
17152
|
role="group"
|
|
17129
17153
|
>
|
|
17130
|
-
<div class="pf-c-
|
|
17131
|
-
<
|
|
17154
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
17155
|
+
<div class="pf-c-select" style="width: 124px">
|
|
17156
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
17132
17157
|
|
|
17133
|
-
|
|
17134
|
-
|
|
17135
|
-
|
|
17136
|
-
|
|
17137
|
-
|
|
17138
|
-
|
|
17139
|
-
|
|
17140
|
-
|
|
17141
|
-
|
|
17142
|
-
|
|
17143
|
-
|
|
17158
|
+
<button
|
|
17159
|
+
class="pf-c-select__toggle"
|
|
17160
|
+
type="button"
|
|
17161
|
+
id="-select-name-toggle"
|
|
17162
|
+
aria-haspopup="true"
|
|
17163
|
+
aria-expanded="false"
|
|
17164
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
17165
|
+
>
|
|
17166
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
17167
|
+
<span class="pf-c-select__toggle-icon">
|
|
17168
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
17169
|
+
</span>
|
|
17170
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
17171
|
+
</div>
|
|
17172
|
+
<span class="pf-c-select__toggle-arrow">
|
|
17173
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
17144
17174
|
</span>
|
|
17145
|
-
|
|
17146
|
-
</div>
|
|
17147
|
-
<span class="pf-c-select__toggle-arrow">
|
|
17148
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
17149
|
-
</span>
|
|
17150
|
-
</button>
|
|
17175
|
+
</button>
|
|
17151
17176
|
|
|
17152
|
-
|
|
17153
|
-
|
|
17154
|
-
|
|
17155
|
-
|
|
17156
|
-
|
|
17157
|
-
|
|
17158
|
-
|
|
17159
|
-
|
|
17160
|
-
|
|
17161
|
-
|
|
17162
|
-
|
|
17163
|
-
|
|
17164
|
-
|
|
17165
|
-
|
|
17166
|
-
|
|
17167
|
-
|
|
17168
|
-
|
|
17169
|
-
|
|
17170
|
-
|
|
17171
|
-
|
|
17172
|
-
|
|
17173
|
-
|
|
17174
|
-
|
|
17175
|
-
|
|
17176
|
-
|
|
17177
|
-
|
|
17178
|
-
|
|
17179
|
-
|
|
17180
|
-
|
|
17181
|
-
|
|
17182
|
-
|
|
17183
|
-
|
|
17184
|
-
|
|
17185
|
-
|
|
17186
|
-
|
|
17187
|
-
|
|
17188
|
-
|
|
17189
|
-
|
|
17190
|
-
|
|
17191
|
-
|
|
17192
|
-
|
|
17193
|
-
|
|
17194
|
-
|
|
17177
|
+
<ul
|
|
17178
|
+
class="pf-c-select__menu"
|
|
17179
|
+
role="listbox"
|
|
17180
|
+
aria-labelledby="-select-name-label"
|
|
17181
|
+
hidden
|
|
17182
|
+
>
|
|
17183
|
+
<li role="presentation">
|
|
17184
|
+
<button
|
|
17185
|
+
class="pf-c-select__menu-item"
|
|
17186
|
+
role="option"
|
|
17187
|
+
>Running</button>
|
|
17188
|
+
</li>
|
|
17189
|
+
<li role="presentation">
|
|
17190
|
+
<button
|
|
17191
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
17192
|
+
role="option"
|
|
17193
|
+
aria-selected="true"
|
|
17194
|
+
>
|
|
17195
|
+
Stopped
|
|
17196
|
+
<span class="pf-c-select__menu-item-icon">
|
|
17197
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
17198
|
+
</span>
|
|
17199
|
+
</button>
|
|
17200
|
+
</li>
|
|
17201
|
+
<li role="presentation">
|
|
17202
|
+
<button
|
|
17203
|
+
class="pf-c-select__menu-item"
|
|
17204
|
+
role="option"
|
|
17205
|
+
>Down</button>
|
|
17206
|
+
</li>
|
|
17207
|
+
<li role="presentation">
|
|
17208
|
+
<button
|
|
17209
|
+
class="pf-c-select__menu-item"
|
|
17210
|
+
role="option"
|
|
17211
|
+
>Degraded</button>
|
|
17212
|
+
</li>
|
|
17213
|
+
<li role="presentation">
|
|
17214
|
+
<button
|
|
17215
|
+
class="pf-c-select__menu-item"
|
|
17216
|
+
role="option"
|
|
17217
|
+
>Needs maintenance</button>
|
|
17218
|
+
</li>
|
|
17219
|
+
</ul>
|
|
17220
|
+
</div>
|
|
17195
17221
|
</div>
|
|
17196
|
-
<div class="pf-c-
|
|
17197
|
-
<div class="pf-c-text-input-
|
|
17198
|
-
<
|
|
17199
|
-
<span class="pf-c-text-input-
|
|
17200
|
-
<
|
|
17222
|
+
<div class="pf-c-input-group__item">
|
|
17223
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
17224
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
17225
|
+
<span class="pf-c-text-input-group__text">
|
|
17226
|
+
<span class="pf-c-text-input-group__icon">
|
|
17227
|
+
<i class="fas fa-fw fa-search"></i>
|
|
17228
|
+
</span>
|
|
17229
|
+
<input
|
|
17230
|
+
class="pf-c-text-input-group__text-input"
|
|
17231
|
+
type="search"
|
|
17232
|
+
placeholder="Filter by name"
|
|
17233
|
+
value
|
|
17234
|
+
aria-label="Type to filter"
|
|
17235
|
+
/>
|
|
17201
17236
|
</span>
|
|
17202
|
-
|
|
17203
|
-
class="pf-c-text-input-group__text-input"
|
|
17204
|
-
type="search"
|
|
17205
|
-
placeholder="Filter by name"
|
|
17206
|
-
value
|
|
17207
|
-
aria-label="Type to filter"
|
|
17208
|
-
/>
|
|
17209
|
-
</span>
|
|
17237
|
+
</div>
|
|
17210
17238
|
</div>
|
|
17211
17239
|
</div>
|
|
17212
17240
|
</div>
|
|
@@ -19120,86 +19148,90 @@ wrapperTag: div
|
|
|
19120
19148
|
aria-label="search filter"
|
|
19121
19149
|
role="group"
|
|
19122
19150
|
>
|
|
19123
|
-
<div class="pf-c-
|
|
19124
|
-
<
|
|
19151
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
19152
|
+
<div class="pf-c-select" style="width: 124px">
|
|
19153
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
19125
19154
|
|
|
19126
|
-
|
|
19127
|
-
|
|
19128
|
-
|
|
19129
|
-
|
|
19130
|
-
|
|
19131
|
-
|
|
19132
|
-
|
|
19133
|
-
|
|
19134
|
-
|
|
19135
|
-
|
|
19136
|
-
|
|
19155
|
+
<button
|
|
19156
|
+
class="pf-c-select__toggle"
|
|
19157
|
+
type="button"
|
|
19158
|
+
id="-select-name-toggle"
|
|
19159
|
+
aria-haspopup="true"
|
|
19160
|
+
aria-expanded="false"
|
|
19161
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
19162
|
+
>
|
|
19163
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
19164
|
+
<span class="pf-c-select__toggle-icon">
|
|
19165
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
19166
|
+
</span>
|
|
19167
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
19168
|
+
</div>
|
|
19169
|
+
<span class="pf-c-select__toggle-arrow">
|
|
19170
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
19137
19171
|
</span>
|
|
19138
|
-
|
|
19139
|
-
</div>
|
|
19140
|
-
<span class="pf-c-select__toggle-arrow">
|
|
19141
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
19142
|
-
</span>
|
|
19143
|
-
</button>
|
|
19172
|
+
</button>
|
|
19144
19173
|
|
|
19145
|
-
|
|
19146
|
-
|
|
19147
|
-
|
|
19148
|
-
|
|
19149
|
-
|
|
19150
|
-
|
|
19151
|
-
|
|
19152
|
-
|
|
19153
|
-
|
|
19154
|
-
|
|
19155
|
-
|
|
19156
|
-
|
|
19157
|
-
|
|
19158
|
-
|
|
19159
|
-
|
|
19160
|
-
|
|
19161
|
-
|
|
19162
|
-
|
|
19163
|
-
|
|
19164
|
-
|
|
19165
|
-
|
|
19166
|
-
|
|
19167
|
-
|
|
19168
|
-
|
|
19169
|
-
|
|
19170
|
-
|
|
19171
|
-
|
|
19172
|
-
|
|
19173
|
-
|
|
19174
|
-
|
|
19175
|
-
|
|
19176
|
-
|
|
19177
|
-
|
|
19178
|
-
|
|
19179
|
-
|
|
19180
|
-
|
|
19181
|
-
|
|
19182
|
-
|
|
19183
|
-
|
|
19184
|
-
|
|
19185
|
-
|
|
19186
|
-
|
|
19187
|
-
|
|
19174
|
+
<ul
|
|
19175
|
+
class="pf-c-select__menu"
|
|
19176
|
+
role="listbox"
|
|
19177
|
+
aria-labelledby="-select-name-label"
|
|
19178
|
+
hidden
|
|
19179
|
+
>
|
|
19180
|
+
<li role="presentation">
|
|
19181
|
+
<button
|
|
19182
|
+
class="pf-c-select__menu-item"
|
|
19183
|
+
role="option"
|
|
19184
|
+
>Running</button>
|
|
19185
|
+
</li>
|
|
19186
|
+
<li role="presentation">
|
|
19187
|
+
<button
|
|
19188
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
19189
|
+
role="option"
|
|
19190
|
+
aria-selected="true"
|
|
19191
|
+
>
|
|
19192
|
+
Stopped
|
|
19193
|
+
<span class="pf-c-select__menu-item-icon">
|
|
19194
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
19195
|
+
</span>
|
|
19196
|
+
</button>
|
|
19197
|
+
</li>
|
|
19198
|
+
<li role="presentation">
|
|
19199
|
+
<button
|
|
19200
|
+
class="pf-c-select__menu-item"
|
|
19201
|
+
role="option"
|
|
19202
|
+
>Down</button>
|
|
19203
|
+
</li>
|
|
19204
|
+
<li role="presentation">
|
|
19205
|
+
<button
|
|
19206
|
+
class="pf-c-select__menu-item"
|
|
19207
|
+
role="option"
|
|
19208
|
+
>Degraded</button>
|
|
19209
|
+
</li>
|
|
19210
|
+
<li role="presentation">
|
|
19211
|
+
<button
|
|
19212
|
+
class="pf-c-select__menu-item"
|
|
19213
|
+
role="option"
|
|
19214
|
+
>Needs maintenance</button>
|
|
19215
|
+
</li>
|
|
19216
|
+
</ul>
|
|
19217
|
+
</div>
|
|
19188
19218
|
</div>
|
|
19189
|
-
<div class="pf-c-
|
|
19190
|
-
<div class="pf-c-text-input-
|
|
19191
|
-
<
|
|
19192
|
-
<span class="pf-c-text-input-
|
|
19193
|
-
<
|
|
19219
|
+
<div class="pf-c-input-group__item">
|
|
19220
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
19221
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
19222
|
+
<span class="pf-c-text-input-group__text">
|
|
19223
|
+
<span class="pf-c-text-input-group__icon">
|
|
19224
|
+
<i class="fas fa-fw fa-search"></i>
|
|
19225
|
+
</span>
|
|
19226
|
+
<input
|
|
19227
|
+
class="pf-c-text-input-group__text-input"
|
|
19228
|
+
type="search"
|
|
19229
|
+
placeholder="Filter by name"
|
|
19230
|
+
value
|
|
19231
|
+
aria-label="Type to filter"
|
|
19232
|
+
/>
|
|
19194
19233
|
</span>
|
|
19195
|
-
|
|
19196
|
-
class="pf-c-text-input-group__text-input"
|
|
19197
|
-
type="search"
|
|
19198
|
-
placeholder="Filter by name"
|
|
19199
|
-
value
|
|
19200
|
-
aria-label="Type to filter"
|
|
19201
|
-
/>
|
|
19202
|
-
</span>
|
|
19234
|
+
</div>
|
|
19203
19235
|
</div>
|
|
19204
19236
|
</div>
|
|
19205
19237
|
</div>
|
|
@@ -21016,86 +21048,90 @@ wrapperTag: div
|
|
|
21016
21048
|
aria-label="search filter"
|
|
21017
21049
|
role="group"
|
|
21018
21050
|
>
|
|
21019
|
-
<div class="pf-c-
|
|
21020
|
-
<
|
|
21051
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
21052
|
+
<div class="pf-c-select" style="width: 124px">
|
|
21053
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
21021
21054
|
|
|
21022
|
-
|
|
21023
|
-
|
|
21024
|
-
|
|
21025
|
-
|
|
21026
|
-
|
|
21027
|
-
|
|
21028
|
-
|
|
21029
|
-
|
|
21030
|
-
|
|
21031
|
-
|
|
21032
|
-
|
|
21055
|
+
<button
|
|
21056
|
+
class="pf-c-select__toggle"
|
|
21057
|
+
type="button"
|
|
21058
|
+
id="-select-name-toggle"
|
|
21059
|
+
aria-haspopup="true"
|
|
21060
|
+
aria-expanded="false"
|
|
21061
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
21062
|
+
>
|
|
21063
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
21064
|
+
<span class="pf-c-select__toggle-icon">
|
|
21065
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
21066
|
+
</span>
|
|
21067
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
21068
|
+
</div>
|
|
21069
|
+
<span class="pf-c-select__toggle-arrow">
|
|
21070
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
21033
21071
|
</span>
|
|
21034
|
-
|
|
21035
|
-
</div>
|
|
21036
|
-
<span class="pf-c-select__toggle-arrow">
|
|
21037
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
21038
|
-
</span>
|
|
21039
|
-
</button>
|
|
21072
|
+
</button>
|
|
21040
21073
|
|
|
21041
|
-
|
|
21042
|
-
|
|
21043
|
-
|
|
21044
|
-
|
|
21045
|
-
|
|
21046
|
-
|
|
21047
|
-
|
|
21048
|
-
|
|
21049
|
-
|
|
21050
|
-
|
|
21051
|
-
|
|
21052
|
-
|
|
21053
|
-
|
|
21054
|
-
|
|
21055
|
-
|
|
21056
|
-
|
|
21057
|
-
|
|
21058
|
-
|
|
21059
|
-
|
|
21060
|
-
|
|
21061
|
-
|
|
21062
|
-
|
|
21063
|
-
|
|
21064
|
-
|
|
21065
|
-
|
|
21066
|
-
|
|
21067
|
-
|
|
21068
|
-
|
|
21069
|
-
|
|
21070
|
-
|
|
21071
|
-
|
|
21072
|
-
|
|
21073
|
-
|
|
21074
|
-
|
|
21075
|
-
|
|
21076
|
-
|
|
21077
|
-
|
|
21078
|
-
|
|
21079
|
-
|
|
21080
|
-
|
|
21081
|
-
|
|
21082
|
-
|
|
21083
|
-
|
|
21074
|
+
<ul
|
|
21075
|
+
class="pf-c-select__menu"
|
|
21076
|
+
role="listbox"
|
|
21077
|
+
aria-labelledby="-select-name-label"
|
|
21078
|
+
hidden
|
|
21079
|
+
>
|
|
21080
|
+
<li role="presentation">
|
|
21081
|
+
<button
|
|
21082
|
+
class="pf-c-select__menu-item"
|
|
21083
|
+
role="option"
|
|
21084
|
+
>Running</button>
|
|
21085
|
+
</li>
|
|
21086
|
+
<li role="presentation">
|
|
21087
|
+
<button
|
|
21088
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
21089
|
+
role="option"
|
|
21090
|
+
aria-selected="true"
|
|
21091
|
+
>
|
|
21092
|
+
Stopped
|
|
21093
|
+
<span class="pf-c-select__menu-item-icon">
|
|
21094
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
21095
|
+
</span>
|
|
21096
|
+
</button>
|
|
21097
|
+
</li>
|
|
21098
|
+
<li role="presentation">
|
|
21099
|
+
<button
|
|
21100
|
+
class="pf-c-select__menu-item"
|
|
21101
|
+
role="option"
|
|
21102
|
+
>Down</button>
|
|
21103
|
+
</li>
|
|
21104
|
+
<li role="presentation">
|
|
21105
|
+
<button
|
|
21106
|
+
class="pf-c-select__menu-item"
|
|
21107
|
+
role="option"
|
|
21108
|
+
>Degraded</button>
|
|
21109
|
+
</li>
|
|
21110
|
+
<li role="presentation">
|
|
21111
|
+
<button
|
|
21112
|
+
class="pf-c-select__menu-item"
|
|
21113
|
+
role="option"
|
|
21114
|
+
>Needs maintenance</button>
|
|
21115
|
+
</li>
|
|
21116
|
+
</ul>
|
|
21117
|
+
</div>
|
|
21084
21118
|
</div>
|
|
21085
|
-
<div class="pf-c-
|
|
21086
|
-
<div class="pf-c-text-input-
|
|
21087
|
-
<
|
|
21088
|
-
<span class="pf-c-text-input-
|
|
21089
|
-
<
|
|
21119
|
+
<div class="pf-c-input-group__item">
|
|
21120
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
21121
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
21122
|
+
<span class="pf-c-text-input-group__text">
|
|
21123
|
+
<span class="pf-c-text-input-group__icon">
|
|
21124
|
+
<i class="fas fa-fw fa-search"></i>
|
|
21125
|
+
</span>
|
|
21126
|
+
<input
|
|
21127
|
+
class="pf-c-text-input-group__text-input"
|
|
21128
|
+
type="search"
|
|
21129
|
+
placeholder="Filter by name"
|
|
21130
|
+
value
|
|
21131
|
+
aria-label="Type to filter"
|
|
21132
|
+
/>
|
|
21090
21133
|
</span>
|
|
21091
|
-
|
|
21092
|
-
class="pf-c-text-input-group__text-input"
|
|
21093
|
-
type="search"
|
|
21094
|
-
placeholder="Filter by name"
|
|
21095
|
-
value
|
|
21096
|
-
aria-label="Type to filter"
|
|
21097
|
-
/>
|
|
21098
|
-
</span>
|
|
21134
|
+
</div>
|
|
21099
21135
|
</div>
|
|
21100
21136
|
</div>
|
|
21101
21137
|
</div>
|
|
@@ -22828,86 +22864,90 @@ wrapperTag: div
|
|
|
22828
22864
|
aria-label="search filter"
|
|
22829
22865
|
role="group"
|
|
22830
22866
|
>
|
|
22831
|
-
<div class="pf-c-
|
|
22832
|
-
<
|
|
22833
|
-
|
|
22834
|
-
<button
|
|
22835
|
-
class="pf-c-select__toggle"
|
|
22836
|
-
type="button"
|
|
22837
|
-
id="-select-name-toggle"
|
|
22838
|
-
aria-haspopup="true"
|
|
22839
|
-
aria-expanded="false"
|
|
22840
|
-
aria-labelledby="-select-name-label -select-name-toggle"
|
|
22841
|
-
>
|
|
22842
|
-
<div class="pf-c-select__toggle-wrapper">
|
|
22843
|
-
<span class="pf-c-select__toggle-icon">
|
|
22844
|
-
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
22845
|
-
</span>
|
|
22846
|
-
<span class="pf-c-select__toggle-text">Name</span>
|
|
22847
|
-
</div>
|
|
22848
|
-
<span class="pf-c-select__toggle-arrow">
|
|
22849
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
22850
|
-
</span>
|
|
22851
|
-
</button>
|
|
22867
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
22868
|
+
<div class="pf-c-select" style="width: 124px">
|
|
22869
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
22852
22870
|
|
|
22853
|
-
|
|
22854
|
-
|
|
22855
|
-
|
|
22856
|
-
|
|
22857
|
-
|
|
22858
|
-
|
|
22859
|
-
|
|
22860
|
-
|
|
22861
|
-
|
|
22862
|
-
|
|
22863
|
-
|
|
22864
|
-
</li>
|
|
22865
|
-
<li role="presentation">
|
|
22866
|
-
<button
|
|
22867
|
-
class="pf-c-select__menu-item pf-m-selected"
|
|
22868
|
-
role="option"
|
|
22869
|
-
aria-selected="true"
|
|
22870
|
-
>
|
|
22871
|
-
Stopped
|
|
22872
|
-
<span class="pf-c-select__menu-item-icon">
|
|
22873
|
-
<i class="fas fa-check" aria-hidden="true"></i>
|
|
22871
|
+
<button
|
|
22872
|
+
class="pf-c-select__toggle"
|
|
22873
|
+
type="button"
|
|
22874
|
+
id="-select-name-toggle"
|
|
22875
|
+
aria-haspopup="true"
|
|
22876
|
+
aria-expanded="false"
|
|
22877
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
22878
|
+
>
|
|
22879
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
22880
|
+
<span class="pf-c-select__toggle-icon">
|
|
22881
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
22874
22882
|
</span>
|
|
22875
|
-
|
|
22876
|
-
|
|
22877
|
-
|
|
22878
|
-
|
|
22879
|
-
|
|
22880
|
-
|
|
22881
|
-
|
|
22882
|
-
|
|
22883
|
-
|
|
22884
|
-
|
|
22885
|
-
|
|
22886
|
-
|
|
22887
|
-
|
|
22888
|
-
|
|
22889
|
-
|
|
22890
|
-
|
|
22891
|
-
|
|
22892
|
-
|
|
22893
|
-
|
|
22894
|
-
|
|
22895
|
-
|
|
22883
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
22884
|
+
</div>
|
|
22885
|
+
<span class="pf-c-select__toggle-arrow">
|
|
22886
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
22887
|
+
</span>
|
|
22888
|
+
</button>
|
|
22889
|
+
|
|
22890
|
+
<ul
|
|
22891
|
+
class="pf-c-select__menu"
|
|
22892
|
+
role="listbox"
|
|
22893
|
+
aria-labelledby="-select-name-label"
|
|
22894
|
+
hidden
|
|
22895
|
+
>
|
|
22896
|
+
<li role="presentation">
|
|
22897
|
+
<button
|
|
22898
|
+
class="pf-c-select__menu-item"
|
|
22899
|
+
role="option"
|
|
22900
|
+
>Running</button>
|
|
22901
|
+
</li>
|
|
22902
|
+
<li role="presentation">
|
|
22903
|
+
<button
|
|
22904
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
22905
|
+
role="option"
|
|
22906
|
+
aria-selected="true"
|
|
22907
|
+
>
|
|
22908
|
+
Stopped
|
|
22909
|
+
<span class="pf-c-select__menu-item-icon">
|
|
22910
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
22911
|
+
</span>
|
|
22912
|
+
</button>
|
|
22913
|
+
</li>
|
|
22914
|
+
<li role="presentation">
|
|
22915
|
+
<button
|
|
22916
|
+
class="pf-c-select__menu-item"
|
|
22917
|
+
role="option"
|
|
22918
|
+
>Down</button>
|
|
22919
|
+
</li>
|
|
22920
|
+
<li role="presentation">
|
|
22921
|
+
<button
|
|
22922
|
+
class="pf-c-select__menu-item"
|
|
22923
|
+
role="option"
|
|
22924
|
+
>Degraded</button>
|
|
22925
|
+
</li>
|
|
22926
|
+
<li role="presentation">
|
|
22927
|
+
<button
|
|
22928
|
+
class="pf-c-select__menu-item"
|
|
22929
|
+
role="option"
|
|
22930
|
+
>Needs maintenance</button>
|
|
22931
|
+
</li>
|
|
22932
|
+
</ul>
|
|
22933
|
+
</div>
|
|
22896
22934
|
</div>
|
|
22897
|
-
<div class="pf-c-
|
|
22898
|
-
<div class="pf-c-text-input-
|
|
22899
|
-
<
|
|
22900
|
-
<span class="pf-c-text-input-
|
|
22901
|
-
<
|
|
22935
|
+
<div class="pf-c-input-group__item">
|
|
22936
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
22937
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
22938
|
+
<span class="pf-c-text-input-group__text">
|
|
22939
|
+
<span class="pf-c-text-input-group__icon">
|
|
22940
|
+
<i class="fas fa-fw fa-search"></i>
|
|
22941
|
+
</span>
|
|
22942
|
+
<input
|
|
22943
|
+
class="pf-c-text-input-group__text-input"
|
|
22944
|
+
type="search"
|
|
22945
|
+
placeholder="Filter by name"
|
|
22946
|
+
value
|
|
22947
|
+
aria-label="Type to filter"
|
|
22948
|
+
/>
|
|
22902
22949
|
</span>
|
|
22903
|
-
|
|
22904
|
-
class="pf-c-text-input-group__text-input"
|
|
22905
|
-
type="search"
|
|
22906
|
-
placeholder="Filter by name"
|
|
22907
|
-
value
|
|
22908
|
-
aria-label="Type to filter"
|
|
22909
|
-
/>
|
|
22910
|
-
</span>
|
|
22950
|
+
</div>
|
|
22911
22951
|
</div>
|
|
22912
22952
|
</div>
|
|
22913
22953
|
</div>
|
|
@@ -24661,86 +24701,90 @@ wrapperTag: div
|
|
|
24661
24701
|
aria-label="search filter"
|
|
24662
24702
|
role="group"
|
|
24663
24703
|
>
|
|
24664
|
-
<div class="pf-c-
|
|
24665
|
-
<
|
|
24704
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
24705
|
+
<div class="pf-c-select" style="width: 124px">
|
|
24706
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
24666
24707
|
|
|
24667
|
-
|
|
24668
|
-
|
|
24669
|
-
|
|
24670
|
-
|
|
24671
|
-
|
|
24672
|
-
|
|
24673
|
-
|
|
24674
|
-
|
|
24675
|
-
|
|
24676
|
-
|
|
24677
|
-
|
|
24708
|
+
<button
|
|
24709
|
+
class="pf-c-select__toggle"
|
|
24710
|
+
type="button"
|
|
24711
|
+
id="-select-name-toggle"
|
|
24712
|
+
aria-haspopup="true"
|
|
24713
|
+
aria-expanded="false"
|
|
24714
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
24715
|
+
>
|
|
24716
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
24717
|
+
<span class="pf-c-select__toggle-icon">
|
|
24718
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
24719
|
+
</span>
|
|
24720
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
24721
|
+
</div>
|
|
24722
|
+
<span class="pf-c-select__toggle-arrow">
|
|
24723
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
24678
24724
|
</span>
|
|
24679
|
-
|
|
24680
|
-
</div>
|
|
24681
|
-
<span class="pf-c-select__toggle-arrow">
|
|
24682
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
24683
|
-
</span>
|
|
24684
|
-
</button>
|
|
24725
|
+
</button>
|
|
24685
24726
|
|
|
24686
|
-
|
|
24687
|
-
|
|
24688
|
-
|
|
24689
|
-
|
|
24690
|
-
|
|
24691
|
-
|
|
24692
|
-
|
|
24693
|
-
|
|
24694
|
-
|
|
24695
|
-
|
|
24696
|
-
|
|
24697
|
-
|
|
24698
|
-
|
|
24699
|
-
|
|
24700
|
-
|
|
24701
|
-
|
|
24702
|
-
|
|
24703
|
-
|
|
24704
|
-
|
|
24705
|
-
|
|
24706
|
-
|
|
24707
|
-
|
|
24708
|
-
|
|
24709
|
-
|
|
24710
|
-
|
|
24711
|
-
|
|
24712
|
-
|
|
24713
|
-
|
|
24714
|
-
|
|
24715
|
-
|
|
24716
|
-
|
|
24717
|
-
|
|
24718
|
-
|
|
24719
|
-
|
|
24720
|
-
|
|
24721
|
-
|
|
24722
|
-
|
|
24723
|
-
|
|
24724
|
-
|
|
24725
|
-
|
|
24726
|
-
|
|
24727
|
-
|
|
24728
|
-
|
|
24727
|
+
<ul
|
|
24728
|
+
class="pf-c-select__menu"
|
|
24729
|
+
role="listbox"
|
|
24730
|
+
aria-labelledby="-select-name-label"
|
|
24731
|
+
hidden
|
|
24732
|
+
>
|
|
24733
|
+
<li role="presentation">
|
|
24734
|
+
<button
|
|
24735
|
+
class="pf-c-select__menu-item"
|
|
24736
|
+
role="option"
|
|
24737
|
+
>Running</button>
|
|
24738
|
+
</li>
|
|
24739
|
+
<li role="presentation">
|
|
24740
|
+
<button
|
|
24741
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
24742
|
+
role="option"
|
|
24743
|
+
aria-selected="true"
|
|
24744
|
+
>
|
|
24745
|
+
Stopped
|
|
24746
|
+
<span class="pf-c-select__menu-item-icon">
|
|
24747
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
24748
|
+
</span>
|
|
24749
|
+
</button>
|
|
24750
|
+
</li>
|
|
24751
|
+
<li role="presentation">
|
|
24752
|
+
<button
|
|
24753
|
+
class="pf-c-select__menu-item"
|
|
24754
|
+
role="option"
|
|
24755
|
+
>Down</button>
|
|
24756
|
+
</li>
|
|
24757
|
+
<li role="presentation">
|
|
24758
|
+
<button
|
|
24759
|
+
class="pf-c-select__menu-item"
|
|
24760
|
+
role="option"
|
|
24761
|
+
>Degraded</button>
|
|
24762
|
+
</li>
|
|
24763
|
+
<li role="presentation">
|
|
24764
|
+
<button
|
|
24765
|
+
class="pf-c-select__menu-item"
|
|
24766
|
+
role="option"
|
|
24767
|
+
>Needs maintenance</button>
|
|
24768
|
+
</li>
|
|
24769
|
+
</ul>
|
|
24770
|
+
</div>
|
|
24729
24771
|
</div>
|
|
24730
|
-
<div class="pf-c-
|
|
24731
|
-
<div class="pf-c-text-input-
|
|
24732
|
-
<
|
|
24733
|
-
<span class="pf-c-text-input-
|
|
24734
|
-
<
|
|
24772
|
+
<div class="pf-c-input-group__item">
|
|
24773
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
24774
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
24775
|
+
<span class="pf-c-text-input-group__text">
|
|
24776
|
+
<span class="pf-c-text-input-group__icon">
|
|
24777
|
+
<i class="fas fa-fw fa-search"></i>
|
|
24778
|
+
</span>
|
|
24779
|
+
<input
|
|
24780
|
+
class="pf-c-text-input-group__text-input"
|
|
24781
|
+
type="search"
|
|
24782
|
+
placeholder="Filter by name"
|
|
24783
|
+
value
|
|
24784
|
+
aria-label="Type to filter"
|
|
24785
|
+
/>
|
|
24735
24786
|
</span>
|
|
24736
|
-
|
|
24737
|
-
class="pf-c-text-input-group__text-input"
|
|
24738
|
-
type="search"
|
|
24739
|
-
placeholder="Filter by name"
|
|
24740
|
-
value
|
|
24741
|
-
aria-label="Type to filter"
|
|
24742
|
-
/>
|
|
24743
|
-
</span>
|
|
24787
|
+
</div>
|
|
24744
24788
|
</div>
|
|
24745
24789
|
</div>
|
|
24746
24790
|
</div>
|
|
@@ -26493,86 +26537,90 @@ wrapperTag: div
|
|
|
26493
26537
|
aria-label="search filter"
|
|
26494
26538
|
role="group"
|
|
26495
26539
|
>
|
|
26496
|
-
<div class="pf-c-
|
|
26497
|
-
<
|
|
26540
|
+
<div class="pf-c-input-group__item pf-m-fill">
|
|
26541
|
+
<div class="pf-c-select" style="width: 124px">
|
|
26542
|
+
<span id="-select-name-label" hidden>Choose one</span>
|
|
26498
26543
|
|
|
26499
|
-
|
|
26500
|
-
|
|
26501
|
-
|
|
26502
|
-
|
|
26503
|
-
|
|
26504
|
-
|
|
26505
|
-
|
|
26506
|
-
|
|
26507
|
-
|
|
26508
|
-
|
|
26509
|
-
|
|
26544
|
+
<button
|
|
26545
|
+
class="pf-c-select__toggle"
|
|
26546
|
+
type="button"
|
|
26547
|
+
id="-select-name-toggle"
|
|
26548
|
+
aria-haspopup="true"
|
|
26549
|
+
aria-expanded="false"
|
|
26550
|
+
aria-labelledby="-select-name-label -select-name-toggle"
|
|
26551
|
+
>
|
|
26552
|
+
<div class="pf-c-select__toggle-wrapper">
|
|
26553
|
+
<span class="pf-c-select__toggle-icon">
|
|
26554
|
+
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
26555
|
+
</span>
|
|
26556
|
+
<span class="pf-c-select__toggle-text">Name</span>
|
|
26557
|
+
</div>
|
|
26558
|
+
<span class="pf-c-select__toggle-arrow">
|
|
26559
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
26510
26560
|
</span>
|
|
26511
|
-
|
|
26512
|
-
</div>
|
|
26513
|
-
<span class="pf-c-select__toggle-arrow">
|
|
26514
|
-
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
26515
|
-
</span>
|
|
26516
|
-
</button>
|
|
26561
|
+
</button>
|
|
26517
26562
|
|
|
26518
|
-
|
|
26519
|
-
|
|
26520
|
-
|
|
26521
|
-
|
|
26522
|
-
|
|
26523
|
-
|
|
26524
|
-
|
|
26525
|
-
|
|
26526
|
-
|
|
26527
|
-
|
|
26528
|
-
|
|
26529
|
-
|
|
26530
|
-
|
|
26531
|
-
|
|
26532
|
-
|
|
26533
|
-
|
|
26534
|
-
|
|
26535
|
-
|
|
26536
|
-
|
|
26537
|
-
|
|
26538
|
-
|
|
26539
|
-
|
|
26540
|
-
|
|
26541
|
-
|
|
26542
|
-
|
|
26543
|
-
|
|
26544
|
-
|
|
26545
|
-
|
|
26546
|
-
|
|
26547
|
-
|
|
26548
|
-
|
|
26549
|
-
|
|
26550
|
-
|
|
26551
|
-
|
|
26552
|
-
|
|
26553
|
-
|
|
26554
|
-
|
|
26555
|
-
|
|
26556
|
-
|
|
26557
|
-
|
|
26558
|
-
|
|
26559
|
-
|
|
26560
|
-
|
|
26563
|
+
<ul
|
|
26564
|
+
class="pf-c-select__menu"
|
|
26565
|
+
role="listbox"
|
|
26566
|
+
aria-labelledby="-select-name-label"
|
|
26567
|
+
hidden
|
|
26568
|
+
>
|
|
26569
|
+
<li role="presentation">
|
|
26570
|
+
<button
|
|
26571
|
+
class="pf-c-select__menu-item"
|
|
26572
|
+
role="option"
|
|
26573
|
+
>Running</button>
|
|
26574
|
+
</li>
|
|
26575
|
+
<li role="presentation">
|
|
26576
|
+
<button
|
|
26577
|
+
class="pf-c-select__menu-item pf-m-selected"
|
|
26578
|
+
role="option"
|
|
26579
|
+
aria-selected="true"
|
|
26580
|
+
>
|
|
26581
|
+
Stopped
|
|
26582
|
+
<span class="pf-c-select__menu-item-icon">
|
|
26583
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
26584
|
+
</span>
|
|
26585
|
+
</button>
|
|
26586
|
+
</li>
|
|
26587
|
+
<li role="presentation">
|
|
26588
|
+
<button
|
|
26589
|
+
class="pf-c-select__menu-item"
|
|
26590
|
+
role="option"
|
|
26591
|
+
>Down</button>
|
|
26592
|
+
</li>
|
|
26593
|
+
<li role="presentation">
|
|
26594
|
+
<button
|
|
26595
|
+
class="pf-c-select__menu-item"
|
|
26596
|
+
role="option"
|
|
26597
|
+
>Degraded</button>
|
|
26598
|
+
</li>
|
|
26599
|
+
<li role="presentation">
|
|
26600
|
+
<button
|
|
26601
|
+
class="pf-c-select__menu-item"
|
|
26602
|
+
role="option"
|
|
26603
|
+
>Needs maintenance</button>
|
|
26604
|
+
</li>
|
|
26605
|
+
</ul>
|
|
26606
|
+
</div>
|
|
26561
26607
|
</div>
|
|
26562
|
-
<div class="pf-c-
|
|
26563
|
-
<div class="pf-c-text-input-
|
|
26564
|
-
<
|
|
26565
|
-
<span class="pf-c-text-input-
|
|
26566
|
-
<
|
|
26608
|
+
<div class="pf-c-input-group__item">
|
|
26609
|
+
<div class="pf-c-text-input-group" style="width: auto">
|
|
26610
|
+
<div class="pf-c-text-input-group__main pf-m-icon">
|
|
26611
|
+
<span class="pf-c-text-input-group__text">
|
|
26612
|
+
<span class="pf-c-text-input-group__icon">
|
|
26613
|
+
<i class="fas fa-fw fa-search"></i>
|
|
26614
|
+
</span>
|
|
26615
|
+
<input
|
|
26616
|
+
class="pf-c-text-input-group__text-input"
|
|
26617
|
+
type="search"
|
|
26618
|
+
placeholder="Filter by name"
|
|
26619
|
+
value
|
|
26620
|
+
aria-label="Type to filter"
|
|
26621
|
+
/>
|
|
26567
26622
|
</span>
|
|
26568
|
-
|
|
26569
|
-
class="pf-c-text-input-group__text-input"
|
|
26570
|
-
type="search"
|
|
26571
|
-
placeholder="Filter by name"
|
|
26572
|
-
value
|
|
26573
|
-
aria-label="Type to filter"
|
|
26574
|
-
/>
|
|
26575
|
-
</span>
|
|
26623
|
+
</div>
|
|
26576
26624
|
</div>
|
|
26577
26625
|
</div>
|
|
26578
26626
|
</div>
|