react-native-windows 0.74.26 → 0.74.27

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.
Files changed (82) hide show
  1. package/Libraries/Modal/Modal.windows.js +352 -0
  2. package/Microsoft.ReactNative/Fabric/ComponentView.cpp +26 -46
  3. package/Microsoft.ReactNative/Fabric/ComponentView.h +6 -19
  4. package/Microsoft.ReactNative/Fabric/Composition/CompositionEventHandler.cpp +164 -3
  5. package/Microsoft.ReactNative/Fabric/Composition/CompositionEventHandler.h +7 -0
  6. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.cpp +15 -17
  7. package/Microsoft.ReactNative/Fabric/Composition/CompositionViewComponentView.h +6 -3
  8. package/Microsoft.ReactNative/Fabric/Composition/ContentIslandComponentView.cpp +9 -2
  9. package/Microsoft.ReactNative/Fabric/Composition/ContentIslandComponentView.h +2 -1
  10. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.cpp +59 -9
  11. package/Microsoft.ReactNative/Fabric/Composition/Modal/WindowsModalHostViewComponentView.h +2 -0
  12. package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.cpp +78 -30
  13. package/Microsoft.ReactNative/Fabric/Composition/ReactCompositionViewComponentBuilder.h +21 -1
  14. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +8 -1
  15. package/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.h +3 -0
  16. package/Microsoft.ReactNative/IReactCompositionViewComponentBuilder.idl +25 -0
  17. package/PropertySheets/Generated/PackageVersion.g.props +3 -3
  18. package/codegen/NativeAccessibilityInfoSpec.g.h +1 -0
  19. package/codegen/NativeAccessibilityManagerSpec.g.h +1 -0
  20. package/codegen/NativeActionSheetManagerSpec.g.h +1 -0
  21. package/codegen/NativeAlertManagerSpec.g.h +1 -0
  22. package/codegen/NativeAnimatedModuleSpec.g.h +1 -0
  23. package/codegen/NativeAnimatedTurboModuleSpec.g.h +1 -0
  24. package/codegen/NativeAnimationsDebugModuleSpec.g.h +1 -0
  25. package/codegen/NativeAppStateSpec.g.h +1 -0
  26. package/codegen/NativeAppThemeSpec.g.h +1 -0
  27. package/codegen/NativeAppearanceSpec.g.h +1 -0
  28. package/codegen/NativeBlobModuleSpec.g.h +1 -0
  29. package/codegen/NativeBugReportingSpec.g.h +1 -0
  30. package/codegen/NativeClipboardSpec.g.h +1 -0
  31. package/codegen/NativeDevLoadingViewSpec.g.h +1 -0
  32. package/codegen/NativeDevMenuSpec.g.h +1 -0
  33. package/codegen/NativeDevSettingsSpec.g.h +1 -0
  34. package/codegen/NativeDevToolsSettingsManagerSpec.g.h +1 -0
  35. package/codegen/NativeDeviceEventManagerSpec.g.h +1 -0
  36. package/codegen/NativeDeviceInfoSpec.g.h +1 -0
  37. package/codegen/NativeDialogManagerAndroidSpec.g.h +1 -0
  38. package/codegen/NativeDialogManagerWindowsSpec.g.h +1 -0
  39. package/codegen/NativeExceptionsManagerSpec.g.h +1 -0
  40. package/codegen/NativeFileReaderModuleSpec.g.h +1 -0
  41. package/codegen/NativeFrameRateLoggerSpec.g.h +1 -0
  42. package/codegen/NativeHeadlessJsTaskSupportSpec.g.h +1 -0
  43. package/codegen/NativeI18nManagerSpec.g.h +1 -0
  44. package/codegen/NativeImageEditorSpec.g.h +1 -0
  45. package/codegen/NativeImageLoaderAndroidSpec.g.h +1 -0
  46. package/codegen/NativeImageLoaderIOSSpec.g.h +1 -0
  47. package/codegen/NativeImageStoreAndroidSpec.g.h +1 -0
  48. package/codegen/NativeImageStoreIOSSpec.g.h +1 -0
  49. package/codegen/NativeIntentAndroidSpec.g.h +1 -0
  50. package/codegen/NativeIntersectionObserverSpec.g.h +1 -0
  51. package/codegen/NativeJSCHeapCaptureSpec.g.h +1 -0
  52. package/codegen/NativeJSCSamplingProfilerSpec.g.h +1 -0
  53. package/codegen/NativeKeyboardObserverSpec.g.h +1 -0
  54. package/codegen/NativeLinkingManagerSpec.g.h +1 -0
  55. package/codegen/NativeLogBoxSpec.g.h +1 -0
  56. package/codegen/NativeModalManagerSpec.g.h +1 -0
  57. package/codegen/NativeMutationObserverSpec.g.h +1 -0
  58. package/codegen/NativeNetworkingAndroidSpec.g.h +1 -0
  59. package/codegen/NativeNetworkingIOSSpec.g.h +1 -0
  60. package/codegen/NativePerformanceObserverSpec.g.h +1 -0
  61. package/codegen/NativePerformanceSpec.g.h +1 -0
  62. package/codegen/NativePermissionsAndroidSpec.g.h +1 -0
  63. package/codegen/NativePlatformConstantsAndroidSpec.g.h +1 -0
  64. package/codegen/NativePlatformConstantsIOSSpec.g.h +1 -0
  65. package/codegen/NativePlatformConstantsWinSpec.g.h +1 -0
  66. package/codegen/NativePushNotificationManagerIOSSpec.g.h +1 -0
  67. package/codegen/NativeReactNativeFeatureFlagsSpec.g.h +1 -0
  68. package/codegen/NativeRedBoxSpec.g.h +1 -0
  69. package/codegen/NativeSampleTurboModuleSpec.g.h +1 -0
  70. package/codegen/NativeSegmentFetcherSpec.g.h +1 -0
  71. package/codegen/NativeSettingsManagerSpec.g.h +1 -0
  72. package/codegen/NativeShareModuleSpec.g.h +1 -0
  73. package/codegen/NativeSoundManagerSpec.g.h +1 -0
  74. package/codegen/NativeSourceCodeSpec.g.h +1 -0
  75. package/codegen/NativeStatusBarManagerAndroidSpec.g.h +1 -0
  76. package/codegen/NativeStatusBarManagerIOSSpec.g.h +1 -0
  77. package/codegen/NativeTimingSpec.g.h +1 -0
  78. package/codegen/NativeToastAndroidSpec.g.h +1 -0
  79. package/codegen/NativeUIManagerSpec.g.h +1 -0
  80. package/codegen/NativeVibrationSpec.g.h +1 -0
  81. package/codegen/NativeWebSocketModuleSpec.g.h +1 -0
  82. package/package.json +3 -3
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
@@ -7,6 +7,7 @@
7
7
  * by the TurboModule JS spec.
8
8
  */
9
9
  #pragma once
10
+ // clang-format off
10
11
 
11
12
  #include <NativeModules.h>
12
13
  #include <tuple>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.74.26",
3
+ "version": "0.74.27",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,7 +26,7 @@
26
26
  "@react-native-community/cli": "13.6.9",
27
27
  "@react-native-community/cli-platform-android": "13.6.9",
28
28
  "@react-native-community/cli-platform-ios": "13.6.9",
29
- "@react-native-windows/cli": "0.74.8",
29
+ "@react-native-windows/cli": "0.74.9",
30
30
  "@react-native/assets": "1.0.0",
31
31
  "@react-native/assets-registry": "0.74.87",
32
32
  "@react-native/codegen": "0.74.87",
@@ -64,7 +64,7 @@
64
64
  "yargs": "^17.6.2"
65
65
  },
66
66
  "devDependencies": {
67
- "@react-native-windows/codegen": "0.74.5",
67
+ "@react-native-windows/codegen": "0.74.6",
68
68
  "@react-native/metro-config": "0.74.87",
69
69
  "@rnw-scripts/babel-react-native-config": "0.0.0",
70
70
  "@rnw-scripts/eslint-config": "1.2.9",