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

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 (195) hide show
  1. package/CHANGELOG.md +100 -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 +165 -69
  26. package/css/components/Button/button.d.ts +6 -2
  27. package/css/components/Button/button.js +6 -2
  28. package/css/components/Button/button.mjs +6 -2
  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 +313 -125
  40. package/css/components/Compass/compass.d.ts +23 -10
  41. package/css/components/Compass/compass.js +23 -10
  42. package/css/components/Compass/compass.mjs +23 -10
  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 +6 -0
  67. package/css/components/Masthead/masthead.js +6 -0
  68. package/css/components/Masthead/masthead.mjs +6 -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 +5 -0
  72. package/css/components/MenuToggle/menu-toggle.js +5 -0
  73. package/css/components/MenuToggle/menu-toggle.mjs +5 -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 +7 -2
  77. package/css/components/Nav/nav.js +7 -2
  78. package/css/components/Nav/nav.mjs +7 -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-scrollable.css +1 -1
  99. package/css/components/Table/table-tree-view.css +4 -2
  100. package/css/components/Table/table.css +104 -57
  101. package/css/components/Table/table.d.ts +6 -2
  102. package/css/components/Table/table.js +6 -2
  103. package/css/components/Table/table.mjs +6 -2
  104. package/css/components/Tabs/tabs.css +35 -33
  105. package/css/components/Tabs/tabs.d.ts +0 -1
  106. package/css/components/Tabs/tabs.js +0 -1
  107. package/css/components/Tabs/tabs.mjs +0 -1
  108. package/css/components/TextInputGroup/text-input-group.css +2 -2
  109. package/css/components/ToggleGroup/toggle-group.css +44 -19
  110. package/css/components/ToggleGroup/toggle-group.d.ts +1 -0
  111. package/css/components/ToggleGroup/toggle-group.js +1 -0
  112. package/css/components/ToggleGroup/toggle-group.mjs +1 -0
  113. package/css/components/Toolbar/toolbar.css +195 -16
  114. package/css/components/Toolbar/toolbar.d.ts +14 -0
  115. package/css/components/Toolbar/toolbar.js +14 -0
  116. package/css/components/Toolbar/toolbar.mjs +14 -0
  117. package/css/components/TreeView/tree-view.css +45 -14
  118. package/css/components/TreeView/tree-view.d.ts +1 -0
  119. package/css/components/TreeView/tree-view.js +1 -0
  120. package/css/components/TreeView/tree-view.mjs +1 -0
  121. package/css/components/Wizard/wizard.css +41 -19
  122. package/css/components/Wizard/wizard.d.ts +3 -0
  123. package/css/components/Wizard/wizard.js +3 -0
  124. package/css/components/Wizard/wizard.mjs +3 -0
  125. package/css/components/_index.css +2396 -903
  126. package/css/components/_index.d.ts +42 -10
  127. package/css/components/_index.js +42 -10
  128. package/css/components/_index.mjs +42 -10
  129. package/css/docs/components/Compass/examples/Compass.css +8 -2
  130. package/css/docs/components/Compass/examples/Compass.d.ts +4 -1
  131. package/css/docs/components/Compass/examples/Compass.js +4 -1
  132. package/css/docs/components/Compass/examples/Compass.mjs +4 -1
  133. package/css/docs/components/DragDrop/examples/DragDrop.css +1 -1
  134. package/css/docs/components/OverflowMenu/examples/overflow-menu.css +6 -3
  135. package/css/docs/components/Panel/examples/Panel.css +3 -0
  136. package/css/docs/components/Panel/examples/Panel.d.ts +5 -0
  137. package/css/docs/components/Panel/examples/Panel.js +6 -0
  138. package/css/docs/components/Panel/examples/Panel.mjs +4 -0
  139. package/css/docs/components/Table/examples/Table.css +2 -1
  140. package/css/docs/components/Toolbar/examples/Toolbar.css +1 -1
  141. package/css/docs/layouts/Bullseye/examples/Bullseye.css +2 -2
  142. package/css/docs/layouts/Bullseye/examples/Bullseye.d.ts +1 -1
  143. package/css/docs/layouts/Bullseye/examples/Bullseye.js +1 -1
  144. package/css/docs/layouts/Bullseye/examples/Bullseye.mjs +1 -1
  145. package/css/docs/layouts/Flex/examples/Flex.css +3 -3
  146. package/css/docs/layouts/Flex/examples/Flex.d.ts +2 -2
  147. package/css/docs/layouts/Flex/examples/Flex.js +2 -2
  148. package/css/docs/layouts/Flex/examples/Flex.mjs +2 -2
  149. package/css/docs/layouts/Gallery/examples/Gallery.css +2 -2
  150. package/css/docs/layouts/Gallery/examples/Gallery.d.ts +1 -1
  151. package/css/docs/layouts/Gallery/examples/Gallery.js +1 -1
  152. package/css/docs/layouts/Gallery/examples/Gallery.mjs +1 -1
  153. package/css/docs/layouts/Grid/examples/Grid.css +1 -1
  154. package/css/docs/layouts/Grid/examples/Grid.d.ts +1 -1
  155. package/css/docs/layouts/Grid/examples/Grid.js +1 -1
  156. package/css/docs/layouts/Grid/examples/Grid.mjs +1 -1
  157. package/css/docs/layouts/Level/examples/Level.css +3 -3
  158. package/css/docs/layouts/Level/examples/Level.d.ts +1 -1
  159. package/css/docs/layouts/Level/examples/Level.js +1 -1
  160. package/css/docs/layouts/Level/examples/Level.mjs +1 -1
  161. package/css/docs/layouts/Split/examples/Split.css +1 -1
  162. package/css/docs/layouts/Split/examples/Split.d.ts +1 -1
  163. package/css/docs/layouts/Split/examples/Split.js +1 -1
  164. package/css/docs/layouts/Split/examples/Split.mjs +1 -1
  165. package/css/docs/layouts/Stack/examples/Stack.css +3 -3
  166. package/css/docs/layouts/Stack/examples/Stack.d.ts +1 -1
  167. package/css/docs/layouts/Stack/examples/Stack.js +1 -1
  168. package/css/docs/layouts/Stack/examples/Stack.mjs +1 -1
  169. package/css/docs/utilities/Alignment/examples/Alignment.css +4 -4
  170. package/css/docs/utilities/Alignment/examples/Alignment.d.ts +1 -1
  171. package/css/docs/utilities/Alignment/examples/Alignment.js +1 -1
  172. package/css/docs/utilities/Alignment/examples/Alignment.mjs +1 -1
  173. package/css/docs/utilities/BoxShadow/examples/box-shadow.css +2 -2
  174. package/css/docs/utilities/BoxShadow/examples/box-shadow.d.ts +1 -1
  175. package/css/docs/utilities/BoxShadow/examples/box-shadow.js +1 -1
  176. package/css/docs/utilities/BoxShadow/examples/box-shadow.mjs +1 -1
  177. package/css/docs/utilities/Display/examples/Display.css +1 -1
  178. package/css/docs/utilities/Display/examples/Display.d.ts +1 -1
  179. package/css/docs/utilities/Display/examples/Display.js +1 -1
  180. package/css/docs/utilities/Display/examples/Display.mjs +1 -1
  181. package/css/docs/utilities/Flex/examples/Flex.css +7 -7
  182. package/css/docs/utilities/Flex/examples/Flex.d.ts +1 -1
  183. package/css/docs/utilities/Flex/examples/Flex.js +1 -1
  184. package/css/docs/utilities/Flex/examples/Flex.mjs +1 -1
  185. package/css/docs/utilities/Float/examples/Float.css +2 -2
  186. package/css/docs/utilities/Float/examples/Float.d.ts +1 -1
  187. package/css/docs/utilities/Float/examples/Float.js +1 -1
  188. package/css/docs/utilities/Float/examples/Float.mjs +1 -1
  189. package/css/docs/utilities/Spacing/examples/Spacing.css +2 -2
  190. package/css/docs/utilities/Spacing/examples/Spacing.d.ts +1 -1
  191. package/css/docs/utilities/Spacing/examples/Spacing.js +1 -1
  192. package/css/docs/utilities/Spacing/examples/Spacing.mjs +1 -1
  193. package/css/layouts/Gallery/gallery.css +6 -2
  194. package/css/layouts/_index.css +6 -2
  195. package/package.json +4 -4
@@ -6,34 +6,41 @@
6
6
  --pf-v6-c-toggle-group__button--FontSize: var(--pf-t--global--font--size--body--default);
7
7
  --pf-v6-c-toggle-group__button--LineHeight: var(--pf-t--global--font--line-height--body);
8
8
  --pf-v6-c-toggle-group__button--Color: var(--pf-t--global--text--color--regular);
9
- --pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
9
+ --pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-t--global--background--color--control--default);
10
10
  --pf-v6-c-toggle-group__button--ZIndex: auto;
11
- --pf-v6-c-toggle-group__button--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
11
+ --pf-v6-c-toggle-group__button--hover--Color: var(--pf-t--global--text--color--on-brand--subtle--default);
12
+ --pf-v6-c-toggle-group__button--hover--BackgroundColor: var(--pf-t--global--color--brand--subtle--default);
12
13
  --pf-v6-c-toggle-group__button--hover--ZIndex: var(--pf-t--global--z-index--xs);
13
- --pf-v6-c-toggle-group__button--hover--before--BorderColor: var(--pf-t--global--border--color--default);
14
+ --pf-v6-c-toggle-group__button--hover--before--BorderColor: var(--pf-t--global--border--color--brand--subtle--hover);
14
15
  --pf-v6-c-toggle-group__button--hover--after--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
15
16
  --pf-v6-c-toggle-group__button--before--BorderWidth: var(--pf-t--global--border--width--control--default);
16
- --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-t--global--border--color--default);
17
+ --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-t--global--border--color--control--default);
17
18
  --pf-v6-c-toggle-group__item--item--MarginInlineStart: calc(-1 * var(--pf-t--global--border--width--control--default));
18
- --pf-v6-c-toggle-group__item--first-child__button--BorderStartStartRadius: var(--pf-t--global--border--radius--tiny);
19
- --pf-v6-c-toggle-group__item--first-child__button--BorderEndStartRadius: var(--pf-t--global--border--radius--tiny);
20
- --pf-v6-c-toggle-group__item--last-child__button--BorderStartEndRadius: var(--pf-t--global--border--radius--tiny);
21
- --pf-v6-c-toggle-group__item--last-child__button--BorderEndEndRadius: var(--pf-t--global--border--radius--tiny);
19
+ --pf-v6-c-toggle-group__item--first-child__button--BorderStartStartRadius: var(--pf-t--global--border--radius--control--default);
20
+ --pf-v6-c-toggle-group__item--first-child__button--BorderEndStartRadius: var(--pf-t--global--border--radius--control--default);
21
+ --pf-v6-c-toggle-group__item--last-child__button--BorderStartEndRadius: var(--pf-t--global--border--radius--control--default);
22
+ --pf-v6-c-toggle-group__item--last-child__button--BorderEndEndRadius: var(--pf-t--global--border--radius--control--default);
22
23
  --pf-v6-c-toggle-group__icon--text--MarginInlineStart: var(--pf-t--global--spacer--sm);
23
- --pf-v6-c-toggle-group__button--m-selected--BackgroundColor: var(--pf-t--global--color--brand--default);
24
- --pf-v6-c-toggle-group__button--m-selected--Color: var(--pf-t--global--text--color--on-brand--default);
25
- --pf-v6-c-toggle-group__button--m-selected--before--BorderColor: var(--pf-t--global--border--color--clicked);
26
- --pf-v6-c-toggle-group__button--m-selected-selected--before--BorderInlineStartColor: var(--pf-t--global--border--color--alt);
24
+ --pf-v6-c-toggle-group__icon--Color: var(--pf-t--global--icon--color--regular);
25
+ --pf-v6-c-toggle-group__icon--hover--Color: var(--pf-t--global--icon--color--on-brand--subtle--default);
26
+ --pf-v6-c-toggle-group__icon--m-selected--Color: var(--pf-t--global--icon--color--on-brand--subtle--default);
27
+ --pf-v6-c-toggle-group__icon--disabled--Color: var(--pf-t--global--icon--color--on-disabled);
28
+ --pf-v6-c-toggle-group__button--m-selected--BackgroundColor: var(--pf-t--global--color--brand--subtle--default);
29
+ --pf-v6-c-toggle-group__button--m-selected--Color: var(--pf-t--global--text--color--on-brand--subtle--default);
30
+ --pf-v6-c-toggle-group__button--m-selected--before--BorderColor: var(--pf-t--global--border--color--brand--subtle--clicked);
31
+ --pf-v6-c-toggle-group__button--m-selected--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
32
+ --pf-v6-c-toggle-group__button--m-selected--after--BorderColor: var(--pf-t--global--border--color--brand--subtle--clicked);
33
+ --pf-v6-c-toggle-group__button--m-selected--after--BorderWidth: var(--pf-t--global--border--width--control--clicked);
34
+ --pf-v6-c-toggle-group__button--m-selected--selected--before--BorderInlineStartColor: var(--pf-t--global--border--color--brand--subtle--clicked);
27
35
  --pf-v6-c-toggle-group__button--m-selected--ZIndex: var(--pf-t--global--z-index--xs);
28
- --pf-v6-c-toggle-group__button--m-selected--after--BorderWidth: var(--pf-t--global--border--width--high-contrast--strong);
29
36
  --pf-v6-c-toggle-group__button--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
30
37
  --pf-v6-c-toggle-group__button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
31
- --pf-v6-c-toggle-group__button--disabled--before--BorderColor: var(--pf-t--global--border--color--disabled);
32
- --pf-v6-c-toggle-group__button--disabled-disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--disabled);
38
+ --pf-v6-c-toggle-group__button--disabled--before--BorderColor: var(--pf-t--global--border--color--control--default);
39
+ --pf-v6-c-toggle-group__button--disabled--disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--control--default);
33
40
  --pf-v6-c-toggle-group__button--disabled--ZIndex: var(--pf-t--global--z-index--xs);
34
- --pf-v6-c-toggle-group--m-compact__button--PaddingBlockStart: 0;
41
+ --pf-v6-c-toggle-group--m-compact__button--PaddingBlockStart: var(--pf-t--global--spacer--xs);
35
42
  --pf-v6-c-toggle-group--m-compact__button--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
36
- --pf-v6-c-toggle-group--m-compact__button--PaddingBlockEnd: 0;
43
+ --pf-v6-c-toggle-group--m-compact__button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
37
44
  --pf-v6-c-toggle-group--m-compact__button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
38
45
  --pf-v6-c-toggle-group--m-compact__button--FontSize: var(--pf-t--global--font--size--body--default);
39
46
  }
@@ -48,6 +55,14 @@
48
55
  --pf-v6-c-toggle-group__button--PaddingInlineStart: var(--pf-v6-c-toggle-group--m-compact__button--PaddingInlineStart);
49
56
  --pf-v6-c-toggle-group__button--FontSize: var(--pf-v6-c-toggle-group--m-compact__button--FontSize);
50
57
  }
58
+ .pf-v6-c-toggle-group.pf-m-fill .pf-v6-c-toggle-group__item {
59
+ display: flex;
60
+ flex-grow: 1;
61
+ }
62
+ .pf-v6-c-toggle-group.pf-m-fill .pf-v6-c-toggle-group__button {
63
+ flex-basis: 100%;
64
+ justify-content: center;
65
+ }
51
66
 
52
67
  .pf-v6-c-toggle-group__item + .pf-v6-c-toggle-group__item {
53
68
  margin-inline-start: var(--pf-v6-c-toggle-group__item--item--MarginInlineStart);
@@ -97,9 +112,11 @@
97
112
  }
98
113
  .pf-v6-c-toggle-group__button:is(:hover, :focus) {
99
114
  --pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--hover--BackgroundColor);
115
+ --pf-v6-c-toggle-group__button--Color: var(--pf-v6-c-toggle-group__button--hover--Color);
100
116
  --pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--hover--ZIndex);
101
117
  --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--hover--before--BorderColor);
102
118
  --pf-v6-c-toggle-group__button--after--BorderWidth: var(--pf-v6-c-toggle-group__button--hover--after--BorderWidth);
119
+ --pf-v6-c-toggle-group__icon--Color: var(--pf-v6-c-toggle-group__icon--hover--Color);
103
120
  text-decoration-line: none;
104
121
  }
105
122
  .pf-v6-c-toggle-group__button.pf-m-selected {
@@ -107,22 +124,30 @@
107
124
  --pf-v6-c-toggle-group__button--Color: var(--pf-v6-c-toggle-group__button--m-selected--Color, inherit);
108
125
  --pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--m-selected--ZIndex);
109
126
  --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--m-selected--before--BorderColor);
127
+ --pf-v6-c-toggle-group__button--before--BorderWidth: var(--pf-v6-c-toggle-group__button--m-selected--before--BorderWidth);
128
+ --pf-v6-c-toggle-group__button--after--BorderColor: var(--pf-v6-c-toggle-group__button--m-selected--after--BorderColor);
110
129
  --pf-v6-c-toggle-group__button--after--BorderWidth: var(--pf-v6-c-toggle-group__button--m-selected--after--BorderWidth);
130
+ --pf-v6-c-toggle-group__icon--Color: var(--pf-v6-c-toggle-group__icon--m-selected--Color);
111
131
  }
112
132
  .pf-v6-c-toggle-group__button:is(:disabled, .pf-m-disabled) {
113
133
  --pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--disabled--BackgroundColor);
114
134
  --pf-v6-c-toggle-group__button--Color: var(--pf-v6-c-toggle-group__button--disabled--Color);
115
135
  --pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--disabled--ZIndex);
116
136
  --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--disabled--before--BorderColor);
137
+ --pf-v6-c-toggle-group__icon--Color: var(--pf-v6-c-toggle-group__icon--disabled--Color);
117
138
  pointer-events: none;
118
139
  }
119
140
 
120
141
  .pf-v6-c-toggle-group__item:has(.pf-m-selected) + .pf-v6-c-toggle-group__item:has(.pf-m-selected) {
121
- --pf-v6-c-toggle-group__button--before--BorderInlineStartColor: var(--pf-v6-c-toggle-group__button--m-selected-selected--before--BorderInlineStartColor);
142
+ --pf-v6-c-toggle-group__button--before--BorderInlineStartColor: var(--pf-v6-c-toggle-group__button--m-selected--selected--before--BorderInlineStartColor);
122
143
  }
123
144
 
124
145
  .pf-v6-c-toggle-group__item:has(:disabled, .pf-m-disabled) + .pf-v6-c-toggle-group__item:has(:disabled, .pf-m-disabled) {
125
- --pf-v6-c-toggle-group__button--before--BorderInlineStartColor: var(--pf-v6-c-toggle-group__button--disabled-disabled--before--BorderInlineStartColor);
146
+ --pf-v6-c-toggle-group__button--before--BorderInlineStartColor: var(--pf-v6-c-toggle-group__button--disabled--disabled--before--BorderInlineStartColor);
147
+ }
148
+
149
+ .pf-v6-c-toggle-group__icon {
150
+ color: var(--pf-v6-c-toggle-group__icon--Color);
126
151
  }
127
152
 
128
153
  .pf-v6-c-toggle-group__icon + .pf-v6-c-toggle-group__text,
@@ -2,6 +2,7 @@ import './toggle-group.css';
2
2
  declare const _default: {
3
3
  "modifiers": {
4
4
  "compact": "pf-m-compact",
5
+ "fill": "pf-m-fill",
5
6
  "selected": "pf-m-selected",
6
7
  "disabled": "pf-m-disabled"
7
8
  },
@@ -4,6 +4,7 @@ require('./toggle-group.css');
4
4
  exports.default = {
5
5
  "modifiers": {
6
6
  "compact": "pf-m-compact",
7
+ "fill": "pf-m-fill",
7
8
  "selected": "pf-m-selected",
8
9
  "disabled": "pf-m-disabled"
9
10
  },
@@ -2,6 +2,7 @@ import './toggle-group.css';
2
2
  export default {
3
3
  "modifiers": {
4
4
  "compact": "pf-m-compact",
5
+ "fill": "pf-m-fill",
5
6
  "selected": "pf-m-selected",
6
7
  "disabled": "pf-m-disabled"
7
8
  },
@@ -36,14 +36,33 @@
36
36
  --pf-v6-c-toolbar--m-sticky--ZIndex: var(--pf-t--global--z-index--xs);
37
37
  --pf-v6-c-toolbar--m-sticky--PaddingBlockStart: var(--pf-t--global--spacer--md);
38
38
  --pf-v6-c-toolbar--m-sticky--PaddingBlockEnd: var(--pf-t--global--spacer--md);
39
+ --pf-v6-c-toolbar--m-sticky--PaddingInlineStart: 0;
40
+ --pf-v6-c-toolbar--m-sticky--PaddingInlineEnd: 0;
39
41
  --pf-v6-c-toolbar--m-sticky--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
40
- --pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
42
+ --pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--sticky--default);
41
43
  --pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
42
44
  --pf-v6-c-toolbar--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
45
+ --pf-v6-c-toolbar--m-sticky--BorderRadius: 0;
46
+ --pf-v6-c-toolbar--m-sticky--BorderRadius--glass: var(--pf-t--global--border--radius--medium);
47
+ --pf-v6-c-toolbar--m-sticky--BoxShadow--glass: var(--pf-t--global--box-shadow--sm);
48
+ --pf-v6-c-toolbar--m-sticky--PaddingInlineStart--glass: var(--pf-t--global--spacer--sm);
49
+ --pf-v6-c-toolbar--m-sticky--PaddingInlineEnd--glass: var(--pf-t--global--spacer--sm);
50
+ --pf-v6-c-toolbar--m-sticky--TransitionTimingFunction--BackgroundColor: var(--pf-t--global--motion--timing-function--default);
51
+ --pf-v6-c-toolbar--m-sticky--TransitionDuration--BackgroundColor: var(--pf-t--global--motion--duration--fade--default);
52
+ }
53
+ :where(.pf-v6-theme-glass) .pf-v6-c-toolbar {
54
+ --pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: 0;
55
+ --pf-v6-c-toolbar--m-sticky--BoxShadow: var(--pf-v6-c-toolbar--m-sticky--BoxShadow--glass);
56
+ --pf-v6-c-toolbar--m-sticky--BorderRadius: var(--pf-v6-c-toolbar--m-sticky--BorderRadius--glass);
57
+ --pf-v6-c-toolbar--m-sticky--PaddingInlineStart: var(--pf-v6-c-toolbar--m-sticky--PaddingInlineStart--glass);
58
+ --pf-v6-c-toolbar--m-sticky--PaddingInlineEnd: var(--pf-v6-c-toolbar--m-sticky--PaddingInlineEnd--glass);
59
+ }
60
+ .pf-v6-c-toolbar {
61
+ --pf-v6-c-toolbar--m-vertical--Width: fit-content;
43
62
  --pf-v6-c-toolbar__expand-all-icon--Rotate: 0;
44
63
  --pf-v6-c-toolbar__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
45
64
  --pf-v6-c-toolbar__expand-all-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
46
- --pf-v6-c-toolbar__item--m-expand-all--m-expanded__expand-all-icon--Rotate: 90deg;
65
+ --pf-v6-c-toolbar__item--m-expand-all--m-expanded__expand-all-icon--Rotate: -180deg;
47
66
  --pf-v6-c-toolbar__group--m-filter-group--ColumnGap: var(--pf-t--global--spacer--gap--control-to-control--default);
48
67
  --pf-v6-c-toolbar__item--m-label--FontWeight: var(--pf-t--global--font--weight--body--bold);
49
68
  --pf-v6-c-toolbar__group--m-label-group--ColumnGap: var(--pf-t--global--spacer--gap--text-to-element--default);
@@ -65,6 +84,66 @@
65
84
  .pf-v6-c-toolbar__item.pf-m-hidden {
66
85
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
67
86
  }
87
+ @media screen and (min-height: 0) {
88
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-sm-height,
89
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-sm-height,
90
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-sm-height {
91
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
92
+ }
93
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-sm-height,
94
+ .pf-v6-c-toolbar__group.pf-m-visible-on-sm-height,
95
+ .pf-v6-c-toolbar__item.pf-m-visible-on-sm-height {
96
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
97
+ }
98
+ }
99
+ @media screen and (min-height: 40rem) {
100
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-md-height,
101
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-md-height,
102
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-md-height {
103
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
104
+ }
105
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-md-height,
106
+ .pf-v6-c-toolbar__group.pf-m-visible-on-md-height,
107
+ .pf-v6-c-toolbar__item.pf-m-visible-on-md-height {
108
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
109
+ }
110
+ }
111
+ @media screen and (min-height: 48rem) {
112
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-lg-height,
113
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-lg-height,
114
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-lg-height {
115
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
116
+ }
117
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-lg-height,
118
+ .pf-v6-c-toolbar__group.pf-m-visible-on-lg-height,
119
+ .pf-v6-c-toolbar__item.pf-m-visible-on-lg-height {
120
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
121
+ }
122
+ }
123
+ @media screen and (min-height: 60rem) {
124
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-xl-height,
125
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-xl-height,
126
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-xl-height {
127
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
128
+ }
129
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-xl-height,
130
+ .pf-v6-c-toolbar__group.pf-m-visible-on-xl-height,
131
+ .pf-v6-c-toolbar__item.pf-m-visible-on-xl-height {
132
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
133
+ }
134
+ }
135
+ @media screen and (min-height: 80rem) {
136
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-2xl-height,
137
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-2xl-height,
138
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-2xl-height {
139
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
140
+ }
141
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-2xl-height,
142
+ .pf-v6-c-toolbar__group.pf-m-visible-on-2xl-height,
143
+ .pf-v6-c-toolbar__item.pf-m-visible-on-2xl-height {
144
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
145
+ }
146
+ }
68
147
  @media screen and (min-width: 36rem) {
69
148
  .pf-v6-c-toolbar__content-section.pf-m-hidden-on-sm,
70
149
  .pf-v6-c-toolbar__group.pf-m-hidden-on-sm,
@@ -136,13 +215,50 @@
136
215
  --pf-v6-hidden-visible--hidden--Display: none;
137
216
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
138
217
  display: var(--pf-v6-hidden-visible--Display);
139
- row-gap: var(--pf-v6-c-toolbar__content--RowGap);
140
- padding-inline-start: var(--pf-v6-c-toolbar__content--PaddingInlineStart);
141
- padding-inline-end: var(--pf-v6-c-toolbar__content--PaddingInlineEnd);
142
218
  }
143
219
  .pf-v6-c-toolbar__content.pf-m-hidden {
144
220
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
145
221
  }
222
+ @media screen and (min-height: 0) {
223
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-sm-height {
224
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
225
+ }
226
+ .pf-v6-c-toolbar__content.pf-m-visible-on-sm-height {
227
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
228
+ }
229
+ }
230
+ @media screen and (min-height: 40rem) {
231
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-md-height {
232
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
233
+ }
234
+ .pf-v6-c-toolbar__content.pf-m-visible-on-md-height {
235
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
236
+ }
237
+ }
238
+ @media screen and (min-height: 48rem) {
239
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-lg-height {
240
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
241
+ }
242
+ .pf-v6-c-toolbar__content.pf-m-visible-on-lg-height {
243
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
244
+ }
245
+ }
246
+ @media screen and (min-height: 60rem) {
247
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-xl-height {
248
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
249
+ }
250
+ .pf-v6-c-toolbar__content.pf-m-visible-on-xl-height {
251
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
252
+ }
253
+ }
254
+ @media screen and (min-height: 80rem) {
255
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-2xl-height {
256
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
257
+ }
258
+ .pf-v6-c-toolbar__content.pf-m-visible-on-2xl-height {
259
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
260
+ }
261
+ }
146
262
  @media screen and (min-width: 36rem) {
147
263
  .pf-v6-c-toolbar__content.pf-m-hidden-on-sm {
148
264
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
@@ -183,6 +299,11 @@
183
299
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
184
300
  }
185
301
  }
302
+ .pf-v6-c-toolbar__content {
303
+ row-gap: var(--pf-v6-c-toolbar__content--RowGap);
304
+ padding-inline-start: var(--pf-v6-c-toolbar__content--PaddingInlineStart);
305
+ padding-inline-end: var(--pf-v6-c-toolbar__content--PaddingInlineEnd);
306
+ }
186
307
 
187
308
  .pf-v6-c-toolbar__content-section {
188
309
  flex-wrap: wrap;
@@ -213,6 +334,35 @@
213
334
  border-block-end: var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor);
214
335
  box-shadow: var(--pf-v6-c-toolbar--m-sticky--BoxShadow);
215
336
  }
337
+ .pf-v6-c-toolbar.pf-m-sticky-base {
338
+ --pf-v6-c-toolbar--BackgroundColor: var(--pf-v6-c-toolbar--m-sticky--BackgroundColor);
339
+ position: sticky;
340
+ inset-block-start: 0;
341
+ z-index: var(--pf-v6-c-toolbar--m-sticky--ZIndex);
342
+ padding-block-start: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockStart);
343
+ padding-block-end: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd);
344
+ padding-inline-start: var(--pf-v6-c-toolbar--m-sticky--PaddingInlineStart);
345
+ padding-inline-end: var(--pf-v6-c-toolbar--m-sticky--PaddingInlineEnd);
346
+ background: transparent;
347
+ border-radius: inherit;
348
+ }
349
+ .pf-v6-c-toolbar.pf-m-sticky-base::before {
350
+ position: absolute;
351
+ inset: 0;
352
+ z-index: -1;
353
+ content: "";
354
+ background: var(--pf-v6-c-toolbar--BackgroundColor);
355
+ border-block-end: var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor);
356
+ border-radius: var(--pf-v6-c-toolbar--m-sticky--BorderRadius);
357
+ box-shadow: var(--pf-v6-c-toolbar--m-sticky--BoxShadow);
358
+ opacity: 0;
359
+ transition-timing-function: var(--pf-v6-c-toolbar--m-sticky--TransitionTimingFunction--BackgroundColor);
360
+ transition-duration: var(--pf-v6-c-toolbar--m-sticky--TransitionDuration--BackgroundColor);
361
+ transition-property: opacity;
362
+ }
363
+ .pf-v6-c-toolbar.pf-m-sticky-stuck::before {
364
+ opacity: 1;
365
+ }
216
366
  .pf-v6-c-toolbar.pf-m-static,
217
367
  .pf-v6-c-toolbar.pf-m-static .pf-v6-c-toolbar__content {
218
368
  position: static;
@@ -243,14 +393,19 @@
243
393
  .pf-v6-c-toolbar.pf-m-no-background {
244
394
  --pf-v6-c-toolbar--BackgroundColor: var(--pf-v6-c-toolbar--m-no-background--BackgroundColor);
245
395
  }
396
+ .pf-v6-c-toolbar.pf-m-vertical {
397
+ --pf-v6-c-toolbar--child--m-align-end--MarginBlockStart: auto;
398
+ --pf-v6-c-toolbar--child--m-align-end--MarginInlineStart: 0;
399
+ --pf-v6-c-toolbar--PaddingBlockEnd: 0;
400
+ --pf-v6-c-toolbar--Width: var(--pf-v6-c-toolbar--m-vertical--Width);
401
+ }
402
+ .pf-v6-c-toolbar.pf-m-vertical :is(.pf-v6-c-toolbar__group, .pf-v6-c-toolbar__item, .pf-v6-c-toolbar__content-section) {
403
+ flex-direction: column;
404
+ align-items: center;
405
+ }
246
406
 
247
407
  .pf-v6-c-toolbar__item {
248
408
  --pf-v6-c-toolbar__item--Width--base: var(--pf-v6-c-toolbar__item--Width);
249
- --pf-v6-c-toolbar__item--MinWidth--base: var(--pf-v6-c-toolbar__item--MinWidth);
250
- row-gap: var(--pf-v6-c-toolbar__item--RowGap);
251
- column-gap: var(--pf-v6-c-toolbar__item--ColumnGap);
252
- width: var(--pf-v6-c-toolbar__item--Width--base);
253
- min-width: var(--pf-v6-c-toolbar__item--MinWidth--base);
254
409
  }
255
410
  @media (min-width: 36rem) {
256
411
  .pf-v6-c-toolbar__item {
@@ -277,6 +432,9 @@
277
432
  --pf-v6-c-toolbar__item--Width--base: var(--pf-v6-c-toolbar__item--Width-on-2xl, var(--pf-v6-c-toolbar__item--Width-on-xl, var(--pf-v6-c-toolbar__item--Width-on-lg, var(--pf-v6-c-toolbar__item--Width-on-md, var(--pf-v6-c-toolbar__item--Width-on-sm, var(--pf-v6-c-toolbar__item--Width))))));
278
433
  }
279
434
  }
435
+ .pf-v6-c-toolbar__item {
436
+ --pf-v6-c-toolbar__item--MinWidth--base: var(--pf-v6-c-toolbar__item--MinWidth);
437
+ }
280
438
  @media (min-width: 36rem) {
281
439
  .pf-v6-c-toolbar__item {
282
440
  --pf-v6-c-toolbar__item--MinWidth--base: var(--pf-v6-c-toolbar__item--MinWidth-on-sm, var(--pf-v6-c-toolbar__item--MinWidth));
@@ -302,6 +460,12 @@
302
460
  --pf-v6-c-toolbar__item--MinWidth--base: var(--pf-v6-c-toolbar__item--MinWidth-on-2xl, var(--pf-v6-c-toolbar__item--MinWidth-on-xl, var(--pf-v6-c-toolbar__item--MinWidth-on-lg, var(--pf-v6-c-toolbar__item--MinWidth-on-md, var(--pf-v6-c-toolbar__item--MinWidth-on-sm, var(--pf-v6-c-toolbar__item--MinWidth))))));
303
461
  }
304
462
  }
463
+ .pf-v6-c-toolbar__item {
464
+ row-gap: var(--pf-v6-c-toolbar__item--RowGap);
465
+ column-gap: var(--pf-v6-c-toolbar__item--ColumnGap);
466
+ width: var(--pf-v6-c-toolbar__item--Width--base);
467
+ min-width: var(--pf-v6-c-toolbar__item--MinWidth--base);
468
+ }
305
469
  .pf-v6-c-toolbar__item.pf-m-expand-all.pf-m-expanded {
306
470
  --pf-v6-c-toolbar__expand-all-icon--Rotate: var(--pf-v6-c-toolbar__item--m-expand-all--m-expanded__expand-all-icon--Rotate);
307
471
  }
@@ -322,6 +486,9 @@
322
486
  row-gap: var(--pf-v6-c-toolbar__group--RowGap);
323
487
  column-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
324
488
  }
489
+ .pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group {
490
+ row-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
491
+ }
325
492
  .pf-v6-c-toolbar__group.pf-m-filter-group {
326
493
  column-gap: var(--pf-v6-c-toolbar__group--m-filter-group--ColumnGap);
327
494
  }
@@ -333,9 +500,15 @@
333
500
  .pf-v6-c-toolbar__group.pf-m-action-group {
334
501
  column-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
335
502
  }
503
+ .pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group {
504
+ row-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
505
+ }
336
506
  .pf-v6-c-toolbar__group.pf-m-action-group-plain {
337
507
  column-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
338
508
  }
509
+ .pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group-plain {
510
+ row-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
511
+ }
339
512
  .pf-v6-c-toolbar__group.pf-m-action-group-inline {
340
513
  flex-wrap: wrap;
341
514
  column-gap: var(--pf-v6-c-toolbar__group--m-action-group-inline--ColumnGap);
@@ -412,7 +585,8 @@
412
585
  }
413
586
  .pf-v6-c-toolbar__group.pf-m-align-end,
414
587
  .pf-v6-c-toolbar__item.pf-m-align-end {
415
- margin-inline-start: auto;
588
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
589
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
416
590
  }
417
591
  .pf-v6-c-toolbar__group.pf-m-flex-grow,
418
592
  .pf-v6-c-toolbar__item.pf-m-flex-grow {
@@ -667,7 +841,8 @@
667
841
  }
668
842
  .pf-v6-c-toolbar__group.pf-m-align-end-on-sm,
669
843
  .pf-v6-c-toolbar__item.pf-m-align-end-on-sm {
670
- margin-inline-start: auto;
844
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
845
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
671
846
  }
672
847
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-sm,
673
848
  .pf-v6-c-toolbar__item.pf-m-flex-grow-on-sm {
@@ -919,7 +1094,8 @@
919
1094
  }
920
1095
  .pf-v6-c-toolbar__group.pf-m-align-end-on-md,
921
1096
  .pf-v6-c-toolbar__item.pf-m-align-end-on-md {
922
- margin-inline-start: auto;
1097
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
1098
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
923
1099
  }
924
1100
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-md,
925
1101
  .pf-v6-c-toolbar__item.pf-m-flex-grow-on-md {
@@ -1171,7 +1347,8 @@
1171
1347
  }
1172
1348
  .pf-v6-c-toolbar__group.pf-m-align-end-on-lg,
1173
1349
  .pf-v6-c-toolbar__item.pf-m-align-end-on-lg {
1174
- margin-inline-start: auto;
1350
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
1351
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
1175
1352
  }
1176
1353
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-lg,
1177
1354
  .pf-v6-c-toolbar__item.pf-m-flex-grow-on-lg {
@@ -1423,7 +1600,8 @@
1423
1600
  }
1424
1601
  .pf-v6-c-toolbar__group.pf-m-align-end-on-xl,
1425
1602
  .pf-v6-c-toolbar__item.pf-m-align-end-on-xl {
1426
- margin-inline-start: auto;
1603
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
1604
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
1427
1605
  }
1428
1606
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-xl,
1429
1607
  .pf-v6-c-toolbar__item.pf-m-flex-grow-on-xl {
@@ -1675,7 +1853,8 @@
1675
1853
  }
1676
1854
  .pf-v6-c-toolbar__group.pf-m-align-end-on-2xl,
1677
1855
  .pf-v6-c-toolbar__item.pf-m-align-end-on-2xl {
1678
- margin-inline-start: auto;
1856
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
1857
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
1679
1858
  }
1680
1859
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-2xl,
1681
1860
  .pf-v6-c-toolbar__item.pf-m-flex-grow-on-2xl {
@@ -3,6 +3,16 @@ declare const _default: {
3
3
  "dirRtl": "pf-v6-m-dir-rtl",
4
4
  "modifiers": {
5
5
  "hidden": "pf-m-hidden",
6
+ "hiddenOnSmHeight": "pf-m-hidden-on-sm-height",
7
+ "visibleOnSmHeight": "pf-m-visible-on-sm-height",
8
+ "hiddenOnMdHeight": "pf-m-hidden-on-md-height",
9
+ "visibleOnMdHeight": "pf-m-visible-on-md-height",
10
+ "hiddenOnLgHeight": "pf-m-hidden-on-lg-height",
11
+ "visibleOnLgHeight": "pf-m-visible-on-lg-height",
12
+ "hiddenOnXlHeight": "pf-m-hidden-on-xl-height",
13
+ "visibleOnXlHeight": "pf-m-visible-on-xl-height",
14
+ "hiddenOn_2xlHeight": "pf-m-hidden-on-2xl-height",
15
+ "visibleOn_2xlHeight": "pf-m-visible-on-2xl-height",
6
16
  "hiddenOnSm": "pf-m-hidden-on-sm",
7
17
  "visibleOnSm": "pf-m-visible-on-sm",
8
18
  "hiddenOnMd": "pf-m-hidden-on-md",
@@ -14,12 +24,15 @@ declare const _default: {
14
24
  "hiddenOn_2xl": "pf-m-hidden-on-2xl",
15
25
  "visibleOn_2xl": "pf-m-visible-on-2xl",
16
26
  "sticky": "pf-m-sticky",
27
+ "stickyBase": "pf-m-sticky-base",
28
+ "stickyStuck": "pf-m-sticky-stuck",
17
29
  "static": "pf-m-static",
18
30
  "fullHeight": "pf-m-full-height",
19
31
  "noPadding": "pf-m-no-padding",
20
32
  "primary": "pf-m-primary",
21
33
  "secondary": "pf-m-secondary",
22
34
  "noBackground": "pf-m-no-background",
35
+ "vertical": "pf-m-vertical",
23
36
  "expandAll": "pf-m-expand-all",
24
37
  "expanded": "pf-m-expanded",
25
38
  "label": "pf-m-label",
@@ -357,6 +370,7 @@ declare const _default: {
357
370
  "hideOn_2xl": "pf-m-hide-on-2xl"
358
371
  },
359
372
  "pagination": "pf-v6-c-pagination",
373
+ "themeGlass": "pf-v6-theme-glass",
360
374
  "toolbar": "pf-v6-c-toolbar",
361
375
  "toolbarContent": "pf-v6-c-toolbar__content",
362
376
  "toolbarContentSection": "pf-v6-c-toolbar__content-section",
@@ -5,6 +5,16 @@ exports.default = {
5
5
  "dirRtl": "pf-v6-m-dir-rtl",
6
6
  "modifiers": {
7
7
  "hidden": "pf-m-hidden",
8
+ "hiddenOnSmHeight": "pf-m-hidden-on-sm-height",
9
+ "visibleOnSmHeight": "pf-m-visible-on-sm-height",
10
+ "hiddenOnMdHeight": "pf-m-hidden-on-md-height",
11
+ "visibleOnMdHeight": "pf-m-visible-on-md-height",
12
+ "hiddenOnLgHeight": "pf-m-hidden-on-lg-height",
13
+ "visibleOnLgHeight": "pf-m-visible-on-lg-height",
14
+ "hiddenOnXlHeight": "pf-m-hidden-on-xl-height",
15
+ "visibleOnXlHeight": "pf-m-visible-on-xl-height",
16
+ "hiddenOn_2xlHeight": "pf-m-hidden-on-2xl-height",
17
+ "visibleOn_2xlHeight": "pf-m-visible-on-2xl-height",
8
18
  "hiddenOnSm": "pf-m-hidden-on-sm",
9
19
  "visibleOnSm": "pf-m-visible-on-sm",
10
20
  "hiddenOnMd": "pf-m-hidden-on-md",
@@ -16,12 +26,15 @@ exports.default = {
16
26
  "hiddenOn_2xl": "pf-m-hidden-on-2xl",
17
27
  "visibleOn_2xl": "pf-m-visible-on-2xl",
18
28
  "sticky": "pf-m-sticky",
29
+ "stickyBase": "pf-m-sticky-base",
30
+ "stickyStuck": "pf-m-sticky-stuck",
19
31
  "static": "pf-m-static",
20
32
  "fullHeight": "pf-m-full-height",
21
33
  "noPadding": "pf-m-no-padding",
22
34
  "primary": "pf-m-primary",
23
35
  "secondary": "pf-m-secondary",
24
36
  "noBackground": "pf-m-no-background",
37
+ "vertical": "pf-m-vertical",
25
38
  "expandAll": "pf-m-expand-all",
26
39
  "expanded": "pf-m-expanded",
27
40
  "label": "pf-m-label",
@@ -359,6 +372,7 @@ exports.default = {
359
372
  "hideOn_2xl": "pf-m-hide-on-2xl"
360
373
  },
361
374
  "pagination": "pf-v6-c-pagination",
375
+ "themeGlass": "pf-v6-theme-glass",
362
376
  "toolbar": "pf-v6-c-toolbar",
363
377
  "toolbarContent": "pf-v6-c-toolbar__content",
364
378
  "toolbarContentSection": "pf-v6-c-toolbar__content-section",
@@ -3,6 +3,16 @@ export default {
3
3
  "dirRtl": "pf-v6-m-dir-rtl",
4
4
  "modifiers": {
5
5
  "hidden": "pf-m-hidden",
6
+ "hiddenOnSmHeight": "pf-m-hidden-on-sm-height",
7
+ "visibleOnSmHeight": "pf-m-visible-on-sm-height",
8
+ "hiddenOnMdHeight": "pf-m-hidden-on-md-height",
9
+ "visibleOnMdHeight": "pf-m-visible-on-md-height",
10
+ "hiddenOnLgHeight": "pf-m-hidden-on-lg-height",
11
+ "visibleOnLgHeight": "pf-m-visible-on-lg-height",
12
+ "hiddenOnXlHeight": "pf-m-hidden-on-xl-height",
13
+ "visibleOnXlHeight": "pf-m-visible-on-xl-height",
14
+ "hiddenOn_2xlHeight": "pf-m-hidden-on-2xl-height",
15
+ "visibleOn_2xlHeight": "pf-m-visible-on-2xl-height",
6
16
  "hiddenOnSm": "pf-m-hidden-on-sm",
7
17
  "visibleOnSm": "pf-m-visible-on-sm",
8
18
  "hiddenOnMd": "pf-m-hidden-on-md",
@@ -14,12 +24,15 @@ export default {
14
24
  "hiddenOn_2xl": "pf-m-hidden-on-2xl",
15
25
  "visibleOn_2xl": "pf-m-visible-on-2xl",
16
26
  "sticky": "pf-m-sticky",
27
+ "stickyBase": "pf-m-sticky-base",
28
+ "stickyStuck": "pf-m-sticky-stuck",
17
29
  "static": "pf-m-static",
18
30
  "fullHeight": "pf-m-full-height",
19
31
  "noPadding": "pf-m-no-padding",
20
32
  "primary": "pf-m-primary",
21
33
  "secondary": "pf-m-secondary",
22
34
  "noBackground": "pf-m-no-background",
35
+ "vertical": "pf-m-vertical",
23
36
  "expandAll": "pf-m-expand-all",
24
37
  "expanded": "pf-m-expanded",
25
38
  "label": "pf-m-label",
@@ -357,6 +370,7 @@ export default {
357
370
  "hideOn_2xl": "pf-m-hide-on-2xl"
358
371
  },
359
372
  "pagination": "pf-v6-c-pagination",
373
+ "themeGlass": "pf-v6-theme-glass",
360
374
  "toolbar": "pf-v6-c-toolbar",
361
375
  "toolbarContent": "pf-v6-c-toolbar__content",
362
376
  "toolbarContentSection": "pf-v6-c-toolbar__content-section",