Граф коммитов

26614 Коммитов

Автор SHA1 Сообщение Дата
Saad Najmi 409b8e838d Disable failing CircleCI tests 2023-01-18 12:51:38 -08:00
Saad Najmi ca75f62b6b Fix Fabric build issues 2023-01-18 12:51:38 -08:00
Christoph Purrer c26de1dc6f
Rename rn-tester-macOS ViewController to .mm (#1657)
Changelog:
[macOS][Added] Rename rn-tester-macOS ViewController to .mm

This simply makes the ViewController an ObjC++ file so that we can more easily add a Fabric example as shown in:
1316ae18ff
2023-01-17 21:18:43 -08:00
Shawn Dempsey 952f398e34
[Fabric] Enable NewArchitectureExample Fabric example in RNTester iOS (#1520)
* Enable NewArchitectureExample example in RNTester iOS

* Conditionally render MyNativeView

* flow-check-ios

Co-authored-by: Shawn Dempsey <shawndempsey@fb.com>
Co-authored-by: Saad Najmi <sanajmi@microsoft.com>
2023-01-14 15:09:32 -08:00
Saad Najmi 829e6b109b
Revert "Add support for modifying the key view loop (#769)" (#1621)
This reverts commit 14ce7dca84.
2023-01-14 01:39:34 -08:00
Saad Najmi 1fc2d1d999
Revert "Add support for modifying the key view loop (#769)" (#1621)
This reverts commit 14ce7dca84.
2023-01-14 01:14:08 -08:00
dependabot[bot] 13c31f85ca
Bump simple-plist from 1.3.0 to 1.3.1 (#1639)
Bumps [simple-plist](https://github.com/wollardj/simple-plist) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/wollardj/simple-plist/releases)
- [Commits](https://github.com/wollardj/simple-plist/compare/v1.3.0...v1.3.1)

---
updated-dependencies:
- dependency-name: simple-plist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-13 23:27:37 -08:00
dependabot[bot] 4e6681bdc4
Bump fast-json-patch from 3.1.0 to 3.1.1 in /bots (#1638)
Bumps [fast-json-patch](https://github.com/Starcounter-Jack/JSON-Patch) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/Starcounter-Jack/JSON-Patch/releases)
- [Commits](https://github.com/Starcounter-Jack/JSON-Patch/compare/v3.1.0...3.1.1)

---
updated-dependencies:
- dependency-name: fast-json-patch
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-13 23:27:22 -08:00
dependabot[bot] b136f99817
Bump minimatch from 3.0.4 to 3.0.5 in /bots (#1637)
Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.0.5.
- [Release notes](https://github.com/isaacs/minimatch/releases)
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](https://github.com/isaacs/minimatch/compare/v3.0.4...v3.0.5)

---
updated-dependencies:
- dependency-name: minimatch
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-13 23:27:06 -08:00
Saad Najmi 7c90d023ef
Merge pull request #1628 from Saadnajmi/merge-3
Merge up to 49f3f47b1e
2023-01-13 12:24:15 -08:00
Saad Najmi ee77d4879e ScrollView and TextInput ViewConfig refactor 2023-01-13 11:54:04 -08:00
Saad Najmi 58360a8fa1 Fix lint / flow issues 2023-01-13 11:43:57 -08:00
Saad Najmi cc38d706d0 Resolve RCTUITextView conflict 2023-01-13 11:07:44 -08:00
Christoph Purrer 4299a85106
Remove OS check in RCTMultiPartDataTask.m #1600 (#1633)
This was already removed from facebook/react-native early 2019:
06c6c7c673 (diff-02c60e5ee54665cfda52b1e88843db83a725867cd8404959fd328adaa6391c7b)

It is not linked anywhere in the code at this time
2023-01-12 12:56:52 -08:00
Christoph Purrer 005ef5ceab
Fix compilation error in Schedule.cpp when building for rn-iOS + Fabric (#1634)
Due to an early cherry-pick from a more recent facebook/react-native version > https://github.com/microsoft/react-native-macos/pull/1498
this broke.

In https://github.com/microsoft/react-native-macos/pull/1498 I must have only build for rn-iOS + Paper.
I think we need a CircleCI job now for rn-iOS + Fabric

Here is the fix.
- std::optional's function signature is has_value()
- where as folly::Optional used hasValue()

In packages/rn-tester I ran:
```
USE_FABRIC=1 pod install
```
And then build and launched the app
2023-01-12 12:54:35 -08:00
Tom Underhill 400430adc9
Return and Space keys do not trigger onPress events (#1623)
* Update scripts to publish react-native-macos-init

* Clean up merge markers

* Restored ios:macos RNTester parity except for InputAccessoryView.

* Revert "Restored ios:macos RNTester parity except for InputAccessoryView."

This reverts commit 5a67ae06b0.

* Remove unnecessary android builds and tar file upload.

* Fix pressability enter/return and spacebar key events

* Don't change validKeysDown/Up for components that explicitly set them

* Added event.defaultPrevented check to key events

* Fixed spacing in RCTView.m

* Ignore key event props not matching press events

Co-authored-by: React-Native Bot <53619745+rnbot@users.noreply.github.com>
2023-01-12 04:12:49 +00:00
Saad Najmi 3ff4b32821 Don't use borderColorsWithTraitCollection on macOS 2023-01-11 13:55:40 -08:00
Saad Najmi ebcf64684f :Merge 49f3f47b1e 2023-01-10 14:21:16 -08:00
Saad Najmi fbd3290caa Resolve CircleCI config conflicts 2023-01-10 12:08:43 -08:00
Saad Najmi cc7f31ad17 Resolve package.json and lock file conflicts 2023-01-10 12:06:24 -08:00
Saad Najmi 77e1f83c28 Resolve ViewConfig conflicts 2023-01-10 12:05:54 -08:00
Saad Najmi e48d473531 Merge 49f3f47b1e 2023-01-10 12:05:10 -08:00
dependabot[bot] af7baddd2d
Bump json5 from 2.2.1 to 2.2.3 in /bots (#1624)
Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](https://github.com/json5/json5/compare/v2.2.1...v2.2.3)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-09 23:58:08 -08:00
dependabot[bot] 562bab0ed8
Bump json5 from 2.2.1 to 2.2.3 (#1625)
Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](https://github.com/json5/json5/compare/v2.2.1...v2.2.3)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-09 23:57:48 -08:00
Saad Najmi 66d0e77a6f
Unify all the macOS diff tags (#1392)
* change tags

* Add documentation

* Address PR comments
2023-01-09 23:43:52 -08:00
Saad Najmi ccc088f1de
Fix many compiler warnings (#1612)
* Bump to 68

* Add audited regions

* Fix some more warnings

* More nonnull

* don't audit fabric types

* Audit just the macOS Fabric regions

* Add to RCTSlider

* More warning fixes

* More warning fixes

* Fix up opaque

* Remove override of opaque
2023-01-09 19:38:13 -08:00
Saad Najmi 29a1687f91
Merge pull request #1626 from microsoft/dependabot/npm_and_yarn/ReactCommon/hermes/inspector/tools/msggen/json5-2.2.3
Bump json5 from 2.2.1 to 2.2.3 in /ReactCommon/hermes/inspector/tools/msggen
2023-01-08 14:23:07 -06:00
dependabot[bot] b650b5571a
Bump json5 in /ReactCommon/hermes/inspector/tools/msggen
Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](https://github.com/json5/json5/compare/v2.2.1...v2.2.3)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-08 15:08:45 +00:00
Saad Najmi 5067981821
Merge up to 7b9490b4b1
Merge up to commit where view configs are refactored
2023-01-06 12:38:27 -06:00
Tom Underhill d7b689f90b
Fix coordinates of touch.pageX/pageY coordinates when RCTRootView is not at the origin of the NSWindow (#1619)
* Update scripts to publish react-native-macos-init

* Clean up merge markers

* Restored ios:macos RNTester parity except for InputAccessoryView.

* Revert "Restored ios:macos RNTester parity except for InputAccessoryView."

This reverts commit 5a67ae06b0.

* Remove unnecessary android builds and tar file upload.

* Fix coordinates of touch.pageX/pageY coordinates when RCTRootView is not at the origin of the NSWindow

Co-authored-by: React-Native Bot <53619745+rnbot@users.noreply.github.com>
2023-01-06 09:48:24 +01:00
Saad Najmi 0ce8502c18
Remove diff in RCTImageLoader (#1616)
* Remove unnecessary diff in RCTImageLoader

* Remove RCTUIKit dependency

* Fix bug where we hardcode compression quality

* Update comment

* Update RCTImageLoader.mm

* Update RCTImageLoader.mm
2023-01-06 00:57:32 +00:00
Saad Najmi 9984679876 Support macOS in PlatformBaseViewConfig 2023-01-05 14:41:52 -06:00
Ramanpreet Nara c19c38303a Introduce PlatformBaseViewConfig and fix SVC for RCTView
Summary:
## Impact
Fix the Static ViewConfig for <View/>.

This diff fixes the base ViewConfig for all HostComponents on both platforms. Consequently, it simplifies SVC reconciliation efforts, by nearly eliminating the first of these classes of SVC errors:
1. Unexpected properties in SVC
2. Missing properties in SVC
3. Not matching properites in SVC

## What is the base ViewConfig on each iOS/Android?
**On iOS:**
- All props come from ViewManagers
- All HostComponent ViewManagers extend <View/> ViewManager

https://pxl.cl/1SxdF

Therefore, the base ViewConfig for all components should be <View/>'s static ViewConfig.

**On Android:**

The component model is a bit more complicated:

https://pxl.cl/1Vmp5

Takeaways:
- Props come from Shadow Nodes **and** ViewManagers
- Nearly all HostComponent ViewManagers extend BaseViewManager. But, that's not <View/>'s ViewManager.
- <View/>'s ViewManager is [ReactViewManager](https://fburl.com/code/0zalv8zk), which is a descendent of BaseViewManager, and declares its own ReactProps.

So, on Android, it's not safe for the base ViewConfig to be <View>'s ViewConfig:
1. No components actualy incorportate <View/>'s props
2. Some components don't even incorporate BaseViewManager's props.

So, what should the base ViewConfig be on Android?
- Nearly all components extend BaseViewManager. BaseViewManager must have a shadow node [that extends LayoutShadowNode](https://www.internalfb.com/code/fbsource/[47d68ebc06e64d97da9d069f1ab662b392f0df8a]/xplat/js/react-native-github/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java?lines=40). Therefore, we'll make the base ViewConfig on Android be generated by BaseViewManager + LayoutShadowNode.

## Changes
In this diff, I removed ReactNativeViewViewConfig, and introduced a new view config called PlatformBaseViewConfig. This ViewConfig partial will capture all the props available on all HostComponents on **both** platforms. This may not necessarily be the props made available on <View/>.

The only components that don't extend the base platform props are: RCTTextInlineImage. What we do with these components is TBD.

Changelog: [Internal]

Reviewed By: p-sun, yungsters

Differential Revision: D33135055

fbshipit-source-id: 7299f60ae45ed499ce47c0d0a6309a047bff90bb
2023-01-05 14:41:52 -06:00
Keshav Kolur 9b55f1ed7e Revert D33852709: Replace fb_xplat_platform_specific_rule calls where rule = fb_java_library with direct call to fb_java_library_android
Differential Revision:
D33852709 (dc507be4d9)

Original commit changeset: 1ff3a1225e68

Original Phabricator Diff: D33852709 (dc507be4d9)

fbshipit-source-id: 10db2d1bda1ea69b9a0226041493af06b78c16c4
2023-01-05 14:41:15 -06:00
Keshav Kolur 0f6818f195 Replace fb_xplat_platform_specific_rule calls where rule = fb_java_library with direct call to fb_java_library_android
Summary: Replace fb_xplat_platform_specific_rule calls where rule = fb_java_library with direct call to fb_java_library_android

Reviewed By: alexmalyshev

Differential Revision: D33852709

fbshipit-source-id: 1ff3a1225e681d0924ec04e955b0039724182b1c
2023-01-05 14:41:15 -06:00
Kuba Holuj 7e18cdc622 Update StatusBar for Android 11+ (#32975)
Summary:
Android 11 (API 30) introduced a new interface for changing the appearance of the status bars with [`WindowInsetsController#setSystemBarsAppearance`](https://developer.android.com/reference/kotlin/android/view/WindowInsetsController#setsystembarsappearance) and deprecated using the `WindowManager#systemUiVisibility` properties.

Apparently, once you call `setSystemBarsAppearance` Android will no longer respect `systemUiVisibility` and if anyone, such as the Android 12 Splash Screen library, happens to call it, it will break status bars.

This PR augments the RN StatusBarModule to use the new interface on Android 11+.

Also updated the rn-tester app, see video.

https://user-images.githubusercontent.com/1124321/151321561-8202e237-cf7d-45ce-b957-18b5bafd17c4.mov

## Changelog

<!-- Help reviewers and the release process by writing your own changelog entry. For an example, see:
https://github.com/facebook/react-native/wiki/Changelog
-->

[Android] [Changed] - Use new StatusBar API on Android 11 (API 30)+

Pull Request resolved: https://github.com/facebook/react-native/pull/32975

Reviewed By: cortinico

Differential Revision: D33814853

Pulled By: ShikaSD

fbshipit-source-id: c0f2651015dddb4871a3e3b26642f76a46da2a76
2023-01-05 14:41:15 -06:00
Andrei Shikov 919d4d0181 Changelog for 0.67.2 (#33007)
Summary:
Changelog for 0.67.2

## Changelog

[Internal][Changed] - Release Changelog

Pull Request resolved: https://github.com/facebook/react-native/pull/33007

Test Plan: N/A

Reviewed By: cortinico

Differential Revision: D33894314

Pulled By: ShikaSD

fbshipit-source-id: fc7571e39adc25e2f39db362f35d685cbc10d096
2023-01-05 14:41:14 -06:00
Elias Nahum 48a40dee98 Android: Fix crash when WindowInsets is null on ReactRootView (#32989)
Summary:
Fixes a potential crash was introduced by https://github.com/facebook/react-native/issues/30919 that aimed to get the keyboard height on devices with a Notch. The problem is that it considers that any ReactRootView will have an insets available.

When using [react-native-navigation](https://github.com/wix/react-native-navigation) and assigning a Navigation button to the TopBar as a component, the component gets registered as a RootView but won't have any insets attach to the view.

[getRootWindowInsets()](https://developer.android.com/reference/android/view/View#getRootWindowInsets()) in fact return a `WindowInset` only available if the view is attached, so when executing `checkForKeyboardEvents` method from ReactRootView, is trying to access the `DisplayCutout` of a null object, leading to a crash.

## Changelog

[Android] [Fixed] - Fix potential crash if ReactRootView does not have insets attached.

Pull Request resolved: https://github.com/facebook/react-native/pull/32989

Test Plan:
Without the code change: Notice how the second screen being push contains a React Component on the top right of the navigation bar, and when component is unmounted (going back) the app crashes.

https://user-images.githubusercontent.com/6757047/151558235-39b9a8b5-be73-4c31-8053-02ce188637b8.mp4

crash log
```
2022-01-28 10:27:52.902 15600-15600/com.mattermost.rnbeta E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.mattermost.rnbeta, PID: 15600
    java.lang.NullPointerException: Attempt to invoke virtual method 'android.view.DisplayCutout android.view.WindowInsets.getDisplayCutout()' on a null object reference
        at com.facebook.react.ReactRootView$CustomGlobalLayoutListener.checkForKeyboardEvents(ReactRootView.java:778)
        at com.facebook.react.ReactRootView$CustomGlobalLayoutListener.onGlobalLayout(ReactRootView.java:769)
        at android.view.ViewTreeObserver.dispatchOnGlobalLayout(ViewTreeObserver.java:1061)
        at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:3214)
        at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:2143)
        at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:8665)
        at android.view.Choreographer$CallbackRecord.run(Choreographer.java:1037)
        at android.view.Choreographer.doCallbacks(Choreographer.java:845)
        at android.view.Choreographer.doFrame(Choreographer.java:780)
        at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:1022)
        at android.os.Handler.handleCallback(Handler.java:938)
        at android.os.Handler.dispatchMessage(Handler.java:99)
        at android.os.Looper.loopOnce(Looper.java:201)
        at android.os.Looper.loop(Looper.java:288)
        at android.app.ActivityThread.main(ActivityThread.java:7839)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1003)
```

After applying the patch which is only a null check validation and does not change any previous behavior

https://user-images.githubusercontent.com/6757047/151558429-9ff1a608-abb6-4168-8db9-df0c3c71d79e.mp4

Reviewed By: cortinico

Differential Revision: D33844955

Pulled By: ShikaSD

fbshipit-source-id: ed5579ad3afeed009c61cc1851eee45c70087cf5
2023-01-05 14:41:14 -06:00
Pieter De Baets 17d10da557 Support setting hitSlop with single value (JS) [re-land]
Summary:
JS changes to support D32138347 (a96bdb7154). This was previously reverted due to missing iOS Paper support.

Changelog: [Android][Fixed] Enable hitSlop to be set using a single number.

Original commit changeset: 91cfcc86582c

Original Phabricator Diff: D32559015 (589b129581)

Reviewed By: yungsters

Differential Revision: D33453327

fbshipit-source-id: d289a0a8b8208bc9c68e6ca537632b745e8196ed
2023-01-05 14:41:14 -06:00
Genki Kondo 1d839ff2b0 Support color animation with native driver for Android
Summary:
Adds support for Animated.Color with native driver for Android. Reads the native config for the rbga channel AnimatedNodes, and on update(), converts the values into an integer (0xaarrggbb)

Followup changes will include support for iOS and platform colors.

Changelog:
[Android][Added] - Support running animations with AnimatedColor with native driver

Reviewed By: javache

Differential Revision: D33833600

fbshipit-source-id: 2bf05c9715b603cf014ace09e9308b2bfd67f30a
2023-01-05 14:41:14 -06:00
Paige Sun ea7cf41741 Disable static ViewConfigs in bridge mode & enable for bridgeless mode - Remove __fbStaticViewConfig & UIManagerInjection
Summary: Changelog: [Internal]

Reviewed By: RSNara

Differential Revision: D33835081

fbshipit-source-id: ed625de3b2da73f98cdb9c9dc97086aa2c477e3a
2023-01-05 14:41:14 -06:00
Paige Sun b6eebd8c3c Disable static ViewConfigs in bridge mode & enable for bridgeless mode - for codegenNativeComponent
Summary:
Changelog: [Internal]

Since DummyUIManager.getViewManagerConfig() & hasViewManagerConfig() are the same, it's safe to ship this before the native changes in this stack lands.

Reviewed By: RSNara

Differential Revision: D33832926

fbshipit-source-id: c0f0a169d02397e0f9125bb45d95d395c8bbc492
2023-01-05 14:41:14 -06:00
Paige Sun 966fdef37a Remove Static View Configs from bridge mode
Summary:
Changelog: [Internal]

Remove all the MCs that enable SVCs in Fabric, because we'll only test SVCs in Bridgeless mode to simplify rollout. There were complications with enabling SVCs in Fabric at a previous rollout.

Reviewed By: RSNara

Differential Revision: D33861243

fbshipit-source-id: fdbfedce77f8bd1bab2a807237017787ae8bf7c1
2023-01-05 14:41:14 -06:00
Paige Sun c760069f37 Add ComponentNameResolverManager to make UIManager.hasViewManagerConfig() work on Venice
Summary: Changelog: [Internal]

Reviewed By: RSNara

Differential Revision: D33860658

fbshipit-source-id: 41079b13acef531877c82dc0b2063dbe2b42edcf
2023-01-05 14:41:14 -06:00
Samuel Susla d46f4b5ac7 Introduce RuntimeScheduler::callImmediates
Summary:
changelog: [internal]

React on web uses microtasks to schedule a synchronous update for discrete event. Microtasks are not yet available in React Native and as a fallback, React uses native scheduler and task with immediate priority. Until Microtasks are in place, React Native needs to make sure all immediate tasks are executed after it dispatches each event.

I tried to stay as close to [microtask standard](https://developer.mozilla.org/en-US/docs/Web/API/queueMicrotask) as I reasonably could.

Once microtasks on RN are shipped, this code can be removed.

Reviewed By: mdvacca

Differential Revision: D33742583

fbshipit-source-id: eddebb1bd5131ee056252faad48327a70de78a4a
2023-01-05 14:41:14 -06:00
John Porto b1175ec727 Catch exceptions thrown by user callbacks
Summary:
Calls to Inspector::evaluate() and Inspector::executeIfEnabled()
take a user-provided callback which are not try-guarded. This
means that, should the user code throw, the inspector's process
will likely die due to the unhandled exception. This change
makes sure that, if the user provided callback throws, then
the promise attached to those methods will be fulfilled by
an exception.

Change: [internal]

Reviewed By: avp

Differential Revision: D33852073

fbshipit-source-id: 7fbb6662b28d393a5d5b494c004aa9521e23ebb6
2023-01-05 14:41:13 -06:00
Saad Najmi 4ce83a6b1f
Move typdef from RCTImageView -> RCTUIKit (#1617) 2023-01-04 18:11:42 -06:00
Shawn Dempsey 71e7ccfc29
Add support for TextInput clearTextOnFocus and selectTextOnFocus (#1517)
* Enable `selectTextOnFocus` and `clearTextOnFocus` for TextInput

* Fix select all for multiline textview

* Only reset selected range for macOS

* Don't run else branch for iOS

* Fix tags

Co-authored-by: Shawn Dempsey <shawndempsey@fb.com>
Co-authored-by: chiuam <67026167+chiuam@users.noreply.github.com>
Co-authored-by: Saad Najmi <sanajmi@microsoft.com>
2022-12-28 12:15:56 -06:00
Shawn Dempsey b2c5fa9738
[Fabric] Disable UIAccessibilityElement API's till we update them for Fabric (#1581)
* Disable UIAccessibilityElement API's till we can update them for Fabric

* Fix macOS tags

* Fix macOS tags

* Add missing macOS tag

Co-authored-by: Shawn Dempsey <shawndempsey@fb.com>
2022-12-22 15:47:10 -06:00
Saad Najmi ec1a9f2b93
Remove comment on merging stable branches -> main (#1595) 2022-12-22 14:52:00 -06:00