@patternfly/react-styles 6.5.0-prerelease.2 → 6.5.0-prerelease.20

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.
Files changed (193) hide show
  1. package/CHANGELOG.md +94 -0
  2. package/README.md +1 -1
  3. package/css/assets/images/Felt-Bkg-Generic-Dark.svg +82 -0
  4. package/css/assets/images/Felt-Bkg-Generic-Light.svg +82 -0
  5. package/css/assets/images/PF-Bkg-Generic-Dark.svg +76 -0
  6. package/css/assets/images/PF-Bkg-Generic-Light.svg +74 -0
  7. package/css/assets/images/compass--hero-bg.png +0 -0
  8. package/css/assets/images/compass--wallpaper-dark.jpg +0 -0
  9. package/css/assets/images/compass--wallpaper-light.jpg +0 -0
  10. package/css/assets/images/glass-brand-dark.jpg +0 -0
  11. package/css/assets/images/glass-brand-dark.png +0 -0
  12. package/css/assets/images/glass-brand-light.jpg +0 -0
  13. package/css/assets/images/glass-brand-light.png +0 -0
  14. package/css/components/AboutModalBox/about-modal-box.css +36 -26
  15. package/css/components/Accordion/accordion.css +26 -14
  16. package/css/components/Accordion/accordion.d.ts +4 -1
  17. package/css/components/Accordion/accordion.js +4 -1
  18. package/css/components/Accordion/accordion.mjs +4 -1
  19. package/css/components/Alert/alert.css +7 -5
  20. package/css/components/Avatar/avatar.css +12 -4
  21. package/css/components/BackgroundImage/background-image.css +6 -3
  22. package/css/components/Banner/banner.css +8 -6
  23. package/css/components/Brand/brand.css +3 -1
  24. package/css/components/Breadcrumb/breadcrumb.css +10 -5
  25. package/css/components/Button/button.css +123 -32
  26. package/css/components/Button/button.d.ts +3 -0
  27. package/css/components/Button/button.js +3 -0
  28. package/css/components/Button/button.mjs +3 -0
  29. package/css/components/CalendarMonth/calendar-month.css +4 -3
  30. package/css/components/Card/card.css +51 -15
  31. package/css/components/Card/card.d.ts +4 -1
  32. package/css/components/Card/card.js +4 -1
  33. package/css/components/Card/card.mjs +4 -1
  34. package/css/components/ClipboardCopy/clipboard-copy.css +14 -7
  35. package/css/components/ClipboardCopy/clipboard-copy.d.ts +1 -0
  36. package/css/components/ClipboardCopy/clipboard-copy.js +1 -0
  37. package/css/components/ClipboardCopy/clipboard-copy.mjs +1 -0
  38. package/css/components/CodeEditor/code-editor.css +2 -2
  39. package/css/components/Compass/compass.css +169 -125
  40. package/css/components/Compass/compass.d.ts +12 -11
  41. package/css/components/Compass/compass.js +12 -11
  42. package/css/components/Compass/compass.mjs +12 -11
  43. package/css/components/DataList/data-list.css +30 -23
  44. package/css/components/DataList/data-list.d.ts +3 -1
  45. package/css/components/DataList/data-list.js +3 -1
  46. package/css/components/DataList/data-list.mjs +3 -1
  47. package/css/components/DescriptionList/description-list.css +7 -5
  48. package/css/components/Divider/divider.css +7 -5
  49. package/css/components/Drawer/drawer.css +191 -74
  50. package/css/components/Drawer/drawer.d.ts +5 -1
  51. package/css/components/Drawer/drawer.js +5 -1
  52. package/css/components/Drawer/drawer.mjs +5 -1
  53. package/css/components/DualListSelector/dual-list-selector.css +18 -12
  54. package/css/components/ExpandableSection/expandable-section.css +21 -16
  55. package/css/components/Form/form.css +2 -2
  56. package/css/components/FormControl/form-control.css +3 -3
  57. package/css/components/Hero/hero.css +74 -0
  58. package/css/components/Hero/hero.d.ts +11 -0
  59. package/css/components/Hero/hero.js +12 -0
  60. package/css/components/Hero/hero.mjs +10 -0
  61. package/css/components/JumpLinks/jump-links.css +16 -5
  62. package/css/components/Label/label-group.css +2 -2
  63. package/css/components/Label/label.css +4 -3
  64. package/css/components/Login/login.css +58 -40
  65. package/css/components/Masthead/masthead.css +111 -16
  66. package/css/components/Masthead/masthead.d.ts +5 -0
  67. package/css/components/Masthead/masthead.js +5 -0
  68. package/css/components/Masthead/masthead.mjs +5 -0
  69. package/css/components/Menu/menu.css +49 -33
  70. package/css/components/MenuToggle/menu-toggle.css +35 -8
  71. package/css/components/MenuToggle/menu-toggle.d.ts +4 -0
  72. package/css/components/MenuToggle/menu-toggle.js +4 -0
  73. package/css/components/MenuToggle/menu-toggle.mjs +4 -0
  74. package/css/components/ModalBox/modal-box.css +9 -7
  75. package/css/components/Nav/nav.css +82 -11
  76. package/css/components/Nav/nav.d.ts +6 -2
  77. package/css/components/Nav/nav.js +6 -2
  78. package/css/components/Nav/nav.mjs +6 -2
  79. package/css/components/NotificationDrawer/notification-drawer.css +19 -9
  80. package/css/components/OverflowMenu/overflow-menu.css +16 -0
  81. package/css/components/OverflowMenu/overflow-menu.d.ts +1 -0
  82. package/css/components/OverflowMenu/overflow-menu.js +1 -0
  83. package/css/components/OverflowMenu/overflow-menu.mjs +1 -0
  84. package/css/components/Page/page.css +309 -27
  85. package/css/components/Page/page.d.ts +14 -1
  86. package/css/components/Page/page.js +14 -1
  87. package/css/components/Page/page.mjs +14 -1
  88. package/css/components/Panel/panel.css +41 -3
  89. package/css/components/Panel/panel.d.ts +8 -2
  90. package/css/components/Panel/panel.js +8 -2
  91. package/css/components/Panel/panel.mjs +8 -2
  92. package/css/components/Progress/progress.css +3 -1
  93. package/css/components/Sidebar/sidebar.css +1 -1
  94. package/css/components/Skeleton/skeleton.css +16 -15
  95. package/css/components/Slider/slider.css +32 -18
  96. package/css/components/Switch/switch.css +4 -2
  97. package/css/components/Table/table-grid.css +28 -36
  98. package/css/components/Table/table-tree-view.css +4 -2
  99. package/css/components/Table/table.css +104 -57
  100. package/css/components/Table/table.d.ts +6 -2
  101. package/css/components/Table/table.js +6 -2
  102. package/css/components/Table/table.mjs +6 -2
  103. package/css/components/Tabs/tabs.css +35 -33
  104. package/css/components/Tabs/tabs.d.ts +0 -1
  105. package/css/components/Tabs/tabs.js +0 -1
  106. package/css/components/Tabs/tabs.mjs +0 -1
  107. package/css/components/TextInputGroup/text-input-group.css +2 -2
  108. package/css/components/ToggleGroup/toggle-group.css +44 -19
  109. package/css/components/ToggleGroup/toggle-group.d.ts +1 -0
  110. package/css/components/ToggleGroup/toggle-group.js +1 -0
  111. package/css/components/ToggleGroup/toggle-group.mjs +1 -0
  112. package/css/components/Toolbar/toolbar.css +147 -15
  113. package/css/components/Toolbar/toolbar.d.ts +11 -0
  114. package/css/components/Toolbar/toolbar.js +11 -0
  115. package/css/components/Toolbar/toolbar.mjs +11 -0
  116. package/css/components/TreeView/tree-view.css +45 -14
  117. package/css/components/TreeView/tree-view.d.ts +1 -0
  118. package/css/components/TreeView/tree-view.js +1 -0
  119. package/css/components/TreeView/tree-view.mjs +1 -0
  120. package/css/components/Wizard/wizard.css +41 -19
  121. package/css/components/Wizard/wizard.d.ts +3 -0
  122. package/css/components/Wizard/wizard.js +3 -0
  123. package/css/components/Wizard/wizard.mjs +3 -0
  124. package/css/components/_index.css +2182 -885
  125. package/css/components/_index.d.ts +37 -9
  126. package/css/components/_index.js +37 -9
  127. package/css/components/_index.mjs +37 -9
  128. package/css/docs/components/Compass/examples/Compass.css +8 -2
  129. package/css/docs/components/Compass/examples/Compass.d.ts +4 -1
  130. package/css/docs/components/Compass/examples/Compass.js +4 -1
  131. package/css/docs/components/Compass/examples/Compass.mjs +4 -1
  132. package/css/docs/components/DragDrop/examples/DragDrop.css +1 -1
  133. package/css/docs/components/OverflowMenu/examples/overflow-menu.css +6 -3
  134. package/css/docs/components/Panel/examples/Panel.css +3 -0
  135. package/css/docs/components/Panel/examples/Panel.d.ts +5 -0
  136. package/css/docs/components/Panel/examples/Panel.js +6 -0
  137. package/css/docs/components/Panel/examples/Panel.mjs +4 -0
  138. package/css/docs/components/Table/examples/Table.css +2 -1
  139. package/css/docs/layouts/Bullseye/examples/Bullseye.css +2 -2
  140. package/css/docs/layouts/Bullseye/examples/Bullseye.d.ts +1 -1
  141. package/css/docs/layouts/Bullseye/examples/Bullseye.js +1 -1
  142. package/css/docs/layouts/Bullseye/examples/Bullseye.mjs +1 -1
  143. package/css/docs/layouts/Flex/examples/Flex.css +3 -3
  144. package/css/docs/layouts/Flex/examples/Flex.d.ts +2 -2
  145. package/css/docs/layouts/Flex/examples/Flex.js +2 -2
  146. package/css/docs/layouts/Flex/examples/Flex.mjs +2 -2
  147. package/css/docs/layouts/Gallery/examples/Gallery.css +2 -2
  148. package/css/docs/layouts/Gallery/examples/Gallery.d.ts +1 -1
  149. package/css/docs/layouts/Gallery/examples/Gallery.js +1 -1
  150. package/css/docs/layouts/Gallery/examples/Gallery.mjs +1 -1
  151. package/css/docs/layouts/Grid/examples/Grid.css +1 -1
  152. package/css/docs/layouts/Grid/examples/Grid.d.ts +1 -1
  153. package/css/docs/layouts/Grid/examples/Grid.js +1 -1
  154. package/css/docs/layouts/Grid/examples/Grid.mjs +1 -1
  155. package/css/docs/layouts/Level/examples/Level.css +3 -3
  156. package/css/docs/layouts/Level/examples/Level.d.ts +1 -1
  157. package/css/docs/layouts/Level/examples/Level.js +1 -1
  158. package/css/docs/layouts/Level/examples/Level.mjs +1 -1
  159. package/css/docs/layouts/Split/examples/Split.css +1 -1
  160. package/css/docs/layouts/Split/examples/Split.d.ts +1 -1
  161. package/css/docs/layouts/Split/examples/Split.js +1 -1
  162. package/css/docs/layouts/Split/examples/Split.mjs +1 -1
  163. package/css/docs/layouts/Stack/examples/Stack.css +3 -3
  164. package/css/docs/layouts/Stack/examples/Stack.d.ts +1 -1
  165. package/css/docs/layouts/Stack/examples/Stack.js +1 -1
  166. package/css/docs/layouts/Stack/examples/Stack.mjs +1 -1
  167. package/css/docs/utilities/Alignment/examples/Alignment.css +4 -4
  168. package/css/docs/utilities/Alignment/examples/Alignment.d.ts +1 -1
  169. package/css/docs/utilities/Alignment/examples/Alignment.js +1 -1
  170. package/css/docs/utilities/Alignment/examples/Alignment.mjs +1 -1
  171. package/css/docs/utilities/BoxShadow/examples/box-shadow.css +2 -2
  172. package/css/docs/utilities/BoxShadow/examples/box-shadow.d.ts +1 -1
  173. package/css/docs/utilities/BoxShadow/examples/box-shadow.js +1 -1
  174. package/css/docs/utilities/BoxShadow/examples/box-shadow.mjs +1 -1
  175. package/css/docs/utilities/Display/examples/Display.css +1 -1
  176. package/css/docs/utilities/Display/examples/Display.d.ts +1 -1
  177. package/css/docs/utilities/Display/examples/Display.js +1 -1
  178. package/css/docs/utilities/Display/examples/Display.mjs +1 -1
  179. package/css/docs/utilities/Flex/examples/Flex.css +7 -7
  180. package/css/docs/utilities/Flex/examples/Flex.d.ts +1 -1
  181. package/css/docs/utilities/Flex/examples/Flex.js +1 -1
  182. package/css/docs/utilities/Flex/examples/Flex.mjs +1 -1
  183. package/css/docs/utilities/Float/examples/Float.css +2 -2
  184. package/css/docs/utilities/Float/examples/Float.d.ts +1 -1
  185. package/css/docs/utilities/Float/examples/Float.js +1 -1
  186. package/css/docs/utilities/Float/examples/Float.mjs +1 -1
  187. package/css/docs/utilities/Spacing/examples/Spacing.css +2 -2
  188. package/css/docs/utilities/Spacing/examples/Spacing.d.ts +1 -1
  189. package/css/docs/utilities/Spacing/examples/Spacing.js +1 -1
  190. package/css/docs/utilities/Spacing/examples/Spacing.mjs +1 -1
  191. package/css/layouts/Gallery/gallery.css +6 -2
  192. package/css/layouts/_index.css +6 -2
  193. package/package.json +4 -4
@@ -11,10 +11,12 @@ exports.default = {
11
11
  "overflowHidden": "pf-m-overflow-hidden",
12
12
  "inset": "pf-m-inset",
13
13
  "fill": "pf-m-fill",
14
+ "docked": "pf-m-docked",
15
+ "textExpanded": "pf-m-text-expanded",
14
16
  "drilldown": "pf-m-drilldown",
15
17
  "expanded": "pf-m-expanded",
16
- "hover": "pf-m-hover",
17
18
  "current": "pf-m-current",
19
+ "hover": "pf-m-hover",
18
20
  "flyout": "pf-m-flyout",
19
21
  "horizontal": "pf-m-horizontal",
20
22
  "subnav": "pf-m-subnav",
@@ -24,6 +26,7 @@ exports.default = {
24
26
  "navItem": "pf-v6-c-nav__item",
25
27
  "navLink": "pf-v6-c-nav__link",
26
28
  "navLinkIcon": "pf-v6-c-nav__link-icon",
29
+ "navLinkText": "pf-v6-c-nav__link-text",
27
30
  "navList": "pf-v6-c-nav__list",
28
31
  "navNav": "pf-v6-c-nav__nav",
29
32
  "navScrollButton": "pf-v6-c-nav__scroll-button",
@@ -31,5 +34,6 @@ exports.default = {
31
34
  "navSectionTitle": "pf-v6-c-nav__section-title",
32
35
  "navSubnav": "pf-v6-c-nav__subnav",
33
36
  "navToggle": "pf-v6-c-nav__toggle",
34
- "navToggleIcon": "pf-v6-c-nav__toggle-icon"
37
+ "navToggleIcon": "pf-v6-c-nav__toggle-icon",
38
+ "pageDock": "pf-v6-c-page__dock"
35
39
  };
@@ -9,10 +9,12 @@ export default {
9
9
  "overflowHidden": "pf-m-overflow-hidden",
10
10
  "inset": "pf-m-inset",
11
11
  "fill": "pf-m-fill",
12
+ "docked": "pf-m-docked",
13
+ "textExpanded": "pf-m-text-expanded",
12
14
  "drilldown": "pf-m-drilldown",
13
15
  "expanded": "pf-m-expanded",
14
- "hover": "pf-m-hover",
15
16
  "current": "pf-m-current",
17
+ "hover": "pf-m-hover",
16
18
  "flyout": "pf-m-flyout",
17
19
  "horizontal": "pf-m-horizontal",
18
20
  "subnav": "pf-m-subnav",
@@ -22,6 +24,7 @@ export default {
22
24
  "navItem": "pf-v6-c-nav__item",
23
25
  "navLink": "pf-v6-c-nav__link",
24
26
  "navLinkIcon": "pf-v6-c-nav__link-icon",
27
+ "navLinkText": "pf-v6-c-nav__link-text",
25
28
  "navList": "pf-v6-c-nav__list",
26
29
  "navNav": "pf-v6-c-nav__nav",
27
30
  "navScrollButton": "pf-v6-c-nav__scroll-button",
@@ -29,5 +32,6 @@ export default {
29
32
  "navSectionTitle": "pf-v6-c-nav__section-title",
30
33
  "navSubnav": "pf-v6-c-nav__subnav",
31
34
  "navToggle": "pf-v6-c-nav__toggle",
32
- "navToggleIcon": "pf-v6-c-nav__toggle-icon"
35
+ "navToggleIcon": "pf-v6-c-nav__toggle-icon",
36
+ "pageDock": "pf-v6-c-page__dock"
33
37
  };
@@ -14,6 +14,7 @@
14
14
  --pf-v6-c-notification-drawer__header-status--FontWeight: var(--pf-t--global--font--weight--body--bold);
15
15
  --pf-v6-c-notification-drawer__header-status--FontSize: var(--pf-t--global--font--size--body--default);
16
16
  --pf-v6-c-notification-drawer__header-status--Color: var(--pf-t--global--text--color--subtle);
17
+ --pf-v6-c-notification-drawer__header-action--Gap: var(--pf-t--global--spacer--gap--action-to-action--plain);
17
18
  --pf-v6-c-notification-drawer__body--ZIndex: var(--pf-t--global--z-index--xs);
18
19
  --pf-v6-c-notification-drawer__body--PaddingBlockStart: 0;
19
20
  --pf-v6-c-notification-drawer__body--PaddingBlockEnd: var(--pf-t--global--spacer--md);
@@ -27,6 +28,7 @@
27
28
  --pf-v6-c-notification-drawer__list-item--BackgroundColor: var(--pf-t--global--background--color--primary--default);
28
29
  --pf-v6-c-notification-drawer__list-item--BorderWidth: var(--pf-t--global--border--width--box--status--default);
29
30
  --pf-v6-c-notification-drawer__list-item--BorderRadius: var(--pf-t--global--border--radius--medium);
31
+ --pf-v6-c-notification-drawer__list-item--OutlineOffset: -0.25rem;
30
32
  --pf-v6-c-notification-drawer__list-item--m-info__list-item-header-icon--Color: var(--pf-t--global--icon--color--status--info--default);
31
33
  --pf-v6-c-notification-drawer__list-item--m-info__list-item--BorderColor: var(--pf-t--global--border--color--status--info--default);
32
34
  --pf-v6-c-notification-drawer__list-item--m-warning__list-item-header-icon--Color: var(--pf-t--global--icon--color--status--warning--default);
@@ -69,7 +71,7 @@
69
71
  --pf-v6-c-notification-drawer__group-toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
70
72
  --pf-v6-c-notification-drawer__group-toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
71
73
  --pf-v6-c-notification-drawer__group-toggle-icon--Transition: transform var(--pf-v6-c-notification-drawer__group-toggle-icon--TransitionDuration) var(--pf-v6-c-notification-drawer__group-toggle-icon--TransitionTimingFunction);
72
- --pf-v6-c-notification-drawer__group--m-expanded__group-toggle-icon--Rotate: 90deg;
74
+ --pf-v6-c-notification-drawer__group--m-expanded__group-toggle-icon--Rotate: -180deg;
73
75
  }
74
76
 
75
77
  .pf-v6-c-notification-drawer {
@@ -108,6 +110,7 @@
108
110
 
109
111
  .pf-v6-c-notification-drawer__header-action {
110
112
  display: flex;
113
+ gap: var(--pf-v6-c-notification-drawer__header-action--Gap);
111
114
  align-items: center;
112
115
  margin-inline-start: auto;
113
116
  }
@@ -136,8 +139,16 @@
136
139
  padding-inline-start: var(--pf-v6-c-notification-drawer__list-item--PaddingInlineStart);
137
140
  padding-inline-end: var(--pf-v6-c-notification-drawer__list-item--PaddingInlineEnd);
138
141
  background-color: var(--pf-v6-c-notification-drawer__list-item--BackgroundColor);
139
- border: var(--pf-v6-c-notification-drawer__list-item--BorderWidth) solid var(--pf-v6-c-notification-drawer__list-item--BorderColor);
140
142
  border-radius: var(--pf-v6-c-notification-drawer__list-item--BorderRadius);
143
+ outline-offset: var(--pf-v6-c-notification-drawer__list-item--OutlineOffset);
144
+ }
145
+ .pf-v6-c-notification-drawer__list-item::before {
146
+ position: absolute;
147
+ inset: 0;
148
+ pointer-events: none;
149
+ content: "";
150
+ border: var(--pf-v6-c-notification-drawer__list-item--BorderWidth) solid var(--pf-v6-c-notification-drawer__list-item--BorderColor);
151
+ border-radius: inherit;
141
152
  }
142
153
  .pf-v6-c-notification-drawer__list-item.pf-m-info {
143
154
  --pf-v6-c-notification-drawer__list-item--BorderColor: var(--pf-v6-c-notification-drawer__list-item--m-info__list-item--BorderColor);
@@ -163,7 +174,6 @@
163
174
  --pf-v6-c-notification-drawer__list-item--BorderWidth: var(--pf-v6-c-notification-drawer__list-item--m-read--BorderWidth);
164
175
  --pf-v6-c-notification-drawer__list-item--BackgroundColor: var(--pf-v6-c-notification-drawer__list-item--m-read--BackgroundColor);
165
176
  --pf-v6-c-notification-drawer__list-item--BorderColor: var(--pf-v6-c-notification-drawer__list-item--m-read--BorderColor);
166
- position: relative;
167
177
  }
168
178
  .pf-v6-c-notification-drawer__list-item.pf-m-hoverable {
169
179
  cursor: pointer;
@@ -191,9 +201,9 @@
191
201
  }
192
202
  .pf-v6-c-notification-drawer__list-item-header-title.pf-m-truncate {
193
203
  display: -webkit-box;
204
+ overflow: hidden;
194
205
  -webkit-box-orient: vertical;
195
206
  -webkit-line-clamp: var(--pf-v6-c-notification-drawer__list-item-header-title--max-lines);
196
- overflow: hidden;
197
207
  }
198
208
 
199
209
  .pf-v6-c-notification-drawer__list-item-action {
@@ -247,9 +257,9 @@
247
257
 
248
258
  .pf-v6-c-notification-drawer__group-toggle-title {
249
259
  display: -webkit-box;
260
+ overflow: hidden;
250
261
  -webkit-box-orient: vertical;
251
262
  -webkit-line-clamp: var(--pf-v6-c-notification-drawer__group-toggle-title--max-lines);
252
- overflow: hidden;
253
263
  flex: 1;
254
264
  margin-inline-end: var(--pf-v6-c-notification-drawer__group-toggle-title--MarginInlineEnd);
255
265
  font-size: var(--pf-v6-c-notification-drawer__group-toggle-title--FontSize);
@@ -262,15 +272,15 @@
262
272
  margin-inline-end: var(--pf-v6-c-notification-drawer__group-toggle-count--MarginInlineEnd);
263
273
  }
264
274
 
275
+ :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-notification-drawer__group-toggle-icon {
276
+ scale: -1 1;
277
+ }
278
+
265
279
  .pf-v6-c-notification-drawer__group-toggle-icon {
266
280
  margin-inline-end: var(--pf-v6-c-notification-drawer__group-toggle-icon--MarginInlineEnd);
267
281
  color: var(--pf-v6-c-notification-drawer__group-toggle-icon--Color);
268
282
  transition: var(--pf-v6-c-notification-drawer__group-toggle-icon--Transition);
269
283
  }
270
- :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-notification-drawer__group-toggle-icon {
271
- scale: -1 1;
272
- }
273
-
274
284
  .pf-v6-c-notification-drawer__group.pf-m-expanded .pf-v6-c-notification-drawer__group-toggle-icon {
275
285
  transform: rotate(var(--pf-v6-c-notification-drawer__group--m-expanded__group-toggle-icon--Rotate));
276
286
  }
@@ -1,15 +1,26 @@
1
1
  .pf-v6-c-overflow-menu {
2
2
  --pf-v6-c-overflow-menu--ColumnGap: var(--pf-t--global--spacer--md);
3
+ --pf-v6-c-overflow-menu--RowGap: var(--pf-t--global--spacer--md);
3
4
  --pf-v6-c-overflow-menu__group--ColumnGap: var(--pf-t--global--spacer--md);
5
+ --pf-v6-c-overflow-menu__group--RowGap: var(--pf-t--global--spacer--md);
4
6
  --pf-v6-c-overflow-menu__group--m-button-group--ColumnGap: var(--pf-t--global--spacer--sm);
7
+ --pf-v6-c-overflow-menu__group--m-button-group--RowGap: var(--pf-t--global--spacer--sm);
5
8
  --pf-v6-c-overflow-menu__group--m-icon-button-group--ColumnGap: var(--pf-t--global--spacer--xs);
9
+ --pf-v6-c-overflow-menu__group--m-icon-button-group--RowGap: var(--pf-t--global--spacer--xs);
6
10
  }
7
11
 
8
12
  .pf-v6-c-overflow-menu {
9
13
  display: inline-flex;
14
+ row-gap: var(--pf-v6-c-overflow-menu--RowGap);
10
15
  column-gap: var(--pf-v6-c-overflow-menu--ColumnGap);
11
16
  }
12
17
 
18
+ .pf-v6-c-overflow-menu.pf-m-vertical,
19
+ .pf-v6-c-overflow-menu.pf-m-vertical .pf-v6-c-overflow-menu__content,
20
+ .pf-v6-c-overflow-menu.pf-m-vertical .pf-v6-c-overflow-menu__group {
21
+ flex-direction: column;
22
+ }
23
+
13
24
  .pf-v6-c-overflow-menu__content,
14
25
  .pf-v6-c-overflow-menu__group {
15
26
  display: flex;
@@ -17,20 +28,25 @@
17
28
  }
18
29
 
19
30
  .pf-v6-c-overflow-menu__group {
31
+ row-gap: var(--pf-v6-c-overflow-menu__group--RowGap);
20
32
  column-gap: var(--pf-v6-c-overflow-menu__group--ColumnGap);
21
33
  }
22
34
  .pf-v6-c-overflow-menu__group.pf-m-button-group {
35
+ row-gap: var(--pf-v6-c-overflow-menu__group--m-button-group--RowGap);
23
36
  column-gap: var(--pf-v6-c-overflow-menu__group--m-button-group--ColumnGap);
24
37
  }
25
38
  .pf-v6-c-overflow-menu__group.pf-m-icon-button-group {
39
+ row-gap: var(--pf-v6-c-overflow-menu__group--m-icon-button-group--RowGap);
26
40
  column-gap: var(--pf-v6-c-overflow-menu__group--m-icon-button-group--ColumnGap);
27
41
  }
28
42
 
29
43
  .pf-v6-c-overflow-menu__item {
44
+ row-gap: var(--pf-v6-c-overflow-menu__item--RowGap, var(--pf-v6-c-overflow-menu--RowGap));
30
45
  column-gap: var(--pf-v6-c-overflow-menu__item--ColumnGap, var(--pf-v6-c-overflow-menu--ColumnGap));
31
46
  }
32
47
 
33
48
  .pf-v6-c-overflow-menu__content,
34
49
  .pf-v6-c-overflow-menu__control {
50
+ row-gap: var(--pf-v6-c-overflow-menu--RowGap);
35
51
  column-gap: var(--pf-v6-c-overflow-menu--ColumnGap);
36
52
  }
@@ -1,6 +1,7 @@
1
1
  import './overflow-menu.css';
2
2
  declare const _default: {
3
3
  "modifiers": {
4
+ "vertical": "pf-m-vertical",
4
5
  "buttonGroup": "pf-m-button-group",
5
6
  "iconButtonGroup": "pf-m-icon-button-group"
6
7
  },
@@ -3,6 +3,7 @@ exports.__esModule = true;
3
3
  require('./overflow-menu.css');
4
4
  exports.default = {
5
5
  "modifiers": {
6
+ "vertical": "pf-m-vertical",
6
7
  "buttonGroup": "pf-m-button-group",
7
8
  "iconButtonGroup": "pf-m-icon-button-group"
8
9
  },
@@ -1,6 +1,7 @@
1
1
  import './overflow-menu.css';
2
2
  export default {
3
3
  "modifiers": {
4
+ "vertical": "pf-m-vertical",
4
5
  "buttonGroup": "pf-m-button-group",
5
6
  "iconButtonGroup": "pf-m-icon-button-group"
6
7
  },