@patternfly/react-styles 6.5.0-prerelease.1 → 6.5.0-prerelease.11

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 (135) hide show
  1. package/CHANGELOG.md +48 -0
  2. package/README.md +1 -1
  3. package/css/components/AboutModalBox/about-modal-box.css +36 -26
  4. package/css/components/Accordion/accordion.css +16 -13
  5. package/css/components/Alert/alert.css +5 -4
  6. package/css/components/Avatar/avatar.css +12 -4
  7. package/css/components/BackgroundImage/background-image.css +6 -3
  8. package/css/components/Banner/banner.css +8 -6
  9. package/css/components/Brand/brand.css +3 -1
  10. package/css/components/Breadcrumb/breadcrumb.css +4 -3
  11. package/css/components/Button/button.css +21 -9
  12. package/css/components/CalendarMonth/calendar-month.css +4 -3
  13. package/css/components/Card/card.css +13 -6
  14. package/css/components/Card/card.d.ts +1 -0
  15. package/css/components/Card/card.js +1 -0
  16. package/css/components/Card/card.mjs +1 -0
  17. package/css/components/ClipboardCopy/clipboard-copy.css +4 -3
  18. package/css/components/CodeEditor/code-editor.css +1 -1
  19. package/css/components/Compass/compass.css +181 -72
  20. package/css/components/Compass/compass.d.ts +12 -5
  21. package/css/components/Compass/compass.js +12 -5
  22. package/css/components/Compass/compass.mjs +12 -5
  23. package/css/components/DataList/data-list.css +28 -21
  24. package/css/components/DescriptionList/description-list.css +7 -5
  25. package/css/components/Divider/divider.css +7 -5
  26. package/css/components/Drawer/drawer.css +110 -56
  27. package/css/components/Drawer/drawer.d.ts +2 -0
  28. package/css/components/Drawer/drawer.js +2 -0
  29. package/css/components/Drawer/drawer.mjs +2 -0
  30. package/css/components/DualListSelector/dual-list-selector.css +17 -11
  31. package/css/components/ExpandableSection/expandable-section.css +19 -14
  32. package/css/components/Form/form.css +1 -1
  33. package/css/components/FormControl/form-control.css +1 -1
  34. package/css/components/Hero/hero.css +74 -0
  35. package/css/components/Hero/hero.d.ts +11 -0
  36. package/css/components/Hero/hero.js +12 -0
  37. package/css/components/Hero/hero.mjs +10 -0
  38. package/css/components/JumpLinks/jump-links.css +4 -3
  39. package/css/components/Label/label-group.css +2 -2
  40. package/css/components/Label/label.css +4 -3
  41. package/css/components/Login/login.css +51 -37
  42. package/css/components/Masthead/masthead.css +70 -16
  43. package/css/components/Masthead/masthead.d.ts +1 -0
  44. package/css/components/Masthead/masthead.js +1 -0
  45. package/css/components/Masthead/masthead.mjs +1 -0
  46. package/css/components/Menu/menu.css +23 -14
  47. package/css/components/ModalBox/modal-box.css +9 -7
  48. package/css/components/Nav/nav.css +72 -9
  49. package/css/components/Nav/nav.d.ts +3 -1
  50. package/css/components/Nav/nav.js +3 -1
  51. package/css/components/Nav/nav.mjs +3 -1
  52. package/css/components/NotificationDrawer/notification-drawer.css +6 -6
  53. package/css/components/Page/page.css +55 -29
  54. package/css/components/Page/page.d.ts +2 -0
  55. package/css/components/Page/page.js +2 -0
  56. package/css/components/Page/page.mjs +2 -0
  57. package/css/components/Sidebar/sidebar.css +1 -1
  58. package/css/components/Skeleton/skeleton.css +16 -15
  59. package/css/components/Slider/slider.css +32 -18
  60. package/css/components/Switch/switch.css +3 -1
  61. package/css/components/Table/table-tree-view.css +4 -2
  62. package/css/components/Table/table.css +31 -27
  63. package/css/components/Tabs/tabs.css +17 -16
  64. package/css/components/Toolbar/toolbar.css +46 -14
  65. package/css/components/Toolbar/toolbar.d.ts +1 -0
  66. package/css/components/Toolbar/toolbar.js +1 -0
  67. package/css/components/Toolbar/toolbar.mjs +1 -0
  68. package/css/components/TreeView/tree-view.css +44 -13
  69. package/css/components/TreeView/tree-view.d.ts +1 -0
  70. package/css/components/TreeView/tree-view.js +1 -0
  71. package/css/components/TreeView/tree-view.mjs +1 -0
  72. package/css/components/Wizard/wizard.css +20 -16
  73. package/css/components/_index.css +1164 -592
  74. package/css/components/_index.d.ts +15 -3
  75. package/css/components/_index.js +15 -3
  76. package/css/components/_index.mjs +15 -3
  77. package/css/docs/components/Compass/examples/Compass.css +8 -2
  78. package/css/docs/components/Compass/examples/Compass.d.ts +4 -1
  79. package/css/docs/components/Compass/examples/Compass.js +4 -1
  80. package/css/docs/components/Compass/examples/Compass.mjs +4 -1
  81. package/css/docs/layouts/Bullseye/examples/Bullseye.css +2 -2
  82. package/css/docs/layouts/Bullseye/examples/Bullseye.d.ts +1 -1
  83. package/css/docs/layouts/Bullseye/examples/Bullseye.js +1 -1
  84. package/css/docs/layouts/Bullseye/examples/Bullseye.mjs +1 -1
  85. package/css/docs/layouts/Flex/examples/Flex.css +3 -3
  86. package/css/docs/layouts/Flex/examples/Flex.d.ts +2 -2
  87. package/css/docs/layouts/Flex/examples/Flex.js +2 -2
  88. package/css/docs/layouts/Flex/examples/Flex.mjs +2 -2
  89. package/css/docs/layouts/Gallery/examples/Gallery.css +2 -2
  90. package/css/docs/layouts/Gallery/examples/Gallery.d.ts +1 -1
  91. package/css/docs/layouts/Gallery/examples/Gallery.js +1 -1
  92. package/css/docs/layouts/Gallery/examples/Gallery.mjs +1 -1
  93. package/css/docs/layouts/Grid/examples/Grid.css +1 -1
  94. package/css/docs/layouts/Grid/examples/Grid.d.ts +1 -1
  95. package/css/docs/layouts/Grid/examples/Grid.js +1 -1
  96. package/css/docs/layouts/Grid/examples/Grid.mjs +1 -1
  97. package/css/docs/layouts/Level/examples/Level.css +3 -3
  98. package/css/docs/layouts/Level/examples/Level.d.ts +1 -1
  99. package/css/docs/layouts/Level/examples/Level.js +1 -1
  100. package/css/docs/layouts/Level/examples/Level.mjs +1 -1
  101. package/css/docs/layouts/Split/examples/Split.css +1 -1
  102. package/css/docs/layouts/Split/examples/Split.d.ts +1 -1
  103. package/css/docs/layouts/Split/examples/Split.js +1 -1
  104. package/css/docs/layouts/Split/examples/Split.mjs +1 -1
  105. package/css/docs/layouts/Stack/examples/Stack.css +3 -3
  106. package/css/docs/layouts/Stack/examples/Stack.d.ts +1 -1
  107. package/css/docs/layouts/Stack/examples/Stack.js +1 -1
  108. package/css/docs/layouts/Stack/examples/Stack.mjs +1 -1
  109. package/css/docs/utilities/Alignment/examples/Alignment.css +4 -4
  110. package/css/docs/utilities/Alignment/examples/Alignment.d.ts +1 -1
  111. package/css/docs/utilities/Alignment/examples/Alignment.js +1 -1
  112. package/css/docs/utilities/Alignment/examples/Alignment.mjs +1 -1
  113. package/css/docs/utilities/BoxShadow/examples/box-shadow.css +2 -2
  114. package/css/docs/utilities/BoxShadow/examples/box-shadow.d.ts +1 -1
  115. package/css/docs/utilities/BoxShadow/examples/box-shadow.js +1 -1
  116. package/css/docs/utilities/BoxShadow/examples/box-shadow.mjs +1 -1
  117. package/css/docs/utilities/Display/examples/Display.css +1 -1
  118. package/css/docs/utilities/Display/examples/Display.d.ts +1 -1
  119. package/css/docs/utilities/Display/examples/Display.js +1 -1
  120. package/css/docs/utilities/Display/examples/Display.mjs +1 -1
  121. package/css/docs/utilities/Flex/examples/Flex.css +7 -7
  122. package/css/docs/utilities/Flex/examples/Flex.d.ts +1 -1
  123. package/css/docs/utilities/Flex/examples/Flex.js +1 -1
  124. package/css/docs/utilities/Flex/examples/Flex.mjs +1 -1
  125. package/css/docs/utilities/Float/examples/Float.css +2 -2
  126. package/css/docs/utilities/Float/examples/Float.d.ts +1 -1
  127. package/css/docs/utilities/Float/examples/Float.js +1 -1
  128. package/css/docs/utilities/Float/examples/Float.mjs +1 -1
  129. package/css/docs/utilities/Spacing/examples/Spacing.css +2 -2
  130. package/css/docs/utilities/Spacing/examples/Spacing.d.ts +1 -1
  131. package/css/docs/utilities/Spacing/examples/Spacing.js +1 -1
  132. package/css/docs/utilities/Spacing/examples/Spacing.mjs +1 -1
  133. package/css/layouts/Gallery/gallery.css +6 -2
  134. package/css/layouts/_index.css +6 -2
  135. package/package.json +4 -4
@@ -1,4 +1,5 @@
1
1
  .pf-v6-c-drawer {
2
+ --pf-v6-c-drawer--m-pill--m-inline__main--Gap: var(--pf-t--global--spacer--inset--page-chrome);
2
3
  --pf-v6-c-drawer__section--BackgroundColor: var(--pf-t--global--background--color--primary--default);
3
4
  --pf-v6-c-drawer__section--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
4
5
  --pf-v6-c-drawer__content--FlexBasis: 100%;
@@ -29,6 +30,7 @@
29
30
  --pf-v6-c-drawer__panel--TransitionProperty: opacity, visibility, transform;
30
31
  --pf-v6-c-drawer__panel--Opacity: 0;
31
32
  --pf-v6-c-drawer--m-expanded__panel--Opacity: 1;
33
+ --pf-v6-c-drawer--m-expanded__panel--inset: 0px;
32
34
  --pf-v6-c-drawer__panel--FlexBasis: 100%;
33
35
  --pf-v6-c-drawer__panel--md--FlexBasis--min: 1.5rem;
34
36
  --pf-v6-c-drawer__panel--md--FlexBasis: 50%;
@@ -44,6 +46,29 @@
44
46
  --pf-v6-c-drawer--m-panel-bottom__panel--m-resizable--FlexDirection: column;
45
47
  --pf-v6-c-drawer--m-panel-bottom__panel--m-resizable--md--FlexBasis--min: 1.5rem;
46
48
  --pf-v6-c-drawer--m-panel-bottom__panel--m-resizable--MinHeight: 1.5rem;
49
+ --pf-v6-c-drawer--m-pill__panel--BorderBlockStartWidth: var(--pf-t--global--border--width--regular);
50
+ --pf-v6-c-drawer--m-pill__panel--BorderBlockEndWidth: var(--pf-t--global--border--width--regular);
51
+ --pf-v6-c-drawer--m-pill__panel--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
52
+ --pf-v6-c-drawer--m-pill__panel--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
53
+ --pf-v6-c-drawer--m-pill__panel--BorderColor: var(--pf-t--global--border--color--default);
54
+ --pf-v6-c-drawer--m-pill__panel--BorderRadius: var(--pf-t--global--border--radius--large);
55
+ --pf-v6-c-drawer--m-pill--m-expanded__panel--inset: var(--pf-t--global--spacer--inset--page-chrome);
56
+ --pf-v6-c-drawer__panel--m-glass--BackgroundColor: var(--pf-t--global--background--color--glass--default);
57
+ --pf-v6-c-drawer__panel--m-glass--BackdropFilter: var(--pf-t--global--background--color--glass--filter);
58
+ --pf-v6-c-drawer__panel--m-glass--BorderColor: var(--pf-t--global--border--color--alt);
59
+ }
60
+ @media screen and (prefers-reduced-motion: no-preference) {
61
+ .pf-v6-c-drawer {
62
+ --pf-v6-c-drawer__panel--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-in--short);
63
+ --pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--slide);
64
+ --pf-v6-c-drawer__panel--TransitionDelay: 0s, 0s, 0s, 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
65
+ --pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
66
+ --pf-v6-c-drawer__panel--TransitionDuration: 0s, var(--pf-v6-c-drawer__panel--TransitionDuration--slide), 0s, 0s, 0s;
67
+ --pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis, visibility;
68
+ --pf-v6-c-drawer__panel--Opacity: 1;
69
+ }
70
+ }
71
+ .pf-v6-c-drawer {
47
72
  --pf-v6-c-drawer__head--ColumnGap: var(--pf-t--global--spacer--gap--text-to-element--default);
48
73
  --pf-v6-c-drawer__head--PaddingBlockStart: var(--pf-t--global--spacer--sm);
49
74
  --pf-v6-c-drawer__head--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
@@ -106,6 +131,17 @@
106
131
  --pf-v6-c-drawer__splitter-handle--after--Height: 0.25rem;
107
132
  --pf-v6-c-drawer__splitter--m-vertical__splitter-handle--after--Width: 0.25rem;
108
133
  --pf-v6-c-drawer__splitter--m-vertical__splitter-handle--after--Height: 0.75rem;
134
+ }
135
+ @media screen and (min-width: 75rem) {
136
+ .pf-v6-c-drawer {
137
+ --pf-v6-c-drawer__panel--MinWidth: var(--pf-v6-c-drawer__panel--xl--MinWidth);
138
+ }
139
+ .pf-v6-c-drawer.pf-m-panel-bottom {
140
+ --pf-v6-c-drawer__panel--MinWidth: auto;
141
+ --pf-v6-c-drawer__panel--MinHeight: var(--pf-v6-c-drawer--m-panel-bottom__panel--xl--MinHeight);
142
+ }
143
+ }
144
+ .pf-v6-c-drawer {
109
145
  --pf-v6-c-drawer__actions--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--compact) * -1.5);
110
146
  --pf-v6-c-drawer__actions--MarginInlineEnd: calc(var(--pf-t--global--spacer--control--horizontal--compact) * -1.5);
111
147
  --pf-v6-c-drawer__panel--BoxShadow: none;
@@ -120,46 +156,32 @@
120
156
  --pf-v6-c-drawer--m-panel-left--m-inline__panel--PaddingInlineEnd: 0;
121
157
  --pf-v6-c-drawer--m-panel-bottom--m-inline__panel--PaddingBlockStart: 0;
122
158
  }
123
- @media screen and (prefers-reduced-motion: no-preference) {
124
- .pf-v6-c-drawer {
125
- --pf-v6-c-drawer__panel--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-in--short);
126
- --pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--slide);
127
- --pf-v6-c-drawer__panel--TransitionDelay: 0s, 0s, 0s, 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
128
- --pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
129
- --pf-v6-c-drawer__panel--TransitionDuration: 0s, var(--pf-v6-c-drawer__panel--TransitionDuration--slide), 0s, 0s, 0s;
130
- --pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis, visibility;
131
- --pf-v6-c-drawer__panel--Opacity: 1;
132
- }
133
- }
134
- @media screen and (min-width: 75rem) {
135
- .pf-v6-c-drawer {
136
- --pf-v6-c-drawer__panel--MinWidth: var(--pf-v6-c-drawer__panel--xl--MinWidth);
137
- }
138
- .pf-v6-c-drawer.pf-m-panel-bottom {
139
- --pf-v6-c-drawer__panel--MinWidth: auto;
140
- --pf-v6-c-drawer__panel--MinHeight: var(--pf-v6-c-drawer--m-panel-bottom__panel--xl--MinHeight);
141
- }
142
- }
143
159
 
144
160
  .pf-v6-c-drawer {
145
161
  --pf-v6-c-drawer--m-expanded__panel--BoxShadow: var(--pf-t--global--box-shadow--md--left);
146
- --pf-v6-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-t--global--box-shadow--md--right);
147
- display: flex;
148
- flex-direction: column;
149
- height: 100%;
150
- overflow-x: hidden;
151
162
  }
152
163
  :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-drawer {
153
164
  --pf-v6-c-drawer--m-expanded__panel--BoxShadow: var(--pf-t--global--box-shadow--md--right);
154
165
  }
155
166
 
167
+ .pf-v6-c-drawer {
168
+ --pf-v6-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-t--global--box-shadow--md--right);
169
+ }
156
170
  :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-drawer {
157
171
  --pf-v6-c-drawer--m-expanded--m-panel-left__panel--BoxShadow: var(--pf-t--global--box-shadow--md--left);
158
172
  }
159
173
 
174
+ .pf-v6-c-drawer {
175
+ display: flex;
176
+ flex-direction: column;
177
+ height: 100%;
178
+ overflow-x: hidden;
179
+ }
160
180
  .pf-v6-c-drawer.pf-m-inline, .pf-v6-c-drawer.pf-m-static {
161
181
  --pf-v6-c-drawer__panel--BackgroundColor: var(--pf-v6-c-drawer__panel--m-inline--BackgroundColor);
162
182
  --pf-v6-c-drawer__panel--BorderInlineStartWidth: var(--pf-v6-c-drawer--m-inline__panel--after--Width);
183
+ --pf-v6-c-drawer--m-pill__main--Gap: var(--pf-v6-c-drawer--m-pill--m-inline__main--Gap);
184
+ --pf-v6-c-drawer--m-pill--m-expanded__panel--inset: 0px;
163
185
  }
164
186
  .pf-v6-c-drawer.pf-m-inline > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-border, .pf-m-resizable), .pf-v6-c-drawer.pf-m-static > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-border, .pf-m-resizable) {
165
187
  padding-inline-start: var(--pf-v6-c-drawer--m-inline__panel--PaddingInlineStart);
@@ -183,19 +205,21 @@
183
205
  --pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDelay--expand--focus);
184
206
  }
185
207
  .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
186
- transform: translateX(-100%);
187
- --pf-v6-c-drawer__panel--Opacity: var(--pf-v6-c-drawer--m-expanded__panel--Opacity);
188
- visibility: visible;
208
+ transform: translateX(calc(-100% - var(--pf-v6-c-drawer--m-expanded__panel--inset)));
189
209
  }
190
210
  :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
191
- transform: translateX(calc(-100% * var(--pf-v6-global--inverse--multiplier)));
211
+ transform: translateX(calc(calc(-100% - var(--pf-v6-c-drawer--m-expanded__panel--inset)) * var(--pf-v6-global--inverse--multiplier)));
192
212
  }
193
213
 
214
+ .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
215
+ --pf-v6-c-drawer__panel--Opacity: var(--pf-v6-c-drawer--m-expanded__panel--Opacity);
216
+ visibility: visible;
217
+ }
194
218
  .pf-v6-c-drawer.pf-m-expanded.pf-m-panel-left > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
195
219
  transform: translateX(0);
196
220
  }
197
221
  .pf-v6-c-drawer.pf-m-expanded.pf-m-panel-bottom > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
198
- transform: translate(0, -100%);
222
+ transform: translate(0, calc(-100% - var(--pf-v6-c-drawer--m-expanded__panel--inset)));
199
223
  }
200
224
  .pf-v6-c-drawer.pf-m-resizing {
201
225
  --pf-v6-c-drawer__panel--TransitionProperty: none;
@@ -204,6 +228,26 @@
204
228
  .pf-v6-c-drawer.pf-m-resizing .pf-v6-c-drawer__splitter {
205
229
  pointer-events: auto;
206
230
  }
231
+ @media screen and (min-width: 48rem) {
232
+ .pf-v6-c-drawer.pf-m-pill {
233
+ --pf-v6-c-drawer__main--Gap: var(--pf-v6-c-drawer--m-pill__main--Gap, revert);
234
+ --pf-v6-c-drawer__panel--BorderColor: var(--pf-v6-c-drawer--m-pill__panel--BorderColor);
235
+ --pf-v6-c-drawer__panel--BorderRadius: var(--pf-v6-c-drawer--m-pill__panel--BorderRadius);
236
+ --pf-v6-c-drawer--m-expanded__panel--inset: var(--pf-v6-c-drawer--m-pill--m-expanded__panel--inset);
237
+ --pf-v6-c-drawer__panel--MarginBlock: var(--pf-v6-c-drawer--m-pill--m-expanded__panel--inset);
238
+ }
239
+ .pf-v6-c-drawer.pf-m-pill > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
240
+ border-block-start-width: var(--pf-v6-c-drawer--m-pill__panel--BorderBlockStartWidth);
241
+ border-block-end-width: var(--pf-v6-c-drawer--m-pill__panel--BorderBlockEndWidth);
242
+ border-inline-start-width: var(--pf-v6-c-drawer--m-pill__panel--BorderInlineStartWidth);
243
+ border-inline-end-width: var(--pf-v6-c-drawer--m-pill__panel--BorderInlineEndWidth);
244
+ }
245
+ .pf-v6-c-drawer.pf-m-pill > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel:not(.pf-m-no-glass) {
246
+ --pf-v6-c-drawer__panel--BackgroundColor: var(--pf-v6-c-drawer__panel--m-glass--BackgroundColor);
247
+ --pf-v6-c-drawer__panel--BorderColor: var(--pf-v6-c-drawer__panel--m-glass--BorderColor);
248
+ backdrop-filter: var(--pf-v6-c-drawer__panel--m-glass--BackdropFilter);
249
+ }
250
+ }
207
251
 
208
252
  .pf-v6-c-drawer__section {
209
253
  flex-grow: 0;
@@ -219,6 +263,7 @@
219
263
  .pf-v6-c-drawer__main {
220
264
  display: flex;
221
265
  flex: 1;
266
+ gap: var(--pf-v6-c-drawer__main--Gap, 0);
222
267
  overflow: hidden;
223
268
  }
224
269
 
@@ -226,8 +271,8 @@
226
271
  .pf-v6-c-drawer__panel,
227
272
  .pf-v6-c-drawer__panel-main {
228
273
  display: flex;
229
- flex-direction: column;
230
274
  flex-shrink: 0;
275
+ flex-direction: column;
231
276
  overflow: auto;
232
277
  }
233
278
 
@@ -257,6 +302,8 @@
257
302
  row-gap: var(--pf-v6-c-drawer__panel--RowGap);
258
303
  order: 1;
259
304
  max-height: var(--pf-v6-c-drawer__panel--MaxHeight);
305
+ margin-block: var(--pf-v6-c-drawer__panel--MarginBlock, revert);
306
+ margin-inline: var(--pf-v6-c-drawer__panel--MarginInline, revert);
260
307
  overflow: auto;
261
308
  visibility: hidden;
262
309
  background-color: var(--pf-v6-c-drawer__panel--BackgroundColor);
@@ -265,6 +312,7 @@
265
312
  border-block-end-width: var(--pf-v6-c-drawer__panel--BorderBlockEndWidth);
266
313
  border-inline-start-width: var(--pf-v6-c-drawer__panel--BorderInlineStartWidth);
267
314
  border-inline-end-width: var(--pf-v6-c-drawer__panel--BorderInlineEndWidth);
315
+ border-radius: var(--pf-v6-c-drawer__panel--BorderRadius, revert);
268
316
  box-shadow: var(--pf-v6-c-drawer__panel--BoxShadow);
269
317
  opacity: var(--pf-v6-c-drawer__panel--Opacity);
270
318
  transition-delay: var(--pf-v6-c-drawer__panel--TransitionDelay);
@@ -452,7 +500,7 @@
452
500
  padding-inline-end: var(--pf-v6-c-drawer--m-panel-left--m-inline__panel--PaddingInlineEnd);
453
501
  }
454
502
  .pf-v6-c-drawer.pf-m-panel-left.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
455
- transform: translateX(0);
503
+ transform: translateX(var(--pf-v6-c-drawer--m-expanded__panel--inset));
456
504
  }
457
505
  .pf-v6-c-drawer.pf-m-panel-left > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-resizable > .pf-v6-c-drawer__splitter {
458
506
  --pf-v6-c-drawer__splitter-handle--InsetInlineStart: var(--pf-v6-c-drawer--m-panel-left__splitter-handle--InsetInlineStart);
@@ -464,6 +512,8 @@
464
512
  --pf-v6-c-drawer__panel--FlexBasis--min: var(--pf-v6-c-drawer--m-panel-bottom__panel--FlexBasis--min);
465
513
  --pf-v6-c-drawer__panel--BorderInlineStartWidth: 0;
466
514
  --pf-v6-c-drawer__panel--BorderBlockStartWidth: var(--pf-v6-c-drawer--m-panel-bottom__panel--after--Height);
515
+ --pf-v6-c-drawer__panel--MarginBlock: initial;
516
+ --pf-v6-c-drawer__panel--MarginInline: var(--pf-v6-c-drawer--m-expanded__panel--inset);
467
517
  min-width: auto;
468
518
  min-height: var(--pf-v6-c-drawer--m-panel-bottom__panel--md--MinHeight);
469
519
  }
@@ -511,82 +561,86 @@
511
561
  }
512
562
  @media (min-width: 48rem) {
513
563
  .pf-v6-c-drawer__panel.pf-m-width-25 {
514
- --pf-v6-c-drawer__panel--md--FlexBasis: 25%;
564
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(25% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
515
565
  }
516
566
  .pf-v6-c-drawer__panel.pf-m-width-33 {
517
- --pf-v6-c-drawer__panel--md--FlexBasis: 33%;
567
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(33% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
518
568
  }
519
569
  .pf-v6-c-drawer__panel.pf-m-width-50 {
520
- --pf-v6-c-drawer__panel--md--FlexBasis: 50%;
570
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(50% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
521
571
  }
522
572
  .pf-v6-c-drawer__panel.pf-m-width-66 {
523
- --pf-v6-c-drawer__panel--md--FlexBasis: 66%;
573
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(66% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
524
574
  }
525
575
  .pf-v6-c-drawer__panel.pf-m-width-75 {
526
- --pf-v6-c-drawer__panel--md--FlexBasis: 75%;
576
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(75% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
527
577
  }
528
578
  .pf-v6-c-drawer__panel.pf-m-width-100 {
529
- --pf-v6-c-drawer__panel--md--FlexBasis: 100%;
579
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(100% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
580
+ --pf-v6-c-drawer__main--Gap: 0;
530
581
  }
531
582
  }
532
583
  @media (min-width: 62rem) {
533
584
  .pf-v6-c-drawer__panel.pf-m-width-25-on-lg {
534
- --pf-v6-c-drawer__panel--md--FlexBasis: 25%;
585
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(25% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
535
586
  }
536
587
  .pf-v6-c-drawer__panel.pf-m-width-33-on-lg {
537
- --pf-v6-c-drawer__panel--md--FlexBasis: 33%;
588
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(33% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
538
589
  }
539
590
  .pf-v6-c-drawer__panel.pf-m-width-50-on-lg {
540
- --pf-v6-c-drawer__panel--md--FlexBasis: 50%;
591
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(50% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
541
592
  }
542
593
  .pf-v6-c-drawer__panel.pf-m-width-66-on-lg {
543
- --pf-v6-c-drawer__panel--md--FlexBasis: 66%;
594
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(66% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
544
595
  }
545
596
  .pf-v6-c-drawer__panel.pf-m-width-75-on-lg {
546
- --pf-v6-c-drawer__panel--md--FlexBasis: 75%;
597
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(75% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
547
598
  }
548
599
  .pf-v6-c-drawer__panel.pf-m-width-100-on-lg {
549
- --pf-v6-c-drawer__panel--md--FlexBasis: 100%;
600
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(100% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
601
+ --pf-v6-c-drawer__main--Gap: 0;
550
602
  }
551
603
  }
552
604
  @media (min-width: 75rem) {
553
605
  .pf-v6-c-drawer__panel.pf-m-width-25-on-xl {
554
- --pf-v6-c-drawer__panel--md--FlexBasis: 25%;
606
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(25% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
555
607
  }
556
608
  .pf-v6-c-drawer__panel.pf-m-width-33-on-xl {
557
- --pf-v6-c-drawer__panel--md--FlexBasis: 33%;
609
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(33% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
558
610
  }
559
611
  .pf-v6-c-drawer__panel.pf-m-width-50-on-xl {
560
- --pf-v6-c-drawer__panel--md--FlexBasis: 50%;
612
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(50% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
561
613
  }
562
614
  .pf-v6-c-drawer__panel.pf-m-width-66-on-xl {
563
- --pf-v6-c-drawer__panel--md--FlexBasis: 66%;
615
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(66% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
564
616
  }
565
617
  .pf-v6-c-drawer__panel.pf-m-width-75-on-xl {
566
- --pf-v6-c-drawer__panel--md--FlexBasis: 75%;
618
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(75% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
567
619
  }
568
620
  .pf-v6-c-drawer__panel.pf-m-width-100-on-xl {
569
- --pf-v6-c-drawer__panel--md--FlexBasis: 100%;
621
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(100% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
622
+ --pf-v6-c-drawer__main--Gap: 0;
570
623
  }
571
624
  }
572
625
  @media (min-width: 90.625rem) {
573
626
  .pf-v6-c-drawer__panel.pf-m-width-25-on-2xl {
574
- --pf-v6-c-drawer__panel--md--FlexBasis: 25%;
627
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(25% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
575
628
  }
576
629
  .pf-v6-c-drawer__panel.pf-m-width-33-on-2xl {
577
- --pf-v6-c-drawer__panel--md--FlexBasis: 33%;
630
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(33% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
578
631
  }
579
632
  .pf-v6-c-drawer__panel.pf-m-width-50-on-2xl {
580
- --pf-v6-c-drawer__panel--md--FlexBasis: 50%;
633
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(50% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
581
634
  }
582
635
  .pf-v6-c-drawer__panel.pf-m-width-66-on-2xl {
583
- --pf-v6-c-drawer__panel--md--FlexBasis: 66%;
636
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(66% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
584
637
  }
585
638
  .pf-v6-c-drawer__panel.pf-m-width-75-on-2xl {
586
- --pf-v6-c-drawer__panel--md--FlexBasis: 75%;
639
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(75% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
587
640
  }
588
641
  .pf-v6-c-drawer__panel.pf-m-width-100-on-2xl {
589
- --pf-v6-c-drawer__panel--md--FlexBasis: 100%;
642
+ --pf-v6-c-drawer__panel--md--FlexBasis: calc(100% - (2 * var(--pf-v6-c-drawer--m-expanded__panel--inset)));
643
+ --pf-v6-c-drawer__main--Gap: 0;
590
644
  }
591
645
  }
592
646
  @media (min-width: 48rem) {
@@ -23,6 +23,8 @@ declare const _default: {
23
23
  "panelLeft": "pf-m-panel-left",
24
24
  "expanded": "pf-m-expanded",
25
25
  "resizing": "pf-m-resizing",
26
+ "pill": "pf-m-pill",
27
+ "noGlass": "pf-m-no-glass",
26
28
  "secondary": "pf-m-secondary",
27
29
  "noBackground": "pf-m-no-background",
28
30
  "primary": "pf-m-primary",
@@ -25,6 +25,8 @@ exports.default = {
25
25
  "panelLeft": "pf-m-panel-left",
26
26
  "expanded": "pf-m-expanded",
27
27
  "resizing": "pf-m-resizing",
28
+ "pill": "pf-m-pill",
29
+ "noGlass": "pf-m-no-glass",
28
30
  "secondary": "pf-m-secondary",
29
31
  "noBackground": "pf-m-no-background",
30
32
  "primary": "pf-m-primary",
@@ -23,6 +23,8 @@ export default {
23
23
  "panelLeft": "pf-m-panel-left",
24
24
  "expanded": "pf-m-expanded",
25
25
  "resizing": "pf-m-resizing",
26
+ "pill": "pf-m-pill",
27
+ "noGlass": "pf-m-no-glass",
26
28
  "secondary": "pf-m-secondary",
27
29
  "noBackground": "pf-m-no-background",
28
30
  "primary": "pf-m-primary",
@@ -32,6 +32,15 @@
32
32
  --pf-v6-c-dual-list-selector--m-expanded__list--Opacity: 1;
33
33
  --pf-v6-c-dual-list-selector__list--TranslateY: 0;
34
34
  --pf-v6-c-dual-list-selector--m-expanded__list--TranslateY: 0;
35
+ }
36
+ @media screen and (prefers-reduced-motion: no-preference) {
37
+ .pf-v6-c-dual-list-selector {
38
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
39
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
40
+ --pf-v6-c-dual-list-selector__list--TranslateY: -.5rem;
41
+ }
42
+ }
43
+ .pf-v6-c-dual-list-selector {
35
44
  --pf-v6-c-dual-list-selector__list-item-row--FontSize: var(--pf-t--global--font--size--sm);
36
45
  --pf-v6-c-dual-list-selector__list-item-row--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
37
46
  --pf-v6-c-dual-list-selector__list-item-row--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
@@ -73,13 +82,6 @@
73
82
  --pf-v6-c-dual-list-selector__item-toggle-icon--MinWidth: var(--pf-v6-c-dual-list-selector__list-item-row--FontSize);
74
83
  --pf-v6-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color: var(--pf-t--global--icon--color--disabled);
75
84
  }
76
- @media screen and (prefers-reduced-motion: no-preference) {
77
- .pf-v6-c-dual-list-selector {
78
- --pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
79
- --pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
80
- --pf-v6-c-dual-list-selector__list--TranslateY: -.5rem;
81
- }
82
- }
83
85
 
84
86
  .pf-v6-c-dual-list-selector {
85
87
  display: grid;
@@ -150,8 +152,6 @@
150
152
 
151
153
  .pf-v6-c-dual-list-selector__list {
152
154
  --pf-v6-c-dual-list-selector__item-toggle-icon--Rotate: 0;
153
- display: flex;
154
- flex-direction: column;
155
155
  }
156
156
  .pf-v6-c-dual-list-selector__list .pf-v6-c-dual-list-selector__list {
157
157
  --pf-v6-c-dual-list-selector__item-toggle--MarginBlockStart: 0;
@@ -159,16 +159,22 @@
159
159
  }
160
160
  .pf-v6-c-dual-list-selector__list .pf-v6-c-dual-list-selector__list .pf-v6-c-dual-list-selector__item-toggle {
161
161
  transform: translateX(var(--pf-v6-c-dual-list-selector__list__list__item-toggle--TranslateX));
162
- position: absolute;
163
- inset-inline-start: var(--pf-v6-c-dual-list-selector__list__list__item-toggle--InsetInlineStart);
164
162
  }
165
163
  :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-dual-list-selector__list .pf-v6-c-dual-list-selector__list .pf-v6-c-dual-list-selector__item-toggle {
166
164
  transform: translateX(calc(var(--pf-v6-c-dual-list-selector__list__list__item-toggle--TranslateX) * var(--pf-v6-global--inverse--multiplier)));
167
165
  }
168
166
 
167
+ .pf-v6-c-dual-list-selector__list .pf-v6-c-dual-list-selector__list .pf-v6-c-dual-list-selector__item-toggle {
168
+ position: absolute;
169
+ inset-inline-start: var(--pf-v6-c-dual-list-selector__list__list__item-toggle--InsetInlineStart);
170
+ }
169
171
  .pf-v6-c-dual-list-selector__list.pf-m-drag-over {
170
172
  overflow-anchor: none;
171
173
  }
174
+ .pf-v6-c-dual-list-selector__list {
175
+ display: flex;
176
+ flex-direction: column;
177
+ }
172
178
 
173
179
  .pf-v6-c-dual-list-selector__list-item:focus-visible {
174
180
  --pf-v6-c-dual-list-selector__list-item-row--BackgroundColor: var(--pf-v6-c-dual-list-selector__list-item-row--hover--BackgroundColor);
@@ -20,10 +20,24 @@
20
20
  --pf-v6-c-expandable-section__content--Opacity: 0;
21
21
  --pf-v6-c-expandable-section__content--TranslateY: 0;
22
22
  --pf-v6-c-expandable-section__content--PaddingInlineStart: 0;
23
+ --pf-v6-c-expandable-section__content--MaxHeight: 0px;
24
+ --pf-v6-c-expandable-section__content--Visibility: hidden;
25
+ --pf-v6-c-expandable-section__content--Opacity: 0;
23
26
  --pf-v6-c-expandable-section--m-expand-top__content--TranslateY: 0;
24
27
  --pf-v6-c-expandable-section--m-expand-bottom__content--TranslateY: 0;
25
28
  --pf-v6-c-expandable-section--m-expanded__content--Opacity: 1;
26
29
  --pf-v6-c-expandable-section--m-expanded__content--TranslateY: 0;
30
+ }
31
+ @media screen and (prefers-reduced-motion: no-preference) {
32
+ .pf-v6-c-expandable-section {
33
+ --pf-v6-c-expandable-section__content--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
34
+ --pf-v6-c-expandable-section__content--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
35
+ --pf-v6-c-expandable-section__content--TranslateY: -.5rem;
36
+ --pf-v6-c-expandable-section--m-expand-top__content--TranslateY: .5rem;
37
+ --pf-v6-c-expandable-section--m-expand-bottom__content--TranslateY: -.5rem;
38
+ }
39
+ }
40
+ .pf-v6-c-expandable-section {
27
41
  --pf-v6-c-expandable-section__content--MaxWidth: auto;
28
42
  --pf-v6-c-expandable-section--m-limit-width__content--MaxWidth: 46.875rem;
29
43
  --pf-v6-c-expandable-section--m-display-lg--PaddingBlockStart: var(--pf-t--global--spacer--sm);
@@ -40,15 +54,6 @@
40
54
  --pf-v6-c-expandable-section--m-truncate__content--LineClamp: 3;
41
55
  --pf-v6-c-expandable-section--m-truncate--Gap: var(--pf-t--global--spacer--xs);
42
56
  }
43
- @media screen and (prefers-reduced-motion: no-preference) {
44
- .pf-v6-c-expandable-section {
45
- --pf-v6-c-expandable-section__content--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
46
- --pf-v6-c-expandable-section__content--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
47
- --pf-v6-c-expandable-section__content--TranslateY: -.5rem;
48
- --pf-v6-c-expandable-section--m-expand-top__content--TranslateY: .5rem;
49
- --pf-v6-c-expandable-section--m-expand-bottom__content--TranslateY: -.5rem;
50
- }
51
- }
52
57
 
53
58
  .pf-v6-c-expandable-section {
54
59
  display: flex;
@@ -107,9 +112,13 @@
107
112
  }
108
113
  .pf-v6-c-expandable-section.pf-m-truncate:not(.pf-m-expanded) .pf-v6-c-expandable-section__content {
109
114
  display: -webkit-box;
115
+ overflow: hidden;
110
116
  -webkit-box-orient: vertical;
111
117
  -webkit-line-clamp: var(--pf-v6-c-expandable-section--m-truncate__content--LineClamp);
112
- overflow: hidden;
118
+ }
119
+
120
+ :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-expandable-section__toggle-icon {
121
+ scale: -1 1;
113
122
  }
114
123
 
115
124
  .pf-v6-c-expandable-section__toggle-icon {
@@ -119,10 +128,6 @@
119
128
  transition: var(--pf-v6-c-expandable-section__toggle-icon--Transition);
120
129
  transform: rotate(var(--pf-v6-c-expandable-section__toggle-icon--Rotate));
121
130
  }
122
- :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-expandable-section__toggle-icon {
123
- scale: -1 1;
124
- }
125
-
126
131
  .pf-v6-c-expandable-section__toggle-icon.pf-m-expand-top {
127
132
  --pf-v6-c-expandable-section__toggle-icon--Rotate: var(--pf-v6-c-expandable-section__toggle-icon--m-expand-top--Rotate);
128
133
  }
@@ -499,8 +499,8 @@
499
499
 
500
500
  .pf-v6-c-form__field-group-header-main {
501
501
  display: flex;
502
- flex-direction: column;
503
502
  flex-grow: 1;
503
+ flex-direction: column;
504
504
  }
505
505
 
506
506
  .pf-v6-c-form__field-group-header-title {
@@ -189,8 +189,8 @@
189
189
  --pf-v6-c-form-control__utilities--PaddingInlineEnd: var(--pf-v6-c-form-control__utilities--textarea--PaddingInlineEnd);
190
190
  }
191
191
  .pf-v6-c-form-control.pf-m-textarea > textarea {
192
- outline-offset: 0;
193
192
  scrollbar-gutter: stable;
193
+ outline-offset: 0;
194
194
  }
195
195
  .pf-v6-c-form-control.pf-m-textarea .pf-v6-c-form-control__utilities {
196
196
  padding-block-start: var(--pf-v6-c-form-control__utilities--textarea--PaddingBlockStart);
@@ -0,0 +1,74 @@
1
+ .pf-v6-c-hero {
2
+ --pf-v6-c-hero--PaddingBlockStart: var(--pf-t--global--spacer--xl);
3
+ --pf-v6-c-hero--PaddingBlockEnd: var(--pf-t--global--spacer--xl);
4
+ --pf-v6-c-hero--PaddingInlineStart: var(--pf-t--global--spacer--3xl);
5
+ --pf-v6-c-hero--PaddingInlineEnd: var(--pf-t--global--spacer--xl);
6
+ --pf-v6-c-hero--gradient--angle: 109deg;
7
+ --pf-v6-c-hero--gradient--stop-1--light: transparent;
8
+ --pf-v6-c-hero--gradient--stop-2--light: transparent;
9
+ --pf-v6-c-hero--gradient--stop-3--light: transparent;
10
+ --pf-v6-c-hero--gradient--stop-1--dark: transparent;
11
+ --pf-v6-c-hero--gradient--stop-2--dark: transparent;
12
+ --pf-v6-c-hero--gradient--stop-3--dark: transparent;
13
+ --pf-v6-c-hero--BackgroundColor: var(--pf-t--global--background--color--glass--default);
14
+ --pf-v6-c-hero--BackdropFilter: var(--pf-t--global--background--color--glass--filter);
15
+ --pf-v6-c-hero--BackgroundImage--light: none;
16
+ --pf-v6-c-hero--BackgroundImage--dark: none;
17
+ --pf-v6-c-hero--BackgroundRepeat: no-repeat;
18
+ --pf-v6-c-hero--BackgroundPosition: right center;
19
+ --pf-v6-c-hero--BackgroundSize: contain;
20
+ --pf-v6-c-hero--BorderStyle: solid;
21
+ --pf-v6-c-hero--BorderBlockStartWidth: var(--pf-t--global--border--width--regular);
22
+ --pf-v6-c-hero--BorderBlockEndWidth: var(--pf-t--global--border--width--regular);
23
+ --pf-v6-c-hero--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
24
+ --pf-v6-c-hero--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
25
+ --pf-v6-c-hero--BorderColor: var(--pf-t--global--border--color--default);
26
+ --pf-v6-c-hero--m-glass--BorderColor: var(--pf-t--global--border--color--alt);
27
+ --pf-v6-c-hero--m-glass--BoxShadow: var(--pf-t--global--box-shadow--md);
28
+ --pf-v6-c-hero--BorderStartStartRadius: 24px;
29
+ --pf-v6-c-hero--BorderStartEndRadius: 72px;
30
+ --pf-v6-c-hero--BorderEndEndRadius: 24px;
31
+ --pf-v6-c-hero--BorderEndStartRadius: 72px;
32
+ --pf-v6-c-hero__body--Width: 800px;
33
+ --pf-v6-c-hero__body--MaxWidth: 80%;
34
+ }
35
+
36
+ .pf-v6-c-hero {
37
+ display: flex;
38
+ padding-block-start: var(--pf-v6-c-hero--PaddingBlockStart);
39
+ padding-block-end: var(--pf-v6-c-hero--PaddingBlockEnd);
40
+ padding-inline-start: var(--pf-v6-c-hero--PaddingInlineStart);
41
+ padding-inline-end: var(--pf-v6-c-hero--PaddingInlineEnd);
42
+ background-image: var(--pf-v6-c-hero--BackgroundImage, var(--pf-v6-c-hero--BackgroundImage--light)), linear-gradient(var(--pf-v6-c-hero--gradient--angle), var(--pf-v6-c-hero--gradient--stop-1, var(--pf-v6-c-hero--gradient--stop-1--light)) 0%, var(--pf-v6-c-hero--gradient--stop-2, var(--pf-v6-c-hero--gradient--stop-2--light)) 50%, var(--pf-v6-c-hero--gradient--stop-3, var(--pf-v6-c-hero--gradient--stop-3--light)) 100%);
43
+ background-repeat: var(--pf-v6-c-hero--BackgroundRepeat);
44
+ background-position: var(--pf-v6-c-hero--BackgroundPosition);
45
+ background-size: var(--pf-v6-c-hero--BackgroundSize);
46
+ border-color: var(--pf-v6-c-hero--BorderColor);
47
+ border-style: var(--pf-v6-c-hero--BorderStyle);
48
+ border-block-start-width: var(--pf-v6-c-hero--BorderBlockStartWidth);
49
+ border-block-end-width: var(--pf-v6-c-hero--BorderBlockEndWidth);
50
+ border-inline-start-width: var(--pf-v6-c-hero--BorderInlineStartWidth);
51
+ border-inline-end-width: var(--pf-v6-c-hero--BorderInlineEndWidth);
52
+ border-start-start-radius: var(--pf-v6-c-hero--BorderStartStartRadius);
53
+ border-start-end-radius: var(--pf-v6-c-hero--BorderStartEndRadius);
54
+ border-end-start-radius: var(--pf-v6-c-hero--BorderEndStartRadius);
55
+ border-end-end-radius: var(--pf-v6-c-hero--BorderEndEndRadius);
56
+ }
57
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-hero {
58
+ --pf-v6-c-hero--BackgroundImage: var(--pf-v6-c-hero--BackgroundImage--dark);
59
+ --pf-v6-c-hero--gradient--stop-1: var(--pf-v6-c-hero--gradient--stop-1--dark);
60
+ --pf-v6-c-hero--gradient--stop-2: var(--pf-v6-c-hero--gradient--stop-2--dark);
61
+ --pf-v6-c-hero--gradient--stop-3: var(--pf-v6-c-hero--gradient--stop-3--dark);
62
+ }
63
+ :root:where(.pf-v6-theme-glass) .pf-v6-c-hero {
64
+ --pf-v6-c-hero--BorderColor: var(--pf-v6-c-hero--m-glass--BorderColor);
65
+ box-shadow: var(--pf-v6-c-hero--m-glass--BoxShadow);
66
+ }
67
+ .pf-v6-c-hero:not(.pf-m-no-glass) {
68
+ background-color: var(--pf-v6-c-hero--BackgroundColor);
69
+ backdrop-filter: var(--pf-v6-c-hero--BackdropFilter);
70
+ }
71
+
72
+ .pf-v6-c-hero__body {
73
+ width: min(var(--pf-v6-c-hero__body--Width), var(--pf-v6-c-hero__body--MaxWidth));
74
+ }
@@ -0,0 +1,11 @@
1
+ import './hero.css';
2
+ declare const _default: {
3
+ "hero": "pf-v6-c-hero",
4
+ "heroBody": "pf-v6-c-hero__body",
5
+ "modifiers": {
6
+ "noGlass": "pf-m-no-glass"
7
+ },
8
+ "themeDark": "pf-v6-theme-dark",
9
+ "themeGlass": "pf-v6-theme-glass"
10
+ };
11
+ export default _default;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ exports.__esModule = true;
3
+ require('./hero.css');
4
+ exports.default = {
5
+ "hero": "pf-v6-c-hero",
6
+ "heroBody": "pf-v6-c-hero__body",
7
+ "modifiers": {
8
+ "noGlass": "pf-m-no-glass"
9
+ },
10
+ "themeDark": "pf-v6-theme-dark",
11
+ "themeGlass": "pf-v6-theme-glass"
12
+ };
@@ -0,0 +1,10 @@
1
+ import './hero.css';
2
+ export default {
3
+ "hero": "pf-v6-c-hero",
4
+ "heroBody": "pf-v6-c-hero__body",
5
+ "modifiers": {
6
+ "noGlass": "pf-m-no-glass"
7
+ },
8
+ "themeDark": "pf-v6-theme-dark",
9
+ "themeGlass": "pf-v6-theme-glass"
10
+ };
@@ -234,6 +234,10 @@
234
234
  margin-block-end: var(--pf-v6-c-jump-links__toggle--MarginBlockEnd);
235
235
  }
236
236
 
237
+ :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-jump-links__toggle-icon {
238
+ scale: -1 1;
239
+ }
240
+
237
241
  .pf-v6-c-jump-links__toggle-icon {
238
242
  display: inline-block;
239
243
  color: var(--pf-v6-c-jump-links__toggle-icon--Color);
@@ -241,7 +245,4 @@
241
245
  transition-duration: var(--pf-v6-c-jump-links__toggle-icon--TransitionDuration);
242
246
  transition-property: transform;
243
247
  transform: rotate(var(--pf-v6-c-jump-links__toggle-icon--Rotate));
244
- }
245
- :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-jump-links__toggle-icon {
246
- scale: -1 1;
247
248
  }
@@ -137,9 +137,9 @@
137
137
  padding-inline-end: var(--pf-v6-c-label-group__textarea--PaddingInlineEnd);
138
138
  white-space: nowrap;
139
139
  resize: none;
140
- border: 0;
141
- -ms-overflow-style: none;
142
140
  scrollbar-width: none;
141
+ -ms-overflow-style: none;
142
+ border: 0;
143
143
  }
144
144
  .pf-v6-c-label-group__textarea::-webkit-scrollbar {
145
145
  display: none;