diff --git a/packages/react-charts/src/components/ChartBullet/__snapshots__/ChartBullet.test.tsx.snap b/packages/react-charts/src/components/ChartBullet/__snapshots__/ChartBullet.test.tsx.snap index 081c5d999c4..a74b63d5b53 100644 --- a/packages/react-charts/src/components/ChartBullet/__snapshots__/ChartBullet.test.tsx.snap +++ b/packages/react-charts/src/components/ChartBullet/__snapshots__/ChartBullet.test.tsx.snap @@ -380,7 +380,7 @@ A 0 0 0 0 1, 312.5, 85 index="0" role="presentation" shape-rendering="auto" - style="fill: var(--pf-v6-chart-bullet--qualitative-range--ColorScale--200, #92c5f9); stroke: var(--pf-v6-chart-bar--data--stroke, none); padding: 8px; stroke-width: 0;" + style="fill: var(--pf-v6-chart-bullet--qualitative-range--ColorScale--200, #e0e0e0); stroke: var(--pf-v6-chart-bar--data--stroke, none); padding: 8px; stroke-width: 0;" /> diff --git a/packages/react-core/package.json b/packages/react-core/package.json index b7dee972d53..8f0cd49695c 100644 --- a/packages/react-core/package.json +++ b/packages/react-core/package.json @@ -55,7 +55,7 @@ "tslib": "^2.5.0" }, "devDependencies": { - "@patternfly/patternfly": "6.0.0-alpha.135", + "@patternfly/patternfly": "6.0.0-alpha.139", "@rollup/plugin-commonjs": "^25.0.0", "@rollup/plugin-node-resolve": "^15.0.2", "@rollup/plugin-replace": "^5.0.2", diff --git a/packages/react-core/src/components/Toolbar/ToolbarGroup.tsx b/packages/react-core/src/components/Toolbar/ToolbarGroup.tsx index 770618fe846..033fd9ce414 100644 --- a/packages/react-core/src/components/Toolbar/ToolbarGroup.tsx +++ b/packages/react-core/src/components/Toolbar/ToolbarGroup.tsx @@ -34,21 +34,119 @@ export interface ToolbarGroupProps extends Omit, alignItems?: 'start' | 'center' | 'baseline' | 'default'; /** Vertical alignment */ alignSelf?: 'start' | 'center' | 'baseline' | 'default'; - /** Spacers at various breakpoints. */ - spacer?: { - default?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - md?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - lg?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - xl?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - '2xl'?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; + /** Sets both the column and row gap at various breakpoints. */ + gap?: { + default?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + md?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + lg?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + xl?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + '2xl'?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; }; - /** Space items at various breakpoints. */ - spaceItems?: { - default?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; - md?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; - lg?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; - xl?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; - '2xl'?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; + /** Sets only the column gap at various breakpoints. */ + columnGap?: { + default?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + md?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + lg?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + xl?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + '2xl'?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + }; + /** Sets only the row gap at various breakpoints. */ + rowGap?: { + default?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + md?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + lg?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + xl?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + '2xl'?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; }; /** Content to be rendered inside the data toolbar group */ children?: React.ReactNode; @@ -65,8 +163,9 @@ class ToolbarGroupWithRef extends React.Component { align, alignItems, alignSelf, - spacer, - spaceItems, + gap, + columnGap, + rowGap, className, variant, children, @@ -84,8 +183,9 @@ class ToolbarGroupWithRef extends React.Component { variant && styles.modifiers[toCamel(variant) as 'filterGroup' | 'iconButtonGroup'], formatBreakpointMods(visibility, styles, '', getBreakpoint(width)), formatBreakpointMods(align, styles, '', getBreakpoint(width)), - formatBreakpointMods(spacer, styles, '', getBreakpoint(width)), - formatBreakpointMods(spaceItems, styles, '', getBreakpoint(width)), + formatBreakpointMods(gap, styles, '', getBreakpoint(width)), + formatBreakpointMods(columnGap, styles, '', getBreakpoint(width)), + formatBreakpointMods(rowGap, styles, '', getBreakpoint(width)), alignItems === 'start' && styles.modifiers.alignItemsStart, alignItems === 'center' && styles.modifiers.alignItemsCenter, alignItems === 'baseline' && styles.modifiers.alignItemsBaseline, diff --git a/packages/react-core/src/components/Toolbar/ToolbarItem.tsx b/packages/react-core/src/components/Toolbar/ToolbarItem.tsx index e0134b2b60f..5d4338a8100 100644 --- a/packages/react-core/src/components/Toolbar/ToolbarItem.tsx +++ b/packages/react-core/src/components/Toolbar/ToolbarItem.tsx @@ -38,13 +38,119 @@ export interface ToolbarItemProps extends React.HTMLProps { alignItems?: 'start' | 'center' | 'baseline' | 'default'; /** Vertical alignment */ alignSelf?: 'start' | 'center' | 'baseline' | 'default'; - /** Spacers at various breakpoints. */ - spacer?: { - default?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - md?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - lg?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - xl?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - '2xl'?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; + /** Sets both the column and row gap at various breakpoints. */ + gap?: { + default?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + md?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + lg?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + xl?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + '2xl'?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + }; + /** Sets only the column gap at various breakpoints. */ + columnGap?: { + default?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + md?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + lg?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + xl?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + '2xl'?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + }; + /** Sets only the row gap at various breakpoints. */ + rowGap?: { + default?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + md?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + lg?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + xl?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + '2xl'?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; }; /** id for this data toolbar item */ id?: string; @@ -60,7 +166,9 @@ export const ToolbarItem: React.FunctionComponent = ({ className, variant, visibility, - spacer, + gap, + columnGap, + rowGap, align, alignSelf, alignItems, @@ -86,7 +194,9 @@ export const ToolbarItem: React.FunctionComponent = ({ isOverflowContainer && styles.modifiers.overflowContainer, formatBreakpointMods(visibility, styles, '', getBreakpoint(width)), formatBreakpointMods(align, styles, '', getBreakpoint(width)), - formatBreakpointMods(spacer, styles, '', getBreakpoint(width)), + formatBreakpointMods(gap, styles, '', getBreakpoint(width)), + formatBreakpointMods(columnGap, styles, '', getBreakpoint(width)), + formatBreakpointMods(rowGap, styles, '', getBreakpoint(width)), alignItems === 'start' && styles.modifiers.alignItemsStart, alignItems === 'center' && styles.modifiers.alignItemsCenter, alignItems === 'baseline' && styles.modifiers.alignItemsBaseline, diff --git a/packages/react-core/src/components/Toolbar/ToolbarToggleGroup.tsx b/packages/react-core/src/components/Toolbar/ToolbarToggleGroup.tsx index f6f1d075164..5c662b67b1a 100644 --- a/packages/react-core/src/components/Toolbar/ToolbarToggleGroup.tsx +++ b/packages/react-core/src/components/Toolbar/ToolbarToggleGroup.tsx @@ -35,21 +35,119 @@ export interface ToolbarToggleGroupProps extends ToolbarGroupProps { xl?: 'alignEnd' | 'alignStart'; '2xl'?: 'alignEnd' | 'alignStart'; }; - /** Spacers at various breakpoints. */ - spacer?: { - default?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - md?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - lg?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - xl?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; - '2xl'?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; + /** Sets both the column and row gap at various breakpoints. */ + gap?: { + default?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + md?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + lg?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + xl?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; + '2xl'?: 'gapNone' | 'gapXs' | 'gapSm' | 'gapMd' | 'gapLg' | 'gapXl' | 'gap_2xl' | 'gap_3xl' | 'gap_4xl'; }; - /** Space items at various breakpoints. */ - spaceItems?: { - default?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; - md?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; - lg?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; - xl?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; - '2xl'?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; + /** Sets only the column gap at various breakpoints. */ + columnGap?: { + default?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + md?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + lg?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + xl?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + '2xl'?: + | 'columnGapNone' + | 'columnGapXs' + | 'columnGapSm' + | 'columnGapMd' + | 'columnGapLg' + | 'columnGapXl' + | 'columnGap_2xl' + | 'columnGap_3xl' + | 'columnGap_4xl'; + }; + /** Sets only the row gap at various breakpoints. */ + rowGap?: { + default?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + md?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + lg?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + xl?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; + '2xl'?: + | 'rowGapNone' + | 'rowGapXs' + | 'rowGapSm' + | 'rowGapMd' + | 'rowGapLg' + | 'rowGapXl' + | 'rowGap_2xl' + | 'rowGao_3xl' + | 'rowGap_4xl'; }; /** Reference to a chip container group for filters inside the toolbar toggle group */ chipContainerRef?: React.RefObject; @@ -79,8 +177,9 @@ class ToolbarToggleGroup extends React.Component { visibility, breakpoint, alignment, - spacer, - spaceItems, + gap, + columnGap, + rowGap, className, children, isExpanded, @@ -166,8 +265,9 @@ class ToolbarToggleGroup extends React.Component { formatBreakpointMods(breakpointMod, styles, '', getBreakpoint(width)), formatBreakpointMods(visibility, styles, '', getBreakpoint(width)), formatBreakpointMods(alignment, styles, '', getBreakpoint(width)), - formatBreakpointMods(spacer, styles, '', getBreakpoint(width)), - formatBreakpointMods(spaceItems, styles, '', getBreakpoint(width)), + formatBreakpointMods(gap, styles, '', getBreakpoint(width)), + formatBreakpointMods(columnGap, styles, '', getBreakpoint(width)), + formatBreakpointMods(rowGap, styles, '', getBreakpoint(width)), className )} {...props} diff --git a/packages/react-core/src/components/Toolbar/examples/Toolbar.md b/packages/react-core/src/components/Toolbar/examples/Toolbar.md index d662a229a4d..50a1bd1c7e5 100644 --- a/packages/react-core/src/components/Toolbar/examples/Toolbar.md +++ b/packages/react-core/src/components/Toolbar/examples/Toolbar.md @@ -28,7 +28,7 @@ Note: This example does not demonstrate responsive toolbar behavior. Responsive You may adjust the space between toolbar items to arrange them into groups. Read our spacers documentation to learn more about using spacers. -Items are spaced “16px” apart by default. To adjust the size of the space between items, use the `spacer` property of each ``. You can set the `spacer` value at multiple breakpoints, including "default", "md", "lg", "xl", and "2xl". Available `spacer` values include "spacerNone", "spacerSm", "spacerMd", or "spacerLg" into each breakpoint. +Items are spaced “16px” apart by default via their parents' `gap` or `columnGap` property. You can set the property values at multiple breakpoints, including "default", "md", "lg", "xl", and "2xl". ```ts file="./ToolbarSpacers.tsx" diff --git a/packages/react-core/src/components/Toolbar/examples/ToolbarSpacers.tsx b/packages/react-core/src/components/Toolbar/examples/ToolbarSpacers.tsx index 8afb2db24b7..fc34b5631cd 100644 --- a/packages/react-core/src/components/Toolbar/examples/ToolbarSpacers.tsx +++ b/packages/react-core/src/components/Toolbar/examples/ToolbarSpacers.tsx @@ -5,34 +5,27 @@ import { Button } from '@patternfly/react-core'; export const ToolbarSpacers: React.FunctionComponent = () => { const items = ( - + - + - + - + - + - + diff --git a/packages/react-core/src/demos/DashboardHeader.tsx b/packages/react-core/src/demos/DashboardHeader.tsx index cfc57f6a492..3dd6cf313ab 100644 --- a/packages/react-core/src/demos/DashboardHeader.tsx +++ b/packages/react-core/src/demos/DashboardHeader.tsx @@ -101,7 +101,7 @@ export const DashboardHeader: React.FC = ({ notificationBa {notificationBadge ?? ( diff --git a/packages/react-core/src/demos/NotificationDrawer/examples/NotificationDrawerBasic.tsx b/packages/react-core/src/demos/NotificationDrawer/examples/NotificationDrawerBasic.tsx index b309911b911..a5b7926f9b6 100644 --- a/packages/react-core/src/demos/NotificationDrawer/examples/NotificationDrawerBasic.tsx +++ b/packages/react-core/src/demos/NotificationDrawer/examples/NotificationDrawerBasic.tsx @@ -176,7 +176,7 @@ export const NotificationDrawerBasic: React.FunctionComponent = () => { const headerToolbar = ( - + { const headerToolbar = ( - + { diff --git a/packages/react-core/src/demos/RTL/examples/PaginatedTable.tsx b/packages/react-core/src/demos/RTL/examples/PaginatedTable.tsx index 8e60337b025..61173162015 100644 --- a/packages/react-core/src/demos/RTL/examples/PaginatedTable.tsx +++ b/packages/react-core/src/demos/RTL/examples/PaginatedTable.tsx @@ -366,7 +366,7 @@ export const PaginatedTableAction: React.FunctionComponent = () => { diff --git a/packages/react-core/src/demos/examples/Masthead/MastheadWithUtilitiesAndUserDropdownMenu.tsx b/packages/react-core/src/demos/examples/Masthead/MastheadWithUtilitiesAndUserDropdownMenu.tsx index 1a4de934f38..2d5a6a9ab12 100644 --- a/packages/react-core/src/demos/examples/Masthead/MastheadWithUtilitiesAndUserDropdownMenu.tsx +++ b/packages/react-core/src/demos/examples/Masthead/MastheadWithUtilitiesAndUserDropdownMenu.tsx @@ -383,7 +383,7 @@ export const MastheadWithUtilitiesAndUserDropdownMenu: React.FunctionComponent =