@codeandmoney/soelma 0.0.0-dev.1 → 0.0.0-dev.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.
- package/.eslintignore +1 -0
- package/.eslintrc.js +27 -0
- package/.github/workflows/nodejs.yml +33 -0
- package/.size-limit.json +6 -0
- package/babel.config.js +3 -0
- package/biome.jsonc +73 -0
- package/docs/api.md +103 -0
- package/docs/appearance.md +54 -0
- package/docs/dark-mode.md +46 -0
- package/docs/dimensions.md +29 -0
- package/docs/i18n.md +67 -0
- package/docs/logo.png +0 -0
- package/docs/media-query.md +274 -0
- package/docs/orientation.md +44 -0
- package/docs/safe-area.md +62 -0
- package/docs/testting.md +51 -0
- package/docs/ts.md +127 -0
- package/example/AppStyleX/.watchmanconfig +1 -0
- package/example/AppStyleX/android/build.gradle +26 -0
- package/example/AppStyleX/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/AppStyleX/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/example/AppStyleX/android/gradle.properties +53 -0
- package/example/AppStyleX/android/gradlew +249 -0
- package/example/AppStyleX/android/gradlew.bat +92 -0
- package/example/AppStyleX/android/settings.gradle +12 -0
- package/example/AppStyleX/app.json +16 -0
- package/example/AppStyleX/babel.config.js +3 -0
- package/example/AppStyleX/index.js +9 -0
- package/example/AppStyleX/ios/Podfile +7 -0
- package/example/AppStyleX/ios/Podfile.lock +1252 -0
- package/example/AppStyleX/metro.config.js +51 -0
- package/example/AppStyleX/package.json +43 -0
- package/example/AppStyleX/react-native.config.js +23 -0
- package/example/AppStyleX/src/App.tsx +22 -0
- package/example/AppStyleX/src/BottomNav/index.tsx +26 -0
- package/example/AppStyleX/src/BottomNav/styles.ts +42 -0
- package/example/AppStyleX/src/Circle/index.tsx +53 -0
- package/example/AppStyleX/src/Circle/styles.ts +22 -0
- package/example/AppStyleX/src/Root/index.tsx +35 -0
- package/example/AppStyleX/src/Root/styles.ts +18 -0
- package/example/AppStyleX/src/ToggleButton/index.tsx +52 -0
- package/example/AppStyleX/src/ToggleButton/styles.ts +67 -0
- package/example/AppStyleX/src/style-system/hooks/useAnimatedBgColor.ts +5 -0
- package/example/AppStyleX/src/style-system/hooks/useAnimatedTextColor.ts +5 -0
- package/example/AppStyleX/src/style-system/hooks/useIsDark.ts +8 -0
- package/example/AppStyleX/src/style-system/palette.ts +11 -0
- package/example/AppStyleX/src/style-system/theme.ts +14 -0
- package/example/AppStyleX/src/style-system/utils.ts +8 -0
- package/example/AppStyleX/src/stylex.d.ts +6 -0
- package/example/AppStyleX/tsconfig.json +3 -0
- package/example/AppStyleX/yarn.lock +6767 -0
- package/jest.config.js +19 -0
- package/package.json +38 -3
- package/src/appearance/index.ts +30 -0
- package/src/appearance/init.ts +12 -0
- package/{context.js → src/context.ts} +4 -1
- package/src/create-event-emitter.ts +26 -0
- package/src/dark-mode/index.ts +26 -0
- package/src/dark-mode/init.ts +19 -0
- package/{dark-mode/state.js → src/dark-mode/state.ts} +2 -1
- package/src/default-theme.ts +4 -0
- package/src/dependency-registry.ts +21 -0
- package/src/dependency-usage.ts +21 -0
- package/src/dimensions/index.ts +20 -0
- package/src/dimensions/init.ts +32 -0
- package/src/dimensions/utils.ts +9 -0
- package/src/i18n.ts +15 -0
- package/src/index.ts +7 -0
- package/{makeUseStyles/createUseStylesTheme.js → src/make-use-styles/create-use-styles-theme.js} +23 -6
- package/src/make-use-styles/create-use-styles-theme.test.js +137 -0
- package/{makeUseStyles/createUseStylesWithoutTheme.js → src/make-use-styles/create-use-styles-without-theme.js} +20 -4
- package/src/make-use-styles/create-use-styles-without-theme.test.js +63 -0
- package/src/make-use-styles/index.d.ts +20 -0
- package/src/make-use-styles/index.js +12 -0
- package/src/make-use-styles/index.test.js +28 -0
- package/src/make-use-styles/types.ts +43 -0
- package/{makeUseStyles → src/make-use-styles}/utils.js +5 -10
- package/src/media-query/base.ts +32 -0
- package/src/media-query/breakpoints.ts +96 -0
- package/src/media-query/index.ts +12 -0
- package/src/orientation.ts +13 -0
- package/{safe-area/eventEmitter.js → src/safe-area/event-emitter.ts} +2 -1
- package/src/safe-area/index.tsx +16 -0
- package/src/safe-area/init.tsx +6 -0
- package/src/safe-area/safe-area-provider.tsx +18 -0
- package/{safe-area/state.js → src/safe-area/state.ts} +7 -5
- package/src/safe-area/stylex-save-area-consumer.ts +22 -0
- package/{safe-area/types.d.ts → src/safe-area/types.ts} +7 -6
- package/src/tests/createBreakpoints.test.ts +152 -0
- package/src/tests/createBreakpointsMatcher.test.ts +188 -0
- package/src/tests/createBreakpointsMatcher.types-test.ts +81 -0
- package/src/tests/createEventEmitter.test.ts +37 -0
- package/src/tests/dark-mode.test.ts +56 -0
- package/src/tests/dependencyRegistry.test.ts +16 -0
- package/src/tests/dependencyUsage.test.ts +13 -0
- package/src/tests/dimensions.test.ts +33 -0
- package/src/tests/makeUseStyles.types-test.ts +69 -0
- package/src/tests/media-query.test.ts +196 -0
- package/src/tests/orientation.test.ts +61 -0
- package/src/tests/useTheme.test.ts +26 -0
- package/src/tests/withStyles.types-test.tsx +172 -0
- package/src/use-color-transition.ts +50 -0
- package/src/use-theme.ts +14 -0
- package/src/with-styles.tsx +22 -0
- package/tsconfig.build.json +31 -0
- package/tsconfig.json +30 -0
- package/DefaultTheme.d.ts +0 -2
- package/DefaultTheme.js +0 -1
- package/appearance/consts.d.ts +0 -1
- package/appearance/index.d.ts +0 -8
- package/appearance/index.js +0 -18
- package/appearance/init.d.ts +0 -1
- package/appearance/init.js +0 -7
- package/context.d.ts +0 -4
- package/createEventEmitter.d.ts +0 -8
- package/createEventEmitter.js +0 -11
- package/dark-mode/consts.d.ts +0 -1
- package/dark-mode/index.d.ts +0 -7
- package/dark-mode/index.js +0 -16
- package/dark-mode/init.d.ts +0 -1
- package/dark-mode/init.js +0 -13
- package/dark-mode/state.d.ts +0 -3
- package/dependencyRegistry.d.ts +0 -5
- package/dependencyRegistry.js +0 -12
- package/dependencyUsage.d.ts +0 -7
- package/dependencyUsage.js +0 -10
- package/dimensions/consts.d.ts +0 -2
- package/dimensions/index.d.ts +0 -4
- package/dimensions/index.js +0 -13
- package/dimensions/init.d.ts +0 -1
- package/dimensions/init.js +0 -21
- package/dimensions/utils.d.ts +0 -1
- package/dimensions/utils.js +0 -7
- package/i18n.d.ts +0 -7
- package/i18n.js +0 -9
- package/index.d.ts +0 -7
- package/index.js +0 -5
- package/makeUseStyles/index.d.ts +0 -7
- package/makeUseStyles/index.js +0 -12
- package/media-query/base.d.ts +0 -12
- package/media-query/base.js +0 -18
- package/media-query/breakpoints.d.ts +0 -18
- package/media-query/breakpoints.js +0 -60
- package/media-query/index.d.ts +0 -2
- package/media-query/index.js +0 -2
- package/orientation.d.ts +0 -7
- package/orientation.js +0 -7
- package/safe-area/SafeAreaProvider.d.ts +0 -3
- package/safe-area/SafeAreaProvider.js +0 -9
- package/safe-area/StylexSaveAreaConsumer.d.ts +0 -2
- package/safe-area/StylexSaveAreaConsumer.js +0 -15
- package/safe-area/consts.d.ts +0 -1
- package/safe-area/eventEmitter.d.ts +0 -1
- package/safe-area/index.d.ts +0 -5
- package/safe-area/index.js +0 -10
- package/safe-area/init.d.ts +0 -1
- package/safe-area/init.js +0 -4
- package/safe-area/state.d.ts +0 -8
- package/safe-area/types.js +0 -1
- package/useColorTransition.d.ts +0 -5
- package/useColorTransition.js +0 -38
- package/useTheme.d.ts +0 -2
- package/useTheme.js +0 -9
- package/withStyles.d.ts +0 -7
- package/withStyles.js +0 -13
- /package/{appearance/consts.js → src/appearance/consts.ts} +0 -0
- /package/{dark-mode/consts.js → src/dark-mode/consts.ts} +0 -0
- /package/{dimensions/consts.js → src/dimensions/consts.ts} +0 -0
- /package/{makeUseStyles → src/make-use-styles}/test-type.js +0 -0
- /package/{safe-area/consts.js → src/safe-area/consts.ts} +0 -0
|
@@ -0,0 +1,1252 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- boost (1.83.0)
|
|
3
|
+
- DoubleConversion (1.1.6)
|
|
4
|
+
- FBLazyVector (0.73.1)
|
|
5
|
+
- FBReactNativeSpec (0.73.1):
|
|
6
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
7
|
+
- RCTRequired (= 0.73.1)
|
|
8
|
+
- RCTTypeSafety (= 0.73.1)
|
|
9
|
+
- React-Core (= 0.73.1)
|
|
10
|
+
- React-jsi (= 0.73.1)
|
|
11
|
+
- ReactCommon/turbomodule/core (= 0.73.1)
|
|
12
|
+
- fmt (6.2.1)
|
|
13
|
+
- glog (0.3.5)
|
|
14
|
+
- RCT-Folly (2022.05.16.00):
|
|
15
|
+
- boost
|
|
16
|
+
- DoubleConversion
|
|
17
|
+
- fmt (~> 6.2.1)
|
|
18
|
+
- glog
|
|
19
|
+
- RCT-Folly/Default (= 2022.05.16.00)
|
|
20
|
+
- RCT-Folly/Default (2022.05.16.00):
|
|
21
|
+
- boost
|
|
22
|
+
- DoubleConversion
|
|
23
|
+
- fmt (~> 6.2.1)
|
|
24
|
+
- glog
|
|
25
|
+
- RCT-Folly/Fabric (2022.05.16.00):
|
|
26
|
+
- boost
|
|
27
|
+
- DoubleConversion
|
|
28
|
+
- fmt (~> 6.2.1)
|
|
29
|
+
- glog
|
|
30
|
+
- RCTRequired (0.73.1)
|
|
31
|
+
- RCTTypeSafety (0.73.1):
|
|
32
|
+
- FBLazyVector (= 0.73.1)
|
|
33
|
+
- RCTRequired (= 0.73.1)
|
|
34
|
+
- React-Core (= 0.73.1)
|
|
35
|
+
- React (0.73.1):
|
|
36
|
+
- React-Core (= 0.73.1)
|
|
37
|
+
- React-Core/DevSupport (= 0.73.1)
|
|
38
|
+
- React-Core/RCTWebSocket (= 0.73.1)
|
|
39
|
+
- React-RCTActionSheet (= 0.73.1)
|
|
40
|
+
- React-RCTAnimation (= 0.73.1)
|
|
41
|
+
- React-RCTBlob (= 0.73.1)
|
|
42
|
+
- React-RCTImage (= 0.73.1)
|
|
43
|
+
- React-RCTLinking (= 0.73.1)
|
|
44
|
+
- React-RCTNetwork (= 0.73.1)
|
|
45
|
+
- React-RCTSettings (= 0.73.1)
|
|
46
|
+
- React-RCTText (= 0.73.1)
|
|
47
|
+
- React-RCTVibration (= 0.73.1)
|
|
48
|
+
- React-callinvoker (0.73.1)
|
|
49
|
+
- React-Codegen (0.73.1):
|
|
50
|
+
- DoubleConversion
|
|
51
|
+
- FBReactNativeSpec
|
|
52
|
+
- glog
|
|
53
|
+
- RCT-Folly
|
|
54
|
+
- RCTRequired
|
|
55
|
+
- RCTTypeSafety
|
|
56
|
+
- React-Core
|
|
57
|
+
- React-jsc
|
|
58
|
+
- React-jsi
|
|
59
|
+
- React-jsiexecutor
|
|
60
|
+
- React-NativeModulesApple
|
|
61
|
+
- React-rncore
|
|
62
|
+
- ReactCommon/turbomodule/bridging
|
|
63
|
+
- ReactCommon/turbomodule/core
|
|
64
|
+
- React-Core (0.73.1):
|
|
65
|
+
- glog
|
|
66
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
67
|
+
- React-Core/Default (= 0.73.1)
|
|
68
|
+
- React-cxxreact
|
|
69
|
+
- React-jsc
|
|
70
|
+
- React-jsi
|
|
71
|
+
- React-jsiexecutor
|
|
72
|
+
- React-perflogger
|
|
73
|
+
- React-runtimescheduler
|
|
74
|
+
- React-utils
|
|
75
|
+
- SocketRocket (= 0.6.1)
|
|
76
|
+
- Yoga
|
|
77
|
+
- React-Core/CoreModulesHeaders (0.73.1):
|
|
78
|
+
- glog
|
|
79
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
80
|
+
- React-Core/Default
|
|
81
|
+
- React-cxxreact
|
|
82
|
+
- React-jsc
|
|
83
|
+
- React-jsi
|
|
84
|
+
- React-jsiexecutor
|
|
85
|
+
- React-perflogger
|
|
86
|
+
- React-runtimescheduler
|
|
87
|
+
- React-utils
|
|
88
|
+
- SocketRocket (= 0.6.1)
|
|
89
|
+
- Yoga
|
|
90
|
+
- React-Core/Default (0.73.1):
|
|
91
|
+
- glog
|
|
92
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
93
|
+
- React-cxxreact
|
|
94
|
+
- React-jsc
|
|
95
|
+
- React-jsi
|
|
96
|
+
- React-jsiexecutor
|
|
97
|
+
- React-perflogger
|
|
98
|
+
- React-runtimescheduler
|
|
99
|
+
- React-utils
|
|
100
|
+
- SocketRocket (= 0.6.1)
|
|
101
|
+
- Yoga
|
|
102
|
+
- React-Core/DevSupport (0.73.1):
|
|
103
|
+
- glog
|
|
104
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
105
|
+
- React-Core/Default (= 0.73.1)
|
|
106
|
+
- React-Core/RCTWebSocket (= 0.73.1)
|
|
107
|
+
- React-cxxreact
|
|
108
|
+
- React-jsc
|
|
109
|
+
- React-jsi
|
|
110
|
+
- React-jsiexecutor
|
|
111
|
+
- React-jsinspector (= 0.73.1)
|
|
112
|
+
- React-perflogger
|
|
113
|
+
- React-runtimescheduler
|
|
114
|
+
- React-utils
|
|
115
|
+
- SocketRocket (= 0.6.1)
|
|
116
|
+
- Yoga
|
|
117
|
+
- React-Core/RCTActionSheetHeaders (0.73.1):
|
|
118
|
+
- glog
|
|
119
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
120
|
+
- React-Core/Default
|
|
121
|
+
- React-cxxreact
|
|
122
|
+
- React-jsc
|
|
123
|
+
- React-jsi
|
|
124
|
+
- React-jsiexecutor
|
|
125
|
+
- React-perflogger
|
|
126
|
+
- React-runtimescheduler
|
|
127
|
+
- React-utils
|
|
128
|
+
- SocketRocket (= 0.6.1)
|
|
129
|
+
- Yoga
|
|
130
|
+
- React-Core/RCTAnimationHeaders (0.73.1):
|
|
131
|
+
- glog
|
|
132
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
133
|
+
- React-Core/Default
|
|
134
|
+
- React-cxxreact
|
|
135
|
+
- React-jsc
|
|
136
|
+
- React-jsi
|
|
137
|
+
- React-jsiexecutor
|
|
138
|
+
- React-perflogger
|
|
139
|
+
- React-runtimescheduler
|
|
140
|
+
- React-utils
|
|
141
|
+
- SocketRocket (= 0.6.1)
|
|
142
|
+
- Yoga
|
|
143
|
+
- React-Core/RCTBlobHeaders (0.73.1):
|
|
144
|
+
- glog
|
|
145
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
146
|
+
- React-Core/Default
|
|
147
|
+
- React-cxxreact
|
|
148
|
+
- React-jsc
|
|
149
|
+
- React-jsi
|
|
150
|
+
- React-jsiexecutor
|
|
151
|
+
- React-perflogger
|
|
152
|
+
- React-runtimescheduler
|
|
153
|
+
- React-utils
|
|
154
|
+
- SocketRocket (= 0.6.1)
|
|
155
|
+
- Yoga
|
|
156
|
+
- React-Core/RCTImageHeaders (0.73.1):
|
|
157
|
+
- glog
|
|
158
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
159
|
+
- React-Core/Default
|
|
160
|
+
- React-cxxreact
|
|
161
|
+
- React-jsc
|
|
162
|
+
- React-jsi
|
|
163
|
+
- React-jsiexecutor
|
|
164
|
+
- React-perflogger
|
|
165
|
+
- React-runtimescheduler
|
|
166
|
+
- React-utils
|
|
167
|
+
- SocketRocket (= 0.6.1)
|
|
168
|
+
- Yoga
|
|
169
|
+
- React-Core/RCTLinkingHeaders (0.73.1):
|
|
170
|
+
- glog
|
|
171
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
172
|
+
- React-Core/Default
|
|
173
|
+
- React-cxxreact
|
|
174
|
+
- React-jsc
|
|
175
|
+
- React-jsi
|
|
176
|
+
- React-jsiexecutor
|
|
177
|
+
- React-perflogger
|
|
178
|
+
- React-runtimescheduler
|
|
179
|
+
- React-utils
|
|
180
|
+
- SocketRocket (= 0.6.1)
|
|
181
|
+
- Yoga
|
|
182
|
+
- React-Core/RCTNetworkHeaders (0.73.1):
|
|
183
|
+
- glog
|
|
184
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
185
|
+
- React-Core/Default
|
|
186
|
+
- React-cxxreact
|
|
187
|
+
- React-jsc
|
|
188
|
+
- React-jsi
|
|
189
|
+
- React-jsiexecutor
|
|
190
|
+
- React-perflogger
|
|
191
|
+
- React-runtimescheduler
|
|
192
|
+
- React-utils
|
|
193
|
+
- SocketRocket (= 0.6.1)
|
|
194
|
+
- Yoga
|
|
195
|
+
- React-Core/RCTSettingsHeaders (0.73.1):
|
|
196
|
+
- glog
|
|
197
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
198
|
+
- React-Core/Default
|
|
199
|
+
- React-cxxreact
|
|
200
|
+
- React-jsc
|
|
201
|
+
- React-jsi
|
|
202
|
+
- React-jsiexecutor
|
|
203
|
+
- React-perflogger
|
|
204
|
+
- React-runtimescheduler
|
|
205
|
+
- React-utils
|
|
206
|
+
- SocketRocket (= 0.6.1)
|
|
207
|
+
- Yoga
|
|
208
|
+
- React-Core/RCTTextHeaders (0.73.1):
|
|
209
|
+
- glog
|
|
210
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
211
|
+
- React-Core/Default
|
|
212
|
+
- React-cxxreact
|
|
213
|
+
- React-jsc
|
|
214
|
+
- React-jsi
|
|
215
|
+
- React-jsiexecutor
|
|
216
|
+
- React-perflogger
|
|
217
|
+
- React-runtimescheduler
|
|
218
|
+
- React-utils
|
|
219
|
+
- SocketRocket (= 0.6.1)
|
|
220
|
+
- Yoga
|
|
221
|
+
- React-Core/RCTVibrationHeaders (0.73.1):
|
|
222
|
+
- glog
|
|
223
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
224
|
+
- React-Core/Default
|
|
225
|
+
- React-cxxreact
|
|
226
|
+
- React-jsc
|
|
227
|
+
- React-jsi
|
|
228
|
+
- React-jsiexecutor
|
|
229
|
+
- React-perflogger
|
|
230
|
+
- React-runtimescheduler
|
|
231
|
+
- React-utils
|
|
232
|
+
- SocketRocket (= 0.6.1)
|
|
233
|
+
- Yoga
|
|
234
|
+
- React-Core/RCTWebSocket (0.73.1):
|
|
235
|
+
- glog
|
|
236
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
237
|
+
- React-Core/Default (= 0.73.1)
|
|
238
|
+
- React-cxxreact
|
|
239
|
+
- React-jsc
|
|
240
|
+
- React-jsi
|
|
241
|
+
- React-jsiexecutor
|
|
242
|
+
- React-perflogger
|
|
243
|
+
- React-runtimescheduler
|
|
244
|
+
- React-utils
|
|
245
|
+
- SocketRocket (= 0.6.1)
|
|
246
|
+
- Yoga
|
|
247
|
+
- React-CoreModules (0.73.1):
|
|
248
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
249
|
+
- RCTTypeSafety (= 0.73.1)
|
|
250
|
+
- React-Codegen
|
|
251
|
+
- React-Core/CoreModulesHeaders (= 0.73.1)
|
|
252
|
+
- React-jsi (= 0.73.1)
|
|
253
|
+
- React-NativeModulesApple
|
|
254
|
+
- React-RCTBlob
|
|
255
|
+
- React-RCTImage (= 0.73.1)
|
|
256
|
+
- ReactCommon
|
|
257
|
+
- SocketRocket (= 0.6.1)
|
|
258
|
+
- React-cxxreact (0.73.1):
|
|
259
|
+
- boost (= 1.83.0)
|
|
260
|
+
- DoubleConversion
|
|
261
|
+
- fmt (~> 6.2.1)
|
|
262
|
+
- glog
|
|
263
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
264
|
+
- React-callinvoker (= 0.73.1)
|
|
265
|
+
- React-debug (= 0.73.1)
|
|
266
|
+
- React-jsi (= 0.73.1)
|
|
267
|
+
- React-jsinspector (= 0.73.1)
|
|
268
|
+
- React-logger (= 0.73.1)
|
|
269
|
+
- React-perflogger (= 0.73.1)
|
|
270
|
+
- React-runtimeexecutor (= 0.73.1)
|
|
271
|
+
- React-debug (0.73.1)
|
|
272
|
+
- React-Fabric (0.73.1):
|
|
273
|
+
- DoubleConversion
|
|
274
|
+
- fmt (~> 6.2.1)
|
|
275
|
+
- glog
|
|
276
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
277
|
+
- RCTRequired
|
|
278
|
+
- RCTTypeSafety
|
|
279
|
+
- React-Core
|
|
280
|
+
- React-cxxreact
|
|
281
|
+
- React-debug
|
|
282
|
+
- React-Fabric/animations (= 0.73.1)
|
|
283
|
+
- React-Fabric/attributedstring (= 0.73.1)
|
|
284
|
+
- React-Fabric/componentregistry (= 0.73.1)
|
|
285
|
+
- React-Fabric/componentregistrynative (= 0.73.1)
|
|
286
|
+
- React-Fabric/components (= 0.73.1)
|
|
287
|
+
- React-Fabric/core (= 0.73.1)
|
|
288
|
+
- React-Fabric/imagemanager (= 0.73.1)
|
|
289
|
+
- React-Fabric/leakchecker (= 0.73.1)
|
|
290
|
+
- React-Fabric/mounting (= 0.73.1)
|
|
291
|
+
- React-Fabric/scheduler (= 0.73.1)
|
|
292
|
+
- React-Fabric/telemetry (= 0.73.1)
|
|
293
|
+
- React-Fabric/templateprocessor (= 0.73.1)
|
|
294
|
+
- React-Fabric/textlayoutmanager (= 0.73.1)
|
|
295
|
+
- React-Fabric/uimanager (= 0.73.1)
|
|
296
|
+
- React-graphics
|
|
297
|
+
- React-jsc
|
|
298
|
+
- React-jsi
|
|
299
|
+
- React-jsiexecutor
|
|
300
|
+
- React-logger
|
|
301
|
+
- React-rendererdebug
|
|
302
|
+
- React-runtimescheduler
|
|
303
|
+
- React-utils
|
|
304
|
+
- ReactCommon/turbomodule/core
|
|
305
|
+
- React-Fabric/animations (0.73.1):
|
|
306
|
+
- DoubleConversion
|
|
307
|
+
- fmt (~> 6.2.1)
|
|
308
|
+
- glog
|
|
309
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
310
|
+
- RCTRequired
|
|
311
|
+
- RCTTypeSafety
|
|
312
|
+
- React-Core
|
|
313
|
+
- React-cxxreact
|
|
314
|
+
- React-debug
|
|
315
|
+
- React-graphics
|
|
316
|
+
- React-jsc
|
|
317
|
+
- React-jsi
|
|
318
|
+
- React-jsiexecutor
|
|
319
|
+
- React-logger
|
|
320
|
+
- React-rendererdebug
|
|
321
|
+
- React-runtimescheduler
|
|
322
|
+
- React-utils
|
|
323
|
+
- ReactCommon/turbomodule/core
|
|
324
|
+
- React-Fabric/attributedstring (0.73.1):
|
|
325
|
+
- DoubleConversion
|
|
326
|
+
- fmt (~> 6.2.1)
|
|
327
|
+
- glog
|
|
328
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
329
|
+
- RCTRequired
|
|
330
|
+
- RCTTypeSafety
|
|
331
|
+
- React-Core
|
|
332
|
+
- React-cxxreact
|
|
333
|
+
- React-debug
|
|
334
|
+
- React-graphics
|
|
335
|
+
- React-jsc
|
|
336
|
+
- React-jsi
|
|
337
|
+
- React-jsiexecutor
|
|
338
|
+
- React-logger
|
|
339
|
+
- React-rendererdebug
|
|
340
|
+
- React-runtimescheduler
|
|
341
|
+
- React-utils
|
|
342
|
+
- ReactCommon/turbomodule/core
|
|
343
|
+
- React-Fabric/componentregistry (0.73.1):
|
|
344
|
+
- DoubleConversion
|
|
345
|
+
- fmt (~> 6.2.1)
|
|
346
|
+
- glog
|
|
347
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
348
|
+
- RCTRequired
|
|
349
|
+
- RCTTypeSafety
|
|
350
|
+
- React-Core
|
|
351
|
+
- React-cxxreact
|
|
352
|
+
- React-debug
|
|
353
|
+
- React-graphics
|
|
354
|
+
- React-jsc
|
|
355
|
+
- React-jsi
|
|
356
|
+
- React-jsiexecutor
|
|
357
|
+
- React-logger
|
|
358
|
+
- React-rendererdebug
|
|
359
|
+
- React-runtimescheduler
|
|
360
|
+
- React-utils
|
|
361
|
+
- ReactCommon/turbomodule/core
|
|
362
|
+
- React-Fabric/componentregistrynative (0.73.1):
|
|
363
|
+
- DoubleConversion
|
|
364
|
+
- fmt (~> 6.2.1)
|
|
365
|
+
- glog
|
|
366
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
367
|
+
- RCTRequired
|
|
368
|
+
- RCTTypeSafety
|
|
369
|
+
- React-Core
|
|
370
|
+
- React-cxxreact
|
|
371
|
+
- React-debug
|
|
372
|
+
- React-graphics
|
|
373
|
+
- React-jsc
|
|
374
|
+
- React-jsi
|
|
375
|
+
- React-jsiexecutor
|
|
376
|
+
- React-logger
|
|
377
|
+
- React-rendererdebug
|
|
378
|
+
- React-runtimescheduler
|
|
379
|
+
- React-utils
|
|
380
|
+
- ReactCommon/turbomodule/core
|
|
381
|
+
- React-Fabric/components (0.73.1):
|
|
382
|
+
- DoubleConversion
|
|
383
|
+
- fmt (~> 6.2.1)
|
|
384
|
+
- glog
|
|
385
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
386
|
+
- RCTRequired
|
|
387
|
+
- RCTTypeSafety
|
|
388
|
+
- React-Core
|
|
389
|
+
- React-cxxreact
|
|
390
|
+
- React-debug
|
|
391
|
+
- React-Fabric/components/inputaccessory (= 0.73.1)
|
|
392
|
+
- React-Fabric/components/legacyviewmanagerinterop (= 0.73.1)
|
|
393
|
+
- React-Fabric/components/modal (= 0.73.1)
|
|
394
|
+
- React-Fabric/components/rncore (= 0.73.1)
|
|
395
|
+
- React-Fabric/components/root (= 0.73.1)
|
|
396
|
+
- React-Fabric/components/safeareaview (= 0.73.1)
|
|
397
|
+
- React-Fabric/components/scrollview (= 0.73.1)
|
|
398
|
+
- React-Fabric/components/text (= 0.73.1)
|
|
399
|
+
- React-Fabric/components/textinput (= 0.73.1)
|
|
400
|
+
- React-Fabric/components/unimplementedview (= 0.73.1)
|
|
401
|
+
- React-Fabric/components/view (= 0.73.1)
|
|
402
|
+
- React-graphics
|
|
403
|
+
- React-jsc
|
|
404
|
+
- React-jsi
|
|
405
|
+
- React-jsiexecutor
|
|
406
|
+
- React-logger
|
|
407
|
+
- React-rendererdebug
|
|
408
|
+
- React-runtimescheduler
|
|
409
|
+
- React-utils
|
|
410
|
+
- ReactCommon/turbomodule/core
|
|
411
|
+
- React-Fabric/components/inputaccessory (0.73.1):
|
|
412
|
+
- DoubleConversion
|
|
413
|
+
- fmt (~> 6.2.1)
|
|
414
|
+
- glog
|
|
415
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
416
|
+
- RCTRequired
|
|
417
|
+
- RCTTypeSafety
|
|
418
|
+
- React-Core
|
|
419
|
+
- React-cxxreact
|
|
420
|
+
- React-debug
|
|
421
|
+
- React-graphics
|
|
422
|
+
- React-jsc
|
|
423
|
+
- React-jsi
|
|
424
|
+
- React-jsiexecutor
|
|
425
|
+
- React-logger
|
|
426
|
+
- React-rendererdebug
|
|
427
|
+
- React-runtimescheduler
|
|
428
|
+
- React-utils
|
|
429
|
+
- ReactCommon/turbomodule/core
|
|
430
|
+
- React-Fabric/components/legacyviewmanagerinterop (0.73.1):
|
|
431
|
+
- DoubleConversion
|
|
432
|
+
- fmt (~> 6.2.1)
|
|
433
|
+
- glog
|
|
434
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
435
|
+
- RCTRequired
|
|
436
|
+
- RCTTypeSafety
|
|
437
|
+
- React-Core
|
|
438
|
+
- React-cxxreact
|
|
439
|
+
- React-debug
|
|
440
|
+
- React-graphics
|
|
441
|
+
- React-jsc
|
|
442
|
+
- React-jsi
|
|
443
|
+
- React-jsiexecutor
|
|
444
|
+
- React-logger
|
|
445
|
+
- React-rendererdebug
|
|
446
|
+
- React-runtimescheduler
|
|
447
|
+
- React-utils
|
|
448
|
+
- ReactCommon/turbomodule/core
|
|
449
|
+
- React-Fabric/components/modal (0.73.1):
|
|
450
|
+
- DoubleConversion
|
|
451
|
+
- fmt (~> 6.2.1)
|
|
452
|
+
- glog
|
|
453
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
454
|
+
- RCTRequired
|
|
455
|
+
- RCTTypeSafety
|
|
456
|
+
- React-Core
|
|
457
|
+
- React-cxxreact
|
|
458
|
+
- React-debug
|
|
459
|
+
- React-graphics
|
|
460
|
+
- React-jsc
|
|
461
|
+
- React-jsi
|
|
462
|
+
- React-jsiexecutor
|
|
463
|
+
- React-logger
|
|
464
|
+
- React-rendererdebug
|
|
465
|
+
- React-runtimescheduler
|
|
466
|
+
- React-utils
|
|
467
|
+
- ReactCommon/turbomodule/core
|
|
468
|
+
- React-Fabric/components/rncore (0.73.1):
|
|
469
|
+
- DoubleConversion
|
|
470
|
+
- fmt (~> 6.2.1)
|
|
471
|
+
- glog
|
|
472
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
473
|
+
- RCTRequired
|
|
474
|
+
- RCTTypeSafety
|
|
475
|
+
- React-Core
|
|
476
|
+
- React-cxxreact
|
|
477
|
+
- React-debug
|
|
478
|
+
- React-graphics
|
|
479
|
+
- React-jsc
|
|
480
|
+
- React-jsi
|
|
481
|
+
- React-jsiexecutor
|
|
482
|
+
- React-logger
|
|
483
|
+
- React-rendererdebug
|
|
484
|
+
- React-runtimescheduler
|
|
485
|
+
- React-utils
|
|
486
|
+
- ReactCommon/turbomodule/core
|
|
487
|
+
- React-Fabric/components/root (0.73.1):
|
|
488
|
+
- DoubleConversion
|
|
489
|
+
- fmt (~> 6.2.1)
|
|
490
|
+
- glog
|
|
491
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
492
|
+
- RCTRequired
|
|
493
|
+
- RCTTypeSafety
|
|
494
|
+
- React-Core
|
|
495
|
+
- React-cxxreact
|
|
496
|
+
- React-debug
|
|
497
|
+
- React-graphics
|
|
498
|
+
- React-jsc
|
|
499
|
+
- React-jsi
|
|
500
|
+
- React-jsiexecutor
|
|
501
|
+
- React-logger
|
|
502
|
+
- React-rendererdebug
|
|
503
|
+
- React-runtimescheduler
|
|
504
|
+
- React-utils
|
|
505
|
+
- ReactCommon/turbomodule/core
|
|
506
|
+
- React-Fabric/components/safeareaview (0.73.1):
|
|
507
|
+
- DoubleConversion
|
|
508
|
+
- fmt (~> 6.2.1)
|
|
509
|
+
- glog
|
|
510
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
511
|
+
- RCTRequired
|
|
512
|
+
- RCTTypeSafety
|
|
513
|
+
- React-Core
|
|
514
|
+
- React-cxxreact
|
|
515
|
+
- React-debug
|
|
516
|
+
- React-graphics
|
|
517
|
+
- React-jsc
|
|
518
|
+
- React-jsi
|
|
519
|
+
- React-jsiexecutor
|
|
520
|
+
- React-logger
|
|
521
|
+
- React-rendererdebug
|
|
522
|
+
- React-runtimescheduler
|
|
523
|
+
- React-utils
|
|
524
|
+
- ReactCommon/turbomodule/core
|
|
525
|
+
- React-Fabric/components/scrollview (0.73.1):
|
|
526
|
+
- DoubleConversion
|
|
527
|
+
- fmt (~> 6.2.1)
|
|
528
|
+
- glog
|
|
529
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
530
|
+
- RCTRequired
|
|
531
|
+
- RCTTypeSafety
|
|
532
|
+
- React-Core
|
|
533
|
+
- React-cxxreact
|
|
534
|
+
- React-debug
|
|
535
|
+
- React-graphics
|
|
536
|
+
- React-jsc
|
|
537
|
+
- React-jsi
|
|
538
|
+
- React-jsiexecutor
|
|
539
|
+
- React-logger
|
|
540
|
+
- React-rendererdebug
|
|
541
|
+
- React-runtimescheduler
|
|
542
|
+
- React-utils
|
|
543
|
+
- ReactCommon/turbomodule/core
|
|
544
|
+
- React-Fabric/components/text (0.73.1):
|
|
545
|
+
- DoubleConversion
|
|
546
|
+
- fmt (~> 6.2.1)
|
|
547
|
+
- glog
|
|
548
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
549
|
+
- RCTRequired
|
|
550
|
+
- RCTTypeSafety
|
|
551
|
+
- React-Core
|
|
552
|
+
- React-cxxreact
|
|
553
|
+
- React-debug
|
|
554
|
+
- React-graphics
|
|
555
|
+
- React-jsc
|
|
556
|
+
- React-jsi
|
|
557
|
+
- React-jsiexecutor
|
|
558
|
+
- React-logger
|
|
559
|
+
- React-rendererdebug
|
|
560
|
+
- React-runtimescheduler
|
|
561
|
+
- React-utils
|
|
562
|
+
- ReactCommon/turbomodule/core
|
|
563
|
+
- React-Fabric/components/textinput (0.73.1):
|
|
564
|
+
- DoubleConversion
|
|
565
|
+
- fmt (~> 6.2.1)
|
|
566
|
+
- glog
|
|
567
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
568
|
+
- RCTRequired
|
|
569
|
+
- RCTTypeSafety
|
|
570
|
+
- React-Core
|
|
571
|
+
- React-cxxreact
|
|
572
|
+
- React-debug
|
|
573
|
+
- React-graphics
|
|
574
|
+
- React-jsc
|
|
575
|
+
- React-jsi
|
|
576
|
+
- React-jsiexecutor
|
|
577
|
+
- React-logger
|
|
578
|
+
- React-rendererdebug
|
|
579
|
+
- React-runtimescheduler
|
|
580
|
+
- React-utils
|
|
581
|
+
- ReactCommon/turbomodule/core
|
|
582
|
+
- React-Fabric/components/unimplementedview (0.73.1):
|
|
583
|
+
- DoubleConversion
|
|
584
|
+
- fmt (~> 6.2.1)
|
|
585
|
+
- glog
|
|
586
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
587
|
+
- RCTRequired
|
|
588
|
+
- RCTTypeSafety
|
|
589
|
+
- React-Core
|
|
590
|
+
- React-cxxreact
|
|
591
|
+
- React-debug
|
|
592
|
+
- React-graphics
|
|
593
|
+
- React-jsc
|
|
594
|
+
- React-jsi
|
|
595
|
+
- React-jsiexecutor
|
|
596
|
+
- React-logger
|
|
597
|
+
- React-rendererdebug
|
|
598
|
+
- React-runtimescheduler
|
|
599
|
+
- React-utils
|
|
600
|
+
- ReactCommon/turbomodule/core
|
|
601
|
+
- React-Fabric/components/view (0.73.1):
|
|
602
|
+
- DoubleConversion
|
|
603
|
+
- fmt (~> 6.2.1)
|
|
604
|
+
- glog
|
|
605
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
606
|
+
- RCTRequired
|
|
607
|
+
- RCTTypeSafety
|
|
608
|
+
- React-Core
|
|
609
|
+
- React-cxxreact
|
|
610
|
+
- React-debug
|
|
611
|
+
- React-graphics
|
|
612
|
+
- React-jsc
|
|
613
|
+
- React-jsi
|
|
614
|
+
- React-jsiexecutor
|
|
615
|
+
- React-logger
|
|
616
|
+
- React-rendererdebug
|
|
617
|
+
- React-runtimescheduler
|
|
618
|
+
- React-utils
|
|
619
|
+
- ReactCommon/turbomodule/core
|
|
620
|
+
- Yoga
|
|
621
|
+
- React-Fabric/core (0.73.1):
|
|
622
|
+
- DoubleConversion
|
|
623
|
+
- fmt (~> 6.2.1)
|
|
624
|
+
- glog
|
|
625
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
626
|
+
- RCTRequired
|
|
627
|
+
- RCTTypeSafety
|
|
628
|
+
- React-Core
|
|
629
|
+
- React-cxxreact
|
|
630
|
+
- React-debug
|
|
631
|
+
- React-graphics
|
|
632
|
+
- React-jsc
|
|
633
|
+
- React-jsi
|
|
634
|
+
- React-jsiexecutor
|
|
635
|
+
- React-logger
|
|
636
|
+
- React-rendererdebug
|
|
637
|
+
- React-runtimescheduler
|
|
638
|
+
- React-utils
|
|
639
|
+
- ReactCommon/turbomodule/core
|
|
640
|
+
- React-Fabric/imagemanager (0.73.1):
|
|
641
|
+
- DoubleConversion
|
|
642
|
+
- fmt (~> 6.2.1)
|
|
643
|
+
- glog
|
|
644
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
645
|
+
- RCTRequired
|
|
646
|
+
- RCTTypeSafety
|
|
647
|
+
- React-Core
|
|
648
|
+
- React-cxxreact
|
|
649
|
+
- React-debug
|
|
650
|
+
- React-graphics
|
|
651
|
+
- React-jsc
|
|
652
|
+
- React-jsi
|
|
653
|
+
- React-jsiexecutor
|
|
654
|
+
- React-logger
|
|
655
|
+
- React-rendererdebug
|
|
656
|
+
- React-runtimescheduler
|
|
657
|
+
- React-utils
|
|
658
|
+
- ReactCommon/turbomodule/core
|
|
659
|
+
- React-Fabric/leakchecker (0.73.1):
|
|
660
|
+
- DoubleConversion
|
|
661
|
+
- fmt (~> 6.2.1)
|
|
662
|
+
- glog
|
|
663
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
664
|
+
- RCTRequired
|
|
665
|
+
- RCTTypeSafety
|
|
666
|
+
- React-Core
|
|
667
|
+
- React-cxxreact
|
|
668
|
+
- React-debug
|
|
669
|
+
- React-graphics
|
|
670
|
+
- React-jsc
|
|
671
|
+
- React-jsi
|
|
672
|
+
- React-jsiexecutor
|
|
673
|
+
- React-logger
|
|
674
|
+
- React-rendererdebug
|
|
675
|
+
- React-runtimescheduler
|
|
676
|
+
- React-utils
|
|
677
|
+
- ReactCommon/turbomodule/core
|
|
678
|
+
- React-Fabric/mounting (0.73.1):
|
|
679
|
+
- DoubleConversion
|
|
680
|
+
- fmt (~> 6.2.1)
|
|
681
|
+
- glog
|
|
682
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
683
|
+
- RCTRequired
|
|
684
|
+
- RCTTypeSafety
|
|
685
|
+
- React-Core
|
|
686
|
+
- React-cxxreact
|
|
687
|
+
- React-debug
|
|
688
|
+
- React-graphics
|
|
689
|
+
- React-jsc
|
|
690
|
+
- React-jsi
|
|
691
|
+
- React-jsiexecutor
|
|
692
|
+
- React-logger
|
|
693
|
+
- React-rendererdebug
|
|
694
|
+
- React-runtimescheduler
|
|
695
|
+
- React-utils
|
|
696
|
+
- ReactCommon/turbomodule/core
|
|
697
|
+
- React-Fabric/scheduler (0.73.1):
|
|
698
|
+
- DoubleConversion
|
|
699
|
+
- fmt (~> 6.2.1)
|
|
700
|
+
- glog
|
|
701
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
702
|
+
- RCTRequired
|
|
703
|
+
- RCTTypeSafety
|
|
704
|
+
- React-Core
|
|
705
|
+
- React-cxxreact
|
|
706
|
+
- React-debug
|
|
707
|
+
- React-graphics
|
|
708
|
+
- React-jsc
|
|
709
|
+
- React-jsi
|
|
710
|
+
- React-jsiexecutor
|
|
711
|
+
- React-logger
|
|
712
|
+
- React-rendererdebug
|
|
713
|
+
- React-runtimescheduler
|
|
714
|
+
- React-utils
|
|
715
|
+
- ReactCommon/turbomodule/core
|
|
716
|
+
- React-Fabric/telemetry (0.73.1):
|
|
717
|
+
- DoubleConversion
|
|
718
|
+
- fmt (~> 6.2.1)
|
|
719
|
+
- glog
|
|
720
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
721
|
+
- RCTRequired
|
|
722
|
+
- RCTTypeSafety
|
|
723
|
+
- React-Core
|
|
724
|
+
- React-cxxreact
|
|
725
|
+
- React-debug
|
|
726
|
+
- React-graphics
|
|
727
|
+
- React-jsc
|
|
728
|
+
- React-jsi
|
|
729
|
+
- React-jsiexecutor
|
|
730
|
+
- React-logger
|
|
731
|
+
- React-rendererdebug
|
|
732
|
+
- React-runtimescheduler
|
|
733
|
+
- React-utils
|
|
734
|
+
- ReactCommon/turbomodule/core
|
|
735
|
+
- React-Fabric/templateprocessor (0.73.1):
|
|
736
|
+
- DoubleConversion
|
|
737
|
+
- fmt (~> 6.2.1)
|
|
738
|
+
- glog
|
|
739
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
740
|
+
- RCTRequired
|
|
741
|
+
- RCTTypeSafety
|
|
742
|
+
- React-Core
|
|
743
|
+
- React-cxxreact
|
|
744
|
+
- React-debug
|
|
745
|
+
- React-graphics
|
|
746
|
+
- React-jsc
|
|
747
|
+
- React-jsi
|
|
748
|
+
- React-jsiexecutor
|
|
749
|
+
- React-logger
|
|
750
|
+
- React-rendererdebug
|
|
751
|
+
- React-runtimescheduler
|
|
752
|
+
- React-utils
|
|
753
|
+
- ReactCommon/turbomodule/core
|
|
754
|
+
- React-Fabric/textlayoutmanager (0.73.1):
|
|
755
|
+
- DoubleConversion
|
|
756
|
+
- fmt (~> 6.2.1)
|
|
757
|
+
- glog
|
|
758
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
759
|
+
- RCTRequired
|
|
760
|
+
- RCTTypeSafety
|
|
761
|
+
- React-Core
|
|
762
|
+
- React-cxxreact
|
|
763
|
+
- React-debug
|
|
764
|
+
- React-Fabric/uimanager
|
|
765
|
+
- React-graphics
|
|
766
|
+
- React-jsc
|
|
767
|
+
- React-jsi
|
|
768
|
+
- React-jsiexecutor
|
|
769
|
+
- React-logger
|
|
770
|
+
- React-rendererdebug
|
|
771
|
+
- React-runtimescheduler
|
|
772
|
+
- React-utils
|
|
773
|
+
- ReactCommon/turbomodule/core
|
|
774
|
+
- React-Fabric/uimanager (0.73.1):
|
|
775
|
+
- DoubleConversion
|
|
776
|
+
- fmt (~> 6.2.1)
|
|
777
|
+
- glog
|
|
778
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
779
|
+
- RCTRequired
|
|
780
|
+
- RCTTypeSafety
|
|
781
|
+
- React-Core
|
|
782
|
+
- React-cxxreact
|
|
783
|
+
- React-debug
|
|
784
|
+
- React-graphics
|
|
785
|
+
- React-jsc
|
|
786
|
+
- React-jsi
|
|
787
|
+
- React-jsiexecutor
|
|
788
|
+
- React-logger
|
|
789
|
+
- React-rendererdebug
|
|
790
|
+
- React-runtimescheduler
|
|
791
|
+
- React-utils
|
|
792
|
+
- ReactCommon/turbomodule/core
|
|
793
|
+
- React-FabricImage (0.73.1):
|
|
794
|
+
- DoubleConversion
|
|
795
|
+
- fmt (~> 6.2.1)
|
|
796
|
+
- glog
|
|
797
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
798
|
+
- RCTRequired (= 0.73.1)
|
|
799
|
+
- RCTTypeSafety (= 0.73.1)
|
|
800
|
+
- React-Fabric
|
|
801
|
+
- React-graphics
|
|
802
|
+
- React-ImageManager
|
|
803
|
+
- React-jsc
|
|
804
|
+
- React-jsi
|
|
805
|
+
- React-jsiexecutor (= 0.73.1)
|
|
806
|
+
- React-logger
|
|
807
|
+
- React-rendererdebug
|
|
808
|
+
- React-utils
|
|
809
|
+
- ReactCommon
|
|
810
|
+
- Yoga
|
|
811
|
+
- React-graphics (0.73.1):
|
|
812
|
+
- glog
|
|
813
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
814
|
+
- React-Core/Default (= 0.73.1)
|
|
815
|
+
- React-utils
|
|
816
|
+
- React-ImageManager (0.73.1):
|
|
817
|
+
- glog
|
|
818
|
+
- RCT-Folly/Fabric
|
|
819
|
+
- React-Core/Default
|
|
820
|
+
- React-debug
|
|
821
|
+
- React-Fabric
|
|
822
|
+
- React-graphics
|
|
823
|
+
- React-rendererdebug
|
|
824
|
+
- React-utils
|
|
825
|
+
- React-jsc (0.73.1):
|
|
826
|
+
- React-jsc/Fabric (= 0.73.1)
|
|
827
|
+
- React-jsi (= 0.73.1)
|
|
828
|
+
- React-jsc/Fabric (0.73.1):
|
|
829
|
+
- React-jsi (= 0.73.1)
|
|
830
|
+
- React-jserrorhandler (0.73.1):
|
|
831
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
832
|
+
- React-debug
|
|
833
|
+
- React-jsi
|
|
834
|
+
- React-Mapbuffer
|
|
835
|
+
- React-jsi (0.73.1):
|
|
836
|
+
- boost (= 1.83.0)
|
|
837
|
+
- DoubleConversion
|
|
838
|
+
- fmt (~> 6.2.1)
|
|
839
|
+
- glog
|
|
840
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
841
|
+
- React-jsiexecutor (0.73.1):
|
|
842
|
+
- DoubleConversion
|
|
843
|
+
- fmt (~> 6.2.1)
|
|
844
|
+
- glog
|
|
845
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
846
|
+
- React-cxxreact (= 0.73.1)
|
|
847
|
+
- React-jsi (= 0.73.1)
|
|
848
|
+
- React-perflogger (= 0.73.1)
|
|
849
|
+
- React-jsinspector (0.73.1)
|
|
850
|
+
- React-logger (0.73.1):
|
|
851
|
+
- glog
|
|
852
|
+
- React-Mapbuffer (0.73.1):
|
|
853
|
+
- glog
|
|
854
|
+
- React-debug
|
|
855
|
+
- react-native-safe-area-context (4.8.1):
|
|
856
|
+
- React-Core
|
|
857
|
+
- React-nativeconfig (0.73.1)
|
|
858
|
+
- React-NativeModulesApple (0.73.1):
|
|
859
|
+
- glog
|
|
860
|
+
- React-callinvoker
|
|
861
|
+
- React-Core
|
|
862
|
+
- React-cxxreact
|
|
863
|
+
- React-jsc
|
|
864
|
+
- React-jsi
|
|
865
|
+
- React-runtimeexecutor
|
|
866
|
+
- ReactCommon/turbomodule/bridging
|
|
867
|
+
- ReactCommon/turbomodule/core
|
|
868
|
+
- React-perflogger (0.73.1)
|
|
869
|
+
- React-RCTActionSheet (0.73.1):
|
|
870
|
+
- React-Core/RCTActionSheetHeaders (= 0.73.1)
|
|
871
|
+
- React-RCTAnimation (0.73.1):
|
|
872
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
873
|
+
- RCTTypeSafety
|
|
874
|
+
- React-Codegen
|
|
875
|
+
- React-Core/RCTAnimationHeaders
|
|
876
|
+
- React-jsi
|
|
877
|
+
- React-NativeModulesApple
|
|
878
|
+
- ReactCommon
|
|
879
|
+
- React-RCTAppDelegate (0.73.1):
|
|
880
|
+
- RCT-Folly
|
|
881
|
+
- RCTRequired
|
|
882
|
+
- RCTTypeSafety
|
|
883
|
+
- React-Core
|
|
884
|
+
- React-CoreModules
|
|
885
|
+
- React-jsc
|
|
886
|
+
- React-nativeconfig
|
|
887
|
+
- React-NativeModulesApple
|
|
888
|
+
- React-RCTFabric
|
|
889
|
+
- React-RCTImage
|
|
890
|
+
- React-RCTNetwork
|
|
891
|
+
- React-runtimescheduler
|
|
892
|
+
- ReactCommon
|
|
893
|
+
- React-RCTBlob (0.73.1):
|
|
894
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
895
|
+
- React-Codegen
|
|
896
|
+
- React-Core/RCTBlobHeaders
|
|
897
|
+
- React-Core/RCTWebSocket
|
|
898
|
+
- React-jsi
|
|
899
|
+
- React-NativeModulesApple
|
|
900
|
+
- React-RCTNetwork
|
|
901
|
+
- ReactCommon
|
|
902
|
+
- React-RCTFabric (0.73.1):
|
|
903
|
+
- glog
|
|
904
|
+
- RCT-Folly/Fabric (= 2022.05.16.00)
|
|
905
|
+
- React-Core
|
|
906
|
+
- React-debug
|
|
907
|
+
- React-Fabric
|
|
908
|
+
- React-FabricImage
|
|
909
|
+
- React-graphics
|
|
910
|
+
- React-ImageManager
|
|
911
|
+
- React-jsc
|
|
912
|
+
- React-jsi
|
|
913
|
+
- React-nativeconfig
|
|
914
|
+
- React-RCTImage
|
|
915
|
+
- React-RCTText
|
|
916
|
+
- React-rendererdebug
|
|
917
|
+
- React-runtimescheduler
|
|
918
|
+
- React-utils
|
|
919
|
+
- Yoga
|
|
920
|
+
- React-RCTImage (0.73.1):
|
|
921
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
922
|
+
- RCTTypeSafety
|
|
923
|
+
- React-Codegen
|
|
924
|
+
- React-Core/RCTImageHeaders
|
|
925
|
+
- React-jsi
|
|
926
|
+
- React-NativeModulesApple
|
|
927
|
+
- React-RCTNetwork
|
|
928
|
+
- ReactCommon
|
|
929
|
+
- React-RCTLinking (0.73.1):
|
|
930
|
+
- React-Codegen
|
|
931
|
+
- React-Core/RCTLinkingHeaders (= 0.73.1)
|
|
932
|
+
- React-jsi (= 0.73.1)
|
|
933
|
+
- React-NativeModulesApple
|
|
934
|
+
- ReactCommon
|
|
935
|
+
- ReactCommon/turbomodule/core (= 0.73.1)
|
|
936
|
+
- React-RCTNetwork (0.73.1):
|
|
937
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
938
|
+
- RCTTypeSafety
|
|
939
|
+
- React-Codegen
|
|
940
|
+
- React-Core/RCTNetworkHeaders
|
|
941
|
+
- React-jsi
|
|
942
|
+
- React-NativeModulesApple
|
|
943
|
+
- ReactCommon
|
|
944
|
+
- React-RCTSettings (0.73.1):
|
|
945
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
946
|
+
- RCTTypeSafety
|
|
947
|
+
- React-Codegen
|
|
948
|
+
- React-Core/RCTSettingsHeaders
|
|
949
|
+
- React-jsi
|
|
950
|
+
- React-NativeModulesApple
|
|
951
|
+
- ReactCommon
|
|
952
|
+
- React-RCTText (0.73.1):
|
|
953
|
+
- React-Core/RCTTextHeaders (= 0.73.1)
|
|
954
|
+
- Yoga
|
|
955
|
+
- React-RCTVibration (0.73.1):
|
|
956
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
957
|
+
- React-Codegen
|
|
958
|
+
- React-Core/RCTVibrationHeaders
|
|
959
|
+
- React-jsi
|
|
960
|
+
- React-NativeModulesApple
|
|
961
|
+
- ReactCommon
|
|
962
|
+
- React-rendererdebug (0.73.1):
|
|
963
|
+
- DoubleConversion
|
|
964
|
+
- fmt (~> 6.2.1)
|
|
965
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
966
|
+
- React-debug
|
|
967
|
+
- React-rncore (0.73.1)
|
|
968
|
+
- React-runtimeexecutor (0.73.1):
|
|
969
|
+
- React-jsi (= 0.73.1)
|
|
970
|
+
- React-runtimescheduler (0.73.1):
|
|
971
|
+
- glog
|
|
972
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
973
|
+
- React-callinvoker
|
|
974
|
+
- React-cxxreact
|
|
975
|
+
- React-debug
|
|
976
|
+
- React-jsc
|
|
977
|
+
- React-jsi
|
|
978
|
+
- React-rendererdebug
|
|
979
|
+
- React-runtimeexecutor
|
|
980
|
+
- React-utils
|
|
981
|
+
- React-utils (0.73.1):
|
|
982
|
+
- glog
|
|
983
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
984
|
+
- React-debug
|
|
985
|
+
- ReactCommon (0.73.1):
|
|
986
|
+
- React-logger (= 0.73.1)
|
|
987
|
+
- ReactCommon/turbomodule (= 0.73.1)
|
|
988
|
+
- ReactCommon/turbomodule (0.73.1):
|
|
989
|
+
- DoubleConversion
|
|
990
|
+
- fmt (~> 6.2.1)
|
|
991
|
+
- glog
|
|
992
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
993
|
+
- React-callinvoker (= 0.73.1)
|
|
994
|
+
- React-cxxreact (= 0.73.1)
|
|
995
|
+
- React-jsi (= 0.73.1)
|
|
996
|
+
- React-logger (= 0.73.1)
|
|
997
|
+
- React-perflogger (= 0.73.1)
|
|
998
|
+
- ReactCommon/turbomodule/bridging (= 0.73.1)
|
|
999
|
+
- ReactCommon/turbomodule/core (= 0.73.1)
|
|
1000
|
+
- ReactCommon/turbomodule/bridging (0.73.1):
|
|
1001
|
+
- DoubleConversion
|
|
1002
|
+
- fmt (~> 6.2.1)
|
|
1003
|
+
- glog
|
|
1004
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1005
|
+
- React-callinvoker (= 0.73.1)
|
|
1006
|
+
- React-cxxreact (= 0.73.1)
|
|
1007
|
+
- React-jsi (= 0.73.1)
|
|
1008
|
+
- React-logger (= 0.73.1)
|
|
1009
|
+
- React-perflogger (= 0.73.1)
|
|
1010
|
+
- ReactCommon/turbomodule/core (0.73.1):
|
|
1011
|
+
- DoubleConversion
|
|
1012
|
+
- fmt (~> 6.2.1)
|
|
1013
|
+
- glog
|
|
1014
|
+
- RCT-Folly (= 2022.05.16.00)
|
|
1015
|
+
- React-callinvoker (= 0.73.1)
|
|
1016
|
+
- React-cxxreact (= 0.73.1)
|
|
1017
|
+
- React-jsi (= 0.73.1)
|
|
1018
|
+
- React-logger (= 0.73.1)
|
|
1019
|
+
- React-perflogger (= 0.73.1)
|
|
1020
|
+
- ReactNativeHost (0.2.9):
|
|
1021
|
+
- React-Core
|
|
1022
|
+
- React-cxxreact
|
|
1023
|
+
- ReactCommon/turbomodule/core
|
|
1024
|
+
- ReactTestApp-DevSupport (2.5.34):
|
|
1025
|
+
- React-Core
|
|
1026
|
+
- React-jsi
|
|
1027
|
+
- ReactTestApp-Resources (1.0.0-dev)
|
|
1028
|
+
- SocketRocket (0.6.1)
|
|
1029
|
+
- Yoga (1.14.0)
|
|
1030
|
+
|
|
1031
|
+
DEPENDENCIES:
|
|
1032
|
+
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
1033
|
+
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
1034
|
+
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
1035
|
+
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
|
1036
|
+
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
1037
|
+
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
1038
|
+
- RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
1039
|
+
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
|
1040
|
+
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
1041
|
+
- React (from `../node_modules/react-native/`)
|
|
1042
|
+
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
1043
|
+
- React-Codegen (from `build/generated/ios`)
|
|
1044
|
+
- React-Core (from `../node_modules/react-native/`)
|
|
1045
|
+
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
1046
|
+
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
1047
|
+
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
1048
|
+
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
|
|
1049
|
+
- React-Fabric (from `../node_modules/react-native/ReactCommon`)
|
|
1050
|
+
- React-FabricImage (from `../node_modules/react-native/ReactCommon`)
|
|
1051
|
+
- React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
|
|
1052
|
+
- React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
|
|
1053
|
+
- React-jsc (from `../node_modules/react-native/ReactCommon/jsc`)
|
|
1054
|
+
- React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
|
|
1055
|
+
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
1056
|
+
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
1057
|
+
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
|
|
1058
|
+
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
1059
|
+
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
|
|
1060
|
+
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
|
1061
|
+
- React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
|
|
1062
|
+
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
|
1063
|
+
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
1064
|
+
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
1065
|
+
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
1066
|
+
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
|
|
1067
|
+
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
1068
|
+
- React-RCTFabric (from `../node_modules/react-native/React`)
|
|
1069
|
+
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
1070
|
+
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
1071
|
+
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
1072
|
+
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
1073
|
+
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
1074
|
+
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
1075
|
+
- React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
|
|
1076
|
+
- React-rncore (from `../node_modules/react-native/ReactCommon`)
|
|
1077
|
+
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
1078
|
+
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
|
1079
|
+
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
|
1080
|
+
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
1081
|
+
- "ReactNativeHost (from `../node_modules/@rnx-kit/react-native-host`)"
|
|
1082
|
+
- ReactTestApp-DevSupport (from `../node_modules/react-native-test-app`)
|
|
1083
|
+
- ReactTestApp-Resources (from `..`)
|
|
1084
|
+
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
1085
|
+
|
|
1086
|
+
SPEC REPOS:
|
|
1087
|
+
trunk:
|
|
1088
|
+
- fmt
|
|
1089
|
+
- SocketRocket
|
|
1090
|
+
|
|
1091
|
+
EXTERNAL SOURCES:
|
|
1092
|
+
boost:
|
|
1093
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
1094
|
+
DoubleConversion:
|
|
1095
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
1096
|
+
FBLazyVector:
|
|
1097
|
+
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
1098
|
+
FBReactNativeSpec:
|
|
1099
|
+
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
|
1100
|
+
glog:
|
|
1101
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
1102
|
+
RCT-Folly:
|
|
1103
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
1104
|
+
RCTRequired:
|
|
1105
|
+
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
|
1106
|
+
RCTTypeSafety:
|
|
1107
|
+
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
1108
|
+
React:
|
|
1109
|
+
:path: "../node_modules/react-native/"
|
|
1110
|
+
React-callinvoker:
|
|
1111
|
+
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
1112
|
+
React-Codegen:
|
|
1113
|
+
:path: build/generated/ios
|
|
1114
|
+
React-Core:
|
|
1115
|
+
:path: "../node_modules/react-native/"
|
|
1116
|
+
React-CoreModules:
|
|
1117
|
+
:path: "../node_modules/react-native/React/CoreModules"
|
|
1118
|
+
React-cxxreact:
|
|
1119
|
+
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
1120
|
+
React-debug:
|
|
1121
|
+
:path: "../node_modules/react-native/ReactCommon/react/debug"
|
|
1122
|
+
React-Fabric:
|
|
1123
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1124
|
+
React-FabricImage:
|
|
1125
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1126
|
+
React-graphics:
|
|
1127
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
|
|
1128
|
+
React-ImageManager:
|
|
1129
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
|
|
1130
|
+
React-jsc:
|
|
1131
|
+
:path: "../node_modules/react-native/ReactCommon/jsc"
|
|
1132
|
+
React-jserrorhandler:
|
|
1133
|
+
:path: "../node_modules/react-native/ReactCommon/jserrorhandler"
|
|
1134
|
+
React-jsi:
|
|
1135
|
+
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
1136
|
+
React-jsiexecutor:
|
|
1137
|
+
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
1138
|
+
React-jsinspector:
|
|
1139
|
+
:path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
|
|
1140
|
+
React-logger:
|
|
1141
|
+
:path: "../node_modules/react-native/ReactCommon/logger"
|
|
1142
|
+
React-Mapbuffer:
|
|
1143
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1144
|
+
react-native-safe-area-context:
|
|
1145
|
+
:path: "../node_modules/react-native-safe-area-context"
|
|
1146
|
+
React-nativeconfig:
|
|
1147
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1148
|
+
React-NativeModulesApple:
|
|
1149
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
|
|
1150
|
+
React-perflogger:
|
|
1151
|
+
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
1152
|
+
React-RCTActionSheet:
|
|
1153
|
+
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
1154
|
+
React-RCTAnimation:
|
|
1155
|
+
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
1156
|
+
React-RCTAppDelegate:
|
|
1157
|
+
:path: "../node_modules/react-native/Libraries/AppDelegate"
|
|
1158
|
+
React-RCTBlob:
|
|
1159
|
+
:path: "../node_modules/react-native/Libraries/Blob"
|
|
1160
|
+
React-RCTFabric:
|
|
1161
|
+
:path: "../node_modules/react-native/React"
|
|
1162
|
+
React-RCTImage:
|
|
1163
|
+
:path: "../node_modules/react-native/Libraries/Image"
|
|
1164
|
+
React-RCTLinking:
|
|
1165
|
+
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
1166
|
+
React-RCTNetwork:
|
|
1167
|
+
:path: "../node_modules/react-native/Libraries/Network"
|
|
1168
|
+
React-RCTSettings:
|
|
1169
|
+
:path: "../node_modules/react-native/Libraries/Settings"
|
|
1170
|
+
React-RCTText:
|
|
1171
|
+
:path: "../node_modules/react-native/Libraries/Text"
|
|
1172
|
+
React-RCTVibration:
|
|
1173
|
+
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
1174
|
+
React-rendererdebug:
|
|
1175
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
|
|
1176
|
+
React-rncore:
|
|
1177
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1178
|
+
React-runtimeexecutor:
|
|
1179
|
+
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
1180
|
+
React-runtimescheduler:
|
|
1181
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
|
|
1182
|
+
React-utils:
|
|
1183
|
+
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
|
1184
|
+
ReactCommon:
|
|
1185
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
1186
|
+
ReactNativeHost:
|
|
1187
|
+
:path: "../node_modules/@rnx-kit/react-native-host"
|
|
1188
|
+
ReactTestApp-DevSupport:
|
|
1189
|
+
:path: "../node_modules/react-native-test-app"
|
|
1190
|
+
ReactTestApp-Resources:
|
|
1191
|
+
:path: ".."
|
|
1192
|
+
Yoga:
|
|
1193
|
+
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
1194
|
+
|
|
1195
|
+
SPEC CHECKSUMS:
|
|
1196
|
+
boost: 26fad476bfa736552bbfa698a06cc530475c1505
|
|
1197
|
+
DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
|
|
1198
|
+
FBLazyVector: 2296bacb2fa157a43991048b0a9d71c1c8b65083
|
|
1199
|
+
FBReactNativeSpec: df0ebe69acd14ce0be0269cf75b6e338a727259b
|
|
1200
|
+
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
1201
|
+
glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
|
|
1202
|
+
RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0
|
|
1203
|
+
RCTRequired: 6dda55e483f75d2b43781d8ad5bd7df276a50981
|
|
1204
|
+
RCTTypeSafety: df0f2632f4e89938b9b9f6152b5e6c66fc6e969e
|
|
1205
|
+
React: 5373769b4a544945831d9c5d455212186d68f763
|
|
1206
|
+
React-callinvoker: 2c54fb73b27fdf9bd7772f36dcda23d76e0e7d14
|
|
1207
|
+
React-Codegen: 71d866ddc419643a029b1a43a433715371f9bc5e
|
|
1208
|
+
React-Core: 894163c8df365db6bf151284c4885aaf9d91b566
|
|
1209
|
+
React-CoreModules: 1ee65dbd93429c1c6ec3de069d75f5fde05db5d5
|
|
1210
|
+
React-cxxreact: 927e7a8f04142c6794c0450f07851c3b8d733eb1
|
|
1211
|
+
React-debug: 52cced4b9e280d03825d687925898cf65bd8712d
|
|
1212
|
+
React-Fabric: 75a93ed4a5d2748a8254e7ddc254badbe64b51d0
|
|
1213
|
+
React-FabricImage: 75ef524d1eac290fbfbfd1dfdf761be38f2e34e4
|
|
1214
|
+
React-graphics: a1652cbea6f779a1cf2692987d9c94efcd6e4497
|
|
1215
|
+
React-ImageManager: 5e50ba59059ca7547c8968f936e4ae7a50ff7384
|
|
1216
|
+
React-jsc: db1b58dd0aabec3b893c92af81f5cdf520a0577b
|
|
1217
|
+
React-jserrorhandler: 27154e650959506a4455384f3aea134eba62335b
|
|
1218
|
+
React-jsi: 568d50e634f4d41ee4e4853f665caf4f851de913
|
|
1219
|
+
React-jsiexecutor: 14fc2894b28beba69f6a466faff52c7a5c827b47
|
|
1220
|
+
React-jsinspector: 369048694e39942063c5d08e9580b43e2edd379a
|
|
1221
|
+
React-logger: e0c1e918d9588a9f39c9bc62d9d6bfe9ca238d9d
|
|
1222
|
+
React-Mapbuffer: 9731a0a63ebaf8976014623c4d637744d7353a7c
|
|
1223
|
+
react-native-safe-area-context: cd1169d797a2ef722a00bfc5af10748d5b6c94f9
|
|
1224
|
+
React-nativeconfig: 37aecd26d64b79327c3f10e43b2e9a6c425e0a60
|
|
1225
|
+
React-NativeModulesApple: 00e8c36b6c56ce76af5e52e07d5ecaad18038d51
|
|
1226
|
+
React-perflogger: 5ffc4d6ccb74eaac7b8b2867e58a447232483d6d
|
|
1227
|
+
React-RCTActionSheet: eca2174431ff2cc14b7fb847f92b89e081d27541
|
|
1228
|
+
React-RCTAnimation: a039b2416aa0a55e6fa7c8cd0a2e870bfffc4caa
|
|
1229
|
+
React-RCTAppDelegate: 6e5c7f130a131651da8f65a5302df84b35e6a1d9
|
|
1230
|
+
React-RCTBlob: 2a21e8dbe65a8ec9cf4751b59a25e4498d99ae73
|
|
1231
|
+
React-RCTFabric: 97d6ea1eb7d9413e41fc0a6129b988c9750ec93a
|
|
1232
|
+
React-RCTImage: 5b70891cb2adb75bbdc5ad8e6cc56c48e95d90e5
|
|
1233
|
+
React-RCTLinking: 5fe4756ab016e9f200e93e771bd6e43ea05f8f50
|
|
1234
|
+
React-RCTNetwork: 877b4a85f71c63cf719574f187e3333c1e15a425
|
|
1235
|
+
React-RCTSettings: ae477a33a04389f5d42486004b09b04eeba64fd5
|
|
1236
|
+
React-RCTText: 08dd5d7173ed279d3468b333217afb22bb7948c3
|
|
1237
|
+
React-RCTVibration: 2f906cd58dfd44ff5e4ca4fc0edd8740dceda6be
|
|
1238
|
+
React-rendererdebug: e3db5db14234d9ee46d2e58fff3b8652ee7da6bc
|
|
1239
|
+
React-rncore: d1aa3c2f01b22a53bc10ff2775e6ddcd43fc71a2
|
|
1240
|
+
React-runtimeexecutor: d87e84455640dc5685e87563c2eaef90e5df8752
|
|
1241
|
+
React-runtimescheduler: 0250903a8bbd267f4cbfb4b5e45c0b464aa7a891
|
|
1242
|
+
React-utils: debda2c206770ee2785bdebb7f16d8db9f18838a
|
|
1243
|
+
ReactCommon: b20d717be759cce8e25f834b7235debd610402e5
|
|
1244
|
+
ReactNativeHost: 3cc863b178e289d813b92816b149a3acde276d6e
|
|
1245
|
+
ReactTestApp-DevSupport: 633054c342809fcfcff96db4e1d26ac3c143681b
|
|
1246
|
+
ReactTestApp-Resources: 1f512f66574607bcfa614e9c0d30e7a990fecf30
|
|
1247
|
+
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
|
|
1248
|
+
Yoga: 4f53dc50008d626fa679c7a1cb4bed898f8c0bde
|
|
1249
|
+
|
|
1250
|
+
PODFILE CHECKSUM: ccd779e69758faed8fc4db215aa3b2fcc3b3c375
|
|
1251
|
+
|
|
1252
|
+
COCOAPODS: 1.13.0
|