react-native-windows 0.75.4 → 0.76.0-preview.2
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/.flowconfig +6 -4
- package/Directory.Build.props +4 -0
- package/Directory.Build.targets +5 -0
- package/Libraries/Alert/Alert.js +3 -0
- package/Libraries/Alert/Alert.windows.js +3 -0
- package/Libraries/Animated/AnimatedEvent.js +1 -1
- package/Libraries/Animated/AnimatedImplementation.js +7 -7
- package/Libraries/Animated/NativeAnimatedAllowlist.js +111 -0
- package/Libraries/Animated/animations/Animation.js +11 -1
- package/Libraries/Animated/animations/DecayAnimation.js +1 -1
- package/Libraries/Animated/animations/SpringAnimation.js +1 -1
- package/Libraries/Animated/animations/TimingAnimation.js +2 -1
- package/Libraries/Animated/components/AnimatedScrollView.js +3 -2
- package/Libraries/Animated/createAnimatedComponent.js +10 -9
- package/Libraries/Animated/nodes/AnimatedColor.js +1 -1
- package/Libraries/Animated/nodes/AnimatedInterpolation.js +3 -2
- package/Libraries/Animated/nodes/AnimatedNode.js +42 -33
- package/Libraries/Animated/nodes/AnimatedObject.js +56 -50
- package/Libraries/Animated/nodes/AnimatedProps.js +77 -40
- package/Libraries/Animated/nodes/AnimatedStyle.js +103 -59
- package/Libraries/Animated/nodes/AnimatedTracking.js +1 -1
- package/Libraries/Animated/nodes/AnimatedTransform.js +102 -67
- package/Libraries/Animated/nodes/AnimatedValue.js +2 -1
- package/Libraries/Animated/nodes/AnimatedWithChildren.js +21 -22
- package/Libraries/Animated/useAnimatedProps.js +142 -7
- package/Libraries/BatchedBridge/NativeModules.js +2 -0
- package/Libraries/Blob/FileReader.js +1 -1
- package/Libraries/Blob/URL.js +2 -62
- package/Libraries/Blob/URLSearchParams.js +71 -0
- package/Libraries/Components/Button.windows.js +0 -1
- package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +1 -1
- package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +17 -0
- package/Libraries/Components/Keyboard/KeyboardExt.js.map +1 -1
- package/Libraries/Components/RefreshControl/__mocks__/RefreshControlMock.js +1 -1
- package/Libraries/Components/ScrollView/ScrollView.js +131 -169
- package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +3 -0
- package/Libraries/Components/ScrollView/ScrollViewNativeComponent.windows.js +3 -0
- package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +1 -1
- package/Libraries/Components/StatusBar/StatusBar.js +3 -1
- package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +10 -0
- package/Libraries/Components/TextInput/TextInput.d.ts +32 -2
- package/Libraries/Components/TextInput/TextInput.js +230 -94
- package/Libraries/Components/TextInput/TextInput.windows.js +230 -105
- package/Libraries/Components/View/ReactNativeStyleAttributes.js +23 -1
- package/Libraries/Components/View/ReactNativeViewAttributes.js +2 -0
- package/Libraries/Components/View/ReactNativeViewAttributes.windows.js +2 -0
- package/Libraries/Components/View/View.windows.js +32 -30
- package/Libraries/Components/View/ViewAccessibility.d.ts +15 -0
- package/Libraries/Components/View/ViewNativeComponent.js +0 -1
- package/Libraries/Components/View/ViewPropTypes.js +14 -0
- package/Libraries/Components/View/ViewPropTypes.windows.js +14 -0
- package/Libraries/Core/ExceptionsManager.js +2 -0
- package/Libraries/Core/InitializeCore.js +3 -1
- package/Libraries/Core/ReactFiberErrorDialog.js +3 -0
- package/Libraries/Core/ReactNativeVersion.js +4 -4
- package/Libraries/Core/setUpDeveloperTools.js +5 -1
- package/Libraries/Core/setUpErrorHandling.js +7 -1
- package/Libraries/Core/setUpGlobals.js +1 -0
- package/Libraries/Core/setUpReactRefresh.js +0 -4
- package/Libraries/Image/AssetSourceResolver.js +28 -1
- package/Libraries/Image/AssetSourceResolver.windows.js +28 -1
- package/Libraries/Image/Image.android.js +9 -14
- package/Libraries/Image/Image.ios.js +11 -22
- package/Libraries/Image/Image.windows.js +11 -22
- package/Libraries/Image/ImageBackground.js +1 -8
- package/Libraries/Image/ImageUtils.js +9 -9
- package/Libraries/Image/ImageViewNativeComponent.js +1 -0
- package/Libraries/Inspector/Inspector.js +3 -2
- package/Libraries/Inspector/InspectorPanel.js +16 -10
- package/Libraries/Inspector/NetworkOverlay.js +1 -1
- package/Libraries/Interaction/TaskQueue.js +1 -0
- package/Libraries/Lists/FlatList.js +1 -1
- package/Libraries/Lists/SectionList.js +2 -2
- package/Libraries/Lists/SectionListModern.js +3 -3
- package/Libraries/LogBox/Data/LogBoxData.js +24 -3
- package/Libraries/LogBox/LogBoxNotificationContainer.js +3 -2
- package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +9 -8
- package/Libraries/LogBox/UI/LogBoxInspectorHeader.windows.js +9 -8
- package/Libraries/Modal/Modal.js +0 -1
- package/Libraries/NativeComponent/BaseViewConfig.android.js +9 -1
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +17 -1
- package/Libraries/NativeComponent/BaseViewConfig.windows.js +17 -1
- package/Libraries/NativeComponent/NativeComponentRegistry.js +22 -22
- package/Libraries/NativeComponent/StaticViewConfigValidator.js +0 -21
- package/Libraries/Network/XMLHttpRequest.js +4 -2
- package/Libraries/ReactNative/AppContainer-dev.js +1 -5
- package/Libraries/ReactNative/AppContainer-prod.js +1 -5
- package/Libraries/ReactNative/AppContainer.js +1 -2
- package/Libraries/ReactNative/AppRegistry.d.ts +0 -4
- package/Libraries/ReactNative/AppRegistry.js +1 -7
- package/Libraries/ReactNative/BridgelessUIManager.js +1 -0
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +1 -1
- package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +5 -5
- package/Libraries/ReactNative/RendererImplementation.js +26 -4
- package/Libraries/ReactNative/getNativeComponentAttributes.js +12 -0
- package/Libraries/ReactNative/renderApplication.js +1 -3
- package/Libraries/Renderer/shims/ReactNativeTypes.js +11 -4
- package/Libraries/StyleSheet/StyleSheet.js +1 -1
- package/Libraries/StyleSheet/StyleSheetTypes.d.ts +152 -2
- package/Libraries/StyleSheet/StyleSheetTypes.js +60 -5
- package/Libraries/StyleSheet/processBackgroundImage.js +384 -0
- package/Libraries/StyleSheet/processBoxShadow.js +209 -0
- package/Libraries/StyleSheet/processFilter.js +231 -42
- package/Libraries/Text/Text.js +394 -196
- package/Libraries/Text/Text.windows.js +476 -300
- package/Libraries/Text/TextNativeComponent.js +2 -1
- package/Libraries/TurboModule/TurboModuleRegistry.js +13 -50
- package/Libraries/Types/CodegenTypes.js +3 -1
- package/Libraries/Utilities/Appearance.js +108 -84
- package/Libraries/Utilities/DevLoadingView.js +2 -4
- package/Libraries/Utilities/HMRClient.js +8 -6
- package/Libraries/Utilities/ReactNativeTestTools.js +1 -1
- package/Libraries/Utilities/createPerformanceLogger.js +0 -9
- package/Libraries/Utilities/stringifyViewConfig.js +22 -0
- package/Libraries/Utilities/useColorScheme.js +3 -3
- package/Libraries/WebSocket/WebSocket.js +1 -1
- package/Libraries/promiseRejectionTrackingOptions.js +1 -1
- package/Libraries/vendor/emitter/EventEmitter.js +6 -5
- package/Microsoft.ReactNative/ComponentView.idl +11 -0
- package/Microsoft.ReactNative/Composition.Input.idl +1 -0
- package/Microsoft.ReactNative/CompositionSwitcher.idl +3 -0
- package/Microsoft.ReactNative/Fabric/AbiComponentDescriptor.cpp +9 -9
- package/Microsoft.ReactNative/Fabric/AbiViewComponentDescriptor.cpp +9 -9
- package/Microsoft.ReactNative/Fabric/ComponentView.cpp +7 -9
- package/Microsoft.ReactNative/Fabric/ComponentView.h +5 -6
- package/Microsoft.ReactNative/Fabric/Composition/Composition.Input.cpp +4 -0
- package/Microsoft.ReactNative/Fabric/Composition/Composition.Input.h +1 -0
- package/Microsoft.ReactNative/Fabric/Composition/CompositionContextHelper.cpp +44 -13
- package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.cpp +42 -5
- package/Microsoft.ReactNative/Fabric/Composition/CompositionHwndHost.cpp +1 -0
- package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.cpp +81 -63
- package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.h +2 -3
- package/Microsoft.ReactNative/Fabric/Composition/DebuggingOverlayComponentView.cpp +8 -6
- package/Microsoft.ReactNative/Fabric/Composition/DebuggingOverlayComponentView.h +1 -2
- package/Microsoft.ReactNative/Fabric/Composition/FocusManager.cpp +20 -6
- package/Microsoft.ReactNative/Fabric/Composition/FocusManager.h +13 -6
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.cpp +2 -3
- package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.h +1 -2
- package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.cpp +72 -54
- package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.h +14 -4
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.cpp +26 -8
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.h +5 -2
- package/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.cpp +18 -7
- package/Microsoft.ReactNative/Fabric/Composition/ScrollViewComponentView.h +1 -2
- package/Microsoft.ReactNative/Fabric/Composition/SwitchComponentView.cpp +6 -6
- package/Microsoft.ReactNative/Fabric/Composition/SwitchComponentView.h +1 -2
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +97 -140
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.h +8 -4
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.cpp +18 -11
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputShadowNode.h +5 -4
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputState.cpp +0 -13
- package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputState.h +0 -3
- package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.cpp +29 -4
- package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.h +2 -0
- package/Microsoft.ReactNative/Fabric/Composition/UnimplementedNativeViewComponentView.cpp +1 -2
- package/Microsoft.ReactNative/Fabric/Composition/UnimplementedNativeViewComponentView.h +1 -2
- package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.cpp +28 -12
- package/Microsoft.ReactNative/Fabric/platform/react/renderer/graphics/HostPlatformColor.h +33 -0
- package/Microsoft.ReactNative/Fabric/platform/react/renderer/textlayoutmanager/TextLayoutManager.cpp +26 -9
- package/Microsoft.ReactNative/Fabric/platform/react/renderer/textlayoutmanager/TextLayoutManager.h +10 -4
- package/Microsoft.ReactNative/IReactModuleBuilder.cpp +5 -0
- package/Microsoft.ReactNative/IReactModuleBuilder.h +1 -0
- package/Microsoft.ReactNative/IReactModuleBuilder.idl +9 -0
- package/Microsoft.ReactNative/IReactViewComponentBuilder.idl +8 -1
- package/Microsoft.ReactNative/Microsoft.ReactNative.vcxproj +2 -0
- package/Microsoft.ReactNative/Modules/AlertModule.cpp +3 -1
- package/Microsoft.ReactNative/Modules/AppearanceModule.cpp +1 -1
- package/Microsoft.ReactNative/Modules/AppearanceModule.h +7 -1
- package/Microsoft.ReactNative/Modules/DevSettingsModule.cpp +3 -3
- package/Microsoft.ReactNative/Modules/DevSettingsModule.h +1 -1
- package/Microsoft.ReactNative/Modules/LinkingManagerModule.cpp +2 -2
- package/Microsoft.ReactNative/Modules/LinkingManagerModule.h +1 -1
- package/Microsoft.ReactNative/Modules/LogBoxModule.cpp +9 -0
- package/Microsoft.ReactNative/Modules/LogBoxModule.h +2 -0
- package/Microsoft.ReactNative/Modules/SampleTurboModule.cpp +121 -0
- package/Microsoft.ReactNative/Modules/SampleTurboModule.h +90 -0
- package/Microsoft.ReactNative/ReactHost/MsoReactContext.cpp +0 -7
- package/Microsoft.ReactNative/ReactHost/MsoReactContext.h +0 -5
- package/Microsoft.ReactNative/ReactHost/ReactInstanceWin.cpp +5 -1
- package/Microsoft.ReactNative/ReactInstanceSettingsBuilder.cpp +59 -0
- package/Microsoft.ReactNative/ReactInstanceSettingsBuilder.h +23 -0
- package/Microsoft.ReactNative/ReactNativeAppBuilder.cpp +179 -0
- package/Microsoft.ReactNative/ReactNativeAppBuilder.h +35 -0
- package/Microsoft.ReactNative/ReactNativeAppBuilder.idl +69 -0
- package/Microsoft.ReactNative/ReactNativeIsland.idl +2 -0
- package/Microsoft.ReactNative/ReactNativeWin32App.cpp +82 -0
- package/Microsoft.ReactNative/ReactNativeWin32App.h +38 -0
- package/Microsoft.ReactNative/TurboModulesProvider.cpp +45 -0
- package/Microsoft.ReactNative/Views/DynamicAutomationPeer.cpp +2 -1
- package/Microsoft.ReactNative/Views/FlyoutViewManager.cpp +25 -16
- package/Microsoft.ReactNative.Cxx/Microsoft.ReactNative.Cxx.vcxitems +3 -4
- package/Microsoft.ReactNative.Cxx/Microsoft.ReactNative.Cxx.vcxitems.filters +3 -0
- package/Microsoft.ReactNative.Cxx/ModuleRegistration.cpp +2 -2
- package/Microsoft.ReactNative.Cxx/ModuleRegistration.h +62 -4
- package/Microsoft.ReactNative.Cxx/NativeModules.h +131 -14
- package/Microsoft.ReactNative.Managed.CodeGen/ReactNativeNames.cs +10 -2
- package/PropertySheets/Autolink.props +1 -1
- package/PropertySheets/Bundle.props +1 -1
- package/PropertySheets/Codegen.props +1 -1
- package/PropertySheets/Generated/PackageVersion.g.props +4 -4
- package/PropertySheets/NuGet.LockFile.props +18 -0
- package/README.md +29 -29
- package/ReactCommon/ReactCommon.vcxproj +5 -1
- package/ReactCommon/ReactCommon.vcxproj.filters +11 -2
- package/ReactCommon/TEMP_UntilReactCommonUpdate/cxxreact/JSExecutor.cpp +2 -7
- package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/NetworkIOAgent.cpp +441 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/NetworkIOAgent.h +266 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/jsinspector-modern/Utf8.h +56 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Base.h +3 -1
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Bridging.h +2 -2
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/CallbackWrapper.h +1 -1
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Convert.h +172 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/EventEmitter.h +4 -5
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/bridging/Function.h +2 -2
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/nativemodule/core/ReactCommon/TurboModule.h +1 -1
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/nativemodule/core/ReactCommon/TurboModuleUtils.h +3 -2
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/components/scrollview/ScrollViewProps.cpp +9 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/renderer/core/LayoutableShadowNode.cpp +363 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/runtime/JSRuntimeFactory.h +22 -2
- package/ReactCommon/TEMP_UntilReactCommonUpdate/react/runtime/ReactInstance.cpp +118 -51
- package/Scripts/NuGetRestoreForceEvaluateAllSolutions.ps1 +8 -1
- package/Scripts/Tfs/Layout-MSRN-Headers.ps1 +2 -2
- package/Shared/Modules/WebSocketModule.cpp +1 -2
- package/Shared/Networking/WinRTWebSocketResource.cpp +4 -1
- package/Shared/Shared.vcxitems +38 -2
- package/Shared/Shared.vcxitems.filters +6 -1
- package/Shared/TurboModuleManager.cpp +0 -3
- package/codegen/NativeLinkingManagerSpec.g.h +3 -3
- package/codegen/NativeReactNativeFeatureFlagsSpec.g.h +198 -54
- package/codegen/NativeSampleTurboModuleSpec.g.h +35 -0
- package/codegen/rnwcoreJSI-generated.cpp +245 -101
- package/codegen/rnwcoreJSI.h +847 -548
- package/index.js +3 -1
- package/index.windows.js +3 -1
- package/jest/mockComponent.js +4 -1
- package/jest/mockModal.js +1 -3
- package/jest/mockScrollView.js +1 -1
- package/jest/renderer.js +2 -2
- package/jest/setup.js +16 -13
- package/package.json +34 -30
- package/src/private/animated/NativeAnimatedHelper.js +438 -0
- package/src/private/animated/NativeAnimatedValidation.js +64 -0
- package/src/private/components/HScrollViewNativeComponents.js +56 -0
- package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +29 -0
- package/src/private/components/VScrollViewNativeComponents.js +48 -0
- package/src/private/components/useSyncOnScroll.js +48 -0
- package/src/private/featureflags/ReactNativeFeatureFlags.js +166 -16
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +29 -5
- package/src/private/fusebox/FuseboxSessionObserver.js +42 -0
- package/{Libraries/Core → src/private/renderer/errorhandling}/ErrorHandlers.js +14 -4
- package/src/private/setup/setUpDOM.js +28 -0
- package/src/private/setup/setUpIntersectionObserver.js +27 -0
- package/src/private/setup/setUpMutationObserver.js +26 -0
- package/src/private/setup/setUpPerformanceObserver.js +64 -0
- package/src/private/specs/modules/NativeAppearance.js +3 -3
- package/src/private/specs/modules/NativeLinkingManager.js +1 -1
- package/src/private/specs/modules/NativePlatformConstantsWindows.js +7 -0
- package/src/private/specs/modules/NativeSampleTurboModule.js +14 -1
- package/src/private/webapis/dom/nodes/ReadOnlyNode.js +6 -4
- package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserver.js +5 -3
- package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserverEntry.js +3 -3
- package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver}/IntersectionObserverManager.js +14 -17
- package/src/private/{specs/modules → webapis/intersectionobserver/specs}/NativeIntersectionObserver.js +2 -2
- package/{Libraries/IntersectionObserver → src/private/webapis/intersectionobserver/specs}/__mocks__/NativeIntersectionObserver.js +4 -4
- package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationObserver.js +5 -3
- package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationObserverManager.js +24 -15
- package/{Libraries/MutationObserver → src/private/webapis/mutationobserver}/MutationRecord.js +4 -6
- package/src/private/{specs/modules → webapis/mutationobserver/specs}/NativeMutationObserver.js +2 -2
- package/{Libraries/MutationObserver → src/private/webapis/mutationobserver/specs}/__mocks__/NativeMutationObserver.js +5 -5
- package/src/private/webapis/performance/{EventCounts.js → EventTiming.js} +65 -3
- package/src/private/webapis/performance/LongTasks.js +39 -0
- package/src/private/webapis/performance/Performance.js +22 -9
- package/src/private/webapis/performance/PerformanceEntry.js +36 -18
- package/src/private/webapis/performance/PerformanceObserver.js +29 -43
- package/src/private/webapis/performance/RawPerformanceEntry.js +24 -1
- package/src/private/webapis/performance/UserTiming.js +17 -12
- package/src/private/webapis/performance/specs/NativePerformanceObserver.js +1 -1
- package/template/cpp-app/src/AutolinkedNativeModules.g.cpp +1 -1
- package/template/cpp-app/src/AutolinkedNativeModules.g.h +1 -1
- package/template/cs-app/src/AutolinkedNativeModules.g.cs +1 -1
- package/template/index.windows.bundle +1 -1
- package/template/metro.config.js +2 -2
- package/template/shared-app/src/AutolinkedNativeModules.g.props +1 -1
- package/template/shared-app/src/AutolinkedNativeModules.g.targets +1 -1
- package/templates/cpp-app/metro.config.js +2 -2
- package/templates/cpp-app/template.config.js +5 -5
- package/templates/cpp-app/windows/MyApp/AutolinkedNativeModules.g.cpp +1 -1
- package/templates/cpp-app/windows/MyApp/AutolinkedNativeModules.g.h +1 -1
- package/templates/cpp-app/windows/MyApp/MyApp.cpp +2 -0
- package/templates/cpp-app/windows/MyApp/MyApp.vcxproj +1 -1
- package/templates/cpp-lib/example/metro.config.js +2 -2
- package/templates/cpp-lib/template.config.js +3 -3
- package/templates/cpp-lib/windows/MyLib/MyLib.h +3 -3
- package/templates/cpp-lib/windows/MyLib/MyLib.vcxproj +1 -1
- package/types/experimental.d.ts +12 -98
- package/Common/packages.lock.json +0 -26
- package/Folly/packages.lock.json +0 -23
- package/Libraries/Animated/NativeAnimatedHelper.js +0 -615
- package/Libraries/Core/setUpIntersectionObserver.js +0 -16
- package/Libraries/Core/setUpMutationObserver.js +0 -16
- package/Libraries/Core/setUpPerformanceObserver.js +0 -18
- package/Libraries/IntersectionObserver/NativeIntersectionObserver.js +0 -13
- package/Libraries/MutationObserver/NativeMutationObserver.js +0 -13
- package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +0 -135
- package/Microsoft.ReactNative/packages.lock.json +0 -132
- package/Microsoft.ReactNative.Managed/packages.lock.json +0 -373
- package/Microsoft.ReactNative.Managed.CodeGen/packages.lock.json +0 -3197
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/algorithm/CalculateLayout.cpp +0 -2396
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/config/Config.cpp +0 -136
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/config/Config.h +0 -92
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/node/LayoutResults.cpp +0 -48
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/node/LayoutResults.h +0 -122
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/node/Node.cpp +0 -388
- package/ReactCommon/packages.lock.json +0 -30
- package/fmt/packages.lock.json +0 -13
- package/src/private/core/setUpDOM.js +0 -18
- package/src/private/webapis/performance/PerformanceEventTiming.js +0 -55
- /package/src/private/{core → styles}/composeStyles.js +0 -0
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
* @format
|
|
8
|
-
* @flow
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
import PlatformBaseViewConfig from '../NativeComponent/PlatformBaseViewConfig';
|
|
12
|
-
import {type ViewConfig} from '../Renderer/shims/ReactNativeTypes';
|
|
13
|
-
|
|
14
|
-
const IGNORED_KEYS = ['transform', 'hitSlop'];
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* The purpose of this function is to validate that the view config that
|
|
18
|
-
* native exposes for a given view manager is the same as the view config
|
|
19
|
-
* that is specified for that view manager in JS.
|
|
20
|
-
*
|
|
21
|
-
* In order to improve perf, we want to avoid calling into native to get
|
|
22
|
-
* the view config when each view manager is used. To do this, we are moving
|
|
23
|
-
* the configs to JS. In the future we will use these JS based view configs
|
|
24
|
-
* to codegen the view manager on native to ensure they stay in sync without
|
|
25
|
-
* this runtime check.
|
|
26
|
-
*
|
|
27
|
-
* If this function fails, that likely means a change was made to the native
|
|
28
|
-
* view manager without updating the JS config as well. Ideally you can make
|
|
29
|
-
* that direct change to the JS config. If you don't know what the differences
|
|
30
|
-
* are, the best approach I've found is to create a view that prints
|
|
31
|
-
* the return value of getNativeComponentAttributes, and then copying that
|
|
32
|
-
* text and pasting it back into JS:
|
|
33
|
-
* <Text selectable={true}>{JSON.stringify(getNativeComponentAttributes('RCTView'))}</Text>
|
|
34
|
-
*
|
|
35
|
-
* This is meant to be a stopgap until the time comes when we only have a
|
|
36
|
-
* single source of truth. I wonder if this message will still be here two
|
|
37
|
-
* years from now...
|
|
38
|
-
*/
|
|
39
|
-
export default function verifyComponentAttributeEquivalence(
|
|
40
|
-
nativeViewConfig: ViewConfig,
|
|
41
|
-
staticViewConfig: ViewConfig,
|
|
42
|
-
) {
|
|
43
|
-
for (const prop of [
|
|
44
|
-
'validAttributes',
|
|
45
|
-
'bubblingEventTypes',
|
|
46
|
-
'directEventTypes',
|
|
47
|
-
]) {
|
|
48
|
-
const diff = Object.keys(
|
|
49
|
-
lefthandObjectDiff(nativeViewConfig[prop], staticViewConfig[prop]),
|
|
50
|
-
);
|
|
51
|
-
|
|
52
|
-
if (diff.length > 0) {
|
|
53
|
-
const name =
|
|
54
|
-
staticViewConfig.uiViewClassName ?? nativeViewConfig.uiViewClassName;
|
|
55
|
-
console.error(
|
|
56
|
-
`'${name}' has a view config that does not match native. ` +
|
|
57
|
-
`'${prop}' is missing: ${diff.join(', ')}`,
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
// Return the different key-value pairs of the right object, by iterating through the keys in the left object
|
|
64
|
-
// Note it won't return a difference where a key is missing in the left but exists the right.
|
|
65
|
-
function lefthandObjectDiff(leftObj: Object, rightObj: Object): Object {
|
|
66
|
-
const differentKeys: {[string]: any | {...}} = {};
|
|
67
|
-
|
|
68
|
-
function compare(leftItem: any, rightItem: any, key: string) {
|
|
69
|
-
if (typeof leftItem !== typeof rightItem && leftItem != null) {
|
|
70
|
-
differentKeys[key] = rightItem;
|
|
71
|
-
return;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
if (typeof leftItem === 'object') {
|
|
75
|
-
const objDiff = lefthandObjectDiff(leftItem, rightItem);
|
|
76
|
-
if (Object.keys(objDiff).length > 1) {
|
|
77
|
-
differentKeys[key] = objDiff;
|
|
78
|
-
}
|
|
79
|
-
return;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
if (leftItem !== rightItem) {
|
|
83
|
-
differentKeys[key] = rightItem;
|
|
84
|
-
return;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
for (const key in leftObj) {
|
|
89
|
-
if (IGNORED_KEYS.includes(key)) {
|
|
90
|
-
continue;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
if (!rightObj) {
|
|
94
|
-
differentKeys[key] = {};
|
|
95
|
-
} else if (leftObj.hasOwnProperty(key)) {
|
|
96
|
-
compare(leftObj[key], rightObj[key], key);
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
return differentKeys;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
export function getConfigWithoutViewProps(
|
|
104
|
-
viewConfig: ViewConfig,
|
|
105
|
-
propName: string,
|
|
106
|
-
): {...} {
|
|
107
|
-
// $FlowFixMe[invalid-computed-prop]
|
|
108
|
-
if (!viewConfig[propName]) {
|
|
109
|
-
return {};
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
return (
|
|
113
|
-
Object.keys(viewConfig[propName])
|
|
114
|
-
// $FlowFixMe[invalid-computed-prop]
|
|
115
|
-
.filter(prop => !PlatformBaseViewConfig[propName][prop])
|
|
116
|
-
.reduce<{[string]: any}>((obj, prop) => {
|
|
117
|
-
// $FlowFixMe[invalid-computed-prop]
|
|
118
|
-
obj[prop] = viewConfig[propName][prop];
|
|
119
|
-
return obj;
|
|
120
|
-
}, {})
|
|
121
|
-
);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
export function stringifyViewConfig(viewConfig: any): string {
|
|
125
|
-
return JSON.stringify(
|
|
126
|
-
viewConfig,
|
|
127
|
-
(key, val) => {
|
|
128
|
-
if (typeof val === 'function') {
|
|
129
|
-
return `ƒ ${val.name}`;
|
|
130
|
-
}
|
|
131
|
-
return val;
|
|
132
|
-
},
|
|
133
|
-
2,
|
|
134
|
-
);
|
|
135
|
-
}
|
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
{
|
|
3
|
-
"version": 1,
|
|
4
|
-
"dependencies": {
|
|
5
|
-
"native,Version=v0.0": {
|
|
6
|
-
"boost": {
|
|
7
|
-
"type": "Direct",
|
|
8
|
-
"requested": "[1.76.0, )",
|
|
9
|
-
"resolved": "1.76.0",
|
|
10
|
-
"contentHash": "p+w3YvNdXL8Cu9Fzrmexssu0tZbWxuf6ywsQqHjDlKFE5ojXHof1HIyMC3zDLfLnh80dIeFcEUAuR2Asg/XHRA=="
|
|
11
|
-
},
|
|
12
|
-
"Microsoft.JavaScript.Hermes": {
|
|
13
|
-
"type": "Direct",
|
|
14
|
-
"requested": "[0.1.21, )",
|
|
15
|
-
"resolved": "0.1.21",
|
|
16
|
-
"contentHash": "5njCh+3eXTLOv7+8nOnp6nJ5C0r6it5ze54c0nuWleeDptuK8t3dEDB79XTU4D5DKNvAPlqJpgXRDOak5nYIug=="
|
|
17
|
-
},
|
|
18
|
-
"Microsoft.SourceLink.GitHub": {
|
|
19
|
-
"type": "Direct",
|
|
20
|
-
"requested": "[1.1.1, )",
|
|
21
|
-
"resolved": "1.1.1",
|
|
22
|
-
"contentHash": "IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"Microsoft.Build.Tasks.Git": "1.1.1",
|
|
25
|
-
"Microsoft.SourceLink.Common": "1.1.1"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"Microsoft.UI.Xaml": {
|
|
29
|
-
"type": "Direct",
|
|
30
|
-
"requested": "[2.8.0, )",
|
|
31
|
-
"resolved": "2.8.0",
|
|
32
|
-
"contentHash": "vxdHxTr63s5KVtNddMFpgvjBjUH50z7seq/5jLWmmSuf8poxg+sXrywkofUdE8ZstbpO9y3FL/IXXUcPYbeesA==",
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"Microsoft.Web.WebView2": "1.0.1264.42"
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
"Microsoft.Windows.CppWinRT": {
|
|
38
|
-
"type": "Direct",
|
|
39
|
-
"requested": "[2.0.230706.1, )",
|
|
40
|
-
"resolved": "2.0.230706.1",
|
|
41
|
-
"contentHash": "l0D7oCw/5X+xIKHqZTi62TtV+1qeSz7KVluNFdrJ9hXsst4ghvqQ/Yhura7JqRdZWBXAuDS0G0KwALptdoxweQ=="
|
|
42
|
-
},
|
|
43
|
-
"Microsoft.Build.Tasks.Git": {
|
|
44
|
-
"type": "Transitive",
|
|
45
|
-
"resolved": "1.1.1",
|
|
46
|
-
"contentHash": "AT3HlgTjsqHnWpBHSNeR0KxbLZD7bztlZVj7I8vgeYG9SYqbeFGh0TM/KVtC6fg53nrWHl3VfZFvb5BiQFcY6Q=="
|
|
47
|
-
},
|
|
48
|
-
"Microsoft.SourceLink.Common": {
|
|
49
|
-
"type": "Transitive",
|
|
50
|
-
"resolved": "1.1.1",
|
|
51
|
-
"contentHash": "WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg=="
|
|
52
|
-
},
|
|
53
|
-
"Microsoft.Web.WebView2": {
|
|
54
|
-
"type": "Transitive",
|
|
55
|
-
"resolved": "1.0.1264.42",
|
|
56
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
57
|
-
},
|
|
58
|
-
"common": {
|
|
59
|
-
"type": "Project",
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"boost": "[1.76.0, )"
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
"fmt": {
|
|
65
|
-
"type": "Project"
|
|
66
|
-
},
|
|
67
|
-
"folly": {
|
|
68
|
-
"type": "Project",
|
|
69
|
-
"dependencies": {
|
|
70
|
-
"Fmt": "[1.0.0, )",
|
|
71
|
-
"boost": "[1.76.0, )"
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
"reactcommon": {
|
|
75
|
-
"type": "Project",
|
|
76
|
-
"dependencies": {
|
|
77
|
-
"Folly": "[1.0.0, )",
|
|
78
|
-
"boost": "[1.76.0, )"
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
"native,Version=v0.0/win10-arm": {
|
|
83
|
-
"Microsoft.Web.WebView2": {
|
|
84
|
-
"type": "Transitive",
|
|
85
|
-
"resolved": "1.0.1264.42",
|
|
86
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"native,Version=v0.0/win10-arm-aot": {
|
|
90
|
-
"Microsoft.Web.WebView2": {
|
|
91
|
-
"type": "Transitive",
|
|
92
|
-
"resolved": "1.0.1264.42",
|
|
93
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
|
-
"native,Version=v0.0/win10-arm64-aot": {
|
|
97
|
-
"Microsoft.Web.WebView2": {
|
|
98
|
-
"type": "Transitive",
|
|
99
|
-
"resolved": "1.0.1264.42",
|
|
100
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
101
|
-
}
|
|
102
|
-
},
|
|
103
|
-
"native,Version=v0.0/win10-x64": {
|
|
104
|
-
"Microsoft.Web.WebView2": {
|
|
105
|
-
"type": "Transitive",
|
|
106
|
-
"resolved": "1.0.1264.42",
|
|
107
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
"native,Version=v0.0/win10-x64-aot": {
|
|
111
|
-
"Microsoft.Web.WebView2": {
|
|
112
|
-
"type": "Transitive",
|
|
113
|
-
"resolved": "1.0.1264.42",
|
|
114
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
115
|
-
}
|
|
116
|
-
},
|
|
117
|
-
"native,Version=v0.0/win10-x86": {
|
|
118
|
-
"Microsoft.Web.WebView2": {
|
|
119
|
-
"type": "Transitive",
|
|
120
|
-
"resolved": "1.0.1264.42",
|
|
121
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"native,Version=v0.0/win10-x86-aot": {
|
|
125
|
-
"Microsoft.Web.WebView2": {
|
|
126
|
-
"type": "Transitive",
|
|
127
|
-
"resolved": "1.0.1264.42",
|
|
128
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
@@ -1,373 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"dependencies": {
|
|
4
|
-
"UAP,Version=v10.0.17763": {
|
|
5
|
-
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
6
|
-
"type": "Direct",
|
|
7
|
-
"requested": "[6.2.9, )",
|
|
8
|
-
"resolved": "6.2.9",
|
|
9
|
-
"contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
|
|
10
|
-
"dependencies": {
|
|
11
|
-
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
12
|
-
"Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
13
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
14
|
-
"NETStandard.Library": "2.0.3"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"Microsoft.SourceLink.GitHub": {
|
|
18
|
-
"type": "Direct",
|
|
19
|
-
"requested": "[1.1.1, )",
|
|
20
|
-
"resolved": "1.1.1",
|
|
21
|
-
"contentHash": "IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
|
|
22
|
-
"dependencies": {
|
|
23
|
-
"Microsoft.Build.Tasks.Git": "1.1.1",
|
|
24
|
-
"Microsoft.SourceLink.Common": "1.1.1"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"boost": {
|
|
28
|
-
"type": "Transitive",
|
|
29
|
-
"resolved": "1.76.0",
|
|
30
|
-
"contentHash": "p+w3YvNdXL8Cu9Fzrmexssu0tZbWxuf6ywsQqHjDlKFE5ojXHof1HIyMC3zDLfLnh80dIeFcEUAuR2Asg/XHRA=="
|
|
31
|
-
},
|
|
32
|
-
"Microsoft.Build.Tasks.Git": {
|
|
33
|
-
"type": "Transitive",
|
|
34
|
-
"resolved": "1.1.1",
|
|
35
|
-
"contentHash": "AT3HlgTjsqHnWpBHSNeR0KxbLZD7bztlZVj7I8vgeYG9SYqbeFGh0TM/KVtC6fg53nrWHl3VfZFvb5BiQFcY6Q=="
|
|
36
|
-
},
|
|
37
|
-
"Microsoft.JavaScript.Hermes": {
|
|
38
|
-
"type": "Transitive",
|
|
39
|
-
"resolved": "0.1.21",
|
|
40
|
-
"contentHash": "5njCh+3eXTLOv7+8nOnp6nJ5C0r6it5ze54c0nuWleeDptuK8t3dEDB79XTU4D5DKNvAPlqJpgXRDOak5nYIug=="
|
|
41
|
-
},
|
|
42
|
-
"Microsoft.Net.Native.Compiler": {
|
|
43
|
-
"type": "Transitive",
|
|
44
|
-
"resolved": "2.2.7-rel-27913-00",
|
|
45
|
-
"contentHash": "EtGDVRBaNWEqQDJTfkeHOLiiKUOzlr4UVK2KciIt3zYOZeLEnhsshTR6D+1ADetJRKluYR7s0HruAtw1kbc0Xg==",
|
|
46
|
-
"dependencies": {
|
|
47
|
-
"runtime.win10-arm.Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
48
|
-
"runtime.win10-arm64.Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
49
|
-
"runtime.win10-x64.Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
50
|
-
"runtime.win10-x86.Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00"
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": {
|
|
54
|
-
"type": "Transitive",
|
|
55
|
-
"resolved": "2.2.9",
|
|
56
|
-
"contentHash": "4N6mDdolISwxqM9yT0qptgCoxq+C4Z8CdQD/dpp0bb5egIda5LZ36Pg3nGKmBtU28PVYEljGsUCjRcWYBBXh2Q==",
|
|
57
|
-
"dependencies": {
|
|
58
|
-
"runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
59
|
-
"runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
60
|
-
"runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9"
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
"Microsoft.NETCore.Platforms": {
|
|
64
|
-
"type": "Transitive",
|
|
65
|
-
"resolved": "2.1.0",
|
|
66
|
-
"contentHash": "ok+RPAtESz/9MUXeIEz6Lv5XAGQsaNmEYXMsgVALj4D7kqC8gveKWXWXbufLySR2fWrwZf8smyN5RmHu0e4BHA=="
|
|
67
|
-
},
|
|
68
|
-
"Microsoft.SourceLink.Common": {
|
|
69
|
-
"type": "Transitive",
|
|
70
|
-
"resolved": "1.1.1",
|
|
71
|
-
"contentHash": "WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg=="
|
|
72
|
-
},
|
|
73
|
-
"Microsoft.UI.Xaml": {
|
|
74
|
-
"type": "Transitive",
|
|
75
|
-
"resolved": "2.8.0",
|
|
76
|
-
"contentHash": "vxdHxTr63s5KVtNddMFpgvjBjUH50z7seq/5jLWmmSuf8poxg+sXrywkofUdE8ZstbpO9y3FL/IXXUcPYbeesA==",
|
|
77
|
-
"dependencies": {
|
|
78
|
-
"Microsoft.Web.WebView2": "1.0.1264.42"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"Microsoft.Web.WebView2": {
|
|
82
|
-
"type": "Transitive",
|
|
83
|
-
"resolved": "1.0.1264.42",
|
|
84
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
85
|
-
},
|
|
86
|
-
"NETStandard.Library": {
|
|
87
|
-
"type": "Transitive",
|
|
88
|
-
"resolved": "2.0.3",
|
|
89
|
-
"contentHash": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
|
|
90
|
-
"dependencies": {
|
|
91
|
-
"Microsoft.NETCore.Platforms": "1.1.0"
|
|
92
|
-
}
|
|
93
|
-
},
|
|
94
|
-
"runtime.win10-arm.Microsoft.Net.Native.Compiler": {
|
|
95
|
-
"type": "Transitive",
|
|
96
|
-
"resolved": "2.2.7-rel-27913-00",
|
|
97
|
-
"contentHash": "7MmoGge/BtJAHCnnV1LqjT2Yvnxlsm/8+4C2ASK819zq+pGSloeNwJtVxyM3okA9T4/1jKr+JpQsfis4F/KSKg==",
|
|
98
|
-
"dependencies": {
|
|
99
|
-
"runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": "2.2.7-rel-27913-00"
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
"runtime.win10-arm.Microsoft.Net.Native.SharedLibrary": {
|
|
103
|
-
"type": "Transitive",
|
|
104
|
-
"resolved": "2.2.7-rel-27913-00",
|
|
105
|
-
"contentHash": "ifk8FQ8srunhdyo0QQe8H+36as9/wiQKXq1aXJ+6YeGyx0UjrTSyNx/zq6eThJfjRz9VyoomR+LZVhuXK+QKYw=="
|
|
106
|
-
},
|
|
107
|
-
"runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": {
|
|
108
|
-
"type": "Transitive",
|
|
109
|
-
"resolved": "2.2.9",
|
|
110
|
-
"contentHash": "viBS+DhSzl2JZYC/88uhlWi4DutSIFy32ocoRsdi5RsPLG50XTqq6w0traHQuuqLLJ4gwswlNXO9AD4J0+zvIQ=="
|
|
111
|
-
},
|
|
112
|
-
"runtime.win10-arm64.Microsoft.Net.Native.Compiler": {
|
|
113
|
-
"type": "Transitive",
|
|
114
|
-
"resolved": "2.2.7-rel-27913-00",
|
|
115
|
-
"contentHash": "5Pt/M1mMmvYQUGWEn33V9SnZtTDUeLvfKPsd71GwedZOh7MDSRuLZqSPG7P3ElOforh4nXlG6x8lcaE9Kauebg==",
|
|
116
|
-
"dependencies": {
|
|
117
|
-
"runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": "2.2.7-rel-27913-00"
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
"runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary": {
|
|
121
|
-
"type": "Transitive",
|
|
122
|
-
"resolved": "2.2.7-rel-27913-00",
|
|
123
|
-
"contentHash": "Bl0tXHiEko11FYLmumjPRQQl/w3wlGEXvYDpdvWSuC9Ty4YCGNHOUXzPaTMP2dv2GikTv8RYy4m1m5lbUNDa3g=="
|
|
124
|
-
},
|
|
125
|
-
"runtime.win10-x64.Microsoft.Net.Native.Compiler": {
|
|
126
|
-
"type": "Transitive",
|
|
127
|
-
"resolved": "2.2.7-rel-27913-00",
|
|
128
|
-
"contentHash": "aF94Kjb29+SkvySs07Ztq0cVZObv4Totcek8vCL+Xn1D6GN34PrKR2P+A17yAEbey3q4K3U8XZDybsJwoSbWFA==",
|
|
129
|
-
"dependencies": {
|
|
130
|
-
"runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": "2.2.7-rel-27913-00"
|
|
131
|
-
}
|
|
132
|
-
},
|
|
133
|
-
"runtime.win10-x64.Microsoft.Net.Native.SharedLibrary": {
|
|
134
|
-
"type": "Transitive",
|
|
135
|
-
"resolved": "2.2.7-rel-27913-00",
|
|
136
|
-
"contentHash": "Hr1dSHwWQ78yFMqZuh3J0brY886r4pPBblIy6JcgAFZUFM4FaDr9T1KPSYavlPBtHMPBzrHUfsQ3Bh3STzhMLA=="
|
|
137
|
-
},
|
|
138
|
-
"runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": {
|
|
139
|
-
"type": "Transitive",
|
|
140
|
-
"resolved": "2.2.9",
|
|
141
|
-
"contentHash": "QNZQ79gG3rIpaIoYbnIQCsh8Be8CzwnqDZCUZ/UGr+CfUrypGUthAxJzwitATopzonqCqPxgEnsV0ZiH8XGn8w=="
|
|
142
|
-
},
|
|
143
|
-
"runtime.win10-x86.Microsoft.Net.Native.Compiler": {
|
|
144
|
-
"type": "Transitive",
|
|
145
|
-
"resolved": "2.2.7-rel-27913-00",
|
|
146
|
-
"contentHash": "jxyZhYtJS9AmOvsNghtxeN6RYxHN73LnzBX3ir0cBQ5LlsNUsf6GgiJvZoeYPJLt/9fsPONhBciHpwLXWFkJkw==",
|
|
147
|
-
"dependencies": {
|
|
148
|
-
"runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": "2.2.7-rel-27913-00"
|
|
149
|
-
}
|
|
150
|
-
},
|
|
151
|
-
"runtime.win10-x86.Microsoft.Net.Native.SharedLibrary": {
|
|
152
|
-
"type": "Transitive",
|
|
153
|
-
"resolved": "2.2.7-rel-27913-00",
|
|
154
|
-
"contentHash": "LL5bMKQkVUlY5rbupMC+MJ4tCOz3hb4HVKGTmyb18Jwziv5h9QbJgRVPjiAZf9W2YroZaG+VYr1iI1Ig2bco2w=="
|
|
155
|
-
},
|
|
156
|
-
"runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": {
|
|
157
|
-
"type": "Transitive",
|
|
158
|
-
"resolved": "2.2.9",
|
|
159
|
-
"contentHash": "qF6RRZKaflI+LR1YODNyWYjq5YoX8IJ2wx5y8O+AW2xO+1t/Q6Mm+jQ38zJbWnmXbrcOqUYofn7Y3/KC6lTLBQ=="
|
|
160
|
-
},
|
|
161
|
-
"common": {
|
|
162
|
-
"type": "Project",
|
|
163
|
-
"dependencies": {
|
|
164
|
-
"boost": "[1.76.0, )"
|
|
165
|
-
}
|
|
166
|
-
},
|
|
167
|
-
"fmt": {
|
|
168
|
-
"type": "Project"
|
|
169
|
-
},
|
|
170
|
-
"folly": {
|
|
171
|
-
"type": "Project",
|
|
172
|
-
"dependencies": {
|
|
173
|
-
"boost": "[1.76.0, )",
|
|
174
|
-
"fmt": "[1.0.0, )"
|
|
175
|
-
}
|
|
176
|
-
},
|
|
177
|
-
"microsoft.reactnative": {
|
|
178
|
-
"type": "Project",
|
|
179
|
-
"dependencies": {
|
|
180
|
-
"Common": "[1.0.0, )",
|
|
181
|
-
"Folly": "[1.0.0, )",
|
|
182
|
-
"Microsoft.JavaScript.Hermes": "[0.1.21, )",
|
|
183
|
-
"Microsoft.SourceLink.GitHub": "[1.1.1, )",
|
|
184
|
-
"Microsoft.UI.Xaml": "[2.8.0, )",
|
|
185
|
-
"ReactCommon": "[1.0.0, )",
|
|
186
|
-
"boost": "[1.76.0, )"
|
|
187
|
-
}
|
|
188
|
-
},
|
|
189
|
-
"reactcommon": {
|
|
190
|
-
"type": "Project",
|
|
191
|
-
"dependencies": {
|
|
192
|
-
"Folly": "[1.0.0, )",
|
|
193
|
-
"boost": "[1.76.0, )"
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
},
|
|
197
|
-
"UAP,Version=v10.0.17763/win10-arm": {
|
|
198
|
-
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
199
|
-
"type": "Direct",
|
|
200
|
-
"requested": "[6.2.9, )",
|
|
201
|
-
"resolved": "6.2.9",
|
|
202
|
-
"contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
|
|
203
|
-
"dependencies": {
|
|
204
|
-
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
205
|
-
"Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
206
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
207
|
-
"NETStandard.Library": "2.0.3",
|
|
208
|
-
"runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
"Microsoft.Web.WebView2": {
|
|
212
|
-
"type": "Transitive",
|
|
213
|
-
"resolved": "1.0.1264.42",
|
|
214
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
215
|
-
},
|
|
216
|
-
"runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
217
|
-
"type": "Transitive",
|
|
218
|
-
"resolved": "6.2.9",
|
|
219
|
-
"contentHash": "/q9U+SqJTVrocU7CHFd1D4ac2jqPc4U8kPy8F147Li3XGf0Ce9v6UKJqf7nskR+XgVi3IVfUJUcjWLVskG5ZKw=="
|
|
220
|
-
}
|
|
221
|
-
},
|
|
222
|
-
"UAP,Version=v10.0.17763/win10-arm-aot": {
|
|
223
|
-
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
224
|
-
"type": "Direct",
|
|
225
|
-
"requested": "[6.2.9, )",
|
|
226
|
-
"resolved": "6.2.9",
|
|
227
|
-
"contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
|
|
228
|
-
"dependencies": {
|
|
229
|
-
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
230
|
-
"Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
231
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
232
|
-
"NETStandard.Library": "2.0.3",
|
|
233
|
-
"runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
|
|
234
|
-
}
|
|
235
|
-
},
|
|
236
|
-
"Microsoft.Web.WebView2": {
|
|
237
|
-
"type": "Transitive",
|
|
238
|
-
"resolved": "1.0.1264.42",
|
|
239
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
240
|
-
},
|
|
241
|
-
"runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
242
|
-
"type": "Transitive",
|
|
243
|
-
"resolved": "6.2.9",
|
|
244
|
-
"contentHash": "tN7AmnRPUuu29nh9ulL/UGMdzayAe/AQNhM7+fQNKuT4jUlxc61Ilf2djKNJ5MvK8wY69KH0Iz9Yy5+95rB+DQ=="
|
|
245
|
-
}
|
|
246
|
-
},
|
|
247
|
-
"UAP,Version=v10.0.17763/win10-arm64-aot": {
|
|
248
|
-
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
249
|
-
"type": "Direct",
|
|
250
|
-
"requested": "[6.2.9, )",
|
|
251
|
-
"resolved": "6.2.9",
|
|
252
|
-
"contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
|
|
253
|
-
"dependencies": {
|
|
254
|
-
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
255
|
-
"Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
256
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
257
|
-
"NETStandard.Library": "2.0.3",
|
|
258
|
-
"runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
|
|
259
|
-
}
|
|
260
|
-
},
|
|
261
|
-
"Microsoft.Web.WebView2": {
|
|
262
|
-
"type": "Transitive",
|
|
263
|
-
"resolved": "1.0.1264.42",
|
|
264
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
265
|
-
},
|
|
266
|
-
"runtime.win10-arm64-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
267
|
-
"type": "Transitive",
|
|
268
|
-
"resolved": "6.2.9",
|
|
269
|
-
"contentHash": "gupfeyxXmaOyqLps1gGLh4Lzh5Wee6iuKpgZ70l2nmoHtzqCdk9aK4i+03259M6X2r7BXoIjJJml0paXBQY1kw=="
|
|
270
|
-
}
|
|
271
|
-
},
|
|
272
|
-
"UAP,Version=v10.0.17763/win10-x64": {
|
|
273
|
-
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
274
|
-
"type": "Direct",
|
|
275
|
-
"requested": "[6.2.9, )",
|
|
276
|
-
"resolved": "6.2.9",
|
|
277
|
-
"contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
|
|
278
|
-
"dependencies": {
|
|
279
|
-
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
280
|
-
"Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
281
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
282
|
-
"NETStandard.Library": "2.0.3",
|
|
283
|
-
"runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
|
|
284
|
-
}
|
|
285
|
-
},
|
|
286
|
-
"Microsoft.Web.WebView2": {
|
|
287
|
-
"type": "Transitive",
|
|
288
|
-
"resolved": "1.0.1264.42",
|
|
289
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
290
|
-
},
|
|
291
|
-
"runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
292
|
-
"type": "Transitive",
|
|
293
|
-
"resolved": "6.2.9",
|
|
294
|
-
"contentHash": "JjnUToWq2LQfNKtiqld4YYkgUcC3tCQ0RvRKiut0B7AgS+Eo/HnI/viFiH4FoNG7pFvcWoKimLctj06IgJoiyA=="
|
|
295
|
-
}
|
|
296
|
-
},
|
|
297
|
-
"UAP,Version=v10.0.17763/win10-x64-aot": {
|
|
298
|
-
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
299
|
-
"type": "Direct",
|
|
300
|
-
"requested": "[6.2.9, )",
|
|
301
|
-
"resolved": "6.2.9",
|
|
302
|
-
"contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
|
|
303
|
-
"dependencies": {
|
|
304
|
-
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
305
|
-
"Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
306
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
307
|
-
"NETStandard.Library": "2.0.3",
|
|
308
|
-
"runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
|
|
309
|
-
}
|
|
310
|
-
},
|
|
311
|
-
"Microsoft.Web.WebView2": {
|
|
312
|
-
"type": "Transitive",
|
|
313
|
-
"resolved": "1.0.1264.42",
|
|
314
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
315
|
-
},
|
|
316
|
-
"runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
317
|
-
"type": "Transitive",
|
|
318
|
-
"resolved": "6.2.9",
|
|
319
|
-
"contentHash": "XTmgQZIB3JbzwVE0h+GN//VniFM4MmSWjxjtK7g5zypTwtpuj68oulxWqN5R3F19GaUzT+EFdfKXKEWI73/qwQ=="
|
|
320
|
-
}
|
|
321
|
-
},
|
|
322
|
-
"UAP,Version=v10.0.17763/win10-x86": {
|
|
323
|
-
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
324
|
-
"type": "Direct",
|
|
325
|
-
"requested": "[6.2.9, )",
|
|
326
|
-
"resolved": "6.2.9",
|
|
327
|
-
"contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
|
|
328
|
-
"dependencies": {
|
|
329
|
-
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
330
|
-
"Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
331
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
332
|
-
"NETStandard.Library": "2.0.3",
|
|
333
|
-
"runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
|
|
334
|
-
}
|
|
335
|
-
},
|
|
336
|
-
"Microsoft.Web.WebView2": {
|
|
337
|
-
"type": "Transitive",
|
|
338
|
-
"resolved": "1.0.1264.42",
|
|
339
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
340
|
-
},
|
|
341
|
-
"runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
342
|
-
"type": "Transitive",
|
|
343
|
-
"resolved": "6.2.9",
|
|
344
|
-
"contentHash": "BckZHjaqBTSEtvzj0aliq3DQvLOT7C4ei4L8pCgcD3k/MZpECBg8kUsixDanwYtRot+jNXxc6LF5J87cyigGfA=="
|
|
345
|
-
}
|
|
346
|
-
},
|
|
347
|
-
"UAP,Version=v10.0.17763/win10-x86-aot": {
|
|
348
|
-
"Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
349
|
-
"type": "Direct",
|
|
350
|
-
"requested": "[6.2.9, )",
|
|
351
|
-
"resolved": "6.2.9",
|
|
352
|
-
"contentHash": "QcNHcEvhO0bMhF1LW7Ebn1f6wrzvbkloRsZSrAZsGbAAqdhmfuZcD3VVeVCL8VWsBXRlhdb3+0Y7HLxvnMTpZA==",
|
|
353
|
-
"dependencies": {
|
|
354
|
-
"Microsoft.NETCore.Platforms": "2.1.0",
|
|
355
|
-
"Microsoft.Net.Native.Compiler": "2.2.7-rel-27913-00",
|
|
356
|
-
"Microsoft.Net.UWPCoreRuntimeSdk": "2.2.9",
|
|
357
|
-
"NETStandard.Library": "2.0.3",
|
|
358
|
-
"runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9"
|
|
359
|
-
}
|
|
360
|
-
},
|
|
361
|
-
"Microsoft.Web.WebView2": {
|
|
362
|
-
"type": "Transitive",
|
|
363
|
-
"resolved": "1.0.1264.42",
|
|
364
|
-
"contentHash": "7OBUTkzQ5VI/3gb0ufi5U4zjuCowAJwQg2li0zXXzqkM+S1kmOlivTy1R4jAW+gY5Vyg510M+qMAESCQUjrfgA=="
|
|
365
|
-
},
|
|
366
|
-
"runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": {
|
|
367
|
-
"type": "Transitive",
|
|
368
|
-
"resolved": "6.2.9",
|
|
369
|
-
"contentHash": "/FxhZW8KuY7aiRcC1Opk5+48Meg1PYj36LcLVuX6Ty+n4HpMf7xxvNvp0EzSLzW/Ibzqt+iaRWqfOZqiTFZG5g=="
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
}
|
|
373
|
-
}
|