Skip to content

Commit 555a611

Browse files
committed
rm unsupported wrap reverse
1 parent b43133d commit 555a611

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

packages/react-core/src/components/Toolbar/ToolbarGroup.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@ export interface ToolbarGroupProps extends Omit<React.HTMLProps<HTMLDivElement>,
159159
};
160160
/** Value to set for row wrapping at various breakpoints */
161161
rowWrap?: {
162-
default?: 'wrap' | 'wrapReverse' | 'nowrap';
163-
sm?: 'wrap' | 'wrapReverse' | 'nowrap';
164-
md?: 'wrap' | 'wrapReverse' | 'nowrap';
165-
lg?: 'wrap' | 'wrapReverse' | 'nowrap';
166-
xl?: 'wrap' | 'wrapReverse' | 'nowrap';
167-
'2xl'?: 'wrap' | 'wrapReverse' | 'nowrap';
162+
default?: 'wrap' | 'nowrap';
163+
sm?: 'wrap' | 'nowrap';
164+
md?: 'wrap' | 'nowrap';
165+
lg?: 'wrap' | 'nowrap';
166+
xl?: 'wrap' | 'nowrap';
167+
'2xl'?: 'wrap' | 'nowrap';
168168
};
169169
/** Content to be rendered inside the data toolbar group */
170170
children?: React.ReactNode;

packages/react-core/src/components/Toolbar/ToolbarItem.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,12 @@ export interface ToolbarItemProps extends React.HTMLProps<HTMLDivElement> {
153153
};
154154
/** Value to set for row wrapping at various breakpoints */
155155
rowWrap?: {
156-
default?: 'wrap' | 'wrapReverse' | 'nowrap';
157-
sm?: 'wrap' | 'wrapReverse' | 'nowrap';
158-
md?: 'wrap' | 'wrapReverse' | 'nowrap';
159-
lg?: 'wrap' | 'wrapReverse' | 'nowrap';
160-
xl?: 'wrap' | 'wrapReverse' | 'nowrap';
161-
'2xl'?: 'wrap' | 'wrapReverse' | 'nowrap';
156+
default?: 'wrap' | 'nowrap';
157+
sm?: 'wrap' | 'nowrap';
158+
md?: 'wrap' | 'nowrap';
159+
lg?: 'wrap' | 'nowrap';
160+
xl?: 'wrap' | 'nowrap';
161+
'2xl'?: 'wrap' | 'nowrap';
162162
};
163163
/** id for this data toolbar item */
164164
id?: string;

0 commit comments

Comments
 (0)