@patternfly/patternfly 6.3.0-prerelease.8 → 6.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/images/icon-outlined-star.hbs +3 -0
- package/assets/images/icon-star.hbs +3 -0
- package/base/patternfly-common.css +46 -11
- package/base/patternfly-common.scss +58 -13
- package/components/Accordion/accordion.css +72 -3
- package/components/Accordion/accordion.scss +78 -6
- package/components/Alert/alert-group.css +52 -31
- package/components/Alert/alert-group.scss +77 -46
- package/components/Button/button.css +154 -6
- package/components/Button/button.scss +160 -8
- package/components/DataList/data-list.css +2 -2
- package/components/DataList/data-list.scss +2 -2
- package/components/DualListSelector/dual-list-selector.css +36 -0
- package/components/DualListSelector/dual-list-selector.scss +43 -0
- package/components/ExpandableSection/expandable-section.css +63 -1
- package/components/ExpandableSection/expandable-section.scss +76 -2
- package/components/FileUpload/file-upload.css +3 -3
- package/components/FileUpload/file-upload.scss +3 -3
- package/components/Form/form.css +40 -1
- package/components/Form/form.scss +47 -1
- package/components/FormControl/form-control.css +16 -0
- package/components/FormControl/form-control.scss +9 -0
- package/components/InputGroup/input-group.css +80 -0
- package/components/InputGroup/input-group.scss +95 -0
- package/components/Menu/menu.css +24 -4
- package/components/Menu/menu.scss +20 -5
- package/components/MenuToggle/menu-toggle.css +30 -0
- package/components/MenuToggle/menu-toggle.scss +33 -0
- package/components/Nav/nav.css +22 -8
- package/components/Nav/nav.scss +22 -9
- package/components/Page/page.css +62 -3
- package/components/Page/page.scss +44 -3
- package/components/Progress/progress.css +16 -0
- package/components/Progress/progress.scss +11 -1
- package/components/ProgressStepper/progress-stepper.scss +1 -0
- package/components/Skeleton/skeleton.css +22 -2
- package/components/Skeleton/skeleton.scss +25 -3
- package/components/Spinner/spinner.css +5 -0
- package/components/Spinner/spinner.scss +6 -0
- package/components/Table/table-grid.css +51 -5
- package/components/Table/table-grid.scss +22 -1
- package/components/Table/table.css +83 -1
- package/components/Table/table.scss +123 -1
- package/components/Tabs/tabs.css +25 -15
- package/components/Tabs/tabs.scss +26 -13
- package/components/TextInputGroup/text-input-group.css +16 -0
- package/components/TextInputGroup/text-input-group.scss +8 -0
- package/components/Timestamp/timestamp.css +4 -0
- package/components/Timestamp/timestamp.scss +7 -0
- package/components/TreeView/tree-view.css +39 -0
- package/components/TreeView/tree-view.scss +42 -2
- package/components/Truncate/truncate.css +1 -0
- package/components/Truncate/truncate.scss +3 -0
- package/components/_index.css +918 -85
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
- package/docs/components/Button/examples/Button.md +148 -5
- package/docs/components/Card/examples/Card.md +8 -8
- package/docs/components/CodeBlock/examples/CodeBlock.md +5 -5
- package/docs/components/DataList/examples/DataList.md +23 -23
- package/docs/components/DualListSelector/examples/DualListSelector.md +534 -16
- package/docs/components/ExpandableSection/examples/ExpandableSection.md +17 -12
- package/docs/components/Form/examples/Form.md +1047 -126
- package/docs/components/Hint/examples/Hint.md +3 -3
- package/docs/components/InlineEdit/examples/InlineEdit.md +2 -2
- package/docs/components/InputGroup/examples/InputGroup.md +5 -1
- package/docs/components/JumpLinks/examples/JumpLinks.md +1 -1
- package/docs/components/Masthead/examples/masthead.md +90 -12
- package/docs/components/Menu/examples/Menu.md +122 -6
- package/docs/components/MenuToggle/examples/MenuToggle.md +90 -51
- package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +2 -10
- package/docs/components/OverflowMenu/examples/overflow-menu.md +5 -5
- package/docs/components/Page/examples/Page.md +147 -14
- package/docs/components/Pagination/examples/Pagination.md +12 -12
- package/docs/components/ProgressStepper/examples/ProgressStepper.md +32 -6
- package/docs/components/Slider/examples/Slider.md +2 -2
- package/docs/components/Spinner/examples/Spinner.md +10 -0
- package/docs/components/Table/examples/Table.md +9428 -6173
- package/docs/components/Tabs/examples/Tabs.md +1214 -6729
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +45 -5
- package/docs/components/Toolbar/examples/Toolbar.md +7 -7
- package/docs/demos/AboutModal/examples/AboutModal.md +22 -3
- package/docs/demos/Alert/examples/Alert.md +66 -9
- package/docs/demos/BackToTop/examples/BackToTop.md +22 -3
- package/docs/demos/Banner/examples/Banner.md +47 -6
- package/docs/demos/Card/examples/Card.md +5 -62
- package/docs/demos/CardView/examples/CardView.md +24 -5
- package/docs/demos/Dashboard/examples/Dashboard.md +24 -5
- package/docs/demos/DataList/examples/DataList.md +100 -24
- package/docs/demos/DescriptionList/examples/DescriptionList.md +66 -47
- package/docs/demos/Drawer/examples/Drawer.md +110 -53
- package/docs/demos/Form/examples/BasicForms.md +12 -12
- package/docs/demos/JumpLinks/examples/JumpLinks.md +132 -18
- package/docs/demos/Masthead/examples/Masthead.md +170 -18
- package/docs/demos/Modal/examples/Modal.md +132 -18
- package/docs/demos/Nav/examples/Nav.md +111 -16
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +110 -15
- package/docs/demos/Page/examples/Page.md +309 -43
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +160 -103
- package/docs/demos/Skeleton/examples/Skeleton.md +22 -3
- package/docs/demos/Table/examples/Table.md +449 -155
- package/docs/demos/Tabs/examples/Tabs.md +137 -593
- package/docs/demos/Toolbar/examples/Toolbar.md +72 -34
- package/docs/demos/Wizard/examples/Wizard.md +198 -27
- package/package.json +5 -5
- package/patternfly-base-no-globals.css +45 -11
- package/patternfly-base.css +45 -11
- package/patternfly-no-globals.css +963 -96
- package/patternfly.css +963 -96
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +54 -0
|
@@ -741,6 +741,8 @@ For the purposes of this example, the `TextInputGroup` is contained in a wrapper
|
|
|
741
741
|
|
|
742
742
|
### Search input group
|
|
743
743
|
|
|
744
|
+
The React implementation can be found in the [search input](/components/search-input) component.
|
|
745
|
+
|
|
744
746
|
```html
|
|
745
747
|
<div class="pf-v6-c-text-input-group">
|
|
746
748
|
<div class="pf-v6-c-text-input-group__main pf-m-icon">
|
|
@@ -867,8 +869,26 @@ For the purposes of this example, the `TextInputGroup` is contained in a wrapper
|
|
|
867
869
|
```html
|
|
868
870
|
<h3>Collapsed</h3>
|
|
869
871
|
<br />
|
|
870
|
-
<div class="pf-v6-c-input-group pf-m-plain">
|
|
871
|
-
<div class="pf-v6-c-input-group__item pf-m-
|
|
872
|
+
<div class="pf-v6-c-input-group pf-m-search-expandable pf-m-plain">
|
|
873
|
+
<div class="pf-v6-c-input-group__item pf-m-search-input">
|
|
874
|
+
<div class="pf-v6-c-text-input-group">
|
|
875
|
+
<div class="pf-v6-c-text-input-group__main pf-m-icon">
|
|
876
|
+
<span class="pf-v6-c-text-input-group__text">
|
|
877
|
+
<span class="pf-v6-c-text-input-group__icon">
|
|
878
|
+
<i class="fas fa-fw fa-search"></i>
|
|
879
|
+
</span>
|
|
880
|
+
<input
|
|
881
|
+
class="pf-v6-c-text-input-group__text-input"
|
|
882
|
+
type="text"
|
|
883
|
+
placeholder="Search"
|
|
884
|
+
value
|
|
885
|
+
aria-label="Search input"
|
|
886
|
+
/>
|
|
887
|
+
</span>
|
|
888
|
+
</div>
|
|
889
|
+
</div>
|
|
890
|
+
</div>
|
|
891
|
+
<div class="pf-v6-c-input-group__item pf-m-search-expand pf-m-plain">
|
|
872
892
|
<button
|
|
873
893
|
class="pf-v6-c-button pf-m-plain"
|
|
874
894
|
type="button"
|
|
@@ -879,13 +899,22 @@ For the purposes of this example, the `TextInputGroup` is contained in a wrapper
|
|
|
879
899
|
</span>
|
|
880
900
|
</button>
|
|
881
901
|
</div>
|
|
902
|
+
<div class="pf-v6-c-input-group__item pf-m-search-action pf-m-plain">
|
|
903
|
+
<button class="pf-v6-c-button pf-m-plain" type="button" aria-label="Close">
|
|
904
|
+
<span class="pf-v6-c-button__icon">
|
|
905
|
+
<i class="fas fa-times fa-fw" aria-hidden="true"></i>
|
|
906
|
+
</span>
|
|
907
|
+
</button>
|
|
908
|
+
</div>
|
|
882
909
|
</div>
|
|
883
910
|
<br />
|
|
884
911
|
<br />
|
|
885
912
|
<h3>Expanded</h3>
|
|
886
913
|
<br />
|
|
887
|
-
<div
|
|
888
|
-
|
|
914
|
+
<div
|
|
915
|
+
class="pf-v6-c-input-group pf-m-expanded pf-m-search-expandable pf-m-plain"
|
|
916
|
+
>
|
|
917
|
+
<div class="pf-v6-c-input-group__item pf-m-search-input">
|
|
889
918
|
<div class="pf-v6-c-text-input-group">
|
|
890
919
|
<div class="pf-v6-c-text-input-group__main pf-m-icon">
|
|
891
920
|
<span class="pf-v6-c-text-input-group__text">
|
|
@@ -903,7 +932,18 @@ For the purposes of this example, the `TextInputGroup` is contained in a wrapper
|
|
|
903
932
|
</div>
|
|
904
933
|
</div>
|
|
905
934
|
</div>
|
|
906
|
-
<div class="pf-v6-c-input-group__item pf-m-plain">
|
|
935
|
+
<div class="pf-v6-c-input-group__item pf-m-search-expand pf-m-plain">
|
|
936
|
+
<button
|
|
937
|
+
class="pf-v6-c-button pf-m-plain"
|
|
938
|
+
type="button"
|
|
939
|
+
aria-label="Open search"
|
|
940
|
+
>
|
|
941
|
+
<span class="pf-v6-c-button__icon">
|
|
942
|
+
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
|
|
943
|
+
</span>
|
|
944
|
+
</button>
|
|
945
|
+
</div>
|
|
946
|
+
<div class="pf-v6-c-input-group__item pf-m-search-action pf-m-plain">
|
|
907
947
|
<button class="pf-v6-c-button pf-m-plain" type="button" aria-label="Close">
|
|
908
948
|
<span class="pf-v6-c-button__icon">
|
|
909
949
|
<i class="fas fa-times fa-fw" aria-hidden="true"></i>
|
|
@@ -589,7 +589,7 @@ Several components in the following examples do not include functional and/or ac
|
|
|
589
589
|
<div class="pf-v6-c-toolbar__group pf-m-toggle-group">
|
|
590
590
|
<div class="pf-v6-c-toolbar__toggle">
|
|
591
591
|
<button
|
|
592
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
592
|
+
class="pf-v6-c-menu-toggle pf-m-expanded pf-m-plain"
|
|
593
593
|
type="button"
|
|
594
594
|
aria-expanded="true"
|
|
595
595
|
aria-label="Show filters"
|
|
@@ -1196,7 +1196,7 @@ Several components in the following examples do not include functional and/or ac
|
|
|
1196
1196
|
<div class="pf-v6-c-toolbar__group pf-m-toggle-group">
|
|
1197
1197
|
<div class="pf-v6-c-toolbar__toggle">
|
|
1198
1198
|
<button
|
|
1199
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
1199
|
+
class="pf-v6-c-menu-toggle pf-m-expanded pf-m-plain"
|
|
1200
1200
|
type="button"
|
|
1201
1201
|
aria-expanded="true"
|
|
1202
1202
|
aria-label="Show filters"
|
|
@@ -1667,7 +1667,7 @@ Several components in the following examples do not include functional and/or ac
|
|
|
1667
1667
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1668
1668
|
type="button"
|
|
1669
1669
|
aria-expanded="false"
|
|
1670
|
-
aria-label="
|
|
1670
|
+
aria-label="Toggle options"
|
|
1671
1671
|
id="toolbar-selected-filters-example-overflow-toggle"
|
|
1672
1672
|
>
|
|
1673
1673
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -1919,7 +1919,7 @@ Several components in the following examples do not include functional and/or ac
|
|
|
1919
1919
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1920
1920
|
type="button"
|
|
1921
1921
|
aria-expanded="false"
|
|
1922
|
-
aria-label="
|
|
1922
|
+
aria-label="Toggle options"
|
|
1923
1923
|
id="toolbar-stacked-example-overflow-toggle"
|
|
1924
1924
|
>
|
|
1925
1925
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -1972,7 +1972,7 @@ Several components in the following examples do not include functional and/or ac
|
|
|
1972
1972
|
<div class="pf-v6-c-pagination__total-items">37 items</div>
|
|
1973
1973
|
<div class="pf-v6-c-pagination__page-menu">
|
|
1974
1974
|
<button
|
|
1975
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
1975
|
+
class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
|
|
1976
1976
|
type="button"
|
|
1977
1977
|
aria-expanded="false"
|
|
1978
1978
|
aria-label="Menu toggle"
|
|
@@ -2071,7 +2071,7 @@ Several components in the following examples do not include functional and/or ac
|
|
|
2071
2071
|
<div class="pf-v6-c-toolbar__group pf-m-toggle-group">
|
|
2072
2072
|
<div class="pf-v6-c-toolbar__toggle">
|
|
2073
2073
|
<button
|
|
2074
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
2074
|
+
class="pf-v6-c-menu-toggle pf-m-expanded pf-m-plain"
|
|
2075
2075
|
type="button"
|
|
2076
2076
|
aria-expanded="true"
|
|
2077
2077
|
aria-label="Show filters"
|
|
@@ -2393,7 +2393,7 @@ Several components in the following examples do not include functional and/or ac
|
|
|
2393
2393
|
<div class="pf-v6-c-pagination__total-items">37 items</div>
|
|
2394
2394
|
<div class="pf-v6-c-pagination__page-menu">
|
|
2395
2395
|
<button
|
|
2396
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
2396
|
+
class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
|
|
2397
2397
|
type="button"
|
|
2398
2398
|
aria-expanded="false"
|
|
2399
2399
|
aria-label="Menu toggle"
|
|
@@ -21,12 +21,31 @@ This demo implements the about modal, including the backdrop.
|
|
|
21
21
|
<div class="pf-v6-c-masthead__main">
|
|
22
22
|
<span class="pf-v6-c-masthead__toggle">
|
|
23
23
|
<button
|
|
24
|
-
class="pf-v6-c-button pf-m-plain"
|
|
24
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
25
25
|
type="button"
|
|
26
26
|
aria-label="Global navigation"
|
|
27
27
|
>
|
|
28
28
|
<span class="pf-v6-c-button__icon">
|
|
29
|
-
<
|
|
29
|
+
<svg
|
|
30
|
+
viewBox="0 0 10 10"
|
|
31
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
32
|
+
width="1em"
|
|
33
|
+
height="1em"
|
|
34
|
+
>
|
|
35
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
36
|
+
<path
|
|
37
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
38
|
+
d="M1,5 L9,5"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
42
|
+
d="M1,5 L1,5 L1,5"
|
|
43
|
+
/>
|
|
44
|
+
<path
|
|
45
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
46
|
+
d="M9,9 L1,9"
|
|
47
|
+
/>
|
|
48
|
+
</svg>
|
|
30
49
|
</span>
|
|
31
50
|
</button>
|
|
32
51
|
</span>
|
|
@@ -134,7 +153,7 @@ This demo implements the about modal, including the backdrop.
|
|
|
134
153
|
</div>
|
|
135
154
|
<div class="pf-v6-c-toolbar__item">
|
|
136
155
|
<button
|
|
137
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
156
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
138
157
|
type="button"
|
|
139
158
|
aria-expanded="false"
|
|
140
159
|
aria-label="Settings"
|
|
@@ -19,12 +19,31 @@ section: components
|
|
|
19
19
|
<div class="pf-v6-c-masthead__main">
|
|
20
20
|
<span class="pf-v6-c-masthead__toggle">
|
|
21
21
|
<button
|
|
22
|
-
class="pf-v6-c-button pf-m-plain"
|
|
22
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
23
23
|
type="button"
|
|
24
24
|
aria-label="Global navigation"
|
|
25
25
|
>
|
|
26
26
|
<span class="pf-v6-c-button__icon">
|
|
27
|
-
<
|
|
27
|
+
<svg
|
|
28
|
+
viewBox="0 0 10 10"
|
|
29
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
30
|
+
width="1em"
|
|
31
|
+
height="1em"
|
|
32
|
+
>
|
|
33
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
34
|
+
<path
|
|
35
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
36
|
+
d="M1,5 L9,5"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
40
|
+
d="M1,5 L1,5 L1,5"
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
44
|
+
d="M9,9 L1,9"
|
|
45
|
+
/>
|
|
46
|
+
</svg>
|
|
28
47
|
</span>
|
|
29
48
|
</button>
|
|
30
49
|
</span>
|
|
@@ -132,7 +151,7 @@ section: components
|
|
|
132
151
|
</div>
|
|
133
152
|
<div class="pf-v6-c-toolbar__item">
|
|
134
153
|
<button
|
|
135
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
154
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
136
155
|
type="button"
|
|
137
156
|
aria-expanded="false"
|
|
138
157
|
aria-label="Settings"
|
|
@@ -398,12 +417,31 @@ section: components
|
|
|
398
417
|
<div class="pf-v6-c-masthead__main">
|
|
399
418
|
<span class="pf-v6-c-masthead__toggle">
|
|
400
419
|
<button
|
|
401
|
-
class="pf-v6-c-button pf-m-plain"
|
|
420
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
402
421
|
type="button"
|
|
403
422
|
aria-label="Global navigation"
|
|
404
423
|
>
|
|
405
424
|
<span class="pf-v6-c-button__icon">
|
|
406
|
-
<
|
|
425
|
+
<svg
|
|
426
|
+
viewBox="0 0 10 10"
|
|
427
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
428
|
+
width="1em"
|
|
429
|
+
height="1em"
|
|
430
|
+
>
|
|
431
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
432
|
+
<path
|
|
433
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
434
|
+
d="M1,5 L9,5"
|
|
435
|
+
/>
|
|
436
|
+
<path
|
|
437
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
438
|
+
d="M1,5 L1,5 L1,5"
|
|
439
|
+
/>
|
|
440
|
+
<path
|
|
441
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
442
|
+
d="M9,9 L1,9"
|
|
443
|
+
/>
|
|
444
|
+
</svg>
|
|
407
445
|
</span>
|
|
408
446
|
</button>
|
|
409
447
|
</span>
|
|
@@ -511,7 +549,7 @@ section: components
|
|
|
511
549
|
</div>
|
|
512
550
|
<div class="pf-v6-c-toolbar__item">
|
|
513
551
|
<button
|
|
514
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
552
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
515
553
|
type="button"
|
|
516
554
|
aria-expanded="false"
|
|
517
555
|
aria-label="Settings"
|
|
@@ -877,12 +915,31 @@ section: components
|
|
|
877
915
|
<div class="pf-v6-c-masthead__main">
|
|
878
916
|
<span class="pf-v6-c-masthead__toggle">
|
|
879
917
|
<button
|
|
880
|
-
class="pf-v6-c-button pf-m-plain"
|
|
918
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
881
919
|
type="button"
|
|
882
920
|
aria-label="Global navigation"
|
|
883
921
|
>
|
|
884
922
|
<span class="pf-v6-c-button__icon">
|
|
885
|
-
<
|
|
923
|
+
<svg
|
|
924
|
+
viewBox="0 0 10 10"
|
|
925
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
926
|
+
width="1em"
|
|
927
|
+
height="1em"
|
|
928
|
+
>
|
|
929
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
930
|
+
<path
|
|
931
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
932
|
+
d="M1,5 L9,5"
|
|
933
|
+
/>
|
|
934
|
+
<path
|
|
935
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
936
|
+
d="M1,5 L1,5 L1,5"
|
|
937
|
+
/>
|
|
938
|
+
<path
|
|
939
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
940
|
+
d="M9,9 L1,9"
|
|
941
|
+
/>
|
|
942
|
+
</svg>
|
|
886
943
|
</span>
|
|
887
944
|
</button>
|
|
888
945
|
</span>
|
|
@@ -990,7 +1047,7 @@ section: components
|
|
|
990
1047
|
</div>
|
|
991
1048
|
<div class="pf-v6-c-toolbar__item">
|
|
992
1049
|
<button
|
|
993
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1050
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
994
1051
|
type="button"
|
|
995
1052
|
aria-expanded="false"
|
|
996
1053
|
aria-label="Settings"
|
|
@@ -20,12 +20,31 @@ cssPrefix: pf-d-back-to-top
|
|
|
20
20
|
<div class="pf-v6-c-masthead__main">
|
|
21
21
|
<span class="pf-v6-c-masthead__toggle">
|
|
22
22
|
<button
|
|
23
|
-
class="pf-v6-c-button pf-m-plain"
|
|
23
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
24
24
|
type="button"
|
|
25
25
|
aria-label="Global navigation"
|
|
26
26
|
>
|
|
27
27
|
<span class="pf-v6-c-button__icon">
|
|
28
|
-
<
|
|
28
|
+
<svg
|
|
29
|
+
viewBox="0 0 10 10"
|
|
30
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
31
|
+
width="1em"
|
|
32
|
+
height="1em"
|
|
33
|
+
>
|
|
34
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
35
|
+
<path
|
|
36
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
37
|
+
d="M1,5 L9,5"
|
|
38
|
+
/>
|
|
39
|
+
<path
|
|
40
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
41
|
+
d="M1,5 L1,5 L1,5"
|
|
42
|
+
/>
|
|
43
|
+
<path
|
|
44
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
45
|
+
d="M9,9 L1,9"
|
|
46
|
+
/>
|
|
47
|
+
</svg>
|
|
29
48
|
</span>
|
|
30
49
|
</button>
|
|
31
50
|
</span>
|
|
@@ -133,7 +152,7 @@ cssPrefix: pf-d-back-to-top
|
|
|
133
152
|
</div>
|
|
134
153
|
<div class="pf-v6-c-toolbar__item">
|
|
135
154
|
<button
|
|
136
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
155
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
137
156
|
type="button"
|
|
138
157
|
aria-expanded="false"
|
|
139
158
|
aria-label="Settings"
|
|
@@ -21,12 +21,31 @@ wrapperTag: div
|
|
|
21
21
|
<div class="pf-v6-c-masthead__main">
|
|
22
22
|
<span class="pf-v6-c-masthead__toggle">
|
|
23
23
|
<button
|
|
24
|
-
class="pf-v6-c-button pf-m-plain"
|
|
24
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
25
25
|
type="button"
|
|
26
26
|
aria-label="Global navigation"
|
|
27
27
|
>
|
|
28
28
|
<span class="pf-v6-c-button__icon">
|
|
29
|
-
<
|
|
29
|
+
<svg
|
|
30
|
+
viewBox="0 0 10 10"
|
|
31
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
32
|
+
width="1em"
|
|
33
|
+
height="1em"
|
|
34
|
+
>
|
|
35
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
36
|
+
<path
|
|
37
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
38
|
+
d="M1,5 L9,5"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
42
|
+
d="M1,5 L1,5 L1,5"
|
|
43
|
+
/>
|
|
44
|
+
<path
|
|
45
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
46
|
+
d="M9,9 L1,9"
|
|
47
|
+
/>
|
|
48
|
+
</svg>
|
|
30
49
|
</span>
|
|
31
50
|
</button>
|
|
32
51
|
</span>
|
|
@@ -134,7 +153,7 @@ wrapperTag: div
|
|
|
134
153
|
</div>
|
|
135
154
|
<div class="pf-v6-c-toolbar__item">
|
|
136
155
|
<button
|
|
137
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
156
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
138
157
|
type="button"
|
|
139
158
|
aria-expanded="false"
|
|
140
159
|
aria-label="Settings"
|
|
@@ -481,12 +500,34 @@ wrapperTag: div
|
|
|
481
500
|
<div class="pf-v6-c-masthead__main">
|
|
482
501
|
<span class="pf-v6-c-masthead__toggle">
|
|
483
502
|
<button
|
|
484
|
-
class="pf-v6-c-button pf-m-plain"
|
|
503
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
485
504
|
type="button"
|
|
486
505
|
aria-label="Global navigation"
|
|
487
506
|
>
|
|
488
507
|
<span class="pf-v6-c-button__icon">
|
|
489
|
-
<
|
|
508
|
+
<svg
|
|
509
|
+
viewBox="0 0 10 10"
|
|
510
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
511
|
+
width="1em"
|
|
512
|
+
height="1em"
|
|
513
|
+
>
|
|
514
|
+
<path
|
|
515
|
+
class="pf-v6-c-button--hamburger-icon--top"
|
|
516
|
+
d="M1,1 L9,1"
|
|
517
|
+
/>
|
|
518
|
+
<path
|
|
519
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
520
|
+
d="M1,5 L9,5"
|
|
521
|
+
/>
|
|
522
|
+
<path
|
|
523
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
524
|
+
d="M1,5 L1,5 L1,5"
|
|
525
|
+
/>
|
|
526
|
+
<path
|
|
527
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
528
|
+
d="M9,9 L1,9"
|
|
529
|
+
/>
|
|
530
|
+
</svg>
|
|
490
531
|
</span>
|
|
491
532
|
</button>
|
|
492
533
|
</span>
|
|
@@ -599,7 +640,7 @@ wrapperTag: div
|
|
|
599
640
|
</div>
|
|
600
641
|
<div class="pf-v6-c-toolbar__item">
|
|
601
642
|
<button
|
|
602
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
643
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
603
644
|
type="button"
|
|
604
645
|
aria-expanded="false"
|
|
605
646
|
aria-label="Settings"
|
|
@@ -723,25 +723,6 @@ wrapperTag: div
|
|
|
723
723
|
<button
|
|
724
724
|
type="button"
|
|
725
725
|
class="pf-v6-c-tabs__link"
|
|
726
|
-
onclick="
|
|
727
|
-
event.preventDefault();
|
|
728
|
-
((e) => {
|
|
729
|
-
const el = this,
|
|
730
|
-
li = this.closest('li'),
|
|
731
|
-
ul = this.closest('ul'),
|
|
732
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
733
|
-
left = Math.round(li.offsetLeft),
|
|
734
|
-
top = Math.round(li.offsetTop),
|
|
735
|
-
width = Math.round(li.offsetWidth),
|
|
736
|
-
height = Math.round(li.offsetHeight);
|
|
737
|
-
|
|
738
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
739
|
-
el.classList.remove('pf-m-current')});
|
|
740
|
-
li.classList.add('pf-m-current');
|
|
741
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
742
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
743
|
-
}
|
|
744
|
-
)()"
|
|
745
726
|
role="tab"
|
|
746
727
|
id="status-tabs-object-1-link"
|
|
747
728
|
>
|
|
@@ -752,25 +733,6 @@ wrapperTag: div
|
|
|
752
733
|
<button
|
|
753
734
|
type="button"
|
|
754
735
|
class="pf-v6-c-tabs__link"
|
|
755
|
-
onclick="
|
|
756
|
-
event.preventDefault();
|
|
757
|
-
((e) => {
|
|
758
|
-
const el = this,
|
|
759
|
-
li = this.closest('li'),
|
|
760
|
-
ul = this.closest('ul'),
|
|
761
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
762
|
-
left = Math.round(li.offsetLeft),
|
|
763
|
-
top = Math.round(li.offsetTop),
|
|
764
|
-
width = Math.round(li.offsetWidth),
|
|
765
|
-
height = Math.round(li.offsetHeight);
|
|
766
|
-
|
|
767
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
768
|
-
el.classList.remove('pf-m-current')});
|
|
769
|
-
li.classList.add('pf-m-current');
|
|
770
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
771
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
772
|
-
}
|
|
773
|
-
)()"
|
|
774
736
|
role="tab"
|
|
775
737
|
id="status-tabs-object-2-link"
|
|
776
738
|
>
|
|
@@ -781,25 +743,6 @@ wrapperTag: div
|
|
|
781
743
|
<button
|
|
782
744
|
type="button"
|
|
783
745
|
class="pf-v6-c-tabs__link"
|
|
784
|
-
onclick="
|
|
785
|
-
event.preventDefault();
|
|
786
|
-
((e) => {
|
|
787
|
-
const el = this,
|
|
788
|
-
li = this.closest('li'),
|
|
789
|
-
ul = this.closest('ul'),
|
|
790
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
791
|
-
left = Math.round(li.offsetLeft),
|
|
792
|
-
top = Math.round(li.offsetTop),
|
|
793
|
-
width = Math.round(li.offsetWidth),
|
|
794
|
-
height = Math.round(li.offsetHeight);
|
|
795
|
-
|
|
796
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
797
|
-
el.classList.remove('pf-m-current')});
|
|
798
|
-
li.classList.add('pf-m-current');
|
|
799
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
800
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
801
|
-
}
|
|
802
|
-
)()"
|
|
803
746
|
role="tab"
|
|
804
747
|
id="status-tabs-object-3-link"
|
|
805
748
|
>
|
|
@@ -1416,7 +1359,7 @@ wrapperTag: div
|
|
|
1416
1359
|
>Components of the Control Panel are responsible for maintaining and reconciling the state of the cluster.</div>
|
|
1417
1360
|
<div class="pf-v6-c-popover__body">
|
|
1418
1361
|
<table
|
|
1419
|
-
class="pf-v6-c-table pf-m-
|
|
1362
|
+
class="pf-v6-c-table pf-m-compact pf-m-expandable"
|
|
1420
1363
|
aria-label="Control panel table"
|
|
1421
1364
|
id="status-card-expanded-with-popover-example-popover-table"
|
|
1422
1365
|
>
|
|
@@ -1982,7 +1925,7 @@ wrapperTag: div
|
|
|
1982
1925
|
</div>
|
|
1983
1926
|
<div class="pf-v6-c-card__actions pf-m-no-offset">
|
|
1984
1927
|
<button
|
|
1985
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
1928
|
+
class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
|
|
1986
1929
|
type="button"
|
|
1987
1930
|
aria-expanded="false"
|
|
1988
1931
|
id="utilization-card-3-example-select-dropdown"
|
|
@@ -2743,7 +2686,7 @@ wrapperTag: div
|
|
|
2743
2686
|
style="padding-block-start: 1px;"
|
|
2744
2687
|
>
|
|
2745
2688
|
<button
|
|
2746
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
2689
|
+
class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
|
|
2747
2690
|
type="button"
|
|
2748
2691
|
aria-expanded="false"
|
|
2749
2692
|
id="trend-card-1-example-select-dropdown"
|
|
@@ -2820,7 +2763,7 @@ wrapperTag: div
|
|
|
2820
2763
|
<div class="pf-v6-c-card__header pf-v6-u-align-items-flex-start">
|
|
2821
2764
|
<div class="pf-v6-c-card__actions pf-m-no-offset">
|
|
2822
2765
|
<button
|
|
2823
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
2766
|
+
class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
|
|
2824
2767
|
type="button"
|
|
2825
2768
|
aria-expanded="false"
|
|
2826
2769
|
id="card-log-view-example-select-dropdown"
|
|
@@ -2943,7 +2886,7 @@ wrapperTag: div
|
|
|
2943
2886
|
<div class="pf-v6-c-card__header pf-v6-u-align-items-flex-start">
|
|
2944
2887
|
<div class="pf-v6-c-card__actions pf-m-no-offset">
|
|
2945
2888
|
<button
|
|
2946
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
2889
|
+
class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
|
|
2947
2890
|
type="button"
|
|
2948
2891
|
aria-expanded="false"
|
|
2949
2892
|
id="card-events-view-example-select-dropdown"
|
|
@@ -19,12 +19,31 @@ section: patterns
|
|
|
19
19
|
<div class="pf-v6-c-masthead__main">
|
|
20
20
|
<span class="pf-v6-c-masthead__toggle">
|
|
21
21
|
<button
|
|
22
|
-
class="pf-v6-c-button pf-m-plain"
|
|
22
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
23
23
|
type="button"
|
|
24
24
|
aria-label="Global navigation"
|
|
25
25
|
>
|
|
26
26
|
<span class="pf-v6-c-button__icon">
|
|
27
|
-
<
|
|
27
|
+
<svg
|
|
28
|
+
viewBox="0 0 10 10"
|
|
29
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
30
|
+
width="1em"
|
|
31
|
+
height="1em"
|
|
32
|
+
>
|
|
33
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
34
|
+
<path
|
|
35
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
36
|
+
d="M1,5 L9,5"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
40
|
+
d="M1,5 L1,5 L1,5"
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
44
|
+
d="M9,9 L1,9"
|
|
45
|
+
/>
|
|
46
|
+
</svg>
|
|
28
47
|
</span>
|
|
29
48
|
</button>
|
|
30
49
|
</span>
|
|
@@ -132,7 +151,7 @@ section: patterns
|
|
|
132
151
|
</div>
|
|
133
152
|
<div class="pf-v6-c-toolbar__item">
|
|
134
153
|
<button
|
|
135
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
154
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
136
155
|
type="button"
|
|
137
156
|
aria-expanded="false"
|
|
138
157
|
aria-label="Settings"
|
|
@@ -466,7 +485,7 @@ section: patterns
|
|
|
466
485
|
<div class="pf-v6-c-pagination pf-m-compact">
|
|
467
486
|
<div class="pf-v6-c-pagination__page-menu">
|
|
468
487
|
<button
|
|
469
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
488
|
+
class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
|
|
470
489
|
type="button"
|
|
471
490
|
aria-expanded="false"
|
|
472
491
|
aria-label="Menu toggle"
|
|
@@ -1016,7 +1035,7 @@ section: patterns
|
|
|
1016
1035
|
<div class="pf-v6-c-pagination pf-m-bottom">
|
|
1017
1036
|
<div class="pf-v6-c-pagination__page-menu">
|
|
1018
1037
|
<button
|
|
1019
|
-
class="pf-v6-c-menu-toggle pf-m-
|
|
1038
|
+
class="pf-v6-c-menu-toggle pf-m-top pf-m-text pf-m-plain"
|
|
1020
1039
|
type="button"
|
|
1021
1040
|
aria-expanded="false"
|
|
1022
1041
|
aria-label="Menu toggle"
|