react-native-windows 0.76.0-preview.1 → 0.76.0-preview.3
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/Components/Keyboard/KeyboardAvoidingView.js +17 -0
- package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +3 -0
- package/Libraries/Components/ScrollView/ScrollViewNativeComponent.windows.js +3 -0
- package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +10 -0
- package/Libraries/Components/View/ReactNativeStyleAttributes.js +2 -2
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/Libraries/Core/setUpDeveloperTools.js +5 -1
- package/Libraries/NativeComponent/BaseViewConfig.android.js +2 -2
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +11 -2
- package/Libraries/NativeComponent/BaseViewConfig.windows.js +11 -2
- package/Libraries/ReactNative/getNativeComponentAttributes.js +4 -0
- package/Libraries/StyleSheet/StyleSheetTypes.d.ts +98 -5
- package/Libraries/StyleSheet/StyleSheetTypes.js +5 -5
- package/Libraries/StyleSheet/processBoxShadow.js +5 -7
- package/Libraries/StyleSheet/processFilter.js +4 -4
- package/Libraries/Utilities/HMRClient.js +6 -5
- package/Microsoft.ReactNative/Fabric/ComponentView.cpp +12 -0
- package/Microsoft.ReactNative/Fabric/ComponentView.h +3 -0
- package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.cpp +66 -0
- package/Microsoft.ReactNative/Fabric/Composition/CompositionDynamicAutomationProvider.h +8 -2
- package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.cpp +24 -0
- package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.h +2 -0
- package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.cpp +8 -3
- package/Microsoft.ReactNative/Fabric/Composition/ReactNativeIsland.h +1 -0
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.cpp +11 -0
- package/Microsoft.ReactNative/Fabric/Composition/RootComponentView.h +2 -0
- package/Microsoft.ReactNative/Fabric/Composition/TextDrawing.cpp +1 -2
- package/Microsoft.ReactNative/Fabric/Composition/TextDrawing.h +1 -1
- package/Microsoft.ReactNative/Fabric/Composition/Theme.cpp +12 -4
- package/Microsoft.ReactNative/Fabric/Composition/TooltipService.cpp +338 -0
- package/Microsoft.ReactNative/Fabric/Composition/TooltipService.h +66 -0
- package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.cpp +8 -0
- package/Microsoft.ReactNative/Fabric/Composition/UiaHelpers.h +1 -0
- package/Microsoft.ReactNative/Fabric/FabricUIManagerModule.cpp +3 -0
- package/Microsoft.ReactNative/Fabric/ReactTaggedView.h +4 -0
- package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewProps.cpp +5 -0
- package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewProps.h +1 -1
- package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewTraitsInitializer.h +1 -1
- package/Microsoft.ReactNative/Microsoft.ReactNative.vcxproj +1 -1
- package/Microsoft.ReactNative/ReactCoreInjection.h +0 -1
- package/Microsoft.ReactNative/ReactHost/ReactInstanceWin.cpp +15 -4
- package/PropertySheets/Generated/PackageVersion.g.props +2 -2
- package/Shared/Shared.vcxitems +3 -0
- package/Shared/Shared.vcxitems.filters +1 -0
- package/package.json +21 -17
- package/src/private/components/SafeAreaView_INTERNAL_DO_NOT_USE.js +11 -9
- package/types/experimental.d.ts +0 -105
- package/Common/packages.lock.json +0 -26
- package/Folly/packages.lock.json +0 -23
- package/Microsoft.ReactNative/packages.fabric.lock.json +0 -159
- package/Microsoft.ReactNative/packages.lock.json +0 -131
- package/Microsoft.ReactNative.Managed/packages.lock.json +0 -373
- package/Microsoft.ReactNative.Managed.CodeGen/packages.lock.json +0 -3197
- package/ReactCommon/packages.lock.json +0 -30
- package/fmt/packages.lock.json +0 -13
|
@@ -155,6 +155,9 @@ void FabricUIManager::startSurface(
|
|
|
155
155
|
|
|
156
156
|
void FabricUIManager::stopSurface(facebook::react::SurfaceId surfaceId) noexcept {
|
|
157
157
|
m_surfaceManager->stopSurface(surfaceId);
|
|
158
|
+
auto &rootDescriptor = m_registry.componentViewDescriptorWithTag(surfaceId);
|
|
159
|
+
m_registry.enqueueComponentViewWithComponentHandle(
|
|
160
|
+
facebook::react::RootShadowNode::Handle(), surfaceId, rootDescriptor);
|
|
158
161
|
}
|
|
159
162
|
|
|
160
163
|
winrt::Microsoft::ReactNative::ReactNativeIsland FabricUIManager::GetReactNativeIsland(
|
|
@@ -27,6 +27,10 @@ HostPlatformViewProps::HostPlatformViewProps(
|
|
|
27
27
|
CoreFeatures::enablePropIteratorSetter
|
|
28
28
|
? sourceProps.focusable
|
|
29
29
|
: convertRawProp(context, rawProps, "focusable", sourceProps.focusable, {})),
|
|
30
|
+
tooltip(
|
|
31
|
+
CoreFeatures::enablePropIteratorSetter
|
|
32
|
+
? sourceProps.tooltip
|
|
33
|
+
: convertRawProp(context, rawProps, "tooltip", sourceProps.tooltip, {})),
|
|
30
34
|
accessibilityPosInSet(
|
|
31
35
|
CoreFeatures::enablePropIteratorSetter
|
|
32
36
|
? sourceProps.accessibilityPosInSet
|
|
@@ -82,6 +86,7 @@ void HostPlatformViewProps::setProp(
|
|
|
82
86
|
RAW_SET_PROP_SWITCH_CASE_BASIC(accessibilityLiveRegion);
|
|
83
87
|
RAW_SET_PROP_SWITCH_CASE_BASIC(keyDownEvents);
|
|
84
88
|
RAW_SET_PROP_SWITCH_CASE_BASIC(keyUpEvents);
|
|
89
|
+
RAW_SET_PROP_SWITCH_CASE_BASIC(tooltip);
|
|
85
90
|
}
|
|
86
91
|
}
|
|
87
92
|
|
package/Microsoft.ReactNative/Fabric/platform/react/renderer/components/view/HostPlatformViewProps.h
CHANGED
|
@@ -29,7 +29,7 @@ class HostPlatformViewProps : public BaseViewProps {
|
|
|
29
29
|
std::string accessibilityLiveRegion{"none"};
|
|
30
30
|
|
|
31
31
|
// std::optional<std::string> overflowAnchor{};
|
|
32
|
-
|
|
32
|
+
std::optional<std::string> tooltip{};
|
|
33
33
|
std::vector<HandledKeyEvent> keyDownEvents{};
|
|
34
34
|
std::vector<HandledKeyEvent> keyUpEvents{};
|
|
35
35
|
};
|
|
@@ -13,7 +13,7 @@ inline bool formsStackingContext(ViewProps const &viewProps) {
|
|
|
13
13
|
// Only Views which are marked as focusable can actually trigger the events, which will already avoid being collapsed.
|
|
14
14
|
constexpr decltype(WindowsViewEvents::bits) focusEventsMask = {
|
|
15
15
|
(1 << (int)WindowsViewEvents::Offset::Focus) & (1 << (int)WindowsViewEvents::Offset::Blur)};
|
|
16
|
-
return (viewProps.windowsEvents.bits & focusEventsMask).any();
|
|
16
|
+
return (viewProps.windowsEvents.bits & focusEventsMask).any() || viewProps.tooltip;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
inline bool formsView(ViewProps const &viewProps) {
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
145
145
|
</ClCompile>
|
|
146
146
|
<Link>
|
|
147
|
-
<AdditionalDependencies>winsqlite3.lib;ChakraRT.lib;dxguid.lib;dloadhelper.lib;OneCoreUap_apiset.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
147
|
+
<AdditionalDependencies>winsqlite3.lib;ChakraRT.lib;dxguid.lib;dloadhelper.lib;OneCoreUap_apiset.lib;Dwmapi.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
148
148
|
<DelayLoadDLLs>
|
|
149
149
|
api-ms-win-core-file-l1-2-0.dll;
|
|
150
150
|
api-ms-win-core-windowserrorreporting-l1-1-0.dll;
|
|
@@ -53,7 +53,6 @@ struct ReactCoreInjection : ReactCoreInjectionT<ReactCoreInjection> {
|
|
|
53
53
|
static uint64_t GetTopLevelWindowId(const IReactPropertyBag &properties) noexcept;
|
|
54
54
|
static void SetTopLevelWindowId(const IReactPropertyBag &properties, uint64_t windowId) noexcept;
|
|
55
55
|
|
|
56
|
-
static ITimer CreateTimer(const IReactPropertyBag &properties);
|
|
57
56
|
static TimerFactory GetTimerFactory(const IReactPropertyBag &properties) noexcept;
|
|
58
57
|
static void SetTimerFactory(const IReactPropertyBag &properties, const TimerFactory &timerFactory) noexcept;
|
|
59
58
|
};
|
|
@@ -400,9 +400,12 @@ void ReactInstanceWin::LoadModules(
|
|
|
400
400
|
}
|
|
401
401
|
#endif
|
|
402
402
|
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
403
|
+
if (!m_options.UseWebDebugger()) {
|
|
404
|
+
turboModulesProvider->AddModuleProvider(
|
|
405
|
+
L"SampleTurboModule",
|
|
406
|
+
winrt::Microsoft::ReactNative::MakeTurboModuleProvider<::Microsoft::ReactNative::SampleTurboModule>(),
|
|
407
|
+
false);
|
|
408
|
+
}
|
|
406
409
|
|
|
407
410
|
if (devSettings->useTurboModulesOnly) {
|
|
408
411
|
::Microsoft::ReactNative::ExceptionsManager::SetRedBoxHander(
|
|
@@ -680,8 +683,16 @@ void ReactInstanceWin::InitializeBridgeless() noexcept {
|
|
|
680
683
|
return turboModuleManager->getModule(name);
|
|
681
684
|
};
|
|
682
685
|
|
|
686
|
+
// Use a legacy native module binding that always returns null
|
|
687
|
+
// This means that calls to NativeModules.XXX will always return null, rather than crashing on access
|
|
688
|
+
auto legacyNativeModuleBinding =
|
|
689
|
+
[](const std::string & /*name*/) -> std::shared_ptr<facebook::react::TurboModule> { return nullptr; };
|
|
690
|
+
|
|
683
691
|
facebook::react::TurboModuleBinding::install(
|
|
684
|
-
runtime,
|
|
692
|
+
runtime,
|
|
693
|
+
std::function(binding),
|
|
694
|
+
std::function(legacyNativeModuleBinding),
|
|
695
|
+
m_options.TurboModuleProvider->LongLivedObjectCollection());
|
|
685
696
|
|
|
686
697
|
auto componentDescriptorRegistry =
|
|
687
698
|
Microsoft::ReactNative::WindowsComponentDescriptorRegistry::FromProperties(
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.76.0-preview.
|
|
13
|
+
<ReactNativeWindowsVersion>0.76.0-preview.3</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>76</ReactNativeWindowsMinor>
|
|
16
16
|
<ReactNativeWindowsPatch>0</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>c147dcb404ad758a03db0a8e1733cf30ef60ff4b</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
package/Shared/Shared.vcxitems
CHANGED
|
@@ -150,6 +150,9 @@
|
|
|
150
150
|
<ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\TextDrawing.cpp">
|
|
151
151
|
<ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
|
|
152
152
|
</ClCompile>
|
|
153
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\TooltipService.cpp">
|
|
154
|
+
<ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
|
|
155
|
+
</ClCompile>
|
|
153
156
|
<ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\UiaHelpers.cpp">
|
|
154
157
|
<ExcludedFromBuild Condition="'$(UseFabric)' != 'true'">true</ExcludedFromBuild>
|
|
155
158
|
</ClCompile>
|
|
@@ -333,6 +333,7 @@
|
|
|
333
333
|
<ClCompile Include="$(ReactNativeDir)\ReactCommon\jsinspector-modern\RuntimeTargetConsole.cpp" />
|
|
334
334
|
<ClCompile Include="$(MSBuildThisFileDirectory)Networking\NetworkPropertyIds.cpp" />
|
|
335
335
|
<ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\AbiEventEmitter.cpp" />
|
|
336
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\Composition\TooltipService.cpp" />
|
|
336
337
|
</ItemGroup>
|
|
337
338
|
<ItemGroup>
|
|
338
339
|
<Filter Include="Source Files">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-windows",
|
|
3
|
-
"version": "0.76.0-preview.
|
|
3
|
+
"version": "0.76.0-preview.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,21 +23,23 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@babel/runtime": "^7.0.0",
|
|
25
25
|
"@jest/create-cache-key-function": "^29.6.3",
|
|
26
|
-
"@react-native-community/cli": "
|
|
27
|
-
"@react-native-community/cli-platform-android": "
|
|
28
|
-
"@react-native-community/cli-platform-ios": "
|
|
29
|
-
"@react-native-windows/cli": "0.76.0-preview.
|
|
26
|
+
"@react-native-community/cli": "15.0.0-alpha.2",
|
|
27
|
+
"@react-native-community/cli-platform-android": "15.0.0-alpha.2",
|
|
28
|
+
"@react-native-community/cli-platform-ios": "15.0.0-alpha.2",
|
|
29
|
+
"@react-native-windows/cli": "0.76.0-preview.3",
|
|
30
30
|
"@react-native/assets": "1.0.0",
|
|
31
|
-
"@react-native/assets-registry": "0.76.0-rc.
|
|
32
|
-
"@react-native/codegen": "0.76.0-rc.
|
|
33
|
-
"@react-native/community-cli-plugin": "0.76.0-rc.
|
|
34
|
-
"@react-native/gradle-plugin": "0.76.0-rc.
|
|
35
|
-
"@react-native/js-polyfills": "0.76.0-rc.
|
|
36
|
-
"@react-native/normalize-colors": "0.76.0-rc.
|
|
37
|
-
"@react-native/virtualized-lists": "0.76.0-rc.
|
|
31
|
+
"@react-native/assets-registry": "0.76.0-rc.6",
|
|
32
|
+
"@react-native/codegen": "0.76.0-rc.6",
|
|
33
|
+
"@react-native/community-cli-plugin": "0.76.0-rc.6",
|
|
34
|
+
"@react-native/gradle-plugin": "0.76.0-rc.6",
|
|
35
|
+
"@react-native/js-polyfills": "0.76.0-rc.6",
|
|
36
|
+
"@react-native/normalize-colors": "0.76.0-rc.6",
|
|
37
|
+
"@react-native/virtualized-lists": "0.76.0-rc.6",
|
|
38
38
|
"abort-controller": "^3.0.0",
|
|
39
39
|
"anser": "^1.4.9",
|
|
40
40
|
"ansi-regex": "^5.0.0",
|
|
41
|
+
"babel-jest": "^29.7.0",
|
|
42
|
+
"babel-plugin-syntax-hermes-parser": "^0.23.1",
|
|
41
43
|
"base64-js": "^1.5.1",
|
|
42
44
|
"chalk": "^4.0.0",
|
|
43
45
|
"commander": "^12.0.0",
|
|
@@ -48,8 +50,8 @@
|
|
|
48
50
|
"jest-environment-node": "^29.6.3",
|
|
49
51
|
"jsc-android": "^250231.0.0",
|
|
50
52
|
"memoize-one": "^5.0.0",
|
|
51
|
-
"metro-runtime": "^0.
|
|
52
|
-
"metro-source-map": "^0.
|
|
53
|
+
"metro-runtime": "^0.81.0",
|
|
54
|
+
"metro-source-map": "^0.81.0",
|
|
53
55
|
"mkdirp": "^0.5.1",
|
|
54
56
|
"nullthrows": "^1.1.1",
|
|
55
57
|
"pretty-format": "^29.7.0",
|
|
@@ -84,7 +86,7 @@
|
|
|
84
86
|
"just-scripts": "^1.3.3",
|
|
85
87
|
"prettier": "2.8.8",
|
|
86
88
|
"react": "18.3.1",
|
|
87
|
-
"react-native": "0.76.0-rc.
|
|
89
|
+
"react-native": "0.76.0-rc.6",
|
|
88
90
|
"react-native-platform-override": "^1.9.46",
|
|
89
91
|
"react-refresh": "^0.14.0",
|
|
90
92
|
"typescript": "5.0.4"
|
|
@@ -92,7 +94,7 @@
|
|
|
92
94
|
"peerDependencies": {
|
|
93
95
|
"@types/react": "^18.2.6",
|
|
94
96
|
"react": "^18.2.0",
|
|
95
|
-
"react-native": "0.76.0-rc.
|
|
97
|
+
"react-native": "0.76.0-rc.6"
|
|
96
98
|
},
|
|
97
99
|
"beachball": {
|
|
98
100
|
"defaultNpmTag": "preview",
|
|
@@ -144,7 +146,9 @@
|
|
|
144
146
|
"/metro-react-native-platform.js",
|
|
145
147
|
"/metro.config.js",
|
|
146
148
|
"/react-native.config.js",
|
|
147
|
-
"/rn-get-polyfills.js"
|
|
149
|
+
"/rn-get-polyfills.js",
|
|
150
|
+
"!packages.lock.json",
|
|
151
|
+
"!packages.fabric.lock.json"
|
|
148
152
|
],
|
|
149
153
|
"promoteRelease": true,
|
|
150
154
|
"engines": {
|
|
@@ -13,15 +13,17 @@ import type {ViewProps} from '../../../Libraries/Components/View/ViewPropTypes';
|
|
|
13
13
|
import Platform from '../../../Libraries/Utilities/Platform';
|
|
14
14
|
import View from '../../../Libraries/Components/View/View';
|
|
15
15
|
import * as React from 'react';
|
|
16
|
-
export * from '../../../src/private/specs/components/RCTSafeAreaViewNativeComponent';
|
|
17
|
-
import RCTSafeAreaViewNativeComponent from '../../../src/private/specs/components/RCTSafeAreaViewNativeComponent';
|
|
18
16
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
17
|
+
const exported: React.AbstractComponent<
|
|
18
|
+
ViewProps,
|
|
19
|
+
React.ElementRef<typeof View>,
|
|
20
|
+
> = Platform.select({
|
|
21
|
+
ios: require('../../../src/private/specs/components/RCTSafeAreaViewNativeComponent')
|
|
22
|
+
.default,
|
|
23
|
+
android:
|
|
24
|
+
require('../../../src/private/specs/components/RCTSafeAreaViewNativeComponent')
|
|
25
|
+
.default,
|
|
26
|
+
default: View,
|
|
27
|
+
});
|
|
26
28
|
|
|
27
29
|
export default exported;
|
package/types/experimental.d.ts
CHANGED
|
@@ -35,111 +35,11 @@
|
|
|
35
35
|
import {
|
|
36
36
|
GradientValue,
|
|
37
37
|
BlendMode,
|
|
38
|
-
BoxShadowPrimitive,
|
|
39
|
-
DimensionValue,
|
|
40
|
-
FilterFunction,
|
|
41
38
|
} from 'react-native/Libraries/StyleSheet/StyleSheetTypes';
|
|
42
39
|
|
|
43
40
|
export {};
|
|
44
41
|
|
|
45
42
|
declare module '.' {
|
|
46
|
-
export interface FlexStyle {
|
|
47
|
-
/**
|
|
48
|
-
* Equivalent to `top`, `bottom`, `right` and `left`
|
|
49
|
-
*/
|
|
50
|
-
inset?: DimensionValue | undefined;
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* Equivalent to `top`, `bottom`
|
|
54
|
-
*/
|
|
55
|
-
insetBlock?: DimensionValue | undefined;
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* Equivalent to `bottom`
|
|
59
|
-
*/
|
|
60
|
-
insetBlockEnd?: DimensionValue | undefined;
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Equivalent to `top`
|
|
64
|
-
*/
|
|
65
|
-
insetBlockStart?: DimensionValue | undefined;
|
|
66
|
-
|
|
67
|
-
/**
|
|
68
|
-
* Equivalent to `right` and `left`
|
|
69
|
-
*/
|
|
70
|
-
insetInline?: DimensionValue | undefined;
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* Equivalent to `right` or `left`
|
|
74
|
-
*/
|
|
75
|
-
insetInlineEnd?: DimensionValue | undefined;
|
|
76
|
-
|
|
77
|
-
/**
|
|
78
|
-
* Equivalent to `right` or `left`
|
|
79
|
-
*/
|
|
80
|
-
insetInlineStart?: DimensionValue | undefined;
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
* Equivalent to `marginVertical`
|
|
84
|
-
*/
|
|
85
|
-
marginBlock?: DimensionValue | undefined;
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* Equivalent to `marginBottom`
|
|
89
|
-
*/
|
|
90
|
-
marginBlockEnd?: DimensionValue | undefined;
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Equivalent to `marginTop`
|
|
94
|
-
*/
|
|
95
|
-
marginBlockStart?: DimensionValue | undefined;
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* Equivalent to `marginHorizontal`
|
|
99
|
-
*/
|
|
100
|
-
marginInline?: DimensionValue | undefined;
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* Equivalent to `marginEnd`
|
|
104
|
-
*/
|
|
105
|
-
marginInlineEnd?: DimensionValue | undefined;
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* Equivalent to `marginStart`
|
|
109
|
-
*/
|
|
110
|
-
marginInlineStart?: DimensionValue | undefined;
|
|
111
|
-
|
|
112
|
-
/**
|
|
113
|
-
* Equivalent to `paddingVertical`
|
|
114
|
-
*/
|
|
115
|
-
paddingBlock?: DimensionValue | undefined;
|
|
116
|
-
|
|
117
|
-
/**
|
|
118
|
-
* Equivalent to `paddingBottom`
|
|
119
|
-
*/
|
|
120
|
-
paddingBlockEnd?: DimensionValue | undefined;
|
|
121
|
-
|
|
122
|
-
/**
|
|
123
|
-
* Equivalent to `paddingTop`
|
|
124
|
-
*/
|
|
125
|
-
paddingBlockStart?: DimensionValue | undefined;
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* Equivalent to `paddingHorizontal`
|
|
129
|
-
*/
|
|
130
|
-
paddingInline?: DimensionValue | undefined;
|
|
131
|
-
|
|
132
|
-
/**
|
|
133
|
-
* Equivalent to `paddingEnd`
|
|
134
|
-
*/
|
|
135
|
-
paddingInlineEnd?: DimensionValue | undefined;
|
|
136
|
-
|
|
137
|
-
/**
|
|
138
|
-
* Equivalent to `paddingStart`
|
|
139
|
-
*/
|
|
140
|
-
paddingInlineStart?: DimensionValue | undefined;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
43
|
export interface ViewProps {
|
|
144
44
|
/**
|
|
145
45
|
* Contols whether this view, and its transitive children, are laid in a way
|
|
@@ -150,11 +50,6 @@ declare module '.' {
|
|
|
150
50
|
}
|
|
151
51
|
|
|
152
52
|
export interface ViewStyle {
|
|
153
|
-
experimental_boxShadow?:
|
|
154
|
-
| ReadonlyArray<BoxShadowPrimitive>
|
|
155
|
-
| string
|
|
156
|
-
| undefined;
|
|
157
|
-
experimental_filter?: ReadonlyArray<FilterFunction> | string | undefined;
|
|
158
53
|
experimental_mixBlendMode?: BlendMode | undefined;
|
|
159
54
|
experimental_backgroundImage?:
|
|
160
55
|
| ReadonlyArray<GradientValue>
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"dependencies": {
|
|
4
|
-
"native,Version=v0.0": {
|
|
5
|
-
"boost": {
|
|
6
|
-
"type": "Direct",
|
|
7
|
-
"requested": "[1.83.0, )",
|
|
8
|
-
"resolved": "1.83.0",
|
|
9
|
-
"contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
|
|
10
|
-
},
|
|
11
|
-
"Microsoft.Windows.CppWinRT": {
|
|
12
|
-
"type": "Direct",
|
|
13
|
-
"requested": "[2.0.230706.1, )",
|
|
14
|
-
"resolved": "2.0.230706.1",
|
|
15
|
-
"contentHash": "l0D7oCw/5X+xIKHqZTi62TtV+1qeSz7KVluNFdrJ9hXsst4ghvqQ/Yhura7JqRdZWBXAuDS0G0KwALptdoxweQ=="
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"native,Version=v0.0/win10-arm": {},
|
|
19
|
-
"native,Version=v0.0/win10-arm-aot": {},
|
|
20
|
-
"native,Version=v0.0/win10-arm64-aot": {},
|
|
21
|
-
"native,Version=v0.0/win10-x64": {},
|
|
22
|
-
"native,Version=v0.0/win10-x64-aot": {},
|
|
23
|
-
"native,Version=v0.0/win10-x86": {},
|
|
24
|
-
"native,Version=v0.0/win10-x86-aot": {}
|
|
25
|
-
}
|
|
26
|
-
}
|
package/Folly/packages.lock.json
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"dependencies": {
|
|
4
|
-
"native,Version=v0.0": {
|
|
5
|
-
"boost": {
|
|
6
|
-
"type": "Direct",
|
|
7
|
-
"requested": "[1.83.0, )",
|
|
8
|
-
"resolved": "1.83.0",
|
|
9
|
-
"contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
|
|
10
|
-
},
|
|
11
|
-
"fmt": {
|
|
12
|
-
"type": "Project"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"native,Version=v0.0/win10-arm": {},
|
|
16
|
-
"native,Version=v0.0/win10-arm-aot": {},
|
|
17
|
-
"native,Version=v0.0/win10-arm64-aot": {},
|
|
18
|
-
"native,Version=v0.0/win10-x64": {},
|
|
19
|
-
"native,Version=v0.0/win10-x64-aot": {},
|
|
20
|
-
"native,Version=v0.0/win10-x86": {},
|
|
21
|
-
"native,Version=v0.0/win10-x86-aot": {}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"dependencies": {
|
|
4
|
-
"native,Version=v0.0": {
|
|
5
|
-
"boost": {
|
|
6
|
-
"type": "Direct",
|
|
7
|
-
"requested": "[1.83.0, )",
|
|
8
|
-
"resolved": "1.83.0",
|
|
9
|
-
"contentHash": "cy53VNMzysEMvhBixDe8ujPk67Fcj3v6FPHQnH91NYJNLHpc6jxa2xq9ruCaaJjE4M3YrGSHDi4uUSTGBWw6EQ=="
|
|
10
|
-
},
|
|
11
|
-
"Microsoft.JavaScript.Hermes": {
|
|
12
|
-
"type": "Direct",
|
|
13
|
-
"requested": "[0.1.23, )",
|
|
14
|
-
"resolved": "0.1.23",
|
|
15
|
-
"contentHash": "cA9t1GjY4Yo0JD1AfA//e1lOwk48hLANfuX6GXrikmEBNZVr2TIX5ONJt5tqCnpZyLz6xGiPDgTfFNKbSfb21g=="
|
|
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
|
-
"Microsoft.Windows.CppWinRT": {
|
|
28
|
-
"type": "Direct",
|
|
29
|
-
"requested": "[2.0.230706.1, )",
|
|
30
|
-
"resolved": "2.0.230706.1",
|
|
31
|
-
"contentHash": "l0D7oCw/5X+xIKHqZTi62TtV+1qeSz7KVluNFdrJ9hXsst4ghvqQ/Yhura7JqRdZWBXAuDS0G0KwALptdoxweQ=="
|
|
32
|
-
},
|
|
33
|
-
"Microsoft.WindowsAppSDK": {
|
|
34
|
-
"type": "Direct",
|
|
35
|
-
"requested": "[1.5.240227000, )",
|
|
36
|
-
"resolved": "1.5.240227000",
|
|
37
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"Microsoft.Build.Tasks.Git": {
|
|
43
|
-
"type": "Transitive",
|
|
44
|
-
"resolved": "1.1.1",
|
|
45
|
-
"contentHash": "AT3HlgTjsqHnWpBHSNeR0KxbLZD7bztlZVj7I8vgeYG9SYqbeFGh0TM/KVtC6fg53nrWHl3VfZFvb5BiQFcY6Q=="
|
|
46
|
-
},
|
|
47
|
-
"Microsoft.SourceLink.Common": {
|
|
48
|
-
"type": "Transitive",
|
|
49
|
-
"resolved": "1.1.1",
|
|
50
|
-
"contentHash": "WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg=="
|
|
51
|
-
},
|
|
52
|
-
"Microsoft.Windows.SDK.BuildTools": {
|
|
53
|
-
"type": "Transitive",
|
|
54
|
-
"resolved": "10.0.22621.756",
|
|
55
|
-
"contentHash": "7ZL2sFSioYm1Ry067Kw1hg0SCcW5kuVezC2SwjGbcPE61Nn+gTbH86T73G3LcEOVj0S3IZzNuE/29gZvOLS7VA=="
|
|
56
|
-
},
|
|
57
|
-
"common": {
|
|
58
|
-
"type": "Project",
|
|
59
|
-
"dependencies": {
|
|
60
|
-
"boost": "[1.83.0, )"
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
"fmt": {
|
|
64
|
-
"type": "Project"
|
|
65
|
-
},
|
|
66
|
-
"folly": {
|
|
67
|
-
"type": "Project",
|
|
68
|
-
"dependencies": {
|
|
69
|
-
"boost": "[1.83.0, )",
|
|
70
|
-
"fmt": "[1.0.0, )"
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
"reactcommon": {
|
|
74
|
-
"type": "Project",
|
|
75
|
-
"dependencies": {
|
|
76
|
-
"Folly": "[1.0.0, )",
|
|
77
|
-
"boost": "[1.83.0, )"
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"native,Version=v0.0/win10-arm": {
|
|
82
|
-
"Microsoft.WindowsAppSDK": {
|
|
83
|
-
"type": "Direct",
|
|
84
|
-
"requested": "[1.5.240227000, )",
|
|
85
|
-
"resolved": "1.5.240227000",
|
|
86
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
87
|
-
"dependencies": {
|
|
88
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
"native,Version=v0.0/win10-arm-aot": {
|
|
93
|
-
"Microsoft.WindowsAppSDK": {
|
|
94
|
-
"type": "Direct",
|
|
95
|
-
"requested": "[1.5.240227000, )",
|
|
96
|
-
"resolved": "1.5.240227000",
|
|
97
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
98
|
-
"dependencies": {
|
|
99
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
},
|
|
103
|
-
"native,Version=v0.0/win10-arm64-aot": {
|
|
104
|
-
"Microsoft.WindowsAppSDK": {
|
|
105
|
-
"type": "Direct",
|
|
106
|
-
"requested": "[1.5.240227000, )",
|
|
107
|
-
"resolved": "1.5.240227000",
|
|
108
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
109
|
-
"dependencies": {
|
|
110
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
"native,Version=v0.0/win10-x64": {
|
|
115
|
-
"Microsoft.WindowsAppSDK": {
|
|
116
|
-
"type": "Direct",
|
|
117
|
-
"requested": "[1.5.240227000, )",
|
|
118
|
-
"resolved": "1.5.240227000",
|
|
119
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
120
|
-
"dependencies": {
|
|
121
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
},
|
|
125
|
-
"native,Version=v0.0/win10-x64-aot": {
|
|
126
|
-
"Microsoft.WindowsAppSDK": {
|
|
127
|
-
"type": "Direct",
|
|
128
|
-
"requested": "[1.5.240227000, )",
|
|
129
|
-
"resolved": "1.5.240227000",
|
|
130
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
131
|
-
"dependencies": {
|
|
132
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
"native,Version=v0.0/win10-x86": {
|
|
137
|
-
"Microsoft.WindowsAppSDK": {
|
|
138
|
-
"type": "Direct",
|
|
139
|
-
"requested": "[1.5.240227000, )",
|
|
140
|
-
"resolved": "1.5.240227000",
|
|
141
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
142
|
-
"dependencies": {
|
|
143
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
},
|
|
147
|
-
"native,Version=v0.0/win10-x86-aot": {
|
|
148
|
-
"Microsoft.WindowsAppSDK": {
|
|
149
|
-
"type": "Direct",
|
|
150
|
-
"requested": "[1.5.240227000, )",
|
|
151
|
-
"resolved": "1.5.240227000",
|
|
152
|
-
"contentHash": "6rESOsREi8534J7IDpNfFYPvxQaSleXKt4A7ZYPeQyckNMQ0o1W0jZ420bJbEMz9Cw/S/8IbpPftLLZ9w/GTCQ==",
|
|
153
|
-
"dependencies": {
|
|
154
|
-
"Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|