Skip to content

Commit ef302ae

Browse files
committed
Fix directional hint typo
1 parent 9e34996 commit ef302ae

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

packages/components/Callout/src/Callout.settings.macos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const settings: IComposeSettings<ICalloutType> = [
1010
borderColor: 'transparent',
1111
borderWidth: 0,
1212
borderRadius: 5,
13-
directionalHint: 'bottonLeftEdge',
13+
directionalHint: 'bottomLeftEdge',
1414
},
1515
root: {
1616
style: {

packages/components/Callout/src/Callout.settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const settings: IComposeSettings<ICalloutType> = [
1010
beakWidth: 20,
1111
borderColor: 'bodyFrameBackground',
1212
borderWidth: 1,
13-
directionalHint: 'bottonLeftEdge',
13+
directionalHint: 'bottomLeftEdge',
1414
gapSpace: 0,
1515
minPadding: 0,
1616
},

packages/components/Callout/src/Callout.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export type DirectionalHint =
2222
| 'rightTopEdge'
2323
| 'rightCenter'
2424
| 'rightBottomEdge'
25-
| 'bottonLeftEdge'
25+
| 'bottomLeftEdge'
2626
| 'bottomAutoEdge'
2727
| 'bottomCenter'
2828
| 'bottomRightEdge';

packages/components/Callout/src/CalloutNativeComponent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ export interface NativeProps extends ViewProps {
3535
| 'rightTopEdge'
3636
| 'rightCenter'
3737
| 'rightBottomEdge'
38-
| 'bottonLeftEdge'
38+
| 'bottomLeftEdge'
3939
| 'bottomAutoEdge'
4040
| 'bottomCenter'
4141
| 'bottomRightEdge',
42-
'bottonLeftEdge'
42+
'bottomLeftEdge'
4343
>;
4444
dismissBehaviors?: string[];
4545
doNotTakePointerCapture?: boolean;

packages/components/Callout/src/MacOSCalloutNativeComponent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export interface NativeProps extends ViewProps {
3131
| 'rightTopEdge'
3232
| 'rightCenter'
3333
| 'rightBottomEdge'
34-
| 'bottonLeftEdge'
34+
| 'bottomLeftEdge'
3535
| 'bottomAutoEdge'
3636
| 'bottomCenter'
3737
| 'bottomRightEdge',

packages/components/ContextualMenu/src/ContextualMenu.settings.macos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { contextualMenuName } from './ContextualMenu.types';
88
export const settings: IComposeSettings<ContextualMenuType> = [
99
{
1010
tokens: {
11-
directionalHint: I18nManager.isRTL ? 'bottomRightEdge' : 'bottonLeftEdge',
11+
directionalHint: I18nManager.isRTL ? 'bottomRightEdge' : 'bottomLeftEdge',
1212
},
1313
container: {
1414
style: {

packages/components/ContextualMenu/src/ContextualMenu.settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const settings: IComposeSettings<ContextualMenuType> = [
1010
beakWidth: 20,
1111
borderColor: 'buttonBorder',
1212
borderWidth: 1,
13-
directionalHint: 'bottonLeftEdge',
13+
directionalHint: 'bottomLeftEdge',
1414
gapSpace: 0,
1515
minPadding: 0,
1616
},

0 commit comments

Comments
 (0)