File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11---
2- " @fluentui-react-native/contextual-menu " : patch
3- " @fluentui-react-native/vibrancy-view " : patch
4- " @fluentui-react-native/focus-trap-zone " : patch
5- " @fluentui-react-native/menu-button " : patch
6- " @fluentui-react-native/focus-zone " : patch
7- " @fluentui-react-native/tooltip " : patch
8- " @fluentui-react-native/experimental-avatar " : patch
9- " @fluentui-react-native/callout " : patch
10- " @fluentui-react-native/button " : patch
2+ ' @fluentui-react-native/contextual-menu ' : patch
3+ ' @fluentui-react-native/vibrancy-view ' : patch
4+ ' @fluentui-react-native/focus-trap-zone ' : patch
5+ ' @fluentui-react-native/menu-button ' : patch
6+ ' @fluentui-react-native/focus-zone ' : patch
7+ ' @fluentui-react-native/tooltip ' : patch
8+ ' @fluentui-react-native/experimental-avatar ' : patch
9+ ' @fluentui-react-native/callout ' : patch
10+ ' @fluentui-react-native/button ' : patch
1111---
1212
1313Fix codegen definitions for native components in repo
Original file line number Diff line number Diff line change 1313 "prettier.trailingComma" : " all" ,
1414
1515 "eslint.enable" : true ,
16- "eslint.workingDirectories" : [
17- { "pattern" : " ./packages/framework/eslint-config-rules" }
18- ], // use the common eslint config file
16+ "eslint.workingDirectories" : [{ "pattern" : " ./packages/framework/eslint-config-rules" }], // use the common eslint config file
1917
2018 "explorer.fileNesting.enabled" : true ,
2119 "explorer.fileNesting.patterns" : {
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ + (NSRect)screenRect:(id)json
2929 @" rightCenter" : @(NSRectEdgeMaxX),
3030 @" rightBottomEdge" : @(NSRectEdgeMaxX),
3131 @" bottomLeftEdge" : @(NSRectEdgeMinY),
32+ @" bottonLeftEdge" : @(NSRectEdgeMinY), // Add both the correct and incorrect spellings during the transition period
3233 @" bottomAutoEdge" : @(NSRectEdgeMinY),
3334 @" bottomCenter" : @(NSRectEdgeMinY),
3435 @" bottomRightEdge" : @(NSRectEdgeMinY),
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export const settings: IComposeSettings<ICalloutType> = [
1010 borderColor : 'transparent' ,
1111 borderWidth : 0 ,
1212 borderRadius : 5 ,
13- directionalHint : 'bottomLeftEdge ' ,
13+ directionalHint : 'bottonLeftEdge ' ,
1414 } ,
1515 root : {
1616 style : {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export const settings: IComposeSettings<ICalloutType> = [
1010 beakWidth : 20 ,
1111 borderColor : 'bodyFrameBackground' ,
1212 borderWidth : 1 ,
13- directionalHint : 'bottomLeftEdge ' ,
13+ directionalHint : 'bottonLeftEdge ' ,
1414 gapSpace : 0 ,
1515 minPadding : 0 ,
1616 } ,
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export type DirectionalHint =
2424 | 'rightCenter'
2525 | 'rightBottomEdge'
2626 | 'bottomLeftEdge'
27+ | 'bottonLeftEdge' // Typo in the original code, should be 'bottomLeftEdge'
2728 | 'bottomAutoEdge'
2829 | 'bottomCenter'
2930 | 'bottomRightEdge' ;
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export interface NativeProps extends ViewProps {
4646 | 'rightCenter'
4747 | 'rightBottomEdge'
4848 | 'bottomLeftEdge'
49+ | 'bottonLeftEdge' // Typo in the original code, should be 'bottomLeftEdge'
4950 | 'bottomAutoEdge'
5051 | 'bottomCenter'
5152 | 'bottomRightEdge' ,
Original file line number Diff line number Diff line change @@ -46,10 +46,11 @@ export interface NativeProps extends ViewProps {
4646 | 'rightCenter'
4747 | 'rightBottomEdge'
4848 | 'bottomLeftEdge'
49+ | 'bottonLeftEdge' // Typo in the original code, should be 'bottomLeftEdge'
4950 | 'bottomAutoEdge'
5051 | 'bottomCenter'
5152 | 'bottomRightEdge' ,
52- 'bottomLeftEdge '
53+ 'bottonLeftEdge '
5354 > ;
5455 target ?: UnsafeMixed ;
5556}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { contextualMenuName } from './ContextualMenu.types';
88export const settings : IComposeSettings < ContextualMenuType > = [
99 {
1010 tokens : {
11- directionalHint : I18nManager . isRTL ? 'bottomRightEdge' : 'bottomLeftEdge ' ,
11+ directionalHint : I18nManager . isRTL ? 'bottomRightEdge' : 'bottonLeftEdge ' ,
1212 } ,
1313 container : {
1414 style : {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export const settings: IComposeSettings<ContextualMenuType> = [
1010 beakWidth : 20 ,
1111 borderColor : 'buttonBorder' ,
1212 borderWidth : 1 ,
13- directionalHint : 'bottomLeftEdge ' ,
13+ directionalHint : 'bottonLeftEdge ' ,
1414 gapSpace : 0 ,
1515 minPadding : 0 ,
1616 } ,
You can’t perform that action at this time.
0 commit comments