@patternfly/patternfly 6.3.0-prerelease.4 → 6.3.0-prerelease.41
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 +1 -1
- package/assets/images/icon-help.hbs +3 -0
- 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/CodeEditor/code-editor.css +3 -0
- package/components/CodeEditor/code-editor.scss +3 -1
- 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 +38 -4
- package/components/MenuToggle/menu-toggle.scss +48 -3
- package/components/Nav/nav.css +22 -8
- package/components/Nav/nav.scss +22 -9
- package/components/Page/page.css +66 -6
- package/components/Page/page.scss +48 -5
- 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 +933 -92
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
- package/docs/components/Button/examples/Button.md +161 -6
- package/docs/components/Card/examples/Card.md +8 -8
- package/docs/components/CodeBlock/examples/CodeBlock.md +5 -5
- package/docs/components/CodeEditor/examples/CodeEditor.md +26 -2
- package/docs/components/DataList/examples/DataList.md +23 -23
- package/docs/components/Divider/examples/Divider.md +1 -1
- package/docs/components/Drawer/examples/Drawer.md +4 -0
- 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 +1179 -114
- 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 +93 -55
- package/docs/components/ModalBox/examples/ModalBox.md +13 -1
- 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 +148 -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 +9457 -6178
- 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 +142 -22
- package/docs/demos/JumpLinks/examples/JumpLinks.md +132 -18
- package/docs/demos/Masthead/examples/Masthead.md +171 -19
- package/docs/demos/Modal/examples/Modal.md +171 -21
- package/docs/demos/Nav/examples/Nav.md +113 -18
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +110 -15
- package/docs/demos/Page/examples/Page.md +661 -40
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +13 -1
- 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 +516 -178
- 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 +6 -6
- package/patternfly-base-no-globals.css +45 -11
- package/patternfly-base.css +45 -11
- package/patternfly-no-globals.css +978 -103
- package/patternfly.css +978 -103
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +54 -0
|
@@ -16,12 +16,31 @@ section: components
|
|
|
16
16
|
<div class="pf-v6-c-masthead__main">
|
|
17
17
|
<span class="pf-v6-c-masthead__toggle">
|
|
18
18
|
<button
|
|
19
|
-
class="pf-v6-c-button pf-m-plain"
|
|
19
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
20
20
|
type="button"
|
|
21
21
|
aria-label="Global navigation"
|
|
22
22
|
>
|
|
23
23
|
<span class="pf-v6-c-button__icon">
|
|
24
|
-
<
|
|
24
|
+
<svg
|
|
25
|
+
viewBox="0 0 10 10"
|
|
26
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
27
|
+
width="1em"
|
|
28
|
+
height="1em"
|
|
29
|
+
>
|
|
30
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
31
|
+
<path
|
|
32
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
33
|
+
d="M1,5 L9,5"
|
|
34
|
+
/>
|
|
35
|
+
<path
|
|
36
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
37
|
+
d="M1,5 L1,5 L1,5"
|
|
38
|
+
/>
|
|
39
|
+
<path
|
|
40
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
41
|
+
d="M9,9 L1,9"
|
|
42
|
+
/>
|
|
43
|
+
</svg>
|
|
25
44
|
</span>
|
|
26
45
|
</button>
|
|
27
46
|
</span>
|
|
@@ -138,7 +157,7 @@ section: components
|
|
|
138
157
|
</div>
|
|
139
158
|
<div class="pf-v6-c-toolbar__item">
|
|
140
159
|
<button
|
|
141
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
160
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
142
161
|
type="button"
|
|
143
162
|
aria-expanded="false"
|
|
144
163
|
aria-label="Settings"
|
|
@@ -655,12 +674,31 @@ section: components
|
|
|
655
674
|
<div class="pf-v6-c-masthead__main">
|
|
656
675
|
<span class="pf-v6-c-masthead__toggle">
|
|
657
676
|
<button
|
|
658
|
-
class="pf-v6-c-button pf-m-plain"
|
|
677
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
659
678
|
type="button"
|
|
660
679
|
aria-label="Global navigation"
|
|
661
680
|
>
|
|
662
681
|
<span class="pf-v6-c-button__icon">
|
|
663
|
-
<
|
|
682
|
+
<svg
|
|
683
|
+
viewBox="0 0 10 10"
|
|
684
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
685
|
+
width="1em"
|
|
686
|
+
height="1em"
|
|
687
|
+
>
|
|
688
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
689
|
+
<path
|
|
690
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
691
|
+
d="M1,5 L9,5"
|
|
692
|
+
/>
|
|
693
|
+
<path
|
|
694
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
695
|
+
d="M1,5 L1,5 L1,5"
|
|
696
|
+
/>
|
|
697
|
+
<path
|
|
698
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
699
|
+
d="M9,9 L1,9"
|
|
700
|
+
/>
|
|
701
|
+
</svg>
|
|
664
702
|
</span>
|
|
665
703
|
</button>
|
|
666
704
|
</span>
|
|
@@ -778,7 +816,7 @@ section: components
|
|
|
778
816
|
</div>
|
|
779
817
|
<div class="pf-v6-c-toolbar__item">
|
|
780
818
|
<button
|
|
781
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
819
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
782
820
|
type="button"
|
|
783
821
|
aria-expanded="false"
|
|
784
822
|
aria-label="Settings"
|
|
@@ -1295,12 +1333,31 @@ section: components
|
|
|
1295
1333
|
<div class="pf-v6-c-masthead__main">
|
|
1296
1334
|
<span class="pf-v6-c-masthead__toggle">
|
|
1297
1335
|
<button
|
|
1298
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1336
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
1299
1337
|
type="button"
|
|
1300
1338
|
aria-label="Global navigation"
|
|
1301
1339
|
>
|
|
1302
1340
|
<span class="pf-v6-c-button__icon">
|
|
1303
|
-
<
|
|
1341
|
+
<svg
|
|
1342
|
+
viewBox="0 0 10 10"
|
|
1343
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
1344
|
+
width="1em"
|
|
1345
|
+
height="1em"
|
|
1346
|
+
>
|
|
1347
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
1348
|
+
<path
|
|
1349
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
1350
|
+
d="M1,5 L9,5"
|
|
1351
|
+
/>
|
|
1352
|
+
<path
|
|
1353
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
1354
|
+
d="M1,5 L1,5 L1,5"
|
|
1355
|
+
/>
|
|
1356
|
+
<path
|
|
1357
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
1358
|
+
d="M9,9 L1,9"
|
|
1359
|
+
/>
|
|
1360
|
+
</svg>
|
|
1304
1361
|
</span>
|
|
1305
1362
|
</button>
|
|
1306
1363
|
</span>
|
|
@@ -1418,7 +1475,7 @@ section: components
|
|
|
1418
1475
|
</div>
|
|
1419
1476
|
<div class="pf-v6-c-toolbar__item">
|
|
1420
1477
|
<button
|
|
1421
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1478
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
1422
1479
|
type="button"
|
|
1423
1480
|
aria-expanded="false"
|
|
1424
1481
|
aria-label="Settings"
|
|
@@ -1938,12 +1995,31 @@ section: components
|
|
|
1938
1995
|
<div class="pf-v6-c-masthead__main">
|
|
1939
1996
|
<span class="pf-v6-c-masthead__toggle">
|
|
1940
1997
|
<button
|
|
1941
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1998
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
1942
1999
|
type="button"
|
|
1943
2000
|
aria-label="Global navigation"
|
|
1944
2001
|
>
|
|
1945
2002
|
<span class="pf-v6-c-button__icon">
|
|
1946
|
-
<
|
|
2003
|
+
<svg
|
|
2004
|
+
viewBox="0 0 10 10"
|
|
2005
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
2006
|
+
width="1em"
|
|
2007
|
+
height="1em"
|
|
2008
|
+
>
|
|
2009
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
2010
|
+
<path
|
|
2011
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
2012
|
+
d="M1,5 L9,5"
|
|
2013
|
+
/>
|
|
2014
|
+
<path
|
|
2015
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
2016
|
+
d="M1,5 L1,5 L1,5"
|
|
2017
|
+
/>
|
|
2018
|
+
<path
|
|
2019
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
2020
|
+
d="M9,9 L1,9"
|
|
2021
|
+
/>
|
|
2022
|
+
</svg>
|
|
1947
2023
|
</span>
|
|
1948
2024
|
</button>
|
|
1949
2025
|
</span>
|
|
@@ -2061,7 +2137,7 @@ section: components
|
|
|
2061
2137
|
</div>
|
|
2062
2138
|
<div class="pf-v6-c-toolbar__item">
|
|
2063
2139
|
<button
|
|
2064
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2140
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
2065
2141
|
type="button"
|
|
2066
2142
|
aria-expanded="false"
|
|
2067
2143
|
aria-label="Settings"
|
|
@@ -2576,12 +2652,31 @@ section: components
|
|
|
2576
2652
|
<div class="pf-v6-c-masthead__main">
|
|
2577
2653
|
<span class="pf-v6-c-masthead__toggle">
|
|
2578
2654
|
<button
|
|
2579
|
-
class="pf-v6-c-button pf-m-plain"
|
|
2655
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
2580
2656
|
type="button"
|
|
2581
2657
|
aria-label="Global navigation"
|
|
2582
2658
|
>
|
|
2583
2659
|
<span class="pf-v6-c-button__icon">
|
|
2584
|
-
<
|
|
2660
|
+
<svg
|
|
2661
|
+
viewBox="0 0 10 10"
|
|
2662
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
2663
|
+
width="1em"
|
|
2664
|
+
height="1em"
|
|
2665
|
+
>
|
|
2666
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
2667
|
+
<path
|
|
2668
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
2669
|
+
d="M1,5 L9,5"
|
|
2670
|
+
/>
|
|
2671
|
+
<path
|
|
2672
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
2673
|
+
d="M1,5 L1,5 L1,5"
|
|
2674
|
+
/>
|
|
2675
|
+
<path
|
|
2676
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
2677
|
+
d="M9,9 L1,9"
|
|
2678
|
+
/>
|
|
2679
|
+
</svg>
|
|
2585
2680
|
</span>
|
|
2586
2681
|
</button>
|
|
2587
2682
|
</span>
|
|
@@ -2699,7 +2794,7 @@ section: components
|
|
|
2699
2794
|
</div>
|
|
2700
2795
|
<div class="pf-v6-c-toolbar__item">
|
|
2701
2796
|
<button
|
|
2702
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2797
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
2703
2798
|
type="button"
|
|
2704
2799
|
aria-expanded="false"
|
|
2705
2800
|
aria-label="Settings"
|