react-native-windows 0.78.9 → 0.78.10

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.
@@ -0,0 +1,40 @@
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
+
8
+ // @generated by enums.py
9
+ // clang-format off
10
+ #pragma once
11
+
12
+ #include <cstdint>
13
+ #include <yoga/YGEnums.h>
14
+ #include <yoga/enums/YogaEnums.h>
15
+
16
+ namespace facebook::yoga {
17
+
18
+ enum class ExperimentalFeature : uint8_t {
19
+ WebFlexBasis = YGExperimentalFeatureWebFlexBasis,
20
+ CallMeasureCallbackOnAllNodes = YGExperimentalFeatureCallMeasureCallbackOnAllNodes, // Used just for NetUI - Keep at end of list
21
+ };
22
+
23
+ template <>
24
+ constexpr int32_t ordinalCount<ExperimentalFeature>() {
25
+ return 2;
26
+ }
27
+
28
+ constexpr ExperimentalFeature scopedEnum(YGExperimentalFeature unscoped) {
29
+ return static_cast<ExperimentalFeature>(unscoped);
30
+ }
31
+
32
+ constexpr YGExperimentalFeature unscopedEnum(ExperimentalFeature scoped) {
33
+ return static_cast<YGExperimentalFeature>(scoped);
34
+ }
35
+
36
+ inline const char* toString(ExperimentalFeature e) {
37
+ return YGExperimentalFeatureToString(unscopedEnum(e));
38
+ }
39
+
40
+ } // namespace facebook::yoga
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.78.9",
3
+ "version": "0.78.10",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,7 +26,7 @@
26
26
  "@react-native-community/cli": "^15.0.0",
27
27
  "@react-native-community/cli-platform-android": "^15.0.0",
28
28
  "@react-native-community/cli-platform-ios": "^15.0.0",
29
- "@react-native-windows/cli": "0.78.5",
29
+ "@react-native-windows/cli": "0.78.6",
30
30
  "@react-native/assets": "1.0.0",
31
31
  "@react-native/assets-registry": "0.78.2",
32
32
  "@react-native/codegen": "0.78.2",