@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
@@ -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
  },
@@ -40,10 +40,11 @@
40
40
  --pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
41
41
  --pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
42
42
  --pf-v6-c-toolbar--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
43
+ --pf-v6-c-toolbar--m-vertical--Width: fit-content;
43
44
  --pf-v6-c-toolbar__expand-all-icon--Rotate: 0;
44
45
  --pf-v6-c-toolbar__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
45
46
  --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;
47
+ --pf-v6-c-toolbar__item--m-expand-all--m-expanded__expand-all-icon--Rotate: -180deg;
47
48
  --pf-v6-c-toolbar__group--m-filter-group--ColumnGap: var(--pf-t--global--spacer--gap--control-to-control--default);
48
49
  --pf-v6-c-toolbar__item--m-label--FontWeight: var(--pf-t--global--font--weight--body--bold);
49
50
  --pf-v6-c-toolbar__group--m-label-group--ColumnGap: var(--pf-t--global--spacer--gap--text-to-element--default);
@@ -65,6 +66,66 @@
65
66
  .pf-v6-c-toolbar__item.pf-m-hidden {
66
67
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
67
68
  }
69
+ @media screen and (min-height: 0) {
70
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-sm-height,
71
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-sm-height,
72
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-sm-height {
73
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
74
+ }
75
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-sm-height,
76
+ .pf-v6-c-toolbar__group.pf-m-visible-on-sm-height,
77
+ .pf-v6-c-toolbar__item.pf-m-visible-on-sm-height {
78
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
79
+ }
80
+ }
81
+ @media screen and (min-height: 40rem) {
82
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-md-height,
83
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-md-height,
84
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-md-height {
85
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
86
+ }
87
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-md-height,
88
+ .pf-v6-c-toolbar__group.pf-m-visible-on-md-height,
89
+ .pf-v6-c-toolbar__item.pf-m-visible-on-md-height {
90
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
91
+ }
92
+ }
93
+ @media screen and (min-height: 48rem) {
94
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-lg-height,
95
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-lg-height,
96
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-lg-height {
97
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
98
+ }
99
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-lg-height,
100
+ .pf-v6-c-toolbar__group.pf-m-visible-on-lg-height,
101
+ .pf-v6-c-toolbar__item.pf-m-visible-on-lg-height {
102
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
103
+ }
104
+ }
105
+ @media screen and (min-height: 60rem) {
106
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-xl-height,
107
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-xl-height,
108
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-xl-height {
109
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
110
+ }
111
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-xl-height,
112
+ .pf-v6-c-toolbar__group.pf-m-visible-on-xl-height,
113
+ .pf-v6-c-toolbar__item.pf-m-visible-on-xl-height {
114
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
115
+ }
116
+ }
117
+ @media screen and (min-height: 80rem) {
118
+ .pf-v6-c-toolbar__content-section.pf-m-hidden-on-2xl-height,
119
+ .pf-v6-c-toolbar__group.pf-m-hidden-on-2xl-height,
120
+ .pf-v6-c-toolbar__item.pf-m-hidden-on-2xl-height {
121
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
122
+ }
123
+ .pf-v6-c-toolbar__content-section.pf-m-visible-on-2xl-height,
124
+ .pf-v6-c-toolbar__group.pf-m-visible-on-2xl-height,
125
+ .pf-v6-c-toolbar__item.pf-m-visible-on-2xl-height {
126
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
127
+ }
128
+ }
68
129
  @media screen and (min-width: 36rem) {
69
130
  .pf-v6-c-toolbar__content-section.pf-m-hidden-on-sm,
70
131
  .pf-v6-c-toolbar__group.pf-m-hidden-on-sm,
@@ -136,13 +197,50 @@
136
197
  --pf-v6-hidden-visible--hidden--Display: none;
137
198
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
138
199
  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
200
  }
143
201
  .pf-v6-c-toolbar__content.pf-m-hidden {
144
202
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
145
203
  }
204
+ @media screen and (min-height: 0) {
205
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-sm-height {
206
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
207
+ }
208
+ .pf-v6-c-toolbar__content.pf-m-visible-on-sm-height {
209
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
210
+ }
211
+ }
212
+ @media screen and (min-height: 40rem) {
213
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-md-height {
214
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
215
+ }
216
+ .pf-v6-c-toolbar__content.pf-m-visible-on-md-height {
217
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
218
+ }
219
+ }
220
+ @media screen and (min-height: 48rem) {
221
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-lg-height {
222
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
223
+ }
224
+ .pf-v6-c-toolbar__content.pf-m-visible-on-lg-height {
225
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
226
+ }
227
+ }
228
+ @media screen and (min-height: 60rem) {
229
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-xl-height {
230
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
231
+ }
232
+ .pf-v6-c-toolbar__content.pf-m-visible-on-xl-height {
233
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
234
+ }
235
+ }
236
+ @media screen and (min-height: 80rem) {
237
+ .pf-v6-c-toolbar__content.pf-m-hidden-on-2xl-height {
238
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
239
+ }
240
+ .pf-v6-c-toolbar__content.pf-m-visible-on-2xl-height {
241
+ --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
242
+ }
243
+ }
146
244
  @media screen and (min-width: 36rem) {
147
245
  .pf-v6-c-toolbar__content.pf-m-hidden-on-sm {
148
246
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
@@ -183,6 +281,11 @@
183
281
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
184
282
  }
185
283
  }
284
+ .pf-v6-c-toolbar__content {
285
+ row-gap: var(--pf-v6-c-toolbar__content--RowGap);
286
+ padding-inline-start: var(--pf-v6-c-toolbar__content--PaddingInlineStart);
287
+ padding-inline-end: var(--pf-v6-c-toolbar__content--PaddingInlineEnd);
288
+ }
186
289
 
187
290
  .pf-v6-c-toolbar__content-section {
188
291
  flex-wrap: wrap;
@@ -243,14 +346,19 @@
243
346
  .pf-v6-c-toolbar.pf-m-no-background {
244
347
  --pf-v6-c-toolbar--BackgroundColor: var(--pf-v6-c-toolbar--m-no-background--BackgroundColor);
245
348
  }
349
+ .pf-v6-c-toolbar.pf-m-vertical {
350
+ --pf-v6-c-toolbar--child--m-align-end--MarginBlockStart: auto;
351
+ --pf-v6-c-toolbar--child--m-align-end--MarginInlineStart: 0;
352
+ --pf-v6-c-toolbar--PaddingBlockEnd: 0;
353
+ --pf-v6-c-toolbar--Width: var(--pf-v6-c-toolbar--m-vertical--Width);
354
+ }
355
+ .pf-v6-c-toolbar.pf-m-vertical :is(.pf-v6-c-toolbar__group, .pf-v6-c-toolbar__item, .pf-v6-c-toolbar__content-section) {
356
+ flex-direction: column;
357
+ align-items: center;
358
+ }
246
359
 
247
360
  .pf-v6-c-toolbar__item {
248
361
  --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
362
  }
255
363
  @media (min-width: 36rem) {
256
364
  .pf-v6-c-toolbar__item {
@@ -277,6 +385,9 @@
277
385
  --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
386
  }
279
387
  }
388
+ .pf-v6-c-toolbar__item {
389
+ --pf-v6-c-toolbar__item--MinWidth--base: var(--pf-v6-c-toolbar__item--MinWidth);
390
+ }
280
391
  @media (min-width: 36rem) {
281
392
  .pf-v6-c-toolbar__item {
282
393
  --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 +413,12 @@
302
413
  --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
414
  }
304
415
  }
416
+ .pf-v6-c-toolbar__item {
417
+ row-gap: var(--pf-v6-c-toolbar__item--RowGap);
418
+ column-gap: var(--pf-v6-c-toolbar__item--ColumnGap);
419
+ width: var(--pf-v6-c-toolbar__item--Width--base);
420
+ min-width: var(--pf-v6-c-toolbar__item--MinWidth--base);
421
+ }
305
422
  .pf-v6-c-toolbar__item.pf-m-expand-all.pf-m-expanded {
306
423
  --pf-v6-c-toolbar__expand-all-icon--Rotate: var(--pf-v6-c-toolbar__item--m-expand-all--m-expanded__expand-all-icon--Rotate);
307
424
  }
@@ -322,6 +439,9 @@
322
439
  row-gap: var(--pf-v6-c-toolbar__group--RowGap);
323
440
  column-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
324
441
  }
442
+ .pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group {
443
+ row-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
444
+ }
325
445
  .pf-v6-c-toolbar__group.pf-m-filter-group {
326
446
  column-gap: var(--pf-v6-c-toolbar__group--m-filter-group--ColumnGap);
327
447
  }
@@ -333,9 +453,15 @@
333
453
  .pf-v6-c-toolbar__group.pf-m-action-group {
334
454
  column-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
335
455
  }
456
+ .pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group {
457
+ row-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
458
+ }
336
459
  .pf-v6-c-toolbar__group.pf-m-action-group-plain {
337
460
  column-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
338
461
  }
462
+ .pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group-plain {
463
+ row-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
464
+ }
339
465
  .pf-v6-c-toolbar__group.pf-m-action-group-inline {
340
466
  flex-wrap: wrap;
341
467
  column-gap: var(--pf-v6-c-toolbar__group--m-action-group-inline--ColumnGap);
@@ -412,7 +538,8 @@
412
538
  }
413
539
  .pf-v6-c-toolbar__group.pf-m-align-end,
414
540
  .pf-v6-c-toolbar__item.pf-m-align-end {
415
- margin-inline-start: auto;
541
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
542
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
416
543
  }
417
544
  .pf-v6-c-toolbar__group.pf-m-flex-grow,
418
545
  .pf-v6-c-toolbar__item.pf-m-flex-grow {
@@ -667,7 +794,8 @@
667
794
  }
668
795
  .pf-v6-c-toolbar__group.pf-m-align-end-on-sm,
669
796
  .pf-v6-c-toolbar__item.pf-m-align-end-on-sm {
670
- margin-inline-start: auto;
797
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
798
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
671
799
  }
672
800
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-sm,
673
801
  .pf-v6-c-toolbar__item.pf-m-flex-grow-on-sm {
@@ -919,7 +1047,8 @@
919
1047
  }
920
1048
  .pf-v6-c-toolbar__group.pf-m-align-end-on-md,
921
1049
  .pf-v6-c-toolbar__item.pf-m-align-end-on-md {
922
- margin-inline-start: auto;
1050
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
1051
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
923
1052
  }
924
1053
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-md,
925
1054
  .pf-v6-c-toolbar__item.pf-m-flex-grow-on-md {
@@ -1171,7 +1300,8 @@
1171
1300
  }
1172
1301
  .pf-v6-c-toolbar__group.pf-m-align-end-on-lg,
1173
1302
  .pf-v6-c-toolbar__item.pf-m-align-end-on-lg {
1174
- margin-inline-start: auto;
1303
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
1304
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
1175
1305
  }
1176
1306
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-lg,
1177
1307
  .pf-v6-c-toolbar__item.pf-m-flex-grow-on-lg {
@@ -1423,7 +1553,8 @@
1423
1553
  }
1424
1554
  .pf-v6-c-toolbar__group.pf-m-align-end-on-xl,
1425
1555
  .pf-v6-c-toolbar__item.pf-m-align-end-on-xl {
1426
- margin-inline-start: auto;
1556
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
1557
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
1427
1558
  }
1428
1559
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-xl,
1429
1560
  .pf-v6-c-toolbar__item.pf-m-flex-grow-on-xl {
@@ -1675,7 +1806,8 @@
1675
1806
  }
1676
1807
  .pf-v6-c-toolbar__group.pf-m-align-end-on-2xl,
1677
1808
  .pf-v6-c-toolbar__item.pf-m-align-end-on-2xl {
1678
- margin-inline-start: auto;
1809
+ margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
1810
+ margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
1679
1811
  }
1680
1812
  .pf-v6-c-toolbar__group.pf-m-flex-grow-on-2xl,
1681
1813
  .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",
@@ -20,6 +30,7 @@ declare const _default: {
20
30
  "primary": "pf-m-primary",
21
31
  "secondary": "pf-m-secondary",
22
32
  "noBackground": "pf-m-no-background",
33
+ "vertical": "pf-m-vertical",
23
34
  "expandAll": "pf-m-expand-all",
24
35
  "expanded": "pf-m-expanded",
25
36
  "label": "pf-m-label",
@@ -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",
@@ -22,6 +32,7 @@ exports.default = {
22
32
  "primary": "pf-m-primary",
23
33
  "secondary": "pf-m-secondary",
24
34
  "noBackground": "pf-m-no-background",
35
+ "vertical": "pf-m-vertical",
25
36
  "expandAll": "pf-m-expand-all",
26
37
  "expanded": "pf-m-expanded",
27
38
  "label": "pf-m-label",
@@ -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",
@@ -20,6 +30,7 @@ export default {
20
30
  "primary": "pf-m-primary",
21
31
  "secondary": "pf-m-secondary",
22
32
  "noBackground": "pf-m-no-background",
33
+ "vertical": "pf-m-vertical",
23
34
  "expandAll": "pf-m-expand-all",
24
35
  "expanded": "pf-m-expanded",
25
36
  "label": "pf-m-label",
@@ -30,6 +30,15 @@
30
30
  --pf-v6-c-tree-view--m-expanded__list--Opacity: 1;
31
31
  --pf-v6-c-tree-view__list--TranslateY: 0;
32
32
  --pf-v6-c-tree-view--m-expanded__list--TranslateY: 0;
33
+ }
34
+ @media screen and (prefers-reduced-motion: no-preference) {
35
+ .pf-v6-c-tree-view {
36
+ --pf-v6-c-tree-view__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
37
+ --pf-v6-c-tree-view__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
38
+ --pf-v6-c-tree-view__list--TranslateY: -.5rem;
39
+ }
40
+ }
41
+ .pf-v6-c-tree-view {
33
42
  --pf-v6-c-tree-view__list-item__list-item__node-toggle--InsetBlockStart: var(--pf-v6-c-tree-view__node--PaddingBlockStart);
34
43
  --pf-v6-c-tree-view__list-item__list-item__node-toggle--InsetInlineStart: var(--pf-v6-c-tree-view__node--PaddingInlineStart);
35
44
  --pf-v6-c-tree-view__list-item__list-item__node-toggle--TranslateX: -100%;
@@ -57,7 +66,10 @@
57
66
  --pf-v6-c-tree-view__node-icon--Color: var(--pf-t--global--icon--color--subtle);
58
67
  --pf-v6-c-tree-view__node-toggle-icon--base--Rotate: 0;
59
68
  --pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__node-toggle-icon--base--Rotate);
60
- --pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate: 90deg;
69
+ --pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate: -180deg;
70
+ --pf-v6-c-tree-view__node--m-disabled--Color: var(--pf-t--global--text--color--disabled);
71
+ --pf-v6-c-tree-view__node-icon--m-disabled--Color: var(--pf-t--global--icon--color--disabled);
72
+ --pf-v6-c-tree-view__node-toggle--m-disabled--Color: var(--pf-t--global--icon--color--disabled);
61
73
  --pf-v6-c-tree-view__node-text--max-lines: 1;
62
74
  --pf-v6-c-tree-view__node-title--FontWeight: var(--pf-t--global--font--weight--body--bold);
63
75
  --pf-v6-c-tree-view__action--MarginInlineEnd: var(--pf-t--global--spacer--md);
@@ -113,6 +125,12 @@
113
125
  --pf-v6-c-tree-view--m-compact__node-container--nested--PaddingInlineStart: var(--pf-t--global--spacer--lg);
114
126
  --pf-v6-c-tree-view--m-compact__node-container--nested--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
115
127
  --pf-v6-c-tree-view--m-compact__list-item--m-expanded__node-container--PaddingBlockEnd: 0;
128
+ --pf-v6-c-tree-view--m-compact__node-container--nested--Color: initial;
129
+ --pf-v6-c-tree-view--m-compact__node-container--m-disabled--nested--Color: var(--pf-t--global--text--color--on-disabled);
130
+ --pf-v6-c-tree-view--m-compact__node-icon--nested--Color: initial;
131
+ --pf-v6-c-tree-view--m-compact__node-icon--m-disabled--nested--Color: var(--pf-t--global--icon--color--on-disabled);
132
+ --pf-v6-c-tree-view--m-compact__node-toggle--nested--Color: initial;
133
+ --pf-v6-c-tree-view--m-compact__node-toggle--m-disabled--nested--Color: var(--pf-t--global--icon--color--on-disabled);
116
134
  --pf-v6-c-tree-view--m-no-background__node-container--BackgroundColor: transparent;
117
135
  --pf-v6-c-tree-view--m-compact--m-no-background--base-border--InsetInlineStart--offset: var(--pf-t--global--spacer--sm);
118
136
  --pf-v6-c-tree-view--m-compact--m-no-background--base-border--InsetInlineStart: calc(var(--pf-v6-c-tree-view__node--PaddingInlineStart) - var(--pf-v6-c-tree-view--m-compact--m-no-background--base-border--InsetInlineStart--offset));
@@ -122,13 +140,6 @@
122
140
  --pf-v6-c-tree-view--m-compact--m-no-background__node--nested--PaddingBlockEnd: 0;
123
141
  --pf-v6-c-tree-view--m-compact--m-no-background__node--before--InsetBlockStart: calc(var(--pf-v6-c-tree-view--m-compact__node-container--nested--PaddingBlockStart) + var(--pf-v6-c-tree-view--m-compact__node--nested--PaddingBlockStart) + 0.25rem);
124
142
  }
125
- @media screen and (prefers-reduced-motion: no-preference) {
126
- .pf-v6-c-tree-view {
127
- --pf-v6-c-tree-view__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
128
- --pf-v6-c-tree-view__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
129
- --pf-v6-c-tree-view__list--TranslateY: -.5rem;
130
- }
131
- }
132
143
 
133
144
  .pf-v6-c-tree-view.pf-m-compact .pf-v6-c-tree-view__list-item, .pf-v6-c-tree-view.pf-m-guides .pf-v6-c-tree-view__list-item {
134
145
  position: relative;
@@ -209,11 +220,16 @@
209
220
  padding-block-end: var(--pf-v6-c-tree-view--m-compact__node-container--nested--PaddingBlockEnd);
210
221
  padding-inline-start: var(--pf-v6-c-tree-view--m-compact__node-container--nested--PaddingInlineStart);
211
222
  padding-inline-end: var(--pf-v6-c-tree-view--m-compact__node-container--nested--PaddingInlineEnd);
223
+ color: var(--pf-v6-c-tree-view--m-compact__node-container--nested--Color, inherit);
212
224
  background-color: var(--pf-v6-c-tree-view--m-compact__node-container--nested--BackgroundColor);
213
225
  }
214
226
  .pf-v6-c-tree-view.pf-m-compact .pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__node-toggle {
215
227
  margin-inline-start: var(--pf-v6-c-tree-view--m-compact__node-toggle--nested--MarginInlineStart);
216
228
  margin-inline-end: var(--pf-v6-c-tree-view--m-compact__node-toggle--nested--MarginInlineEnd);
229
+ color: var(--pf-v6-c-tree-view--m-compact__node-toggle--nested--Color, inherit);
230
+ }
231
+ .pf-v6-c-tree-view.pf-m-compact .pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__node-icon {
232
+ color: var(--pf-v6-c-tree-view--m-compact__node-icon--nested--Color, inherit);
217
233
  }
218
234
  .pf-v6-c-tree-view.pf-m-compact .pf-v6-c-tree-view__node-container {
219
235
  padding-block-start: var(--pf-v6-c-tree-view--m-compact__node-container--PaddingBlockStart);
@@ -238,6 +254,13 @@
238
254
  }
239
255
  .pf-v6-c-tree-view.pf-m-no-background {
240
256
  --pf-v6-c-tree-view--m-compact__node-container--nested--BackgroundColor: var(--pf-v6-c-tree-view--m-no-background__node-container--BackgroundColor);
257
+ --pf-v6-c-tree-view--m-compact__node-container--m-disabled--nested--Color: initial;
258
+ --pf-v6-c-tree-view--m-compact__node-icon--m-disabled--nested--Color: initial;
259
+ --pf-v6-c-tree-view--m-compact__node-toggle--m-disabled--nested--Color: initial;
260
+ }
261
+
262
+ :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tree-view__node-toggle-icon {
263
+ scale: -1 1;
241
264
  }
242
265
 
243
266
  .pf-v6-c-tree-view__node-toggle-icon {
@@ -247,9 +270,6 @@
247
270
  transition: transform var(--pf-v6-c-tree-view__node-toggle-icon--TransitionDuration) var(--pf-v6-c-tree-view__node-toggle-icon--TransitionTimingFunction);
248
271
  transform: rotate(var(--pf-v6-c-tree-view__node-toggle-icon--Rotate));
249
272
  }
250
- :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tree-view__node-toggle-icon {
251
- scale: -1 1;
252
- }
253
273
 
254
274
  .pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list {
255
275
  max-height: 0;
@@ -313,6 +333,12 @@
313
333
  .pf-v6-c-tree-view__node .pf-v6-c-tree-view__node-count {
314
334
  margin-inline-start: var(--pf-v6-c-tree-view__node-count--MarginInlineStart);
315
335
  }
336
+ .pf-v6-c-tree-view__node.pf-m-disabled {
337
+ --pf-v6-c-tree-view__node--Color: var(--pf-v6-c-tree-view__node--m-disabled--Color);
338
+ --pf-v6-c-tree-view__node-icon--Color: var(--pf-v6-c-tree-view__node-icon--m-disabled--Color);
339
+ --pf-v6-c-tree-view--m-compact__node-container--nested--Color: var(--pf-v6-c-tree-view--m-compact__node-container--m-disabled--nested--Color);
340
+ --pf-v6-c-tree-view--m-compact__node-icon--nested--Color: var(--pf-v6-c-tree-view--m-compact__node-icon--m-disabled--nested--Color);
341
+ }
316
342
 
317
343
  .pf-v6-c-tree-view__node-container {
318
344
  display: var(--pf-v6-c-tree-view__node-container--Display);
@@ -355,6 +381,10 @@
355
381
  transform: translateX(calc(var(--pf-v6-c-tree-view__list-item__list-item__node-toggle--TranslateX) * var(--pf-v6-global--inverse--multiplier)));
356
382
  }
357
383
 
384
+ .pf-v6-c-tree-view__node-toggle.pf-m-disabled {
385
+ --pf-v6-c-tree-view__node-toggle--Color: var(--pf-v6-c-tree-view__node-toggle--m-disabled--Color);
386
+ }
387
+
358
388
  .pf-v6-c-tree-view__node-title.pf-m-truncate,
359
389
  .pf-v6-c-tree-view__node-text.pf-m-truncate {
360
390
  --pf-v6-c-tree-view__node-content--Overflow: hidden;
@@ -370,6 +400,10 @@
370
400
  white-space: nowrap;
371
401
  }
372
402
 
403
+ label.pf-v6-c-tree-view__node-text {
404
+ cursor: pointer;
405
+ }
406
+
373
407
  .pf-v6-c-tree-view__node-text {
374
408
  font-weight: inherit;
375
409
  color: inherit;
@@ -377,9 +411,6 @@
377
411
  background-color: transparent;
378
412
  border: 0;
379
413
  }
380
- label.pf-v6-c-tree-view__node-text {
381
- cursor: pointer;
382
- }
383
414
 
384
415
  .pf-v6-c-tree-view__node-title {
385
416
  font-weight: var(--pf-v6-c-tree-view__node-title--FontWeight);
@@ -7,6 +7,7 @@ declare const _default: {
7
7
  "expanded": "pf-m-expanded",
8
8
  "noBackground": "pf-m-no-background",
9
9
  "current": "pf-m-current",
10
+ "disabled": "pf-m-disabled",
10
11
  "truncate": "pf-m-truncate"
11
12
  },
12
13
  "treeView": "pf-v6-c-tree-view",
@@ -9,6 +9,7 @@ exports.default = {
9
9
  "expanded": "pf-m-expanded",
10
10
  "noBackground": "pf-m-no-background",
11
11
  "current": "pf-m-current",
12
+ "disabled": "pf-m-disabled",
12
13
  "truncate": "pf-m-truncate"
13
14
  },
14
15
  "treeView": "pf-v6-c-tree-view",