react-native 0.82.0-nightly-20250811-d3bbbd893 → 0.82.0-nightly-20250813-9f77d421b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Libraries/Animated/animations/Animation.js +5 -6
- package/Libraries/AppDelegate/RCTReactNativeFactory.mm +12 -1
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/React/Base/RCTVersion.m +1 -1
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm +1 -0
- package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +14 -4
- package/ReactAndroid/api/ReactAndroid.api +48 -19
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/fabric/FabricUIManager.java +7 -7
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactAccessibilityDelegate.kt +992 -0
- package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextViewAccessibilityDelegate.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.kt +4 -1
- package/ReactAndroid/src/main/java/com/facebook/yoga/LayoutPassReason.kt +35 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/{YogaBaselineFunction.java → YogaBaselineFunction.kt} +3 -3
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaLayoutType.kt +27 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/{YogaLogger.java → YogaLogger.kt} +6 -7
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaMeasureFunction.kt +19 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaMeasureOutput.kt +29 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNodeFactory.kt +14 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaStyleInputs.kt +51 -0
- package/ReactAndroid/src/main/java/com/facebook/yoga/annotations/DoNotStrip.kt +18 -0
- package/ReactCommon/cxxreact/CxxNativeModule.cpp +1 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/ReactCommon/cxxreact/tests/RecoverableErrorTest.cpp +1 -1
- package/ReactCommon/jsinspector-modern/InspectorFlags.cpp +4 -1
- package/ReactCommon/react/nativemodule/webperformance/NativePerformance.cpp +1 -1
- package/ReactCommon/react/performance/timeline/PerformanceEntry.h +4 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.cpp +2 -0
- package/ReactCommon/react/performance/timeline/PerformanceEntryReporter.h +1 -0
- package/ReactCommon/react/performance/timeline/tests/PerformanceObserverTest.cpp +26 -0
- package/ReactCommon/react/renderer/components/scrollview/ScrollViewShadowNode.cpp +1 -0
- package/ReactCommon/react/renderer/components/view/AccessibilityPrimitives.h +26 -1
- package/ReactCommon/react/renderer/components/view/AccessibilityProps.cpp +4 -0
- package/ReactCommon/react/renderer/observers/events/EventPerformanceLogger.cpp +6 -1
- package/ReactCommon/react/renderer/observers/events/EventPerformanceLogger.h +2 -0
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeSchedulerEventTimingDelegate.h +2 -0
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.cpp +3 -3
- package/ReactCommon/react/renderer/runtimescheduler/RuntimeScheduler_Modern.h +1 -1
- package/package.json +8 -8
- package/scripts/codegen/generate-artifacts-executor/generateReactCodegenPodspec.js +3 -3
- package/scripts/codegen/generate-artifacts-executor/utils.js +20 -0
- package/scripts/react-native-xcode.sh +2 -2
- package/scripts/xcode/with-environment.sh +1 -1
- package/sdks/hermesc/osx-bin/hermes +0 -0
- package/sdks/hermesc/osx-bin/hermesc +0 -0
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
- package/src/private/animated/createAnimatedPropsHook.js +5 -7
- package/third-party-podspecs/ReactNativeDependencies.podspec +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactAccessibilityDelegate.java +0 -1046
- package/ReactAndroid/src/main/java/com/facebook/yoga/LayoutPassReason.java +0 -43
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaLayoutType.java +0 -35
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaMeasureFunction.java +0 -20
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaMeasureOutput.java +0 -32
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaNodeFactory.java +0 -18
- package/ReactAndroid/src/main/java/com/facebook/yoga/YogaStyleInputs.java +0 -51
- package/ReactAndroid/src/main/java/com/facebook/yoga/annotations/DoNotStrip.java +0 -18
|
@@ -150,12 +150,11 @@ export default class Animation {
|
|
|
150
150
|
if (value != null) {
|
|
151
151
|
animatedValue.__onAnimatedValueUpdateReceived(value, offset);
|
|
152
152
|
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
) {
|
|
153
|
+
const isJsSyncRemoved =
|
|
154
|
+
ReactNativeFeatureFlags.cxxNativeAnimatedEnabled() &&
|
|
155
|
+
!ReactNativeFeatureFlags.disableFabricCommitInCXXAnimated() &&
|
|
156
|
+
ReactNativeFeatureFlags.cxxNativeAnimatedRemoveJsSync();
|
|
157
|
+
if (!isJsSyncRemoved) {
|
|
159
158
|
if (this.__isLooping === true) {
|
|
160
159
|
return;
|
|
161
160
|
}
|
|
@@ -146,6 +146,12 @@ using namespace facebook::react;
|
|
|
146
146
|
#if RN_DISABLE_OSS_PLUGIN_HEADER
|
|
147
147
|
return RCTTurboModulePluginClassProvider(name);
|
|
148
148
|
#else
|
|
149
|
+
if ([_delegate respondsToSelector:@selector(getModuleClassFromName:)]) {
|
|
150
|
+
Class moduleClass = [_delegate getModuleClassFromName:name];
|
|
151
|
+
if (moduleClass != nil) {
|
|
152
|
+
return moduleClass;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
149
155
|
return RCTCoreModulesClassProvider(name);
|
|
150
156
|
#endif
|
|
151
157
|
}
|
|
@@ -176,7 +182,12 @@ using namespace facebook::react;
|
|
|
176
182
|
format:@"Delegate must provide a valid dependencyProvider"];
|
|
177
183
|
}
|
|
178
184
|
#endif
|
|
179
|
-
|
|
185
|
+
if ([_delegate respondsToSelector:@selector(getModuleInstanceFromClass:)]) {
|
|
186
|
+
id<RCTTurboModule> moduleInstance = [_delegate getModuleInstanceFromClass:moduleClass];
|
|
187
|
+
if (moduleInstance != nil) {
|
|
188
|
+
return moduleInstance;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
180
191
|
return RCTAppSetupDefaultModuleFromClass(moduleClass, self.delegate.dependencyProvider);
|
|
181
192
|
}
|
|
182
193
|
|
|
@@ -29,7 +29,7 @@ export default class ReactNativeVersion {
|
|
|
29
29
|
static major: number = 0;
|
|
30
30
|
static minor: number = 82;
|
|
31
31
|
static patch: number = 0;
|
|
32
|
-
static prerelease: string | null = 'nightly-
|
|
32
|
+
static prerelease: string | null = 'nightly-20250813-9f77d421b';
|
|
33
33
|
|
|
34
34
|
static getVersionString(): string {
|
|
35
35
|
return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
|
package/React/Base/RCTVersion.m
CHANGED
|
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
|
|
|
24
24
|
RCTVersionMajor: @(0),
|
|
25
25
|
RCTVersionMinor: @(82),
|
|
26
26
|
RCTVersionPatch: @(0),
|
|
27
|
-
RCTVersionPrerelease: @"nightly-
|
|
27
|
+
RCTVersionPrerelease: @"nightly-20250813-9f77d421b",
|
|
28
28
|
};
|
|
29
29
|
});
|
|
30
30
|
return __rnVersion;
|
package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm
CHANGED
|
@@ -40,6 +40,7 @@ using namespace facebook::react;
|
|
|
40
40
|
// attaching and detaching of a pull-to-refresh view to a scroll view.
|
|
41
41
|
// The pull-to-refresh view is not a subview of this view.
|
|
42
42
|
self.hidden = YES;
|
|
43
|
+
_props = PullToRefreshViewShadowNode::defaultSharedProps();
|
|
43
44
|
_recycled = NO;
|
|
44
45
|
[self _initializeUIRefreshControl];
|
|
45
46
|
}
|
|
@@ -119,6 +119,10 @@ RCTSendScrollEventForNativeAnimations_DEPRECATED(UIScrollView *scrollView, NSInt
|
|
|
119
119
|
// Once an accessibility API is used, view culling will be disabled for the entire session.
|
|
120
120
|
BOOL _isAccessibilityAPIUsed;
|
|
121
121
|
|
|
122
|
+
// Flag to temporarily disable maintainVisibleContentPosition adjustments during immediate state updates
|
|
123
|
+
// to prevent conflicts between immediate content offset updates and visible content position logic
|
|
124
|
+
BOOL _avoidAdjustmentForMaintainVisibleContentPosition;
|
|
125
|
+
|
|
122
126
|
RCTVirtualViewContainerState *_virtualViewContainerState;
|
|
123
127
|
}
|
|
124
128
|
|
|
@@ -640,6 +644,11 @@ static inline UIViewAnimationOptions animationOptionsWithCurve(UIViewAnimationCu
|
|
|
640
644
|
return;
|
|
641
645
|
}
|
|
642
646
|
|
|
647
|
+
BOOL enableImmediateUpdateModeForContentOffsetChanges =
|
|
648
|
+
ReactNativeFeatureFlags::enableImmediateUpdateModeForContentOffsetChanges();
|
|
649
|
+
|
|
650
|
+
_avoidAdjustmentForMaintainVisibleContentPosition = enableImmediateUpdateModeForContentOffsetChanges;
|
|
651
|
+
|
|
643
652
|
auto contentOffset = RCTPointFromCGPoint(_scrollView.contentOffset);
|
|
644
653
|
BOOL isAccessibilityAPIUsed = _isAccessibilityAPIUsed;
|
|
645
654
|
_state->updateState(
|
|
@@ -655,9 +664,10 @@ static inline UIViewAnimationOptions animationOptionsWithCurve(UIViewAnimationCu
|
|
|
655
664
|
UIAccessibilityIsVoiceOverRunning() || UIAccessibilityIsSwitchControlRunning() || isAccessibilityAPIUsed;
|
|
656
665
|
return std::make_shared<const ScrollViewShadowNode::ConcreteState::Data>(newData);
|
|
657
666
|
},
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
667
|
+
enableImmediateUpdateModeForContentOffsetChanges ? EventQueue::UpdateMode::unstable_Immediate
|
|
668
|
+
: EventQueue::UpdateMode::Asynchronous);
|
|
669
|
+
|
|
670
|
+
_avoidAdjustmentForMaintainVisibleContentPosition = NO;
|
|
661
671
|
}
|
|
662
672
|
|
|
663
673
|
- (void)prepareForRecycle
|
|
@@ -1057,7 +1067,7 @@ static inline UIViewAnimationOptions animationOptionsWithCurve(UIViewAnimationCu
|
|
|
1057
1067
|
- (void)_adjustForMaintainVisibleContentPosition
|
|
1058
1068
|
{
|
|
1059
1069
|
const auto &props = static_cast<const ScrollViewProps &>(*_props);
|
|
1060
|
-
if (!props.maintainVisibleContentPosition) {
|
|
1070
|
+
if (!props.maintainVisibleContentPosition || _avoidAdjustmentForMaintainVisibleContentPosition) {
|
|
1061
1071
|
return;
|
|
1062
1072
|
}
|
|
1063
1073
|
|
|
@@ -3613,30 +3613,30 @@ public final class com/facebook/react/uimanager/PointerEvents$Companion {
|
|
|
3613
3613
|
}
|
|
3614
3614
|
|
|
3615
3615
|
public class com/facebook/react/uimanager/ReactAccessibilityDelegate : androidx/customview/widget/ExploreByTouchHelper {
|
|
3616
|
+
public static final field Companion Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Companion;
|
|
3616
3617
|
public static final field TOP_ACCESSIBILITY_ACTION_EVENT Ljava/lang/String;
|
|
3617
|
-
public static final field sActionIdMap Ljava/util/HashMap;
|
|
3618
3618
|
public fun <init> (Landroid/view/View;ZI)V
|
|
3619
|
-
public static fun createNodeInfoFromView (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;
|
|
3619
|
+
public static final fun createNodeInfoFromView (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;
|
|
3620
3620
|
public fun getAccessibilityNodeProvider (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat;
|
|
3621
|
-
protected fun getHostView ()Landroid/view/View;
|
|
3622
|
-
public static fun getTalkbackDescription (Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Ljava/lang/CharSequence;
|
|
3621
|
+
protected final fun getHostView ()Landroid/view/View;
|
|
3622
|
+
public static final fun getTalkbackDescription (Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Ljava/lang/CharSequence;
|
|
3623
3623
|
protected fun getVirtualViewAt (FF)I
|
|
3624
3624
|
protected fun getVisibleVirtualViews (Ljava/util/List;)V
|
|
3625
|
-
public static fun hasNonActionableSpeakingDescendants (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Landroid/view/View;)Z
|
|
3626
|
-
public static fun hasText (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Z
|
|
3627
|
-
public static fun hasValidRangeInfo (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Z
|
|
3628
|
-
public static fun isAccessibilityFocusable (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Landroid/view/View;)Z
|
|
3629
|
-
public static fun isActionableForAccessibility (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Z
|
|
3630
|
-
public static fun isSpeakingNode (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Landroid/view/View;)Z
|
|
3625
|
+
public static final fun hasNonActionableSpeakingDescendants (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Landroid/view/View;)Z
|
|
3626
|
+
public static final fun hasText (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Z
|
|
3627
|
+
public static final fun hasValidRangeInfo (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Z
|
|
3628
|
+
public static final fun isAccessibilityFocusable (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Landroid/view/View;)Z
|
|
3629
|
+
public static final fun isActionableForAccessibility (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Z
|
|
3630
|
+
public static final fun isSpeakingNode (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Landroid/view/View;)Z
|
|
3631
3631
|
public fun onInitializeAccessibilityEvent (Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V
|
|
3632
3632
|
public fun onInitializeAccessibilityNodeInfo (Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
|
|
3633
3633
|
protected fun onPerformActionForVirtualView (IILandroid/os/Bundle;)Z
|
|
3634
3634
|
protected fun onPopulateNodeForVirtualView (ILandroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)V
|
|
3635
3635
|
public fun performAccessibilityAction (Landroid/view/View;ILandroid/os/Bundle;)Z
|
|
3636
|
-
public static fun resetDelegate (Landroid/view/View;ZI)V
|
|
3637
|
-
public static fun setDelegate (Landroid/view/View;ZI)V
|
|
3638
|
-
public static fun setRole (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;Landroid/content/Context;)V
|
|
3639
|
-
|
|
3636
|
+
public static final fun resetDelegate (Landroid/view/View;ZI)V
|
|
3637
|
+
public static final fun setDelegate (Landroid/view/View;ZI)V
|
|
3638
|
+
public static final fun setRole (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;Landroid/content/Context;)V
|
|
3639
|
+
protected final fun superGetAccessibilityNodeProvider (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeProviderCompat;
|
|
3640
3640
|
}
|
|
3641
3641
|
|
|
3642
3642
|
public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole : java/lang/Enum {
|
|
@@ -3645,6 +3645,7 @@ public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$Acces
|
|
|
3645
3645
|
public static final field BUTTON Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3646
3646
|
public static final field CHECKBOX Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3647
3647
|
public static final field COMBOBOX Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3648
|
+
public static final field Companion Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole$Companion;
|
|
3648
3649
|
public static final field DRAWERLAYOUT Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3649
3650
|
public static final field DROPDOWNLIST Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3650
3651
|
public static final field GRID Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
@@ -3679,14 +3680,36 @@ public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$Acces
|
|
|
3679
3680
|
public static final field TOOLBAR Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3680
3681
|
public static final field VIEWGROUP Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3681
3682
|
public static final field WEBVIEW Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3682
|
-
public static fun fromRole (Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3683
|
-
public static fun fromValue (Ljava/lang/String;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3684
|
-
public static fun fromViewTag (Landroid/view/View;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3685
|
-
public static fun
|
|
3683
|
+
public static final fun fromRole (Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3684
|
+
public static final fun fromValue (Ljava/lang/String;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3685
|
+
public static final fun fromViewTag (Landroid/view/View;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3686
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
3687
|
+
public static final fun getValue (Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;)Ljava/lang/String;
|
|
3686
3688
|
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3687
3689
|
public static fun values ()[Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3688
3690
|
}
|
|
3689
3691
|
|
|
3692
|
+
public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole$Companion {
|
|
3693
|
+
public final fun fromRole (Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3694
|
+
public final fun fromValue (Ljava/lang/String;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3695
|
+
public final fun fromViewTag (Landroid/view/View;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;
|
|
3696
|
+
public final fun getValue (Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;)Ljava/lang/String;
|
|
3697
|
+
}
|
|
3698
|
+
|
|
3699
|
+
public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$Companion {
|
|
3700
|
+
public final fun createNodeInfoFromView (Landroid/view/View;)Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;
|
|
3701
|
+
public final fun getTalkbackDescription (Landroid/view/View;Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Ljava/lang/CharSequence;
|
|
3702
|
+
public final fun hasNonActionableSpeakingDescendants (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Landroid/view/View;)Z
|
|
3703
|
+
public final fun hasText (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Z
|
|
3704
|
+
public final fun hasValidRangeInfo (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Z
|
|
3705
|
+
public final fun isAccessibilityFocusable (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Landroid/view/View;)Z
|
|
3706
|
+
public final fun isActionableForAccessibility (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;)Z
|
|
3707
|
+
public final fun isSpeakingNode (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Landroid/view/View;)Z
|
|
3708
|
+
public final fun resetDelegate (Landroid/view/View;ZI)V
|
|
3709
|
+
public final fun setDelegate (Landroid/view/View;ZI)V
|
|
3710
|
+
public final fun setRole (Landroidx/core/view/accessibility/AccessibilityNodeInfoCompat;Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$AccessibilityRole;Landroid/content/Context;)V
|
|
3711
|
+
}
|
|
3712
|
+
|
|
3690
3713
|
public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$Role : java/lang/Enum {
|
|
3691
3714
|
public static final field ALERT Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3692
3715
|
public static final field ALERTDIALOG Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
@@ -3700,6 +3723,7 @@ public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$Role
|
|
|
3700
3723
|
public static final field COMBOBOX Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3701
3724
|
public static final field COMPLEMENTARY Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3702
3725
|
public static final field CONTENTINFO Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3726
|
+
public static final field Companion Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role$Companion;
|
|
3703
3727
|
public static final field DEFINITION Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3704
3728
|
public static final field DIALOG Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3705
3729
|
public static final field DIRECTORY Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
@@ -3753,11 +3777,16 @@ public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$Role
|
|
|
3753
3777
|
public static final field TREE Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3754
3778
|
public static final field TREEGRID Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3755
3779
|
public static final field TREEITEM Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3756
|
-
public static fun fromValue (Ljava/lang/String;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3780
|
+
public static final fun fromValue (Ljava/lang/String;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3781
|
+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
|
|
3757
3782
|
public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3758
3783
|
public static fun values ()[Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3759
3784
|
}
|
|
3760
3785
|
|
|
3786
|
+
public final class com/facebook/react/uimanager/ReactAccessibilityDelegate$Role$Companion {
|
|
3787
|
+
public final fun fromValue (Ljava/lang/String;)Lcom/facebook/react/uimanager/ReactAccessibilityDelegate$Role;
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3761
3790
|
public final class com/facebook/react/uimanager/ReactAxOrderHelper {
|
|
3762
3791
|
public static final field INSTANCE Lcom/facebook/react/uimanager/ReactAxOrderHelper;
|
|
3763
3792
|
public final fun buildAxOrderList (Landroid/view/View;Landroid/view/View;Ljava/util/List;[Landroid/view/View;)V
|
|
@@ -935,14 +935,14 @@ public class FabricUIManager
|
|
|
935
935
|
if (shouldSchedule) {
|
|
936
936
|
Assertions.assertNotNull(mountItem, "MountItem is null");
|
|
937
937
|
mMountItemDispatcher.addMountItem(mountItem);
|
|
938
|
-
Runnable runnable =
|
|
939
|
-
new GuardedRunnable(mReactApplicationContext) {
|
|
940
|
-
@Override
|
|
941
|
-
public void runGuarded() {
|
|
942
|
-
mMountItemDispatcher.tryDispatchMountItems();
|
|
943
|
-
}
|
|
944
|
-
};
|
|
945
938
|
if (UiThreadUtil.isOnUiThread()) {
|
|
939
|
+
Runnable runnable =
|
|
940
|
+
new GuardedRunnable(mReactApplicationContext) {
|
|
941
|
+
@Override
|
|
942
|
+
public void runGuarded() {
|
|
943
|
+
mMountItemDispatcher.tryDispatchMountItems();
|
|
944
|
+
}
|
|
945
|
+
};
|
|
946
946
|
runnable.run();
|
|
947
947
|
}
|
|
948
948
|
}
|