Skip to content

Commit

Permalink
fix(Toolbar): updated typo in rowgap values
Browse files Browse the repository at this point in the history
  • Loading branch information
thatblindgeye committed May 23, 2024
1 parent a104a4b commit 8aa6a73
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions packages/react-core/src/components/Toolbar/ToolbarGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export interface ToolbarGroupProps extends Omit<React.HTMLProps<HTMLDivElement>,
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
md?:
| 'rowGapNone'
Expand All @@ -115,7 +115,7 @@ export interface ToolbarGroupProps extends Omit<React.HTMLProps<HTMLDivElement>,
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
lg?:
| 'rowGapNone'
Expand All @@ -125,7 +125,7 @@ export interface ToolbarGroupProps extends Omit<React.HTMLProps<HTMLDivElement>,
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
xl?:
| 'rowGapNone'
Expand All @@ -135,7 +135,7 @@ export interface ToolbarGroupProps extends Omit<React.HTMLProps<HTMLDivElement>,
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
'2xl'?:
| 'rowGapNone'
Expand All @@ -145,7 +145,7 @@ export interface ToolbarGroupProps extends Omit<React.HTMLProps<HTMLDivElement>,
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
};
/** Content to be rendered inside the data toolbar group */
Expand Down
10 changes: 5 additions & 5 deletions packages/react-core/src/components/Toolbar/ToolbarItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export interface ToolbarItemProps extends React.HTMLProps<HTMLDivElement> {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
md?:
| 'rowGapNone'
Expand All @@ -119,7 +119,7 @@ export interface ToolbarItemProps extends React.HTMLProps<HTMLDivElement> {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
lg?:
| 'rowGapNone'
Expand All @@ -129,7 +129,7 @@ export interface ToolbarItemProps extends React.HTMLProps<HTMLDivElement> {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
xl?:
| 'rowGapNone'
Expand All @@ -139,7 +139,7 @@ export interface ToolbarItemProps extends React.HTMLProps<HTMLDivElement> {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
'2xl'?:
| 'rowGapNone'
Expand All @@ -149,7 +149,7 @@ export interface ToolbarItemProps extends React.HTMLProps<HTMLDivElement> {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
};
/** id for this data toolbar item */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export interface ToolbarToggleGroupProps extends ToolbarGroupProps {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
md?:
| 'rowGapNone'
Expand All @@ -116,7 +116,7 @@ export interface ToolbarToggleGroupProps extends ToolbarGroupProps {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
lg?:
| 'rowGapNone'
Expand All @@ -126,7 +126,7 @@ export interface ToolbarToggleGroupProps extends ToolbarGroupProps {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
xl?:
| 'rowGapNone'
Expand All @@ -136,7 +136,7 @@ export interface ToolbarToggleGroupProps extends ToolbarGroupProps {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
'2xl'?:
| 'rowGapNone'
Expand All @@ -146,7 +146,7 @@ export interface ToolbarToggleGroupProps extends ToolbarGroupProps {
| 'rowGapLg'
| 'rowGapXl'
| 'rowGap_2xl'
| 'rowGao_3xl'
| 'rowGap_3xl'
| 'rowGap_4xl';
};
/** Reference to a chip container group for filters inside the toolbar toggle group */
Expand Down

0 comments on commit 8aa6a73

Please sign in to comment.