react-native-windows 0.78.9 → 0.78.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.
- package/PropertySheets/Generated/PackageVersion.g.props +3 -3
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/YGEnums.h +146 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/algorithm/CalculateLayout.cpp +2430 -0
- package/ReactCommon/TEMP_UntilReactCommonUpdate/yoga/yoga/enums/ExperimentalFeature.h +40 -0
- package/package.json +2 -2
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.78.
|
|
13
|
+
<ReactNativeWindowsVersion>0.78.12</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>78</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>12</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>69dc606eb2bcc24a958ab2a003db57a93f4cb96e</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
|
@@ -0,0 +1,146 @@
|
|
|
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
|
+
#include <yoga/YGMacros.h>
|
|
12
|
+
|
|
13
|
+
YG_EXTERN_C_BEGIN
|
|
14
|
+
|
|
15
|
+
YG_ENUM_DECL(
|
|
16
|
+
YGAlign,
|
|
17
|
+
YGAlignAuto,
|
|
18
|
+
YGAlignFlexStart,
|
|
19
|
+
YGAlignCenter,
|
|
20
|
+
YGAlignFlexEnd,
|
|
21
|
+
YGAlignStretch,
|
|
22
|
+
YGAlignBaseline,
|
|
23
|
+
YGAlignSpaceBetween,
|
|
24
|
+
YGAlignSpaceAround,
|
|
25
|
+
YGAlignSpaceEvenly)
|
|
26
|
+
|
|
27
|
+
YG_ENUM_DECL(
|
|
28
|
+
YGBoxSizing,
|
|
29
|
+
YGBoxSizingBorderBox,
|
|
30
|
+
YGBoxSizingContentBox)
|
|
31
|
+
|
|
32
|
+
YG_ENUM_DECL(
|
|
33
|
+
YGDimension,
|
|
34
|
+
YGDimensionWidth,
|
|
35
|
+
YGDimensionHeight)
|
|
36
|
+
|
|
37
|
+
YG_ENUM_DECL(
|
|
38
|
+
YGDirection,
|
|
39
|
+
YGDirectionInherit,
|
|
40
|
+
YGDirectionLTR,
|
|
41
|
+
YGDirectionRTL)
|
|
42
|
+
|
|
43
|
+
YG_ENUM_DECL(
|
|
44
|
+
YGDisplay,
|
|
45
|
+
YGDisplayFlex,
|
|
46
|
+
YGDisplayNone,
|
|
47
|
+
YGDisplayContents)
|
|
48
|
+
|
|
49
|
+
YG_ENUM_DECL(
|
|
50
|
+
YGEdge,
|
|
51
|
+
YGEdgeLeft,
|
|
52
|
+
YGEdgeTop,
|
|
53
|
+
YGEdgeRight,
|
|
54
|
+
YGEdgeBottom,
|
|
55
|
+
YGEdgeStart,
|
|
56
|
+
YGEdgeEnd,
|
|
57
|
+
YGEdgeHorizontal,
|
|
58
|
+
YGEdgeVertical,
|
|
59
|
+
YGEdgeAll)
|
|
60
|
+
|
|
61
|
+
YG_ENUM_DECL(
|
|
62
|
+
YGErrata,
|
|
63
|
+
YGErrataNone = 0,
|
|
64
|
+
YGErrataStretchFlexBasis = 1,
|
|
65
|
+
YGErrataAbsolutePositionWithoutInsetsExcludesPadding = 2,
|
|
66
|
+
YGErrataAbsolutePercentAgainstInnerSize = 4,
|
|
67
|
+
YGErrataAll = 2147483647,
|
|
68
|
+
YGErrataClassic = 2147483646)
|
|
69
|
+
YG_DEFINE_ENUM_FLAG_OPERATORS(YGErrata)
|
|
70
|
+
|
|
71
|
+
YG_ENUM_DECL(
|
|
72
|
+
YGExperimentalFeature,
|
|
73
|
+
YGExperimentalFeatureWebFlexBasis,
|
|
74
|
+
YGExperimentalFeatureCallMeasureCallbackOnAllNodes) // [Win] - Only used within NetUI in Office - Keep this flag at the end of the enum
|
|
75
|
+
|
|
76
|
+
YG_ENUM_DECL(
|
|
77
|
+
YGFlexDirection,
|
|
78
|
+
YGFlexDirectionColumn,
|
|
79
|
+
YGFlexDirectionColumnReverse,
|
|
80
|
+
YGFlexDirectionRow,
|
|
81
|
+
YGFlexDirectionRowReverse)
|
|
82
|
+
|
|
83
|
+
YG_ENUM_DECL(
|
|
84
|
+
YGGutter,
|
|
85
|
+
YGGutterColumn,
|
|
86
|
+
YGGutterRow,
|
|
87
|
+
YGGutterAll)
|
|
88
|
+
|
|
89
|
+
YG_ENUM_DECL(
|
|
90
|
+
YGJustify,
|
|
91
|
+
YGJustifyFlexStart,
|
|
92
|
+
YGJustifyCenter,
|
|
93
|
+
YGJustifyFlexEnd,
|
|
94
|
+
YGJustifySpaceBetween,
|
|
95
|
+
YGJustifySpaceAround,
|
|
96
|
+
YGJustifySpaceEvenly)
|
|
97
|
+
|
|
98
|
+
YG_ENUM_DECL(
|
|
99
|
+
YGLogLevel,
|
|
100
|
+
YGLogLevelError,
|
|
101
|
+
YGLogLevelWarn,
|
|
102
|
+
YGLogLevelInfo,
|
|
103
|
+
YGLogLevelDebug,
|
|
104
|
+
YGLogLevelVerbose,
|
|
105
|
+
YGLogLevelFatal)
|
|
106
|
+
|
|
107
|
+
YG_ENUM_DECL(
|
|
108
|
+
YGMeasureMode,
|
|
109
|
+
YGMeasureModeUndefined,
|
|
110
|
+
YGMeasureModeExactly,
|
|
111
|
+
YGMeasureModeAtMost)
|
|
112
|
+
|
|
113
|
+
YG_ENUM_DECL(
|
|
114
|
+
YGNodeType,
|
|
115
|
+
YGNodeTypeDefault,
|
|
116
|
+
YGNodeTypeText)
|
|
117
|
+
|
|
118
|
+
YG_ENUM_DECL(
|
|
119
|
+
YGOverflow,
|
|
120
|
+
YGOverflowVisible,
|
|
121
|
+
YGOverflowHidden,
|
|
122
|
+
YGOverflowScroll)
|
|
123
|
+
|
|
124
|
+
YG_ENUM_DECL(
|
|
125
|
+
YGPositionType,
|
|
126
|
+
YGPositionTypeStatic,
|
|
127
|
+
YGPositionTypeRelative,
|
|
128
|
+
YGPositionTypeAbsolute)
|
|
129
|
+
|
|
130
|
+
YG_ENUM_DECL(
|
|
131
|
+
YGUnit,
|
|
132
|
+
YGUnitUndefined,
|
|
133
|
+
YGUnitPoint,
|
|
134
|
+
YGUnitPercent,
|
|
135
|
+
YGUnitAuto,
|
|
136
|
+
YGUnitMaxContent,
|
|
137
|
+
YGUnitFitContent,
|
|
138
|
+
YGUnitStretch)
|
|
139
|
+
|
|
140
|
+
YG_ENUM_DECL(
|
|
141
|
+
YGWrap,
|
|
142
|
+
YGWrapNoWrap,
|
|
143
|
+
YGWrapWrap,
|
|
144
|
+
YGWrapWrapReverse)
|
|
145
|
+
|
|
146
|
+
YG_EXTERN_C_END
|