Skip to content

Commit 2b3fa7c

Browse files
authored
chore: change VisionOS to visionOS (#13)
1 parent b68fb9e commit 2b3fa7c

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
Build spatial apps with React.
1010
</p>
1111

12-
React Native Vision OS allows you to write VisionOS with full support for platform SDK. This is a full fork of the main repository with changes needed to support VisionOS.
12+
React Native Vision OS allows you to write visionOS with full support for platform SDK. This is a full fork of the main repository with changes needed to support visionOS.
1313

1414
This project is still at an early stage of development and is not ready for production use.
1515

1616
## Contributing
1717

1818
1. Download latest Xcode beta [here](https://developer.apple.com/xcode/).
19-
2. Install VisionOS Simulator runtime.
19+
2. Install visionOS Simulator runtime.
2020
3. Follow the same steps as for running iOS defined in [packages/rn-tester/README.md](./packages/rn-tester/README.md)

packages/react-native/Libraries/Components/Pressable/Pressable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ type Props = $ReadOnly<{|
201201
*/
202202
'aria-label'?: ?string,
203203
/**
204-
* Props needed for VisionOS.
204+
* Props needed for visionOS.
205205
*/
206206
...VisionOSProps,
207207
|}>;

packages/react-native/Libraries/Components/Touchable/TouchableOpacity.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export interface TouchableOpacityProps
8888
tvParallaxProperties?: TVParallaxProperties | undefined;
8989

9090
/**
91-
* Hover style to apply to the view. Only supported on VisionOS.
91+
* Hover style to apply to the view. Only supported on visionOS.
9292
*/
9393
visionos_hoverEffect?: HoverEffect | undefined;
9494
}

packages/react-native/Libraries/Components/View/ViewPropTypes.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export interface ViewPropsIOS extends TVViewPropsIOS {
125125
*/
126126
shouldRasterizeIOS?: boolean | undefined;
127127
/**
128-
* Hover style to apply to the view. Only supported on VisionOS.
128+
* Hover style to apply to the view. Only supported on visionOS.
129129
*/
130130
visionos_hoverEffect?: HoverEffect | undefined;
131131
}

packages/react-native/Libraries/Components/View/ViewPropTypes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ type IOSViewProps = $ReadOnly<{|
440440
shouldRasterizeIOS?: ?boolean,
441441

442442
/**
443-
* Hover style to apply to the view. Only supported on VisionOS.
443+
* Hover style to apply to the view. Only supported on visionOS.
444444
*/
445445
visionos_hoverEffect?: ?HoverEffect,
446446
|}>;

packages/react-native/React/Views/RCTViewManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ typedef void (^RCTViewManagerUIBlock)(RCTUIManager *uiManager, NSDictionary<NSNu
8181

8282
#if TARGET_OS_VISION
8383
/**
84-
* These macros allow properties to only be mapped in VisionOS.
84+
* These macros allow properties to only be mapped in visionOS.
8585
*/
8686
#define RCT_EXPORT_NOT_VISIONOS_VIEW_PROPERTY(name, type)
8787
#define RCT_EXPORT_VISIONOS_VIEW_PROPERTY(name, type) \

0 commit comments

Comments
 (0)