@patternfly/patternfly 6.0.0-alpha.87 → 6.0.0-alpha.89
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/Menu/menu.css +4 -1
- package/components/Menu/menu.scss +6 -1
- package/components/MenuToggle/menu-toggle.css +1 -0
- package/components/MenuToggle/menu-toggle.scss +1 -0
- package/components/Table/table-tree-view.css +5 -0
- package/components/Table/table-tree-view.scss +9 -0
- package/components/Table/table.css +111 -190
- package/components/Table/table.scss +155 -268
- package/docs/components/MenuToggle/examples/MenuToggle.md +19 -0
- package/package.json +1 -1
- package/patternfly-no-globals.css +121 -191
- package/patternfly-theme-dark-unversioned.css +121 -191
- package/patternfly.css +121 -191
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -954,6 +954,24 @@ cssPrefix: pf-v5-c-menu-toggle
|
|
|
954
954
|
|
|
955
955
|
```
|
|
956
956
|
|
|
957
|
+
### Full width
|
|
958
|
+
|
|
959
|
+
```html
|
|
960
|
+
<button
|
|
961
|
+
class="pf-v5-c-menu-toggle pf-m-full-width"
|
|
962
|
+
type="button"
|
|
963
|
+
aria-expanded="false"
|
|
964
|
+
>
|
|
965
|
+
<span class="pf-v5-c-menu-toggle__text">Full width</span>
|
|
966
|
+
<span class="pf-v5-c-menu-toggle__controls">
|
|
967
|
+
<span class="pf-v5-c-menu-toggle__toggle-icon">
|
|
968
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
969
|
+
</span>
|
|
970
|
+
</span>
|
|
971
|
+
</button>
|
|
972
|
+
|
|
973
|
+
```
|
|
974
|
+
|
|
957
975
|
### Typeahead
|
|
958
976
|
|
|
959
977
|
```html
|
|
@@ -1028,3 +1046,4 @@ cssPrefix: pf-v5-c-menu-toggle
|
|
|
1028
1046
|
| `.pf-m-plain` | `.pf-v5-c-menu-toggle` | Modifies the menu toggle component for the plain variation. |
|
|
1029
1047
|
| `.pf-m-expanded` | `.pf-v5-c-menu-toggle` | Modifies the menu toggle component for the expanded state. |
|
|
1030
1048
|
| `.pf-m-full-height` | `.pf-v5-c-menu-toggle` | Modifies the menu toggle component to full height of parent. |
|
|
1049
|
+
| `.pf-m-full-width` | `.pf-v5-c-menu-toggle` | Modifies the menu toggle component to full width of parent. |
|