@patternfly/patternfly 6.3.0 → 6.4.0-prerelease.1
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/README.md +23 -15
- package/base/normalize.scss +4 -0
- package/base/patternfly-variables.css +1172 -1
- package/base/patternfly-variables.scss +10 -0
- package/base/tokens/tokens-charts-dark.scss +1 -1
- package/base/tokens/tokens-charts.scss +1 -1
- package/base/tokens/tokens-dark.scss +13 -1
- package/base/tokens/tokens-default.scss +60 -2
- package/base/tokens/tokens-highcontrast-dark.scss +396 -0
- package/base/tokens/tokens-highcontrast.scss +703 -0
- package/base/tokens/tokens-local.scss +1 -0
- package/base/tokens/tokens-palette.scss +9 -1
- package/components/Accordion/accordion.css +42 -15
- package/components/Accordion/accordion.scss +48 -18
- package/components/Alert/alert-group.css +17 -15
- package/components/Alert/alert-group.scss +22 -18
- package/components/Badge/badge.css +2 -0
- package/components/Badge/badge.scss +2 -0
- package/components/Banner/banner.css +4 -0
- package/components/Banner/banner.scss +4 -0
- package/components/Button/button.css +34 -4
- package/components/Button/button.scss +36 -6
- package/components/CalendarMonth/calendar-month.css +35 -4
- package/components/CalendarMonth/calendar-month.scss +38 -4
- package/components/Card/card.css +7 -4
- package/components/Card/card.scss +7 -4
- package/components/CodeBlock/code-block.css +3 -0
- package/components/CodeBlock/code-block.scss +3 -0
- package/components/CodeEditor/code-editor.css +23 -3
- package/components/CodeEditor/code-editor.scss +28 -5
- package/components/DatePicker/date-picker.css +3 -0
- package/components/DatePicker/date-picker.scss +4 -0
- package/components/Divider/divider.css +2 -0
- package/components/Divider/divider.scss +2 -0
- package/components/Drawer/drawer.css +46 -41
- package/components/Drawer/drawer.scss +45 -36
- package/components/DualListSelector/dual-list-selector.css +21 -4
- package/components/DualListSelector/dual-list-selector.scss +23 -4
- package/components/ExpandableSection/expandable-section.css +6 -2
- package/components/ExpandableSection/expandable-section.scss +7 -3
- package/components/FormControl/form-control.css +6 -7
- package/components/FormControl/form-control.scss +8 -10
- package/components/Label/label.css +20 -11
- package/components/Label/label.scss +21 -11
- package/components/Login/login.css +3 -0
- package/components/Login/login.scss +3 -0
- package/components/Menu/menu.css +18 -0
- package/components/Menu/menu.scss +19 -1
- package/components/MenuToggle/menu-toggle.css +13 -6
- package/components/MenuToggle/menu-toggle.scss +13 -6
- package/components/ModalBox/modal-box.css +3 -0
- package/components/ModalBox/modal-box.scss +3 -0
- package/components/Nav/nav.css +17 -0
- package/components/Nav/nav.scss +20 -0
- package/components/Page/page.css +73 -25
- package/components/Page/page.scss +60 -19
- package/components/Pagination/pagination.css +15 -2
- package/components/Pagination/pagination.scss +15 -2
- package/components/Panel/panel.css +14 -1
- package/components/Panel/panel.scss +14 -1
- package/components/Popover/popover.css +4 -0
- package/components/Popover/popover.scss +4 -0
- package/components/Progress/progress.css +19 -0
- package/components/Progress/progress.scss +22 -0
- package/components/Sidebar/sidebar.css +7 -0
- package/components/Sidebar/sidebar.scss +7 -0
- package/components/SimpleList/simple-list.css +15 -0
- package/components/SimpleList/simple-list.scss +17 -1
- package/components/Slider/slider.css +9 -0
- package/components/Slider/slider.scss +9 -0
- package/components/Switch/switch.css +7 -1
- package/components/Switch/switch.scss +7 -1
- package/components/Table/table.css +41 -1
- package/components/Table/table.scss +48 -2
- package/components/Tabs/tabs.css +18 -7
- package/components/Tabs/tabs.scss +19 -11
- package/components/TextInputGroup/text-input-group.css +7 -0
- package/components/TextInputGroup/text-input-group.scss +8 -1
- package/components/ToggleGroup/toggle-group.css +18 -9
- package/components/ToggleGroup/toggle-group.scss +24 -17
- package/components/Toolbar/toolbar.css +7 -0
- package/components/Toolbar/toolbar.scss +7 -0
- package/components/TreeView/tree-view.css +15 -0
- package/components/TreeView/tree-view.scss +17 -0
- package/components/Wizard/wizard.css +37 -6
- package/components/Wizard/wizard.scss +44 -10
- package/components/_index.css +631 -168
- package/docs/components/Alert/examples/Alert.md +3 -4
- package/docs/components/Button/examples/Button.md +1 -3
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +25 -33
- package/docs/components/CodeBlock/examples/CodeBlock.md +13 -7
- package/docs/components/CodeEditor/examples/CodeEditor.md +20 -6
- package/docs/components/DataList/examples/DataList.md +66 -184
- package/docs/components/DatePicker/examples/DatePicker.md +4 -1
- package/docs/components/DescriptionList/examples/DescriptionList.md +78 -22
- package/docs/components/DualListSelector/examples/DualListSelector.md +0 -195
- package/docs/components/EmptyState/examples/EmptyState.md +6 -6
- package/docs/components/ExpandableSection/examples/ExpandableSection.md +92 -18
- package/docs/components/FileUpload/examples/FileUpload.md +4 -3
- package/docs/components/Form/examples/Form.md +19 -18
- package/docs/components/HelperText/examples/HelperText.md +65 -75
- package/docs/components/Hint/examples/Hint.md +3 -3
- package/docs/components/Icon/examples/Icon.md +0 -10
- package/docs/components/InlineEdit/examples/InlineEdit.md +0 -4
- package/docs/components/JumpLinks/examples/JumpLinks.md +164 -77
- package/docs/components/Label/examples/Label.md +2 -2
- package/docs/components/Login/examples/Login.md +42 -37
- package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +32 -6
- package/docs/components/Pagination/examples/Pagination.md +111 -0
- package/docs/components/Popover/examples/Popover.md +0 -4
- package/docs/components/Progress/examples/Progress.md +223 -210
- package/docs/components/Skeleton/examples/Skeleton.md +21 -7
- package/docs/components/Table/examples/Table.md +947 -1423
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +126 -47
- package/docs/components/Title/examples/Title.md +8 -8
- package/docs/components/Truncate/examples/Truncate.md +8 -6
- package/docs/components/Wizard/examples/Wizard.md +583 -0
- package/docs/demos/Alert/examples/Alert.md +28 -19
- package/docs/demos/Card/examples/Card.md +8 -5
- package/docs/demos/CardView/examples/CardView.md +81 -85
- package/docs/demos/Dashboard/examples/Dashboard.md +10 -22
- package/docs/demos/DataList/examples/DataList.md +528 -168
- package/docs/demos/DescriptionList/examples/DescriptionList.md +13 -3
- package/docs/demos/Drawer/examples/Drawer.md +0 -2
- package/docs/demos/Form/examples/BasicForms.md +93 -62
- package/docs/demos/HelperText/examples/HelperText.md +31 -23
- package/docs/demos/JumpLinks/examples/JumpLinks.md +0 -5
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +4 -4
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +56 -38
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +726 -312
- package/docs/demos/Skeleton/examples/Skeleton.md +3 -1
- package/docs/demos/Table/examples/Table.md +5 -20
- package/docs/demos/Tabs/examples/Tabs.md +2 -1
- package/package.json +12 -7
- package/patternfly-base-no-globals.css +1172 -1
- package/patternfly-base.css +1176 -1
- package/patternfly-no-globals.css +1803 -169
- package/patternfly.css +1838 -200
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -738,9 +738,10 @@ section: components
|
|
|
738
738
|
aria-hidden="true"
|
|
739
739
|
></i>
|
|
740
740
|
</span>
|
|
741
|
-
<span
|
|
742
|
-
class="pf-v6-
|
|
743
|
-
|
|
741
|
+
<span class="pf-v6-c-helper-text__item-text">
|
|
742
|
+
<span class="pf-v6-screen-reader">Error:</span>
|
|
743
|
+
Required field
|
|
744
|
+
</span>
|
|
744
745
|
</div>
|
|
745
746
|
</div>
|
|
746
747
|
</div>
|
|
@@ -806,9 +807,10 @@ section: components
|
|
|
806
807
|
aria-hidden="true"
|
|
807
808
|
></i>
|
|
808
809
|
</span>
|
|
809
|
-
<span
|
|
810
|
-
class="pf-v6-
|
|
811
|
-
|
|
810
|
+
<span class="pf-v6-c-helper-text__item-text">
|
|
811
|
+
<span class="pf-v6-screen-reader">Error:</span>
|
|
812
|
+
Required field
|
|
813
|
+
</span>
|
|
812
814
|
</div>
|
|
813
815
|
</div>
|
|
814
816
|
</div>
|
|
@@ -844,9 +846,10 @@ section: components
|
|
|
844
846
|
aria-hidden="true"
|
|
845
847
|
></i>
|
|
846
848
|
</span>
|
|
847
|
-
<span
|
|
848
|
-
class="pf-v6-
|
|
849
|
-
|
|
849
|
+
<span class="pf-v6-c-helper-text__item-text">
|
|
850
|
+
<span class="pf-v6-screen-reader">Error:</span>
|
|
851
|
+
This is a required field
|
|
852
|
+
</span>
|
|
850
853
|
</div>
|
|
851
854
|
</div>
|
|
852
855
|
</div>
|
|
@@ -1233,9 +1236,10 @@ section: components
|
|
|
1233
1236
|
aria-hidden="true"
|
|
1234
1237
|
></i>
|
|
1235
1238
|
</span>
|
|
1236
|
-
<span
|
|
1237
|
-
class="pf-v6-
|
|
1238
|
-
|
|
1239
|
+
<span class="pf-v6-c-helper-text__item-text">
|
|
1240
|
+
<span class="pf-v6-screen-reader">Error:</span>
|
|
1241
|
+
Required field
|
|
1242
|
+
</span>
|
|
1239
1243
|
</div>
|
|
1240
1244
|
</div>
|
|
1241
1245
|
</div>
|
|
@@ -1274,9 +1278,10 @@ section: components
|
|
|
1274
1278
|
aria-hidden="true"
|
|
1275
1279
|
></i>
|
|
1276
1280
|
</span>
|
|
1277
|
-
<span
|
|
1278
|
-
class="pf-v6-
|
|
1279
|
-
|
|
1281
|
+
<span class="pf-v6-c-helper-text__item-text">
|
|
1282
|
+
<span class="pf-v6-screen-reader">Error:</span>
|
|
1283
|
+
Enter a valid email address: example@gmail.com
|
|
1284
|
+
</span>
|
|
1280
1285
|
</div>
|
|
1281
1286
|
</div>
|
|
1282
1287
|
</div>
|
|
@@ -1331,7 +1336,10 @@ section: components
|
|
|
1331
1336
|
aria-hidden="true"
|
|
1332
1337
|
></i>
|
|
1333
1338
|
</span>
|
|
1334
|
-
<span class="pf-v6-c-helper-text__item-text">
|
|
1339
|
+
<span class="pf-v6-c-helper-text__item-text">
|
|
1340
|
+
<span class="pf-v6-screen-reader">Error:</span>
|
|
1341
|
+
Required field
|
|
1342
|
+
</span>
|
|
1335
1343
|
</div>
|
|
1336
1344
|
</div>
|
|
1337
1345
|
</div>
|
|
@@ -1364,9 +1372,10 @@ section: components
|
|
|
1364
1372
|
aria-hidden="true"
|
|
1365
1373
|
></i>
|
|
1366
1374
|
</span>
|
|
1367
|
-
<span
|
|
1368
|
-
class="pf-v6-
|
|
1369
|
-
|
|
1375
|
+
<span class="pf-v6-c-helper-text__item-text">
|
|
1376
|
+
<span class="pf-v6-screen-reader">Error:</span>
|
|
1377
|
+
This is a required field
|
|
1378
|
+
</span>
|
|
1370
1379
|
</div>
|
|
1371
1380
|
</div>
|
|
1372
1381
|
</div>
|
|
@@ -336,7 +336,7 @@ wrapperTag: div
|
|
|
336
336
|
<h2 class="pf-v6-c-title pf-m-xl">Details</h2>
|
|
337
337
|
</div>
|
|
338
338
|
<div class="pf-v6-c-card__body">
|
|
339
|
-
<dl class="pf-v6-c-description-list">
|
|
339
|
+
<dl class="pf-v6-c-description-list" aria-label="API 1">
|
|
340
340
|
<div class="pf-v6-c-description-list__group">
|
|
341
341
|
<dt class="pf-v6-c-description-list__term">Cluster API Address</dt>
|
|
342
342
|
<dd class="pf-v6-c-description-list__description">
|
|
@@ -385,7 +385,7 @@ wrapperTag: div
|
|
|
385
385
|
<h2 class="pf-v6-c-title pf-m-xl">Details</h2>
|
|
386
386
|
</div>
|
|
387
387
|
<div class="pf-v6-c-card__body">
|
|
388
|
-
<dl class="pf-v6-c-description-list">
|
|
388
|
+
<dl class="pf-v6-c-description-list" aria-label="API 2">
|
|
389
389
|
<div class="pf-v6-c-description-list__group">
|
|
390
390
|
<dt class="pf-v6-c-description-list__term">Cluster API Address</dt>
|
|
391
391
|
<dd class="pf-v6-c-description-list__description">
|
|
@@ -760,7 +760,10 @@ wrapperTag: div
|
|
|
760
760
|
tabindex="0"
|
|
761
761
|
>
|
|
762
762
|
<div class="pf-v6-c-tab-content__body">
|
|
763
|
-
<dl
|
|
763
|
+
<dl
|
|
764
|
+
class="pf-v6-c-description-list pf-m-horizontal pf-m-2-col-on-lg"
|
|
765
|
+
aria-label="Status"
|
|
766
|
+
>
|
|
764
767
|
<div class="pf-v6-c-description-list__group">
|
|
765
768
|
<dt class="pf-v6-c-description-list__term">
|
|
766
769
|
<span class="pf-v6-c-description-list__text">
|
|
@@ -2787,7 +2790,7 @@ wrapperTag: div
|
|
|
2787
2790
|
</div>
|
|
2788
2791
|
</div>
|
|
2789
2792
|
<div class="pf-v6-c-card__body">
|
|
2790
|
-
<dl class="pf-v6-c-description-list">
|
|
2793
|
+
<dl class="pf-v6-c-description-list" aria-label="Activity">
|
|
2791
2794
|
<div class="pf-v6-c-description-list__group">
|
|
2792
2795
|
<dt class="pf-v6-c-description-list__term">Readiness probe failed</dt>
|
|
2793
2796
|
<dd class="pf-v6-c-description-list__description">
|
|
@@ -2910,7 +2913,7 @@ wrapperTag: div
|
|
|
2910
2913
|
</div>
|
|
2911
2914
|
</div>
|
|
2912
2915
|
<div class="pf-v6-c-card__body">
|
|
2913
|
-
<dl class="pf-v6-c-description-list">
|
|
2916
|
+
<dl class="pf-v6-c-description-list" aria-label="Events">
|
|
2914
2917
|
<div class="pf-v6-c-description-list__group">
|
|
2915
2918
|
<dt class="pf-v6-c-description-list__term">
|
|
2916
2919
|
<div class="pf-v6-l-flex pf-m-nowrap pf-m-space-items-sm">
|
|
@@ -1030,92 +1030,88 @@ section: patterns
|
|
|
1030
1030
|
</div>
|
|
1031
1031
|
</div>
|
|
1032
1032
|
</section>
|
|
1033
|
-
<
|
|
1034
|
-
<div class="pf-v6-c-
|
|
1035
|
-
<
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
>
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
<
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
</span>
|
|
1053
|
-
</button>
|
|
1054
|
-
</div>
|
|
1055
|
-
<nav class="pf-v6-c-pagination__nav" aria-label="Pagination">
|
|
1056
|
-
<div class="pf-v6-c-pagination__nav-control pf-m-first">
|
|
1057
|
-
<button
|
|
1058
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1059
|
-
type="button"
|
|
1060
|
-
disabled
|
|
1061
|
-
aria-label="Go to first page"
|
|
1062
|
-
>
|
|
1063
|
-
<span class="pf-v6-c-button__icon">
|
|
1064
|
-
<i class="fas fa-angle-double-left" aria-hidden="true"></i>
|
|
1065
|
-
</span>
|
|
1066
|
-
</button>
|
|
1067
|
-
</div>
|
|
1068
|
-
<div class="pf-v6-c-pagination__nav-control pf-m-prev">
|
|
1069
|
-
<button
|
|
1070
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1071
|
-
type="button"
|
|
1072
|
-
disabled
|
|
1073
|
-
aria-label="Go to previous page"
|
|
1074
|
-
>
|
|
1075
|
-
<span class="pf-v6-c-button__icon">
|
|
1076
|
-
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
1077
|
-
</span>
|
|
1078
|
-
</button>
|
|
1079
|
-
</div>
|
|
1080
|
-
<div class="pf-v6-c-pagination__nav-page-select">
|
|
1081
|
-
<span class="pf-v6-c-form-control">
|
|
1082
|
-
<input
|
|
1083
|
-
aria-label="Current page"
|
|
1084
|
-
type="number"
|
|
1085
|
-
min="1"
|
|
1086
|
-
max="4"
|
|
1087
|
-
value="1"
|
|
1088
|
-
/>
|
|
1089
|
-
</span>
|
|
1090
|
-
<span aria-hidden="true">of 4</span>
|
|
1091
|
-
</div>
|
|
1092
|
-
<div class="pf-v6-c-pagination__nav-control pf-m-next">
|
|
1093
|
-
<button
|
|
1094
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1095
|
-
type="button"
|
|
1096
|
-
aria-label="Go to next page"
|
|
1097
|
-
>
|
|
1098
|
-
<span class="pf-v6-c-button__icon">
|
|
1099
|
-
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
1100
|
-
</span>
|
|
1101
|
-
</button>
|
|
1102
|
-
</div>
|
|
1103
|
-
<div class="pf-v6-c-pagination__nav-control pf-m-last">
|
|
1104
|
-
<button
|
|
1105
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1106
|
-
type="button"
|
|
1107
|
-
disabled
|
|
1108
|
-
aria-label="Go to last page"
|
|
1109
|
-
>
|
|
1110
|
-
<span class="pf-v6-c-button__icon">
|
|
1111
|
-
<i class="fas fa-angle-double-right" aria-hidden="true"></i>
|
|
1112
|
-
</span>
|
|
1113
|
-
</button>
|
|
1114
|
-
</div>
|
|
1115
|
-
</nav>
|
|
1116
|
-
</div>
|
|
1033
|
+
<div class="pf-v6-c-pagination pf-m-bottom pf-m-sticky">
|
|
1034
|
+
<div class="pf-v6-c-pagination__page-menu">
|
|
1035
|
+
<button
|
|
1036
|
+
class="pf-v6-c-menu-toggle pf-m-top pf-m-text pf-m-plain"
|
|
1037
|
+
type="button"
|
|
1038
|
+
aria-expanded="false"
|
|
1039
|
+
aria-label="Menu toggle"
|
|
1040
|
+
id="pagination-menu-toggle-bottom-example"
|
|
1041
|
+
>
|
|
1042
|
+
<span class="pf-v6-c-menu-toggle__text">
|
|
1043
|
+
<b>1 - 10</b> of
|
|
1044
|
+
<b>36</b>
|
|
1045
|
+
</span>
|
|
1046
|
+
<span class="pf-v6-c-menu-toggle__controls">
|
|
1047
|
+
<span class="pf-v6-c-menu-toggle__toggle-icon">
|
|
1048
|
+
<i class="fas fa-caret-down fa-fw" aria-hidden="true"></i>
|
|
1049
|
+
</span>
|
|
1050
|
+
</span>
|
|
1051
|
+
</button>
|
|
1117
1052
|
</div>
|
|
1118
|
-
|
|
1053
|
+
<nav class="pf-v6-c-pagination__nav" aria-label="Pagination">
|
|
1054
|
+
<div class="pf-v6-c-pagination__nav-control pf-m-first">
|
|
1055
|
+
<button
|
|
1056
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1057
|
+
type="button"
|
|
1058
|
+
disabled
|
|
1059
|
+
aria-label="Go to first page"
|
|
1060
|
+
>
|
|
1061
|
+
<span class="pf-v6-c-button__icon">
|
|
1062
|
+
<i class="fas fa-angle-double-left" aria-hidden="true"></i>
|
|
1063
|
+
</span>
|
|
1064
|
+
</button>
|
|
1065
|
+
</div>
|
|
1066
|
+
<div class="pf-v6-c-pagination__nav-control pf-m-prev">
|
|
1067
|
+
<button
|
|
1068
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1069
|
+
type="button"
|
|
1070
|
+
disabled
|
|
1071
|
+
aria-label="Go to previous page"
|
|
1072
|
+
>
|
|
1073
|
+
<span class="pf-v6-c-button__icon">
|
|
1074
|
+
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
1075
|
+
</span>
|
|
1076
|
+
</button>
|
|
1077
|
+
</div>
|
|
1078
|
+
<div class="pf-v6-c-pagination__nav-page-select">
|
|
1079
|
+
<span class="pf-v6-c-form-control">
|
|
1080
|
+
<input
|
|
1081
|
+
aria-label="Current page"
|
|
1082
|
+
type="number"
|
|
1083
|
+
min="1"
|
|
1084
|
+
max="4"
|
|
1085
|
+
value="1"
|
|
1086
|
+
/>
|
|
1087
|
+
</span>
|
|
1088
|
+
<span aria-hidden="true">of 4</span>
|
|
1089
|
+
</div>
|
|
1090
|
+
<div class="pf-v6-c-pagination__nav-control pf-m-next">
|
|
1091
|
+
<button
|
|
1092
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1093
|
+
type="button"
|
|
1094
|
+
aria-label="Go to next page"
|
|
1095
|
+
>
|
|
1096
|
+
<span class="pf-v6-c-button__icon">
|
|
1097
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
1098
|
+
</span>
|
|
1099
|
+
</button>
|
|
1100
|
+
</div>
|
|
1101
|
+
<div class="pf-v6-c-pagination__nav-control pf-m-last">
|
|
1102
|
+
<button
|
|
1103
|
+
class="pf-v6-c-button pf-m-plain"
|
|
1104
|
+
type="button"
|
|
1105
|
+
disabled
|
|
1106
|
+
aria-label="Go to last page"
|
|
1107
|
+
>
|
|
1108
|
+
<span class="pf-v6-c-button__icon">
|
|
1109
|
+
<i class="fas fa-angle-double-right" aria-hidden="true"></i>
|
|
1110
|
+
</span>
|
|
1111
|
+
</button>
|
|
1112
|
+
</div>
|
|
1113
|
+
</nav>
|
|
1114
|
+
</div>
|
|
1119
1115
|
</main>
|
|
1120
1116
|
</div>
|
|
1121
1117
|
</div>
|
|
@@ -1150,7 +1150,7 @@ cssPrefix: pf-d-dashboard
|
|
|
1150
1150
|
<h2 class="pf-v6-c-title pf-m-xl">Details</h2>
|
|
1151
1151
|
</div>
|
|
1152
1152
|
<div class="pf-v6-c-card__body">
|
|
1153
|
-
<dl class="pf-v6-c-description-list">
|
|
1153
|
+
<dl class="pf-v6-c-description-list" aria-label="Details">
|
|
1154
1154
|
<div class="pf-v6-c-description-list__group">
|
|
1155
1155
|
<dt
|
|
1156
1156
|
class="pf-v6-c-description-list__term"
|
|
@@ -1224,10 +1224,7 @@ cssPrefix: pf-d-dashboard
|
|
|
1224
1224
|
aria-label="Simple data list example"
|
|
1225
1225
|
id="dashboard-demo-data-list-card-1-data-list"
|
|
1226
1226
|
>
|
|
1227
|
-
<li
|
|
1228
|
-
class="pf-v6-c-data-list__item"
|
|
1229
|
-
aria-labelledby="dashboard-demo-data-list-card-1-data-list-item-1"
|
|
1230
|
-
>
|
|
1227
|
+
<li class="pf-v6-c-data-list__item">
|
|
1231
1228
|
<div class="pf-v6-c-data-list__item-row">
|
|
1232
1229
|
<div class="pf-v6-c-data-list__item-content">
|
|
1233
1230
|
<div
|
|
@@ -1250,10 +1247,7 @@ cssPrefix: pf-d-dashboard
|
|
|
1250
1247
|
</div>
|
|
1251
1248
|
</div>
|
|
1252
1249
|
</li>
|
|
1253
|
-
<li
|
|
1254
|
-
class="pf-v6-c-data-list__item"
|
|
1255
|
-
aria-labelledby="dashboard-demo-data-list-card-1-data-list-item-2"
|
|
1256
|
-
>
|
|
1250
|
+
<li class="pf-v6-c-data-list__item">
|
|
1257
1251
|
<div class="pf-v6-c-data-list__item-row">
|
|
1258
1252
|
<div class="pf-v6-c-data-list__item-content">
|
|
1259
1253
|
<div
|
|
@@ -1276,10 +1270,7 @@ cssPrefix: pf-d-dashboard
|
|
|
1276
1270
|
</div>
|
|
1277
1271
|
</div>
|
|
1278
1272
|
</li>
|
|
1279
|
-
<li
|
|
1280
|
-
class="pf-v6-c-data-list__item"
|
|
1281
|
-
aria-labelledby="dashboard-demo-data-list-card-1-data-list-item-3"
|
|
1282
|
-
>
|
|
1273
|
+
<li class="pf-v6-c-data-list__item">
|
|
1283
1274
|
<div class="pf-v6-c-data-list__item-row">
|
|
1284
1275
|
<div class="pf-v6-c-data-list__item-content">
|
|
1285
1276
|
<div
|
|
@@ -1302,10 +1293,7 @@ cssPrefix: pf-d-dashboard
|
|
|
1302
1293
|
</div>
|
|
1303
1294
|
</div>
|
|
1304
1295
|
</li>
|
|
1305
|
-
<li
|
|
1306
|
-
class="pf-v6-c-data-list__item"
|
|
1307
|
-
aria-labelledby="dashboard-demo-data-list-card-1-data-list-item-4"
|
|
1308
|
-
>
|
|
1296
|
+
<li class="pf-v6-c-data-list__item">
|
|
1309
1297
|
<div class="pf-v6-c-data-list__item-row">
|
|
1310
1298
|
<div class="pf-v6-c-data-list__item-content">
|
|
1311
1299
|
<div
|
|
@@ -1328,10 +1316,7 @@ cssPrefix: pf-d-dashboard
|
|
|
1328
1316
|
</div>
|
|
1329
1317
|
</div>
|
|
1330
1318
|
</li>
|
|
1331
|
-
<li
|
|
1332
|
-
class="pf-v6-c-data-list__item"
|
|
1333
|
-
aria-labelledby="dashboard-demo-data-list-card-1-data-list-item-5"
|
|
1334
|
-
>
|
|
1319
|
+
<li class="pf-v6-c-data-list__item">
|
|
1335
1320
|
<div class="pf-v6-c-data-list__item-row">
|
|
1336
1321
|
<div class="pf-v6-c-data-list__item-content">
|
|
1337
1322
|
<div
|
|
@@ -1393,7 +1378,10 @@ cssPrefix: pf-d-dashboard
|
|
|
1393
1378
|
</div>
|
|
1394
1379
|
</div>
|
|
1395
1380
|
<div class="pf-v6-c-card__body">
|
|
1396
|
-
<dl
|
|
1381
|
+
<dl
|
|
1382
|
+
class="pf-v6-c-description-list pf-m-compact"
|
|
1383
|
+
aria-label="Events"
|
|
1384
|
+
>
|
|
1397
1385
|
<div class="pf-v6-c-description-list__group">
|
|
1398
1386
|
<dt class="pf-v6-c-description-list__term">
|
|
1399
1387
|
<div class="pf-v6-l-flex pf-m-nowrap">
|