react-native-windows 0.76.7 → 0.76.8
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/Core/ReactNativeVersion.js +1 -1
- package/PropertySheets/Generated/PackageVersion.g.props +3 -3
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/runtime/ReactInstance.cpp +39 -35
- package/codegen/NativeReactNativeFeatureFlagsSpec.g.h +91 -97
- package/codegen/rnwcoreJSI-generated.cpp +0 -6
- package/codegen/rnwcoreJSI.h +0 -9
- package/jest/setup.js +5 -1
- package/package.json +10 -10
- package/src/private/featureflags/ReactNativeFeatureFlags.js +1 -6
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +1 -2
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.76.
|
|
13
|
+
<ReactNativeWindowsVersion>0.76.8</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>76</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>8</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>4c239177bec99b6d108edf7c1a7d40ca5948cc2d</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
|
@@ -204,47 +204,51 @@ std::string simpleBasename(const std::string& path) {
|
|
|
204
204
|
*/
|
|
205
205
|
void ReactInstance::loadScript(
|
|
206
206
|
std::unique_ptr<const JSBigString> script,
|
|
207
|
-
const std::string& sourceURL
|
|
207
|
+
const std::string& sourceURL,
|
|
208
|
+
std::function<void(jsi::Runtime& runtime)>&& completion) {
|
|
208
209
|
auto buffer = std::make_shared<BigStringBuffer>(std::move(script));
|
|
209
210
|
std::string scriptName = simpleBasename(sourceURL);
|
|
210
211
|
|
|
211
|
-
runtimeScheduler_->scheduleWork(
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
212
|
+
runtimeScheduler_->scheduleWork([this,
|
|
213
|
+
scriptName,
|
|
214
|
+
sourceURL,
|
|
215
|
+
buffer = std::move(buffer),
|
|
216
|
+
weakBufferedRuntimeExecuter =
|
|
217
|
+
std::weak_ptr<BufferedRuntimeExecutor>(
|
|
218
|
+
bufferedRuntimeExecutor_),
|
|
219
|
+
completion](jsi::Runtime& runtime) {
|
|
220
|
+
SystraceSection s("ReactInstance::loadScript");
|
|
221
|
+
bool hasLogger(ReactMarker::logTaggedMarkerBridgelessImpl);
|
|
222
|
+
if (hasLogger) {
|
|
223
|
+
ReactMarker::logTaggedMarkerBridgeless(
|
|
224
|
+
ReactMarker::RUN_JS_BUNDLE_START, scriptName.c_str());
|
|
225
|
+
}
|
|
224
226
|
|
|
225
|
-
|
|
227
|
+
runtime.evaluateJavaScript(buffer, sourceURL);
|
|
226
228
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
229
|
+
/**
|
|
230
|
+
* TODO(T183610671): We need a safe/reliable way to enable the js
|
|
231
|
+
* pipeline from javascript. Remove this after we figure that out, or
|
|
232
|
+
* after we just remove the js pipeline.
|
|
233
|
+
*/
|
|
234
|
+
if (!jsErrorHandler_->hasHandledFatalError()) {
|
|
235
|
+
jsErrorHandler_->setRuntimeReady();
|
|
236
|
+
}
|
|
235
237
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
238
|
+
if (hasLogger) {
|
|
239
|
+
ReactMarker::logTaggedMarkerBridgeless(
|
|
240
|
+
ReactMarker::RUN_JS_BUNDLE_STOP, scriptName.c_str());
|
|
241
|
+
ReactMarker::logMarkerBridgeless(ReactMarker::INIT_REACT_RUNTIME_STOP);
|
|
242
|
+
ReactMarker::logMarkerBridgeless(ReactMarker::APP_STARTUP_STOP);
|
|
243
|
+
}
|
|
244
|
+
if (auto strongBufferedRuntimeExecuter =
|
|
245
|
+
weakBufferedRuntimeExecuter.lock()) {
|
|
246
|
+
strongBufferedRuntimeExecuter->flush();
|
|
247
|
+
}
|
|
248
|
+
if (completion) {
|
|
249
|
+
completion(runtime);
|
|
250
|
+
}
|
|
251
|
+
});
|
|
248
252
|
}
|
|
249
253
|
|
|
250
254
|
/*
|
|
@@ -18,53 +18,52 @@ namespace Microsoft::ReactNativeSpecs {
|
|
|
18
18
|
struct ReactNativeFeatureFlagsSpec : winrt::Microsoft::ReactNative::TurboModuleSpec {
|
|
19
19
|
static constexpr auto methods = std::tuple{
|
|
20
20
|
SyncMethod<bool() noexcept>{0, L"commonTestFlag"},
|
|
21
|
-
SyncMethod<bool() noexcept>{1, L"
|
|
22
|
-
SyncMethod<bool() noexcept>{2, L"
|
|
23
|
-
SyncMethod<bool() noexcept>{3, L"
|
|
24
|
-
SyncMethod<bool() noexcept>{4, L"
|
|
25
|
-
SyncMethod<bool() noexcept>{5, L"
|
|
26
|
-
SyncMethod<bool() noexcept>{6, L"
|
|
27
|
-
SyncMethod<bool() noexcept>{7, L"
|
|
28
|
-
SyncMethod<bool() noexcept>{8, L"
|
|
29
|
-
SyncMethod<bool() noexcept>{9, L"
|
|
30
|
-
SyncMethod<bool() noexcept>{10, L"
|
|
31
|
-
SyncMethod<bool() noexcept>{11, L"
|
|
32
|
-
SyncMethod<bool() noexcept>{12, L"
|
|
33
|
-
SyncMethod<bool() noexcept>{13, L"
|
|
34
|
-
SyncMethod<bool() noexcept>{14, L"
|
|
35
|
-
SyncMethod<bool() noexcept>{15, L"
|
|
36
|
-
SyncMethod<bool() noexcept>{16, L"
|
|
37
|
-
SyncMethod<bool() noexcept>{17, L"
|
|
38
|
-
SyncMethod<bool() noexcept>{18, L"
|
|
39
|
-
SyncMethod<bool() noexcept>{19, L"
|
|
40
|
-
SyncMethod<bool() noexcept>{20, L"
|
|
41
|
-
SyncMethod<bool() noexcept>{21, L"
|
|
42
|
-
SyncMethod<bool() noexcept>{22, L"
|
|
43
|
-
SyncMethod<bool() noexcept>{23, L"
|
|
44
|
-
SyncMethod<bool() noexcept>{24, L"
|
|
45
|
-
SyncMethod<bool() noexcept>{25, L"
|
|
46
|
-
SyncMethod<bool() noexcept>{26, L"
|
|
47
|
-
SyncMethod<bool() noexcept>{27, L"
|
|
48
|
-
SyncMethod<bool() noexcept>{28, L"
|
|
49
|
-
SyncMethod<bool() noexcept>{29, L"
|
|
50
|
-
SyncMethod<bool() noexcept>{30, L"
|
|
51
|
-
SyncMethod<bool() noexcept>{31, L"
|
|
52
|
-
SyncMethod<bool() noexcept>{32, L"
|
|
53
|
-
SyncMethod<bool() noexcept>{33, L"
|
|
54
|
-
SyncMethod<bool() noexcept>{34, L"
|
|
55
|
-
SyncMethod<bool() noexcept>{35, L"
|
|
56
|
-
SyncMethod<bool() noexcept>{36, L"
|
|
57
|
-
SyncMethod<bool() noexcept>{37, L"
|
|
58
|
-
SyncMethod<bool() noexcept>{38, L"
|
|
59
|
-
SyncMethod<bool() noexcept>{39, L"
|
|
60
|
-
SyncMethod<bool() noexcept>{40, L"
|
|
61
|
-
SyncMethod<bool() noexcept>{41, L"
|
|
62
|
-
SyncMethod<bool() noexcept>{42, L"
|
|
63
|
-
SyncMethod<bool() noexcept>{43, L"
|
|
64
|
-
SyncMethod<bool() noexcept>{44, L"
|
|
65
|
-
SyncMethod<bool() noexcept>{45, L"
|
|
66
|
-
SyncMethod<bool() noexcept>{46, L"
|
|
67
|
-
SyncMethod<bool() noexcept>{47, L"useTurboModuleInterop"},
|
|
21
|
+
SyncMethod<bool() noexcept>{1, L"batchRenderingUpdatesInEventLoop"},
|
|
22
|
+
SyncMethod<bool() noexcept>{2, L"completeReactInstanceCreationOnBgThreadOnAndroid"},
|
|
23
|
+
SyncMethod<bool() noexcept>{3, L"destroyFabricSurfacesInReactInstanceManager"},
|
|
24
|
+
SyncMethod<bool() noexcept>{4, L"enableAlignItemsBaselineOnFabricIOS"},
|
|
25
|
+
SyncMethod<bool() noexcept>{5, L"enableAndroidMixBlendModeProp"},
|
|
26
|
+
SyncMethod<bool() noexcept>{6, L"enableBackgroundStyleApplicator"},
|
|
27
|
+
SyncMethod<bool() noexcept>{7, L"enableCleanTextInputYogaNode"},
|
|
28
|
+
SyncMethod<bool() noexcept>{8, L"enableEagerRootViewAttachment"},
|
|
29
|
+
SyncMethod<bool() noexcept>{9, L"enableEventEmitterRetentionDuringGesturesOnAndroid"},
|
|
30
|
+
SyncMethod<bool() noexcept>{10, L"enableFabricLogs"},
|
|
31
|
+
SyncMethod<bool() noexcept>{11, L"enableFabricRendererExclusively"},
|
|
32
|
+
SyncMethod<bool() noexcept>{12, L"enableGranularShadowTreeStateReconciliation"},
|
|
33
|
+
SyncMethod<bool() noexcept>{13, L"enableIOSViewClipToPaddingBox"},
|
|
34
|
+
SyncMethod<bool() noexcept>{14, L"enableLayoutAnimationsOnIOS"},
|
|
35
|
+
SyncMethod<bool() noexcept>{15, L"enableLongTaskAPI"},
|
|
36
|
+
SyncMethod<bool() noexcept>{16, L"enableMicrotasks"},
|
|
37
|
+
SyncMethod<bool() noexcept>{17, L"enablePropsUpdateReconciliationAndroid"},
|
|
38
|
+
SyncMethod<bool() noexcept>{18, L"enableReportEventPaintTime"},
|
|
39
|
+
SyncMethod<bool() noexcept>{19, L"enableSynchronousStateUpdates"},
|
|
40
|
+
SyncMethod<bool() noexcept>{20, L"enableUIConsistency"},
|
|
41
|
+
SyncMethod<bool() noexcept>{21, L"enableViewRecycling"},
|
|
42
|
+
SyncMethod<bool() noexcept>{22, L"excludeYogaFromRawProps"},
|
|
43
|
+
SyncMethod<bool() noexcept>{23, L"fetchImagesInViewPreallocation"},
|
|
44
|
+
SyncMethod<bool() noexcept>{24, L"fixIncorrectScrollViewStateUpdateOnAndroid"},
|
|
45
|
+
SyncMethod<bool() noexcept>{25, L"fixMappingOfEventPrioritiesBetweenFabricAndReact"},
|
|
46
|
+
SyncMethod<bool() noexcept>{26, L"fixMissedFabricStateUpdatesOnAndroid"},
|
|
47
|
+
SyncMethod<bool() noexcept>{27, L"fixMountingCoordinatorReportedPendingTransactionsOnAndroid"},
|
|
48
|
+
SyncMethod<bool() noexcept>{28, L"forceBatchingMountItemsOnAndroid"},
|
|
49
|
+
SyncMethod<bool() noexcept>{29, L"fuseboxEnabledDebug"},
|
|
50
|
+
SyncMethod<bool() noexcept>{30, L"fuseboxEnabledRelease"},
|
|
51
|
+
SyncMethod<bool() noexcept>{31, L"initEagerTurboModulesOnNativeModulesQueueAndroid"},
|
|
52
|
+
SyncMethod<bool() noexcept>{32, L"lazyAnimationCallbacks"},
|
|
53
|
+
SyncMethod<bool() noexcept>{33, L"loadVectorDrawablesOnImages"},
|
|
54
|
+
SyncMethod<bool() noexcept>{34, L"setAndroidLayoutDirection"},
|
|
55
|
+
SyncMethod<bool() noexcept>{35, L"traceTurboModulePromiseRejectionsOnAndroid"},
|
|
56
|
+
SyncMethod<bool() noexcept>{36, L"useFabricInterop"},
|
|
57
|
+
SyncMethod<bool() noexcept>{37, L"useImmediateExecutorInAndroidBridgeless"},
|
|
58
|
+
SyncMethod<bool() noexcept>{38, L"useModernRuntimeScheduler"},
|
|
59
|
+
SyncMethod<bool() noexcept>{39, L"useNativeViewConfigsInBridgelessMode"},
|
|
60
|
+
SyncMethod<bool() noexcept>{40, L"useNewReactImageViewBackgroundDrawing"},
|
|
61
|
+
SyncMethod<bool() noexcept>{41, L"useOptimisedViewPreallocationOnAndroid"},
|
|
62
|
+
SyncMethod<bool() noexcept>{42, L"useOptimizedEventBatchingOnAndroid"},
|
|
63
|
+
SyncMethod<bool() noexcept>{43, L"useRuntimeShadowNodeReferenceUpdate"},
|
|
64
|
+
SyncMethod<bool() noexcept>{44, L"useRuntimeShadowNodeReferenceUpdateOnLayout"},
|
|
65
|
+
SyncMethod<bool() noexcept>{45, L"useStateAlignmentMechanism"},
|
|
66
|
+
SyncMethod<bool() noexcept>{46, L"useTurboModuleInterop"},
|
|
68
67
|
};
|
|
69
68
|
|
|
70
69
|
template <class TModule>
|
|
@@ -78,236 +77,231 @@ struct ReactNativeFeatureFlagsSpec : winrt::Microsoft::ReactNative::TurboModuleS
|
|
|
78
77
|
" REACT_SYNC_METHOD(commonTestFlag) static bool commonTestFlag() noexcept { /* implementation */ }\n");
|
|
79
78
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
80
79
|
1,
|
|
81
|
-
"allowRecursiveCommitsWithSynchronousMountOnAndroid",
|
|
82
|
-
" REACT_SYNC_METHOD(allowRecursiveCommitsWithSynchronousMountOnAndroid) bool allowRecursiveCommitsWithSynchronousMountOnAndroid() noexcept { /* implementation */ }\n"
|
|
83
|
-
" REACT_SYNC_METHOD(allowRecursiveCommitsWithSynchronousMountOnAndroid) static bool allowRecursiveCommitsWithSynchronousMountOnAndroid() noexcept { /* implementation */ }\n");
|
|
84
|
-
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
85
|
-
2,
|
|
86
80
|
"batchRenderingUpdatesInEventLoop",
|
|
87
81
|
" REACT_SYNC_METHOD(batchRenderingUpdatesInEventLoop) bool batchRenderingUpdatesInEventLoop() noexcept { /* implementation */ }\n"
|
|
88
82
|
" REACT_SYNC_METHOD(batchRenderingUpdatesInEventLoop) static bool batchRenderingUpdatesInEventLoop() noexcept { /* implementation */ }\n");
|
|
89
83
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
90
|
-
|
|
84
|
+
2,
|
|
91
85
|
"completeReactInstanceCreationOnBgThreadOnAndroid",
|
|
92
86
|
" REACT_SYNC_METHOD(completeReactInstanceCreationOnBgThreadOnAndroid) bool completeReactInstanceCreationOnBgThreadOnAndroid() noexcept { /* implementation */ }\n"
|
|
93
87
|
" REACT_SYNC_METHOD(completeReactInstanceCreationOnBgThreadOnAndroid) static bool completeReactInstanceCreationOnBgThreadOnAndroid() noexcept { /* implementation */ }\n");
|
|
94
88
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
95
|
-
|
|
89
|
+
3,
|
|
96
90
|
"destroyFabricSurfacesInReactInstanceManager",
|
|
97
91
|
" REACT_SYNC_METHOD(destroyFabricSurfacesInReactInstanceManager) bool destroyFabricSurfacesInReactInstanceManager() noexcept { /* implementation */ }\n"
|
|
98
92
|
" REACT_SYNC_METHOD(destroyFabricSurfacesInReactInstanceManager) static bool destroyFabricSurfacesInReactInstanceManager() noexcept { /* implementation */ }\n");
|
|
99
93
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
100
|
-
|
|
94
|
+
4,
|
|
101
95
|
"enableAlignItemsBaselineOnFabricIOS",
|
|
102
96
|
" REACT_SYNC_METHOD(enableAlignItemsBaselineOnFabricIOS) bool enableAlignItemsBaselineOnFabricIOS() noexcept { /* implementation */ }\n"
|
|
103
97
|
" REACT_SYNC_METHOD(enableAlignItemsBaselineOnFabricIOS) static bool enableAlignItemsBaselineOnFabricIOS() noexcept { /* implementation */ }\n");
|
|
104
98
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
105
|
-
|
|
99
|
+
5,
|
|
106
100
|
"enableAndroidMixBlendModeProp",
|
|
107
101
|
" REACT_SYNC_METHOD(enableAndroidMixBlendModeProp) bool enableAndroidMixBlendModeProp() noexcept { /* implementation */ }\n"
|
|
108
102
|
" REACT_SYNC_METHOD(enableAndroidMixBlendModeProp) static bool enableAndroidMixBlendModeProp() noexcept { /* implementation */ }\n");
|
|
109
103
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
110
|
-
|
|
104
|
+
6,
|
|
111
105
|
"enableBackgroundStyleApplicator",
|
|
112
106
|
" REACT_SYNC_METHOD(enableBackgroundStyleApplicator) bool enableBackgroundStyleApplicator() noexcept { /* implementation */ }\n"
|
|
113
107
|
" REACT_SYNC_METHOD(enableBackgroundStyleApplicator) static bool enableBackgroundStyleApplicator() noexcept { /* implementation */ }\n");
|
|
114
108
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
115
|
-
|
|
109
|
+
7,
|
|
116
110
|
"enableCleanTextInputYogaNode",
|
|
117
111
|
" REACT_SYNC_METHOD(enableCleanTextInputYogaNode) bool enableCleanTextInputYogaNode() noexcept { /* implementation */ }\n"
|
|
118
112
|
" REACT_SYNC_METHOD(enableCleanTextInputYogaNode) static bool enableCleanTextInputYogaNode() noexcept { /* implementation */ }\n");
|
|
119
113
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
120
|
-
|
|
114
|
+
8,
|
|
121
115
|
"enableEagerRootViewAttachment",
|
|
122
116
|
" REACT_SYNC_METHOD(enableEagerRootViewAttachment) bool enableEagerRootViewAttachment() noexcept { /* implementation */ }\n"
|
|
123
117
|
" REACT_SYNC_METHOD(enableEagerRootViewAttachment) static bool enableEagerRootViewAttachment() noexcept { /* implementation */ }\n");
|
|
124
118
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
125
|
-
|
|
119
|
+
9,
|
|
126
120
|
"enableEventEmitterRetentionDuringGesturesOnAndroid",
|
|
127
121
|
" REACT_SYNC_METHOD(enableEventEmitterRetentionDuringGesturesOnAndroid) bool enableEventEmitterRetentionDuringGesturesOnAndroid() noexcept { /* implementation */ }\n"
|
|
128
122
|
" REACT_SYNC_METHOD(enableEventEmitterRetentionDuringGesturesOnAndroid) static bool enableEventEmitterRetentionDuringGesturesOnAndroid() noexcept { /* implementation */ }\n");
|
|
129
123
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
130
|
-
|
|
124
|
+
10,
|
|
131
125
|
"enableFabricLogs",
|
|
132
126
|
" REACT_SYNC_METHOD(enableFabricLogs) bool enableFabricLogs() noexcept { /* implementation */ }\n"
|
|
133
127
|
" REACT_SYNC_METHOD(enableFabricLogs) static bool enableFabricLogs() noexcept { /* implementation */ }\n");
|
|
134
128
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
135
|
-
|
|
129
|
+
11,
|
|
136
130
|
"enableFabricRendererExclusively",
|
|
137
131
|
" REACT_SYNC_METHOD(enableFabricRendererExclusively) bool enableFabricRendererExclusively() noexcept { /* implementation */ }\n"
|
|
138
132
|
" REACT_SYNC_METHOD(enableFabricRendererExclusively) static bool enableFabricRendererExclusively() noexcept { /* implementation */ }\n");
|
|
139
133
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
140
|
-
|
|
134
|
+
12,
|
|
141
135
|
"enableGranularShadowTreeStateReconciliation",
|
|
142
136
|
" REACT_SYNC_METHOD(enableGranularShadowTreeStateReconciliation) bool enableGranularShadowTreeStateReconciliation() noexcept { /* implementation */ }\n"
|
|
143
137
|
" REACT_SYNC_METHOD(enableGranularShadowTreeStateReconciliation) static bool enableGranularShadowTreeStateReconciliation() noexcept { /* implementation */ }\n");
|
|
144
138
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
145
|
-
|
|
139
|
+
13,
|
|
146
140
|
"enableIOSViewClipToPaddingBox",
|
|
147
141
|
" REACT_SYNC_METHOD(enableIOSViewClipToPaddingBox) bool enableIOSViewClipToPaddingBox() noexcept { /* implementation */ }\n"
|
|
148
142
|
" REACT_SYNC_METHOD(enableIOSViewClipToPaddingBox) static bool enableIOSViewClipToPaddingBox() noexcept { /* implementation */ }\n");
|
|
149
143
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
150
|
-
|
|
144
|
+
14,
|
|
151
145
|
"enableLayoutAnimationsOnIOS",
|
|
152
146
|
" REACT_SYNC_METHOD(enableLayoutAnimationsOnIOS) bool enableLayoutAnimationsOnIOS() noexcept { /* implementation */ }\n"
|
|
153
147
|
" REACT_SYNC_METHOD(enableLayoutAnimationsOnIOS) static bool enableLayoutAnimationsOnIOS() noexcept { /* implementation */ }\n");
|
|
154
148
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
155
|
-
|
|
149
|
+
15,
|
|
156
150
|
"enableLongTaskAPI",
|
|
157
151
|
" REACT_SYNC_METHOD(enableLongTaskAPI) bool enableLongTaskAPI() noexcept { /* implementation */ }\n"
|
|
158
152
|
" REACT_SYNC_METHOD(enableLongTaskAPI) static bool enableLongTaskAPI() noexcept { /* implementation */ }\n");
|
|
159
153
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
160
|
-
|
|
154
|
+
16,
|
|
161
155
|
"enableMicrotasks",
|
|
162
156
|
" REACT_SYNC_METHOD(enableMicrotasks) bool enableMicrotasks() noexcept { /* implementation */ }\n"
|
|
163
157
|
" REACT_SYNC_METHOD(enableMicrotasks) static bool enableMicrotasks() noexcept { /* implementation */ }\n");
|
|
164
158
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
165
|
-
|
|
159
|
+
17,
|
|
166
160
|
"enablePropsUpdateReconciliationAndroid",
|
|
167
161
|
" REACT_SYNC_METHOD(enablePropsUpdateReconciliationAndroid) bool enablePropsUpdateReconciliationAndroid() noexcept { /* implementation */ }\n"
|
|
168
162
|
" REACT_SYNC_METHOD(enablePropsUpdateReconciliationAndroid) static bool enablePropsUpdateReconciliationAndroid() noexcept { /* implementation */ }\n");
|
|
169
163
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
170
|
-
|
|
164
|
+
18,
|
|
171
165
|
"enableReportEventPaintTime",
|
|
172
166
|
" REACT_SYNC_METHOD(enableReportEventPaintTime) bool enableReportEventPaintTime() noexcept { /* implementation */ }\n"
|
|
173
167
|
" REACT_SYNC_METHOD(enableReportEventPaintTime) static bool enableReportEventPaintTime() noexcept { /* implementation */ }\n");
|
|
174
168
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
175
|
-
|
|
169
|
+
19,
|
|
176
170
|
"enableSynchronousStateUpdates",
|
|
177
171
|
" REACT_SYNC_METHOD(enableSynchronousStateUpdates) bool enableSynchronousStateUpdates() noexcept { /* implementation */ }\n"
|
|
178
172
|
" REACT_SYNC_METHOD(enableSynchronousStateUpdates) static bool enableSynchronousStateUpdates() noexcept { /* implementation */ }\n");
|
|
179
173
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
180
|
-
|
|
174
|
+
20,
|
|
181
175
|
"enableUIConsistency",
|
|
182
176
|
" REACT_SYNC_METHOD(enableUIConsistency) bool enableUIConsistency() noexcept { /* implementation */ }\n"
|
|
183
177
|
" REACT_SYNC_METHOD(enableUIConsistency) static bool enableUIConsistency() noexcept { /* implementation */ }\n");
|
|
184
178
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
185
|
-
|
|
179
|
+
21,
|
|
186
180
|
"enableViewRecycling",
|
|
187
181
|
" REACT_SYNC_METHOD(enableViewRecycling) bool enableViewRecycling() noexcept { /* implementation */ }\n"
|
|
188
182
|
" REACT_SYNC_METHOD(enableViewRecycling) static bool enableViewRecycling() noexcept { /* implementation */ }\n");
|
|
189
183
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
190
|
-
|
|
184
|
+
22,
|
|
191
185
|
"excludeYogaFromRawProps",
|
|
192
186
|
" REACT_SYNC_METHOD(excludeYogaFromRawProps) bool excludeYogaFromRawProps() noexcept { /* implementation */ }\n"
|
|
193
187
|
" REACT_SYNC_METHOD(excludeYogaFromRawProps) static bool excludeYogaFromRawProps() noexcept { /* implementation */ }\n");
|
|
194
188
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
195
|
-
|
|
189
|
+
23,
|
|
196
190
|
"fetchImagesInViewPreallocation",
|
|
197
191
|
" REACT_SYNC_METHOD(fetchImagesInViewPreallocation) bool fetchImagesInViewPreallocation() noexcept { /* implementation */ }\n"
|
|
198
192
|
" REACT_SYNC_METHOD(fetchImagesInViewPreallocation) static bool fetchImagesInViewPreallocation() noexcept { /* implementation */ }\n");
|
|
199
193
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
200
|
-
|
|
194
|
+
24,
|
|
201
195
|
"fixIncorrectScrollViewStateUpdateOnAndroid",
|
|
202
196
|
" REACT_SYNC_METHOD(fixIncorrectScrollViewStateUpdateOnAndroid) bool fixIncorrectScrollViewStateUpdateOnAndroid() noexcept { /* implementation */ }\n"
|
|
203
197
|
" REACT_SYNC_METHOD(fixIncorrectScrollViewStateUpdateOnAndroid) static bool fixIncorrectScrollViewStateUpdateOnAndroid() noexcept { /* implementation */ }\n");
|
|
204
198
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
205
|
-
|
|
199
|
+
25,
|
|
206
200
|
"fixMappingOfEventPrioritiesBetweenFabricAndReact",
|
|
207
201
|
" REACT_SYNC_METHOD(fixMappingOfEventPrioritiesBetweenFabricAndReact) bool fixMappingOfEventPrioritiesBetweenFabricAndReact() noexcept { /* implementation */ }\n"
|
|
208
202
|
" REACT_SYNC_METHOD(fixMappingOfEventPrioritiesBetweenFabricAndReact) static bool fixMappingOfEventPrioritiesBetweenFabricAndReact() noexcept { /* implementation */ }\n");
|
|
209
203
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
210
|
-
|
|
204
|
+
26,
|
|
211
205
|
"fixMissedFabricStateUpdatesOnAndroid",
|
|
212
206
|
" REACT_SYNC_METHOD(fixMissedFabricStateUpdatesOnAndroid) bool fixMissedFabricStateUpdatesOnAndroid() noexcept { /* implementation */ }\n"
|
|
213
207
|
" REACT_SYNC_METHOD(fixMissedFabricStateUpdatesOnAndroid) static bool fixMissedFabricStateUpdatesOnAndroid() noexcept { /* implementation */ }\n");
|
|
214
208
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
215
|
-
|
|
209
|
+
27,
|
|
216
210
|
"fixMountingCoordinatorReportedPendingTransactionsOnAndroid",
|
|
217
211
|
" REACT_SYNC_METHOD(fixMountingCoordinatorReportedPendingTransactionsOnAndroid) bool fixMountingCoordinatorReportedPendingTransactionsOnAndroid() noexcept { /* implementation */ }\n"
|
|
218
212
|
" REACT_SYNC_METHOD(fixMountingCoordinatorReportedPendingTransactionsOnAndroid) static bool fixMountingCoordinatorReportedPendingTransactionsOnAndroid() noexcept { /* implementation */ }\n");
|
|
219
213
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
220
|
-
|
|
214
|
+
28,
|
|
221
215
|
"forceBatchingMountItemsOnAndroid",
|
|
222
216
|
" REACT_SYNC_METHOD(forceBatchingMountItemsOnAndroid) bool forceBatchingMountItemsOnAndroid() noexcept { /* implementation */ }\n"
|
|
223
217
|
" REACT_SYNC_METHOD(forceBatchingMountItemsOnAndroid) static bool forceBatchingMountItemsOnAndroid() noexcept { /* implementation */ }\n");
|
|
224
218
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
225
|
-
|
|
219
|
+
29,
|
|
226
220
|
"fuseboxEnabledDebug",
|
|
227
221
|
" REACT_SYNC_METHOD(fuseboxEnabledDebug) bool fuseboxEnabledDebug() noexcept { /* implementation */ }\n"
|
|
228
222
|
" REACT_SYNC_METHOD(fuseboxEnabledDebug) static bool fuseboxEnabledDebug() noexcept { /* implementation */ }\n");
|
|
229
223
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
230
|
-
|
|
224
|
+
30,
|
|
231
225
|
"fuseboxEnabledRelease",
|
|
232
226
|
" REACT_SYNC_METHOD(fuseboxEnabledRelease) bool fuseboxEnabledRelease() noexcept { /* implementation */ }\n"
|
|
233
227
|
" REACT_SYNC_METHOD(fuseboxEnabledRelease) static bool fuseboxEnabledRelease() noexcept { /* implementation */ }\n");
|
|
234
228
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
235
|
-
|
|
229
|
+
31,
|
|
236
230
|
"initEagerTurboModulesOnNativeModulesQueueAndroid",
|
|
237
231
|
" REACT_SYNC_METHOD(initEagerTurboModulesOnNativeModulesQueueAndroid) bool initEagerTurboModulesOnNativeModulesQueueAndroid() noexcept { /* implementation */ }\n"
|
|
238
232
|
" REACT_SYNC_METHOD(initEagerTurboModulesOnNativeModulesQueueAndroid) static bool initEagerTurboModulesOnNativeModulesQueueAndroid() noexcept { /* implementation */ }\n");
|
|
239
233
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
240
|
-
|
|
234
|
+
32,
|
|
241
235
|
"lazyAnimationCallbacks",
|
|
242
236
|
" REACT_SYNC_METHOD(lazyAnimationCallbacks) bool lazyAnimationCallbacks() noexcept { /* implementation */ }\n"
|
|
243
237
|
" REACT_SYNC_METHOD(lazyAnimationCallbacks) static bool lazyAnimationCallbacks() noexcept { /* implementation */ }\n");
|
|
244
238
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
245
|
-
|
|
239
|
+
33,
|
|
246
240
|
"loadVectorDrawablesOnImages",
|
|
247
241
|
" REACT_SYNC_METHOD(loadVectorDrawablesOnImages) bool loadVectorDrawablesOnImages() noexcept { /* implementation */ }\n"
|
|
248
242
|
" REACT_SYNC_METHOD(loadVectorDrawablesOnImages) static bool loadVectorDrawablesOnImages() noexcept { /* implementation */ }\n");
|
|
249
243
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
250
|
-
|
|
244
|
+
34,
|
|
251
245
|
"setAndroidLayoutDirection",
|
|
252
246
|
" REACT_SYNC_METHOD(setAndroidLayoutDirection) bool setAndroidLayoutDirection() noexcept { /* implementation */ }\n"
|
|
253
247
|
" REACT_SYNC_METHOD(setAndroidLayoutDirection) static bool setAndroidLayoutDirection() noexcept { /* implementation */ }\n");
|
|
254
248
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
255
|
-
|
|
249
|
+
35,
|
|
256
250
|
"traceTurboModulePromiseRejectionsOnAndroid",
|
|
257
251
|
" REACT_SYNC_METHOD(traceTurboModulePromiseRejectionsOnAndroid) bool traceTurboModulePromiseRejectionsOnAndroid() noexcept { /* implementation */ }\n"
|
|
258
252
|
" REACT_SYNC_METHOD(traceTurboModulePromiseRejectionsOnAndroid) static bool traceTurboModulePromiseRejectionsOnAndroid() noexcept { /* implementation */ }\n");
|
|
259
253
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
260
|
-
|
|
254
|
+
36,
|
|
261
255
|
"useFabricInterop",
|
|
262
256
|
" REACT_SYNC_METHOD(useFabricInterop) bool useFabricInterop() noexcept { /* implementation */ }\n"
|
|
263
257
|
" REACT_SYNC_METHOD(useFabricInterop) static bool useFabricInterop() noexcept { /* implementation */ }\n");
|
|
264
258
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
265
|
-
|
|
259
|
+
37,
|
|
266
260
|
"useImmediateExecutorInAndroidBridgeless",
|
|
267
261
|
" REACT_SYNC_METHOD(useImmediateExecutorInAndroidBridgeless) bool useImmediateExecutorInAndroidBridgeless() noexcept { /* implementation */ }\n"
|
|
268
262
|
" REACT_SYNC_METHOD(useImmediateExecutorInAndroidBridgeless) static bool useImmediateExecutorInAndroidBridgeless() noexcept { /* implementation */ }\n");
|
|
269
263
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
270
|
-
|
|
264
|
+
38,
|
|
271
265
|
"useModernRuntimeScheduler",
|
|
272
266
|
" REACT_SYNC_METHOD(useModernRuntimeScheduler) bool useModernRuntimeScheduler() noexcept { /* implementation */ }\n"
|
|
273
267
|
" REACT_SYNC_METHOD(useModernRuntimeScheduler) static bool useModernRuntimeScheduler() noexcept { /* implementation */ }\n");
|
|
274
268
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
275
|
-
|
|
269
|
+
39,
|
|
276
270
|
"useNativeViewConfigsInBridgelessMode",
|
|
277
271
|
" REACT_SYNC_METHOD(useNativeViewConfigsInBridgelessMode) bool useNativeViewConfigsInBridgelessMode() noexcept { /* implementation */ }\n"
|
|
278
272
|
" REACT_SYNC_METHOD(useNativeViewConfigsInBridgelessMode) static bool useNativeViewConfigsInBridgelessMode() noexcept { /* implementation */ }\n");
|
|
279
273
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
280
|
-
|
|
274
|
+
40,
|
|
281
275
|
"useNewReactImageViewBackgroundDrawing",
|
|
282
276
|
" REACT_SYNC_METHOD(useNewReactImageViewBackgroundDrawing) bool useNewReactImageViewBackgroundDrawing() noexcept { /* implementation */ }\n"
|
|
283
277
|
" REACT_SYNC_METHOD(useNewReactImageViewBackgroundDrawing) static bool useNewReactImageViewBackgroundDrawing() noexcept { /* implementation */ }\n");
|
|
284
278
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
285
|
-
|
|
279
|
+
41,
|
|
286
280
|
"useOptimisedViewPreallocationOnAndroid",
|
|
287
281
|
" REACT_SYNC_METHOD(useOptimisedViewPreallocationOnAndroid) bool useOptimisedViewPreallocationOnAndroid() noexcept { /* implementation */ }\n"
|
|
288
282
|
" REACT_SYNC_METHOD(useOptimisedViewPreallocationOnAndroid) static bool useOptimisedViewPreallocationOnAndroid() noexcept { /* implementation */ }\n");
|
|
289
283
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
290
|
-
|
|
284
|
+
42,
|
|
291
285
|
"useOptimizedEventBatchingOnAndroid",
|
|
292
286
|
" REACT_SYNC_METHOD(useOptimizedEventBatchingOnAndroid) bool useOptimizedEventBatchingOnAndroid() noexcept { /* implementation */ }\n"
|
|
293
287
|
" REACT_SYNC_METHOD(useOptimizedEventBatchingOnAndroid) static bool useOptimizedEventBatchingOnAndroid() noexcept { /* implementation */ }\n");
|
|
294
288
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
295
|
-
|
|
289
|
+
43,
|
|
296
290
|
"useRuntimeShadowNodeReferenceUpdate",
|
|
297
291
|
" REACT_SYNC_METHOD(useRuntimeShadowNodeReferenceUpdate) bool useRuntimeShadowNodeReferenceUpdate() noexcept { /* implementation */ }\n"
|
|
298
292
|
" REACT_SYNC_METHOD(useRuntimeShadowNodeReferenceUpdate) static bool useRuntimeShadowNodeReferenceUpdate() noexcept { /* implementation */ }\n");
|
|
299
293
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
300
|
-
|
|
294
|
+
44,
|
|
301
295
|
"useRuntimeShadowNodeReferenceUpdateOnLayout",
|
|
302
296
|
" REACT_SYNC_METHOD(useRuntimeShadowNodeReferenceUpdateOnLayout) bool useRuntimeShadowNodeReferenceUpdateOnLayout() noexcept { /* implementation */ }\n"
|
|
303
297
|
" REACT_SYNC_METHOD(useRuntimeShadowNodeReferenceUpdateOnLayout) static bool useRuntimeShadowNodeReferenceUpdateOnLayout() noexcept { /* implementation */ }\n");
|
|
304
298
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
305
|
-
|
|
299
|
+
45,
|
|
306
300
|
"useStateAlignmentMechanism",
|
|
307
301
|
" REACT_SYNC_METHOD(useStateAlignmentMechanism) bool useStateAlignmentMechanism() noexcept { /* implementation */ }\n"
|
|
308
302
|
" REACT_SYNC_METHOD(useStateAlignmentMechanism) static bool useStateAlignmentMechanism() noexcept { /* implementation */ }\n");
|
|
309
303
|
REACT_SHOW_METHOD_SPEC_ERRORS(
|
|
310
|
-
|
|
304
|
+
46,
|
|
311
305
|
"useTurboModuleInterop",
|
|
312
306
|
" REACT_SYNC_METHOD(useTurboModuleInterop) bool useTurboModuleInterop() noexcept { /* implementation */ }\n"
|
|
313
307
|
" REACT_SYNC_METHOD(useTurboModuleInterop) static bool useTurboModuleInterop() noexcept { /* implementation */ }\n");
|
|
@@ -16,11 +16,6 @@ static jsi::Value __hostFunction_NativeReactNativeFeatureFlagsCxxSpecJSI_commonT
|
|
|
16
16
|
rt
|
|
17
17
|
);
|
|
18
18
|
}
|
|
19
|
-
static jsi::Value __hostFunction_NativeReactNativeFeatureFlagsCxxSpecJSI_allowRecursiveCommitsWithSynchronousMountOnAndroid(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) {
|
|
20
|
-
return static_cast<NativeReactNativeFeatureFlagsCxxSpecJSI *>(&turboModule)->allowRecursiveCommitsWithSynchronousMountOnAndroid(
|
|
21
|
-
rt
|
|
22
|
-
);
|
|
23
|
-
}
|
|
24
19
|
static jsi::Value __hostFunction_NativeReactNativeFeatureFlagsCxxSpecJSI_batchRenderingUpdatesInEventLoop(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) {
|
|
25
20
|
return static_cast<NativeReactNativeFeatureFlagsCxxSpecJSI *>(&turboModule)->batchRenderingUpdatesInEventLoop(
|
|
26
21
|
rt
|
|
@@ -255,7 +250,6 @@ static jsi::Value __hostFunction_NativeReactNativeFeatureFlagsCxxSpecJSI_useTurb
|
|
|
255
250
|
NativeReactNativeFeatureFlagsCxxSpecJSI::NativeReactNativeFeatureFlagsCxxSpecJSI(std::shared_ptr<CallInvoker> jsInvoker)
|
|
256
251
|
: TurboModule("NativeReactNativeFeatureFlagsCxx", jsInvoker) {
|
|
257
252
|
methodMap_["commonTestFlag"] = MethodMetadata {0, __hostFunction_NativeReactNativeFeatureFlagsCxxSpecJSI_commonTestFlag};
|
|
258
|
-
methodMap_["allowRecursiveCommitsWithSynchronousMountOnAndroid"] = MethodMetadata {0, __hostFunction_NativeReactNativeFeatureFlagsCxxSpecJSI_allowRecursiveCommitsWithSynchronousMountOnAndroid};
|
|
259
253
|
methodMap_["batchRenderingUpdatesInEventLoop"] = MethodMetadata {0, __hostFunction_NativeReactNativeFeatureFlagsCxxSpecJSI_batchRenderingUpdatesInEventLoop};
|
|
260
254
|
methodMap_["completeReactInstanceCreationOnBgThreadOnAndroid"] = MethodMetadata {0, __hostFunction_NativeReactNativeFeatureFlagsCxxSpecJSI_completeReactInstanceCreationOnBgThreadOnAndroid};
|
|
261
255
|
methodMap_["destroyFabricSurfacesInReactInstanceManager"] = MethodMetadata {0, __hostFunction_NativeReactNativeFeatureFlagsCxxSpecJSI_destroyFabricSurfacesInReactInstanceManager};
|
package/codegen/rnwcoreJSI.h
CHANGED
|
@@ -21,7 +21,6 @@ protected:
|
|
|
21
21
|
|
|
22
22
|
public:
|
|
23
23
|
virtual bool commonTestFlag(jsi::Runtime &rt) = 0;
|
|
24
|
-
virtual bool allowRecursiveCommitsWithSynchronousMountOnAndroid(jsi::Runtime &rt) = 0;
|
|
25
24
|
virtual bool batchRenderingUpdatesInEventLoop(jsi::Runtime &rt) = 0;
|
|
26
25
|
virtual bool completeReactInstanceCreationOnBgThreadOnAndroid(jsi::Runtime &rt) = 0;
|
|
27
26
|
virtual bool destroyFabricSurfacesInReactInstanceManager(jsi::Runtime &rt) = 0;
|
|
@@ -102,14 +101,6 @@ private:
|
|
|
102
101
|
return bridging::callFromJs<bool>(
|
|
103
102
|
rt, &T::commonTestFlag, jsInvoker_, instance_);
|
|
104
103
|
}
|
|
105
|
-
bool allowRecursiveCommitsWithSynchronousMountOnAndroid(jsi::Runtime &rt) override {
|
|
106
|
-
static_assert(
|
|
107
|
-
bridging::getParameterCount(&T::allowRecursiveCommitsWithSynchronousMountOnAndroid) == 1,
|
|
108
|
-
"Expected allowRecursiveCommitsWithSynchronousMountOnAndroid(...) to have 1 parameters");
|
|
109
|
-
|
|
110
|
-
return bridging::callFromJs<bool>(
|
|
111
|
-
rt, &T::allowRecursiveCommitsWithSynchronousMountOnAndroid, jsInvoker_, instance_);
|
|
112
|
-
}
|
|
113
104
|
bool batchRenderingUpdatesInEventLoop(jsi::Runtime &rt) override {
|
|
114
105
|
static_assert(
|
|
115
106
|
bridging::getParameterCount(&T::batchRenderingUpdatesInEventLoop) == 1,
|
package/jest/setup.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-windows",
|
|
3
|
-
"version": "0.76.
|
|
3
|
+
"version": "0.76.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
"@react-native-community/cli": "15.0.0-alpha.2",
|
|
27
27
|
"@react-native-community/cli-platform-android": "15.0.0-alpha.2",
|
|
28
28
|
"@react-native-community/cli-platform-ios": "15.0.0-alpha.2",
|
|
29
|
-
"@react-native-windows/cli": "0.76.
|
|
29
|
+
"@react-native-windows/cli": "0.76.4",
|
|
30
30
|
"@react-native/assets": "1.0.0",
|
|
31
|
-
"@react-native/assets-registry": "0.76.
|
|
32
|
-
"@react-native/codegen": "0.76.
|
|
33
|
-
"@react-native/community-cli-plugin": "0.76.
|
|
34
|
-
"@react-native/gradle-plugin": "0.76.
|
|
35
|
-
"@react-native/js-polyfills": "0.76.
|
|
36
|
-
"@react-native/normalize-colors": "0.76.
|
|
37
|
-
"@react-native/virtualized-lists": "0.76.
|
|
31
|
+
"@react-native/assets-registry": "0.76.6",
|
|
32
|
+
"@react-native/codegen": "0.76.6",
|
|
33
|
+
"@react-native/community-cli-plugin": "0.76.6",
|
|
34
|
+
"@react-native/gradle-plugin": "0.76.6",
|
|
35
|
+
"@react-native/js-polyfills": "0.76.6",
|
|
36
|
+
"@react-native/normalize-colors": "0.76.6",
|
|
37
|
+
"@react-native/virtualized-lists": "0.76.6",
|
|
38
38
|
"abort-controller": "^3.0.0",
|
|
39
39
|
"anser": "^1.4.9",
|
|
40
40
|
"ansi-regex": "^5.0.0",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"just-scripts": "^1.3.3",
|
|
86
86
|
"prettier": "2.8.8",
|
|
87
87
|
"react": "18.3.1",
|
|
88
|
-
"react-native": "0.76.
|
|
88
|
+
"react-native": "0.76.6",
|
|
89
89
|
"react-native-platform-override": "^1.9.46",
|
|
90
90
|
"react-refresh": "^0.14.0",
|
|
91
91
|
"typescript": "5.0.4"
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*
|
|
7
|
-
* @generated SignedSource<<
|
|
7
|
+
* @generated SignedSource<<cbc00457c9b6f4639083b6fa970683eb>>
|
|
8
8
|
* @flow strict-local
|
|
9
9
|
*/
|
|
10
10
|
|
|
@@ -46,7 +46,6 @@ export type ReactNativeFeatureFlagsJsOnlyOverrides = Partial<ReactNativeFeatureF
|
|
|
46
46
|
export type ReactNativeFeatureFlags = {
|
|
47
47
|
...ReactNativeFeatureFlagsJsOnly,
|
|
48
48
|
commonTestFlag: Getter<boolean>,
|
|
49
|
-
allowRecursiveCommitsWithSynchronousMountOnAndroid: Getter<boolean>,
|
|
50
49
|
batchRenderingUpdatesInEventLoop: Getter<boolean>,
|
|
51
50
|
completeReactInstanceCreationOnBgThreadOnAndroid: Getter<boolean>,
|
|
52
51
|
destroyFabricSurfacesInReactInstanceManager: Getter<boolean>,
|
|
@@ -164,10 +163,6 @@ export const useRefsForTextInputState: Getter<boolean> = createJavaScriptFlagGet
|
|
|
164
163
|
* Common flag for testing. Do NOT modify.
|
|
165
164
|
*/
|
|
166
165
|
export const commonTestFlag: Getter<boolean> = createNativeFlagGetter('commonTestFlag', false);
|
|
167
|
-
/**
|
|
168
|
-
* Adds support for recursively processing commits that mount synchronously (Android only).
|
|
169
|
-
*/
|
|
170
|
-
export const allowRecursiveCommitsWithSynchronousMountOnAndroid: Getter<boolean> = createNativeFlagGetter('allowRecursiveCommitsWithSynchronousMountOnAndroid', false);
|
|
171
166
|
/**
|
|
172
167
|
* When enabled, the RuntimeScheduler processing the event loop will batch all rendering updates and dispatch them together at the end of each iteration of the loop.
|
|
173
168
|
*/
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*
|
|
7
|
-
* @generated SignedSource<<
|
|
7
|
+
* @generated SignedSource<<ac46e3eb810d890a0f8199fe100936cb>>
|
|
8
8
|
* @flow strict-local
|
|
9
9
|
*/
|
|
10
10
|
|
|
@@ -24,7 +24,6 @@ import * as TurboModuleRegistry from '../../../../Libraries/TurboModule/TurboMod
|
|
|
24
24
|
|
|
25
25
|
export interface Spec extends TurboModule {
|
|
26
26
|
+commonTestFlag?: () => boolean;
|
|
27
|
-
+allowRecursiveCommitsWithSynchronousMountOnAndroid?: () => boolean;
|
|
28
27
|
+batchRenderingUpdatesInEventLoop?: () => boolean;
|
|
29
28
|
+completeReactInstanceCreationOnBgThreadOnAndroid?: () => boolean;
|
|
30
29
|
+destroyFabricSurfacesInReactInstanceManager?: () => boolean;
|