react-native-windows 0.73.11 → 0.73.12
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.12</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>73</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>12</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>f8a684071f7e12095dd89543b5217843086ee400</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-windows",
|
|
3
|
-
"version": "0.73.
|
|
3
|
+
"version": "0.73.12",
|
|
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
|
},
|