react-native-windows 0.73.11 → 0.73.13
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.
|
@@ -172,16 +172,16 @@ export interface ViewPropsAndroid {
|
|
|
172
172
|
|
|
173
173
|
// [Windows
|
|
174
174
|
|
|
175
|
-
export
|
|
176
|
-
None = 0
|
|
177
|
-
Capturing
|
|
178
|
-
AtTarget
|
|
179
|
-
Bubbling
|
|
175
|
+
export namespace EventPhase {
|
|
176
|
+
export const None = 0;
|
|
177
|
+
export const Capturing = 1;
|
|
178
|
+
export const AtTarget = 2;
|
|
179
|
+
export const Bubbling = 3;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
export
|
|
183
|
-
Capturing = EventPhase.Capturing
|
|
184
|
-
Bubbling = EventPhase.Bubbling
|
|
182
|
+
export namespace HandledEventPhase {
|
|
183
|
+
const Capturing = EventPhase.Capturing;
|
|
184
|
+
const Bubbling = EventPhase.Bubbling;
|
|
185
185
|
}
|
|
186
186
|
|
|
187
187
|
export interface INativeKeyboardEvent {
|
|
@@ -191,7 +191,11 @@ export interface INativeKeyboardEvent {
|
|
|
191
191
|
shiftKey: boolean;
|
|
192
192
|
key: string;
|
|
193
193
|
code: string;
|
|
194
|
-
eventPhase:
|
|
194
|
+
eventPhase:
|
|
195
|
+
| EventPhase.None
|
|
196
|
+
| EventPhase.Capturing
|
|
197
|
+
| EventPhase.AtTarget
|
|
198
|
+
| EventPhase.Bubbling;
|
|
195
199
|
}
|
|
196
200
|
|
|
197
201
|
export interface IHandledKeyboardEvent {
|
|
@@ -200,7 +204,7 @@ export interface IHandledKeyboardEvent {
|
|
|
200
204
|
metaKey?: boolean;
|
|
201
205
|
shiftKey?: boolean;
|
|
202
206
|
code: string;
|
|
203
|
-
handledEventPhase?:
|
|
207
|
+
handledEventPhase?: EventPhase.Capturing | EventPhase.Bubbling;
|
|
204
208
|
}
|
|
205
209
|
|
|
206
210
|
export type IKeyboardEvent = NativeSyntheticEvent<INativeKeyboardEvent>;
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.73.
|
|
13
|
+
<ReactNativeWindowsVersion>0.73.13</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>73</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>13</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>a1b2139eec4ce5416a6098b737ea2662af3d896f</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<!-- Enabling this will (1) Include hermes glues in the Microsoft.ReactNative binaries AND (2) Make hermes the default engine -->
|
|
15
15
|
<UseHermes Condition="'$(UseHermes)' == ''">true</UseHermes>
|
|
16
16
|
<!-- This will be true if (1) the client want to use hermes by setting UseHermes to true OR (2) We are building for UWP where dynamic switching is enabled -->
|
|
17
|
-
<HermesVersion Condition="'$(HermesVersion)' == ''">0.1.
|
|
17
|
+
<HermesVersion Condition="'$(HermesVersion)' == ''">0.1.21</HermesVersion>
|
|
18
18
|
<HermesPackage Condition="'$(HermesPackage)' == '' And Exists('$(PkgMicrosoft_JavaScript_Hermes)')">$(PkgMicrosoft_JavaScript_Hermes)</HermesPackage>
|
|
19
19
|
<HermesPackage Condition="'$(HermesPackage)' == ''">$(NuGetPackageRoot)\Microsoft.JavaScript.Hermes\$(HermesVersion)</HermesPackage>
|
|
20
20
|
<EnableHermesInspectorInReleaseFlavor Condition="'$(EnableHermesInspectorInReleaseFlavor)' == ''">false</EnableHermesInspectorInReleaseFlavor>
|
|
@@ -277,6 +277,8 @@
|
|
|
277
277
|
<ClCompile Include="$(MSBuildThisFileDirectory)Modules\BlobCollector.cpp">
|
|
278
278
|
<Filter>Source Files\Modules</Filter>
|
|
279
279
|
</ClCompile>
|
|
280
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\platform\react\renderer\components\view\HostPlatformViewProps.cpp" />
|
|
281
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)..\Microsoft.ReactNative\Fabric\platform\react\renderer\components\view\HostPlatformViewEventEmitter.cpp" />
|
|
280
282
|
</ItemGroup>
|
|
281
283
|
<ItemGroup>
|
|
282
284
|
<Filter Include="Source Files">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-windows",
|
|
3
|
-
"version": "0.73.
|
|
3
|
+
"version": "0.73.13",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@react-native-community/cli": "12.3.6",
|
|
27
27
|
"@react-native-community/cli-platform-android": "12.3.6",
|
|
28
28
|
"@react-native-community/cli-platform-ios": "12.3.6",
|
|
29
|
-
"@react-native-windows/cli": "0.73.
|
|
29
|
+
"@react-native-windows/cli": "0.73.3",
|
|
30
30
|
"@react-native/assets-registry": "0.73.1",
|
|
31
31
|
"@react-native/codegen": "0.73.3",
|
|
32
32
|
"@react-native/community-cli-plugin": "0.73.17",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"yargs": "^17.6.2"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@react-native-windows/codegen": "0.73.
|
|
67
|
+
"@react-native-windows/codegen": "0.73.1",
|
|
68
68
|
"@react-native/metro-config": "^0.73.0",
|
|
69
69
|
"@rnw-scripts/babel-react-native-config": "0.0.0",
|
|
70
70
|
"@rnw-scripts/eslint-config": "1.2.3",
|
|
@@ -91,11 +91,14 @@
|
|
|
91
91
|
"react-native": "^0.73.0"
|
|
92
92
|
},
|
|
93
93
|
"beachball": {
|
|
94
|
-
"defaultNpmTag": "
|
|
94
|
+
"defaultNpmTag": "v0.73-stable",
|
|
95
95
|
"disallowedChangeTypes": [
|
|
96
96
|
"major",
|
|
97
97
|
"minor",
|
|
98
|
-
"prerelease"
|
|
98
|
+
"prerelease",
|
|
99
|
+
"premajor",
|
|
100
|
+
"preminor",
|
|
101
|
+
"prepatch"
|
|
99
102
|
],
|
|
100
103
|
"gitTags": true
|
|
101
104
|
},
|