@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
@@ -50,10 +50,10 @@
50
50
  --pf-v6-c-table__toggle--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
51
51
  --pf-v6-c-table__toggle--PaddingInlineStart: var(--pf-t--global--spacer--sm);
52
52
  --pf-v6-c-table__toggle--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
53
- --pf-v6-c-table__toggle--c-button__toggle-icon--Rotate: 270deg;
53
+ --pf-v6-c-table__toggle--c-button__toggle-icon--Rotate: 0;
54
54
  --pf-v6-c-table__toggle--c-button__toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
55
55
  --pf-v6-c-table__toggle--c-button__toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
56
- --pf-v6-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate: 360deg;
56
+ --pf-v6-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate: -180deg;
57
57
  --pf-v6-c-table__button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
58
58
  --pf-v6-c-table__button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
59
59
  --pf-v6-c-table__button--PaddingInlineStart: var(--pf-t--global--spacer--md);
@@ -64,7 +64,7 @@
64
64
  --pf-v6-c-table__button--BorderColor: var(--pf-t--global--border--color--high-contrast);
65
65
  --pf-v6-c-table__button--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
66
66
  --pf-v6-c-table__button--hover--BorderWidth: var(--pf-t--global--border--width--action--plain--hover);
67
- --pf-v6-c-table__button--BorderRadius: var(--pf-t--global--border--radius--small);
67
+ --pf-v6-c-table__button--BorderRadius: var(--pf-t--global--border--radius--action--plain--default);
68
68
  --pf-v6-c-table__button--hover--Color: var(--pf-t--global--text--color--regular);
69
69
  --pf-v6-c-table__button--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
70
70
  --pf-v6-c-table__check--PaddingInlineStart: var(--pf-t--global--spacer--sm);
@@ -87,6 +87,15 @@
87
87
  --pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity: 1;
88
88
  --pf-v6-c-table__expandable-row--TranslateY: 0;
89
89
  --pf-v6-c-table__tbody--m-expanded__expandable-row--TranslateY: 0;
90
+ }
91
+ @media screen and (prefers-reduced-motion: no-preference) {
92
+ .pf-v6-c-table {
93
+ --pf-v6-c-table__expandable-row--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
94
+ --pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
95
+ --pf-v6-c-table__expandable-row--TranslateY: -.5rem;
96
+ }
97
+ }
98
+ .pf-v6-c-table {
90
99
  --pf-v6-c-table__expandable-row-content--PaddingBlockStart: var(--pf-t--global--spacer--md);
91
100
  --pf-v6-c-table__expandable-row-content--PaddingBlockEnd: var(--pf-t--global--spacer--md);
92
101
  --pf-v6-c-table__expandable-row-content--PaddingInlineStart: var(--pf-t--global--spacer--md);
@@ -111,14 +120,14 @@
111
120
  --pf-v6-c-table__th--m-help--MinWidth: 11ch;
112
121
  --pf-v6-c-table__column-help--MarginInlineStart: var(--pf-t--global--spacer--sm);
113
122
  --pf-v6-c-table__compound-expansion-toggle__button--Color: var(--pf-t--global--icon--color--brand--default);
114
- --pf-v6-c-table__compound-expansion-toggle__button--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
123
+ --pf-v6-c-table__compound-expansion-toggle__button--BackgroundColor: transparent;
115
124
  --pf-v6-c-table__compound-expansion-toggle__button--hover--Color: var(--pf-t--global--icon--color--brand--hover);
116
- --pf-v6-c-table__compound-expansion-toggle__button--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
117
- --pf-v6-c-table__compound-expansion-toggle__button--expanded--BackgroundColor: var(--pf-t--global--background--color--action--plain--clicked);
125
+ --pf-v6-c-table__compound-expansion-toggle__button--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
126
+ --pf-v6-c-table__compound-expansion-toggle__button--expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
118
127
  --pf-v6-c-table__compound-expansion-toggle__button--after--BorderColor: var(--pf-t--global--border--color--clicked);
119
128
  --pf-v6-c-table__compound-expansion-toggle__button--after--BorderRadius: inherit;
120
129
  --pf-v6-c-table__compound-expansion-toggle__button--after--BorderBlockStartWidth: 0;
121
- --pf-v6-c-table__compound-expansion-toggle__button--hover--after--BorderBlockStartWidth: var(--pf-t--global--border--width--strong);
130
+ --pf-v6-c-table__compound-expansion-toggle__button--hover--after--BorderBlockStartWidth: 0;
122
131
  --pf-v6-c-table__compound-expansion-toggle--m-expanded__button--after--BorderBlockStartWidth: var(--pf-t--global--border--width--strong);
123
132
  --pf-v6-c-table--compound-expansion--m-expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
124
133
  --pf-v6-c-table--compound-expansion--m-expanded--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
@@ -144,61 +153,89 @@
144
153
  --pf-v6-c-table__tbody--m-clickable--m-expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
145
154
  --pf-v6-c-table__tbody--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
146
155
  --pf-v6-c-table__tbody--m-selected--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
156
+ --pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndWidth: var(--pf-v6-c-table--border-width--base);
157
+ --pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndColor: var(--pf-v6-c-table--BorderColor);
158
+ --pf-v6-c-table__thead--m-nested-column-header--after--ZIndex: calc(var(--pf-t--global--z-index--xs) + 2);
147
159
  --pf-v6-c-table__thead--m-nested-column-header--button--OutlineOffset: -0.1875rem;
148
160
  --pf-v6-c-table__thead--m-nested-column-header__tr--PaddingBlockStart: var(--pf-t--global--spacer--xs);
149
161
  --pf-v6-c-table__thead--m-nested-column-header__tr--PaddingBlockEnd: var(--pf-t--global--spacer--md);
150
162
  --pf-v6-c-table__subhead--Color: var(--pf-t--global--text--color--subtle);
151
163
  --pf-v6-c-table__nested-column-header__button--PaddingInlineStart: calc(var(--pf-v6-c-table__button--PaddingInlineStart) - var(--pf-t--global--spacer--control--horizontal--plain));
152
164
  --pf-v6-c-table__nested-column-header__button--PaddingInlineEnd: calc(var(--pf-v6-c-table__button--PaddingInlineEnd) - (var(--pf-t--global--spacer--control--horizontal--plain) / 2));
153
- --pf-v6-c-table--m-striped__tr--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
165
+ --pf-v6-c-table--m-striped__tr--BackgroundColor: var(--pf-t--global--background--color--striped--row--default);
166
+ --pf-v6-c-table--m-sticky-header--BackgroundColor: var(--pf-t--global--background--color--sticky--default);
154
167
  --pf-v6-c-table--m-sticky-header--cell--ZIndex: var(--pf-t--global--z-index--xs);
155
168
  --pf-v6-c-table--m-sticky-header--ZIndex: calc(var(--pf-t--global--z-index--xs) + 1);
156
169
  --pf-v6-c-table--m-sticky-header--border--ZIndex: calc(var(--pf-t--global--z-index--xs) + 2);
157
- }
158
- @media screen and (prefers-reduced-motion: no-preference) {
159
- .pf-v6-c-table {
160
- --pf-v6-c-table__expandable-row--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
161
- --pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
162
- --pf-v6-c-table__expandable-row--TranslateY: -.5rem;
163
- }
170
+ --pf-v6-c-table--m-sticky-header--BorderRadius: 0;
171
+ --pf-v6-c-table--m-sticky-header--BoxShadow: 0;
172
+ --pf-v6-c-table--m-sticky-header--BorderBlockEndWidth: var(--pf-v6-c-table--border-width--base);
173
+ --pf-v6-c-table--m-sticky-header--BorderBlockEndColor: var(--pf-v6-c-table--BorderColor);
174
+ --pf-v6-c-table--m-sticky-header--BorderRadius--glass: var(--pf-t--global--border--radius--medium);
175
+ --pf-v6-c-table--m-sticky-header--BoxShadow--glass: var(--pf-t--global--box-shadow--sm);
176
+ --pf-v6-c-table--m-sticky-header--TransitionTimingFunction--BackgroundColor: var(--pf-t--global--motion--timing-function--default);
177
+ --pf-v6-c-table--m-sticky-header--TransitionDuration--BackgroundColor: var(--pf-t--global--motion--duration--fade--default);
178
+ }
179
+ :where(.pf-v6-theme-glass) .pf-v6-c-table {
180
+ --pf-v6-c-table--m-sticky-header--BorderBlockEndWidth: 0;
181
+ --pf-v6-c-table--m-sticky-header--BoxShadow: var(--pf-v6-c-table--m-sticky-header--BoxShadow--glass);
182
+ --pf-v6-c-table--m-sticky-header--BorderRadius: var(--pf-v6-c-table--m-sticky-header--BorderRadius--glass);
164
183
  }
165
184
 
166
185
  .pf-v6-c-table {
167
186
  width: 100%;
168
187
  background-color: var(--pf-v6-c-table--BackgroundColor);
169
188
  }
189
+ :where(:root:not(.pf-v6-theme-glass)) .pf-v6-c-table.pf-m-plain, :where(:root.pf-v6-theme-glass) .pf-v6-c-table:not(.pf-m-no-plain-on-glass) {
190
+ --pf-v6-c-table--BackgroundColor: transparent;
191
+ --pf-v6-c-table__expandable-row-content--BackgroundColor: transparent;
192
+ --pf-v6-c-table__expandable-row-content--PaddingInlineStart: 0;
193
+ --pf-v6-c-table__expandable-row-content--PaddingInlineEnd: 0;
194
+ --pf-v6-c-table__control-row--BackgroundColor: transparent;
195
+ }
170
196
  .pf-v6-c-table.pf-m-fixed {
171
197
  table-layout: fixed;
172
198
  }
173
- .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead,
174
- .pf-v6-c-table .pf-v6-c-table__thead.pf-m-nested-column-header {
199
+ .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::before, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::after {
200
+ opacity: 0;
201
+ transition-timing-function: var(--pf-v6-c-table--m-sticky-header--TransitionTimingFunction--BackgroundColor);
202
+ transition-duration: var(--pf-v6-c-table--m-sticky-header--TransitionDuration--BackgroundColor);
203
+ transition-property: opacity;
204
+ }
205
+ .pf-v6-c-table.pf-m-sticky-header, .pf-v6-c-table.pf-m-sticky-header-stuck {
206
+ --pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndWidth: 0;
207
+ }
208
+ .pf-v6-c-table.pf-m-sticky-header-stuck > .pf-v6-c-table__thead::before, .pf-v6-c-table.pf-m-sticky-header-stuck > .pf-v6-c-table__thead::after {
209
+ opacity: 1;
210
+ }
211
+ .pf-v6-c-table.pf-m-sticky-header, .pf-v6-c-table.pf-m-sticky-header-base {
212
+ position: relative;
213
+ }
214
+ .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead {
175
215
  position: sticky;
176
216
  inset-block-start: 0;
177
217
  z-index: var(--pf-v6-c-table--m-sticky-header--ZIndex);
178
- background: var(--pf-v6-c-table--BackgroundColor);
179
218
  }
180
- .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead::before,
181
- .pf-v6-c-table .pf-v6-c-table__thead.pf-m-nested-column-header::before {
219
+ .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead::before, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::before {
182
220
  position: absolute;
183
- inset-block-start: 0;
184
- inset-block-end: 0;
185
- inset-inline-start: 0;
186
- inset-inline-end: 0;
187
- z-index: var(--pf-v6-c-table--m-sticky-header--border--ZIndex);
221
+ inset: 0;
222
+ z-index: -1;
188
223
  pointer-events: none;
189
224
  content: "";
190
- border-block-end: var(--pf-v6-c-table--border-width--base) solid var(--pf-v6-c-table--BorderColor);
225
+ background-color: var(--pf-v6-c-table--m-sticky-header--BackgroundColor);
226
+ border-radius: var(--pf-v6-c-table--m-sticky-header--BorderRadius);
227
+ box-shadow: var(--pf-v6-c-table--m-sticky-header--BoxShadow);
191
228
  }
192
- .pf-v6-c-table.pf-m-sticky-header {
193
- position: relative;
194
- }
195
- .pf-v6-c-table.pf-m-sticky-header thead:where(.pf-v6-c-table__thead) tr:where(.pf-v6-c-table__tr) > :where(th, td) {
229
+ .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead > :where(th, td), .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead > :where(th, td) {
196
230
  z-index: var(--pf-v6-c-table--m-sticky-header--cell--ZIndex);
197
231
  }
198
- .pf-v6-c-table.pf-m-sticky-header > .pf-m-nested-column-header {
199
- position: sticky;
200
- inset-block-start: 0;
201
- background: var(--pf-v6-c-table--BackgroundColor);
232
+ .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead::after, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::after {
233
+ position: absolute;
234
+ inset: 0;
235
+ z-index: var(--pf-v6-c-table--m-sticky-header--border--ZIndex);
236
+ pointer-events: none;
237
+ content: "";
238
+ border-block-end: var(--pf-v6-c-table--m-sticky-header--BorderBlockEndWidth) solid var(--pf-v6-c-table--m-sticky-header--BorderBlockEndColor);
202
239
  }
203
240
  .pf-v6-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:where(.pf-v6-c-table__tr):not(:last-child) {
204
241
  border-block-end: 0;
@@ -207,9 +244,6 @@
207
244
  .pf-v6-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:where(.pf-v6-c-table__tr):not(:last-child) td:where(.pf-v6-c-table__td):not([rowspan]) {
208
245
  --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table__thead--m-nested-column-header__tr--PaddingBlockEnd);
209
246
  }
210
- .pf-v6-c-table.pf-m-plain {
211
- --pf-v6-c-table--BackgroundColor: transparent;
212
- }
213
247
  .pf-v6-c-table.pf-m-striped:not(.pf-m-expandable) > tbody:where(.pf-v6-c-table__tbody) > tr:where(.pf-v6-c-table__tr):nth-child(odd), .pf-v6-c-table.pf-m-striped.pf-m-expandable > tbody:where(.pf-v6-c-table__tbody):nth-of-type(odd) > tr:where(.pf-v6-c-table__tr),
214
248
  .pf-v6-c-table > .pf-m-striped > tr:nth-child(odd),
215
249
  .pf-v6-c-table > .pf-m-striped-even > tr:nth-child(even),
@@ -226,22 +260,6 @@
226
260
  --pf-v6-hidden-visible--hidden--Display: none;
227
261
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
228
262
  display: var(--pf-v6-hidden-visible--Display);
229
- position: relative;
230
- width: var(--pf-v6-c-table--cell--Width);
231
- min-width: var(--pf-v6-c-table--cell--MinWidth);
232
- max-width: var(--pf-v6-c-table--cell--MaxWidth);
233
- padding-block-start: var(--pf-v6-c-table--cell--PaddingBlockStart);
234
- padding-block-end: var(--pf-v6-c-table--cell--PaddingBlockEnd);
235
- padding-inline-start: var(--pf-v6-c-table--cell--PaddingInlineStart);
236
- padding-inline-end: var(--pf-v6-c-table--cell--PaddingInlineEnd);
237
- overflow: var(--pf-v6-c-table--cell--Overflow);
238
- font-size: var(--pf-v6-c-table--cell--FontSize);
239
- font-weight: var(--pf-v6-c-table--cell--FontWeight);
240
- line-height: var(--pf-v6-c-table--cell--LineHeight);
241
- color: var(--pf-v6-c-table--cell--Color);
242
- text-overflow: var(--pf-v6-c-table--cell--TextOverflow);
243
- word-break: var(--pf-v6-c-table--cell--WordBreak);
244
- white-space: var(--pf-v6-c-table--cell--WhiteSpace);
245
263
  }
246
264
  .pf-v6-c-table tr:where(.pf-v6-c-table__tr) > :where(th, td).pf-m-hidden {
247
265
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--hidden--Display);
@@ -286,6 +304,24 @@
286
304
  --pf-v6-hidden-visible--Display: var(--pf-v6-hidden-visible--visible--Display);
287
305
  }
288
306
  }
307
+ .pf-v6-c-table tr:where(.pf-v6-c-table__tr) > :where(th, td) {
308
+ position: relative;
309
+ width: var(--pf-v6-c-table--cell--Width);
310
+ min-width: var(--pf-v6-c-table--cell--MinWidth);
311
+ max-width: var(--pf-v6-c-table--cell--MaxWidth);
312
+ padding-block-start: var(--pf-v6-c-table--cell--PaddingBlockStart);
313
+ padding-block-end: var(--pf-v6-c-table--cell--PaddingBlockEnd);
314
+ padding-inline-start: var(--pf-v6-c-table--cell--PaddingInlineStart);
315
+ padding-inline-end: var(--pf-v6-c-table--cell--PaddingInlineEnd);
316
+ overflow: var(--pf-v6-c-table--cell--Overflow);
317
+ font-size: var(--pf-v6-c-table--cell--FontSize);
318
+ font-weight: var(--pf-v6-c-table--cell--FontWeight);
319
+ line-height: var(--pf-v6-c-table--cell--LineHeight);
320
+ color: var(--pf-v6-c-table--cell--Color);
321
+ text-overflow: var(--pf-v6-c-table--cell--TextOverflow);
322
+ word-break: var(--pf-v6-c-table--cell--WordBreak);
323
+ white-space: var(--pf-v6-c-table--cell--WhiteSpace);
324
+ }
289
325
  .pf-v6-c-table tr:where(.pf-v6-c-table__tr) > :where(th, td):first-child {
290
326
  padding-inline-start: var(--pf-v6-c-table--cell--first-last-child--PaddingInline);
291
327
  }
@@ -642,16 +678,16 @@
642
678
  .pf-v6-c-table__toggle .pf-v6-c-button.pf-m-expanded .pf-v6-c-table__toggle-icon {
643
679
  transform: rotate(var(--pf-v6-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate));
644
680
  }
681
+ :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-table__toggle .pf-v6-c-table__toggle-icon {
682
+ scale: -1 1;
683
+ }
684
+
645
685
  .pf-v6-c-table__toggle .pf-v6-c-table__toggle-icon {
646
686
  transition-timing-function: var(--pf-v6-c-table__toggle--c-button__toggle-icon--TransitionTimingFunction);
647
687
  transition-duration: var(--pf-v6-c-table__toggle--c-button__toggle-icon--TransitionDuration);
648
688
  transition-property: transform;
649
689
  transform: rotate(var(--pf-v6-c-table__toggle--c-button__toggle-icon--Rotate));
650
690
  }
651
- :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-table__toggle .pf-v6-c-table__toggle-icon {
652
- scale: -1 1;
653
- }
654
-
655
691
  .pf-v6-c-table__toggle svg {
656
692
  pointer-events: none;
657
693
  }
@@ -890,6 +926,17 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
890
926
  --pf-v6-c-table__toggle--PaddingBlockEnd: var(--pf-v6-c-table__thead__toggle--PaddingBlockEnd);
891
927
  vertical-align: bottom;
892
928
  }
929
+ .pf-v6-c-table__thead.pf-m-nested-column-header {
930
+ position: relative;
931
+ }
932
+ .pf-v6-c-table__thead.pf-m-nested-column-header::after {
933
+ position: absolute;
934
+ inset: 0;
935
+ z-index: var(--pf-v6-c-table__thead--m-nested-column-header--after--ZIndex);
936
+ pointer-events: none;
937
+ content: "";
938
+ border-block-end: var(--pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndWidth) solid var(--pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndColor);
939
+ }
893
940
  .pf-v6-c-table__thead.pf-m-nested-column-header .pf-v6-c-table__button {
894
941
  --pf-v6-c-table__button--PaddingInlineStart: var(--pf-v6-c-table__nested-column-header__button--PaddingInlineStart);
895
942
  --pf-v6-c-table__button--PaddingInlineEnd: var(--pf-v6-c-table__nested-column-header__button--PaddingInlineEnd);
@@ -4,10 +4,13 @@ declare const _default: {
4
4
  "check": "pf-v6-c-check",
5
5
  "dirRtl": "pf-v6-m-dir-rtl",
6
6
  "modifiers": {
7
+ "plain": "pf-m-plain",
8
+ "noPlainOnGlass": "pf-m-no-plain-on-glass",
7
9
  "fixed": "pf-m-fixed",
10
+ "stickyHeaderBase": "pf-m-sticky-header-base",
8
11
  "stickyHeader": "pf-m-sticky-header",
12
+ "stickyHeaderStuck": "pf-m-sticky-header-stuck",
9
13
  "nestedColumnHeader": "pf-m-nested-column-header",
10
- "plain": "pf-m-plain",
11
14
  "striped": "pf-m-striped",
12
15
  "expandable": "pf-m-expandable",
13
16
  "stripedEven": "pf-m-striped-even",
@@ -92,6 +95,7 @@ declare const _default: {
92
95
  "tableThead": "pf-v6-c-table__thead",
93
96
  "tableToggle": "pf-v6-c-table__toggle",
94
97
  "tableToggleIcon": "pf-v6-c-table__toggle-icon",
95
- "tableTr": "pf-v6-c-table__tr"
98
+ "tableTr": "pf-v6-c-table__tr",
99
+ "themeGlass": "pf-v6-theme-glass"
96
100
  };
97
101
  export default _default;
@@ -6,10 +6,13 @@ exports.default = {
6
6
  "check": "pf-v6-c-check",
7
7
  "dirRtl": "pf-v6-m-dir-rtl",
8
8
  "modifiers": {
9
+ "plain": "pf-m-plain",
10
+ "noPlainOnGlass": "pf-m-no-plain-on-glass",
9
11
  "fixed": "pf-m-fixed",
12
+ "stickyHeaderBase": "pf-m-sticky-header-base",
10
13
  "stickyHeader": "pf-m-sticky-header",
14
+ "stickyHeaderStuck": "pf-m-sticky-header-stuck",
11
15
  "nestedColumnHeader": "pf-m-nested-column-header",
12
- "plain": "pf-m-plain",
13
16
  "striped": "pf-m-striped",
14
17
  "expandable": "pf-m-expandable",
15
18
  "stripedEven": "pf-m-striped-even",
@@ -94,5 +97,6 @@ exports.default = {
94
97
  "tableThead": "pf-v6-c-table__thead",
95
98
  "tableToggle": "pf-v6-c-table__toggle",
96
99
  "tableToggleIcon": "pf-v6-c-table__toggle-icon",
97
- "tableTr": "pf-v6-c-table__tr"
100
+ "tableTr": "pf-v6-c-table__tr",
101
+ "themeGlass": "pf-v6-theme-glass"
98
102
  };
@@ -4,10 +4,13 @@ export default {
4
4
  "check": "pf-v6-c-check",
5
5
  "dirRtl": "pf-v6-m-dir-rtl",
6
6
  "modifiers": {
7
+ "plain": "pf-m-plain",
8
+ "noPlainOnGlass": "pf-m-no-plain-on-glass",
7
9
  "fixed": "pf-m-fixed",
10
+ "stickyHeaderBase": "pf-m-sticky-header-base",
8
11
  "stickyHeader": "pf-m-sticky-header",
12
+ "stickyHeaderStuck": "pf-m-sticky-header-stuck",
9
13
  "nestedColumnHeader": "pf-m-nested-column-header",
10
- "plain": "pf-m-plain",
11
14
  "striped": "pf-m-striped",
12
15
  "expandable": "pf-m-expandable",
13
16
  "stripedEven": "pf-m-striped-even",
@@ -92,5 +95,6 @@ export default {
92
95
  "tableThead": "pf-v6-c-table__thead",
93
96
  "tableToggle": "pf-v6-c-table__toggle",
94
97
  "tableToggleIcon": "pf-v6-c-table__toggle-icon",
95
- "tableTr": "pf-v6-c-table__tr"
98
+ "tableTr": "pf-v6-c-table__tr",
99
+ "themeGlass": "pf-v6-theme-glass"
96
100
  };
@@ -38,14 +38,14 @@
38
38
  --pf-v6-c-tabs--m-vertical__item--PaddingInlineEnd: var(--pf-t--global--spacer--md);
39
39
  --pf-v6-c-tabs__item--m-current--BackgroundColor: transparent;
40
40
  --pf-v6-c-tabs--m-box__item--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
41
- --pf-v6-c-tabs--m-box__item--m-current--BackgroundColor: var(--pf-t--global--background--color--primary--default);
42
- --pf-v6-c-tabs--m-box--m-secondary__item--BackgroundColor: var(--pf-t--global--background--color--primary--default);
41
+ --pf-v6-c-tabs--m-box__item--m-current--BackgroundColor: transparent;
42
+ --pf-v6-c-tabs--m-box--m-secondary__item--BackgroundColor: transparent;
43
43
  --pf-v6-c-tabs--m-box--m-secondary__item--m-current--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
44
44
  --pf-v6-c-tabs__item--m-action--before--ZIndex: var(--pf-t--global--z-index--sm);
45
45
  --pf-v6-c-tabs__link--Color: var(--pf-t--global--text--color--subtle);
46
46
  --pf-v6-c-tabs__link--FontSize: var(--pf-t--global--font--size--sm);
47
47
  --pf-v6-c-tabs__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
48
- --pf-v6-c-tabs__link--BorderRadius: var(--pf-t--global--border--radius--small);
48
+ --pf-v6-c-tabs__link--BorderRadius: var(--pf-t--global--border--radius--action--plain--default);
49
49
  --pf-v6-c-tabs__link--BorderWidth: var(--pf-t--global--border--width--action--plain--hover);
50
50
  --pf-v6-c-tabs__link--BorderColor: transparent;
51
51
  --pf-v6-c-tabs__link--hover--BorderColor: var(--pf-t--global--border--color--high-contrast);
@@ -55,21 +55,21 @@
55
55
  --pf-v6-c-tabs__link--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
56
56
  --pf-v6-c-tabs__link--PaddingInlineStart: var(--pf-t--global--spacer--sm);
57
57
  --pf-v6-c-tabs__link--ColumnGap: var(--pf-t--global--spacer--sm);
58
- --pf-v6-c-tabs__link--disabled--Color: var(--pf-t--global--text--color--on-disabled);
59
- --pf-v6-c-tabs__link--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
58
+ --pf-v6-c-tabs__link--disabled--Color: var(--pf-t--global--text--color--disabled);
59
+ --pf-v6-c-tabs__link--disabled--BackgroundColor: transparent;
60
60
  --pf-v6-c-tabs__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
61
61
  --pf-v6-c-tabs__item--m-current__link--Color: var(--pf-t--global--text--color--regular);
62
62
  --pf-v6-c-tabs__item--m-current__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
63
63
  --pf-v6-c-tabs--m-vertical__link--PaddingInlineStart: var(--pf-t--global--spacer--sm);
64
64
  --pf-v6-c-tabs--m-vertical__link--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
65
65
  --pf-v6-c-tabs--m-box__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
66
- --pf-v6-c-tabs--m-box__link--disabled--Color: var(--pf-t--global--text--color--on-disabled);
67
- --pf-v6-c-tabs--m-box__link--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
66
+ --pf-v6-c-tabs--m-box__link--disabled--Color: var(--pf-t--global--text--color--disabled);
67
+ --pf-v6-c-tabs--m-box__link--disabled--BackgroundColor: transparent;
68
68
  --pf-v6-c-tabs--m-box__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
69
69
  --pf-v6-c-tabs--m-box__item--m-current__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
70
70
  --pf-v6-c-tabs--m-box--m-secondary__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
71
- --pf-v6-c-tabs--m-box--m-secondary__link--disabled--Color: var(--pf-t--global--text--color--on-disabled);
72
- --pf-v6-c-tabs--m-box--m-secondary__link--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
71
+ --pf-v6-c-tabs--m-box--m-secondary__link--disabled--Color: var(--pf-t--global--text--color--disabled);
72
+ --pf-v6-c-tabs--m-box--m-secondary__link--disabled--BackgroundColor: transparent;
73
73
  --pf-v6-c-tabs--m-box--m-secondary__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
74
74
  --pf-v6-c-tabs--m-box--m-secondary__item--m-current__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
75
75
  --pf-v6-c-tabs--m-subtab__link--FontSize: var(--pf-t--global--font--size--xs);
@@ -89,6 +89,7 @@
89
89
  --pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
90
90
  --pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor: var(--pf-t--global--border--color--high-contrast);
91
91
  --pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
92
+ --pf-v6-c-tabs--m-box__link--m-current--before--BorderBlockEndColor: var(--pf-t--global--border--color--alt);
92
93
  --pf-v6-c-tabs__link--disabled--before--BorderInlineEndWidth: 0;
93
94
  --pf-v6-c-tabs__link--disabled--before--BorderBlockEndWidth: var(--pf-v6-c-tabs--before--border-width--base);
94
95
  --pf-v6-c-tabs__link--disabled--before--BorderInlineStartWidth: 0;
@@ -101,7 +102,9 @@
101
102
  --pf-v6-c-tabs__link--after--BorderBlockStartWidth: 0;
102
103
  --pf-v6-c-tabs__link--after--BorderInlineEndWidth: 0;
103
104
  --pf-v6-c-tabs__link--after--BorderInlineStartWidth: 0;
104
- --pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--border--color--clicked);
105
+ --pf-v6-c-tabs__link--after--BorderRadius: var(--pf-t--global--border--radius--pill);
106
+ --pf-v6-c-tabs--m-box__link--after--BorderRadius: var(--pf-t--global--border--radius--sharp);
107
+ --pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--color--brand--accent--default);
105
108
  --pf-v6-c-tabs__item--m-current__link--after--BorderWidth: var(--pf-t--global--border--width--extra-strong);
106
109
  --pf-v6-c-tabs--link-accent--start: 0;
107
110
  --pf-v6-c-tabs--link-accent--length: 0;
@@ -149,7 +152,7 @@
149
152
  --pf-v6-c-tabs__toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
150
153
  --pf-v6-c-tabs__toggle-icon--Transition: transform var(--pf-v6-c-tabs__toggle-icon--TransitionDuration) var(--pf-v6-c-tabs__toggle-icon--TransitionTimingFunction);
151
154
  --pf-v6-c-tabs__toggle-icon--Rotate: 0;
152
- --pf-v6-c-tabs--m-expanded__toggle-icon--Rotate: 90deg;
155
+ --pf-v6-c-tabs--m-expanded__toggle-icon--Rotate: -180deg;
153
156
  --pf-v6-c-tabs--m-expandable--RowGap: var(--pf-t--global--spacer--sm);
154
157
  --pf-v6-c-tabs--m-expandable--PaddingBlockStart: var(--pf-t--global--spacer--sm);
155
158
  --pf-v6-c-tabs--m-expandable--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
@@ -175,7 +178,7 @@
175
178
  --pf-v6-c-tabs__link-toggle-icon--Transition: transform var(--pf-v6-c-tabs__link-toggle-icon--TransitionDuration) var(--pf-v6-c-tabs__link-toggle-icon--TransitionTimingFunction);
176
179
  --pf-v6-c-tabs__link-toggle-icon--Rotate: 0;
177
180
  --pf-v6-c-tabs__link-toggle-icon--FontSize: var(--pf-t--global--font--size--sm);
178
- --pf-v6-c-tabs__link--m-expanded__toggle-icon--Rotate: 90deg;
181
+ --pf-v6-c-tabs__link--m-expanded__toggle-icon--Rotate: -180deg;
179
182
  }
180
183
 
181
184
  .pf-v6-c-tabs {
@@ -242,6 +245,7 @@
242
245
  --pf-v6-c-tabs__link--before--BorderBlockEndWidth: var(--pf-v6-c-tabs__link--before--border-width--base);
243
246
  --pf-v6-c-tabs__link--after--InsetBlockStart: 0;
244
247
  --pf-v6-c-tabs__link--after--InsetBlockEnd: auto;
248
+ --pf-v6-c-tabs__link--after--BorderRadius: var(--pf-v6-c-tabs--m-box__link--after--BorderRadius);
245
249
  }
246
250
  .pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__link {
247
251
  --pf-v6-c-tabs__link--after--BorderBlockStartWidth: var(--pf-v6-c-tabs__link--after--BorderWidth);
@@ -251,7 +255,7 @@
251
255
  }
252
256
  .pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__item.pf-m-current {
253
257
  --pf-v6-c-tabs__link--BackgroundColor: var(--pf-v6-c-tabs__item--m-current__link--BackgroundColor);
254
- --pf-v6-c-tabs__link--before--BorderBlockEndColor: var(--pf-v6-c-tabs__link--BackgroundColor);
258
+ --pf-v6-c-tabs__link--before--BorderBlockEndColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderBlockEndColor);
255
259
  --pf-v6-c-tabs__link--before--BorderInlineStartColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartColor);
256
260
  --pf-v6-c-tabs__link--before--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth);
257
261
  --pf-v6-c-tabs__link--before--BorderInlineEndColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor);
@@ -303,8 +307,8 @@
303
307
  }
304
308
  .pf-v6-c-tabs.pf-m-vertical .pf-v6-c-tabs__list {
305
309
  position: relative;
306
- flex-direction: column;
307
310
  flex-grow: 1;
311
+ flex-direction: column;
308
312
  max-width: var(--pf-v6-c-tabs--m-vertical--MaxWidth);
309
313
  }
310
314
  .pf-v6-c-tabs.pf-m-vertical .pf-v6-c-tabs__list::before {
@@ -421,7 +425,8 @@
421
425
  --pf-v6-c-tabs__link--before--BorderBlockStartWidth: var(--pf-v6-c-tabs__link--before--border-width--base);
422
426
  }
423
427
  .pf-v6-c-tabs.pf-m-box.pf-m-vertical .pf-v6-c-tabs__item.pf-m-current {
424
- --pf-v6-c-tabs__link--before--BorderInlineEndColor: var(--pf-v6-c-tabs__item--m-current__link--BackgroundColor);
428
+ --pf-v6-c-tabs__link--before--BorderInlineEndColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderBlockEndColor);
429
+ --pf-v6-c-tabs__link--before--BorderInlineEndWidth: var(--pf-v6-c-tabs__link--before--border-width--base);
425
430
  --pf-v6-c-tabs__link--before--BorderBlockEndColor: var(--pf-v6-c-tabs__link--before--border-color--base);
426
431
  }
427
432
  .pf-v6-c-tabs.pf-m-box.pf-m-vertical .pf-v6-c-tabs__item:first-child.pf-m-current {
@@ -449,7 +454,6 @@
449
454
  .pf-v6-c-tabs.pf-m-nav {
450
455
  --pf-v6-c-tabs__link--disabled--BackgroundColor: transparent;
451
456
  --pf-v6-c-tabs__link--disabled--Color: var(--pf-v6-c-tabs--m-nav__link--disabled--Color);
452
- --pf-v6-c-tabs__link--hover--BorderColor: transparent;
453
457
  --pf-v6-c-tabs__link--BorderRadius: var(--pf-v6-c-tabs--m-nav__link--BorderRadius);
454
458
  }
455
459
  .pf-v6-c-tabs.pf-m-nav::before,
@@ -465,9 +469,8 @@
465
469
  align-items: center;
466
470
  }
467
471
 
468
- .pf-v6-c-tabs__toggle-button .pf-v6-c-button {
469
- justify-content: start;
470
- white-space: normal;
472
+ :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tabs__toggle-icon {
473
+ scale: -1 1;
471
474
  }
472
475
 
473
476
  .pf-v6-c-tabs__toggle-icon {
@@ -475,10 +478,10 @@
475
478
  transition: var(--pf-v6-c-tabs__toggle-icon--Transition);
476
479
  transform: rotate(var(--pf-v6-c-tabs__toggle-icon--Rotate));
477
480
  }
478
- :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tabs__toggle-icon {
479
- scale: -1 1;
480
- }
481
481
 
482
+ .pf-v6-c-tabs__list::-webkit-scrollbar {
483
+ display: none;
484
+ }
482
485
  .pf-v6-c-tabs__list {
483
486
  scrollbar-width: none;
484
487
  -ms-overflow-style: -ms-autohiding-scrollbar;
@@ -490,20 +493,17 @@
490
493
  scroll-snap-type: var(--pf-v6-c-tabs__list--ScrollSnapType);
491
494
  -webkit-overflow-scrolling: touch;
492
495
  }
493
- .pf-v6-c-tabs__list::-webkit-scrollbar {
494
- display: none;
495
- }
496
496
 
497
497
  .pf-v6-c-tabs__item {
498
498
  position: relative;
499
499
  display: flex;
500
500
  flex: none;
501
501
  column-gap: var(--pf-v6-c-tabs__item--ColumnGap);
502
- scroll-snap-align: var(--pf-v6-c-tabs__item--ScrollSnapAlign);
503
502
  padding-block-start: var(--pf-v6-c-tabs__item--PaddingBlockStart);
504
503
  padding-block-end: var(--pf-v6-c-tabs__item--PaddingBlockEnd);
505
504
  padding-inline-start: var(--pf-v6-c-tabs__item--PaddingInlineStart);
506
505
  padding-inline-end: var(--pf-v6-c-tabs__item--PaddingInlineEnd);
506
+ scroll-snap-align: var(--pf-v6-c-tabs__item--ScrollSnapAlign);
507
507
  background-color: var(--pf-v6-c-tabs__item--BackgroundColor);
508
508
  }
509
509
  .pf-v6-c-tabs__item.pf-m-current {
@@ -556,6 +556,10 @@
556
556
  border: 0;
557
557
  }
558
558
 
559
+ .pf-v6-c-tabs__item.pf-m-action, .pf-v6-c-tabs__link {
560
+ --pf-v6-c-tabs__link--after--BorderBlockEndWidth: var(--pf-v6-c-tabs__link--after--BorderWidth);
561
+ }
562
+
559
563
  .pf-v6-c-tabs__link {
560
564
  display: flex;
561
565
  flex: 1;
@@ -573,10 +577,6 @@
573
577
  border-radius: var(--pf-v6-c-tabs__link--BorderRadius);
574
578
  transition: background-color var(--pf-v6-c-tabs__link--TransitionDuration--background-color) var(--pf-v6-c-tabs__link--TransitionTimingFunction--background-color);
575
579
  }
576
- .pf-v6-c-tabs__item.pf-m-action, .pf-v6-c-tabs__link {
577
- --pf-v6-c-tabs__link--after--BorderBlockEndWidth: var(--pf-v6-c-tabs__link--after--BorderWidth);
578
- }
579
-
580
580
  .pf-v6-c-tabs__item.pf-m-action::before, .pf-v6-c-tabs__link::before {
581
581
  pointer-events: none;
582
582
  border-block-start-color: var(--pf-v6-c-tabs__link--before--BorderBlockStartColor);
@@ -599,6 +599,7 @@
599
599
  border-block-end-width: var(--pf-v6-c-tabs__link--after--BorderBlockEndWidth);
600
600
  border-inline-start-width: var(--pf-v6-c-tabs__link--after--BorderInlineStartWidth);
601
601
  border-inline-end-width: var(--pf-v6-c-tabs__link--after--BorderInlineEndWidth);
602
+ border-radius: var(--pf-v6-c-tabs__link--after--BorderRadius);
602
603
  }
603
604
 
604
605
  .pf-v6-c-tabs__link:where(:hover, :focus) {
@@ -631,6 +632,10 @@
631
632
  --pf-v6-c-tabs__link-toggle-icon--Rotate: var(--pf-v6-c-tabs__link--m-expanded__toggle-icon--Rotate);
632
633
  }
633
634
 
635
+ :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tabs__link-toggle-icon {
636
+ scale: -1 1;
637
+ }
638
+
634
639
  .pf-v6-c-tabs__link-toggle-icon {
635
640
  align-self: end;
636
641
  font-size: var(--pf-v6-c-tabs__link-toggle-icon--FontSize);
@@ -638,9 +643,6 @@
638
643
  transition: var(--pf-v6-c-tabs__link-toggle-icon--Transition);
639
644
  transform: rotate(var(--pf-v6-c-tabs__link-toggle-icon--Rotate));
640
645
  }
641
- :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tabs__link-toggle-icon {
642
- scale: -1 1;
643
- }
644
646
 
645
647
  .pf-v6-c-tabs__item-action {
646
648
  display: flex;
@@ -80,7 +80,6 @@ declare const _default: {
80
80
  "tabsList": "pf-v6-c-tabs__list",
81
81
  "tabsScrollButton": "pf-v6-c-tabs__scroll-button",
82
82
  "tabsToggle": "pf-v6-c-tabs__toggle",
83
- "tabsToggleButton": "pf-v6-c-tabs__toggle-button",
84
83
  "tabsToggleIcon": "pf-v6-c-tabs__toggle-icon"
85
84
  };
86
85
  export default _default;
@@ -82,6 +82,5 @@ exports.default = {
82
82
  "tabsList": "pf-v6-c-tabs__list",
83
83
  "tabsScrollButton": "pf-v6-c-tabs__scroll-button",
84
84
  "tabsToggle": "pf-v6-c-tabs__toggle",
85
- "tabsToggleButton": "pf-v6-c-tabs__toggle-button",
86
85
  "tabsToggleIcon": "pf-v6-c-tabs__toggle-icon"
87
86
  };
@@ -80,6 +80,5 @@ export default {
80
80
  "tabsList": "pf-v6-c-tabs__list",
81
81
  "tabsScrollButton": "pf-v6-c-tabs__scroll-button",
82
82
  "tabsToggle": "pf-v6-c-tabs__toggle",
83
- "tabsToggleButton": "pf-v6-c-tabs__toggle-button",
84
83
  "tabsToggleIcon": "pf-v6-c-tabs__toggle-icon"
85
84
  };
@@ -1,6 +1,6 @@
1
1
  .pf-v6-c-text-input-group {
2
2
  --pf-v6-c-text-input-group--BackgroundColor: var(--pf-t--global--background--color--control--default);
3
- --pf-v6-c-text-input-group--BorderColor: var(--pf-t--global--border--color--default);
3
+ --pf-v6-c-text-input-group--BorderColor: var(--pf-t--global--border--color--control--default);
4
4
  --pf-v6-c-text-input-group--m-success--BorderColor: var(--pf-t--global--border--color--status--success--default);
5
5
  --pf-v6-c-text-input-group--m-warning--BorderColor: var(--pf-t--global--border--color--status--warning--default);
6
6
  --pf-v6-c-text-input-group--m-error--BorderColor: var(--pf-t--global--border--color--status--danger--default);
@@ -17,7 +17,7 @@
17
17
  --pf-v6-c-text-input-group--utilities--status__text-input--PaddingInlineEnd: calc(var(--pf-t--global--spacer--sm) + var(--pf-v6-c-text-input-group__icon--FontSize) + var(--pf-t--global--spacer--gap--text-to-element--default));
18
18
  --pf-v6-c-text-input-group__main--RowGap: var(--pf-t--global--spacer--xs);
19
19
  --pf-v6-c-text-input-group__main--ColumnGap: var(--pf-t--global--spacer--xs);
20
- --pf-v6-c-text-input-group__text--BorderRadius--base: var(--pf-t--global--border--radius--small);
20
+ --pf-v6-c-text-input-group__text--BorderRadius--base: var(--pf-t--global--border--radius--control--form-element);
21
21
  --pf-v6-c-text-input-group__text--BorderStartStartRadius: var(--pf-v6-c-text-input-group__text--BorderRadius--base);
22
22
  --pf-v6-c-text-input-group__text--BorderStartEndRadius: var(--pf-v6-c-text-input-group__text--BorderRadius--base);
23
23
  --pf-v6-c-text-input-group__text--BorderEndEndRadius: var(--pf-v6-c-text-input-group__text--BorderRadius--base);