react-native-tree-multi-select 1.2.0 → 1.2.3
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/.editorconfig +15 -0
- package/.gitattributes +3 -0
- package/.github/FUNDING.yml +13 -0
- package/.github/ISSUE_TEMPLATE/bug-report.md +42 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +30 -0
- package/.github/actions/setup/action.yml +28 -0
- package/.github/assets/Jairaj_Jangle_Google_Pay_UPI_QR_Code.jpg +0 -0
- package/.github/assets/paypal_donate.png +0 -0
- package/.github/assets/upi.png +0 -0
- package/.github/workflows/ci.yml +225 -0
- package/.gitignore +73 -0
- package/.nvmrc +1 -0
- package/.watchmanconfig +1 -0
- package/.yarnrc +3 -0
- package/CHANGELOG.md +145 -0
- package/CODE_OF_CONDUCT.md +133 -0
- package/CONTRIBUTING.md +114 -0
- package/README.md +12 -3
- package/babel.config.js +3 -0
- package/example/.bundle/config +2 -0
- package/example/.watchmanconfig +1 -0
- package/example/Gemfile +6 -0
- package/example/README.md +79 -0
- package/example/android/app/build.gradle +130 -0
- package/example/android/app/debug.keystore +0 -0
- package/example/android/app/proguard-rules.pro +10 -0
- package/example/android/app/src/debug/AndroidManifest.xml +13 -0
- package/example/android/app/src/debug/java/com/treemultiselectexample/ReactNativeFlipper.java +75 -0
- package/example/android/app/src/main/AndroidManifest.xml +25 -0
- package/example/android/app/src/main/java/com/treemultiselectexample/MainActivity.java +32 -0
- package/example/android/app/src/main/java/com/treemultiselectexample/MainApplication.java +62 -0
- package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/values/strings.xml +3 -0
- package/example/android/app/src/main/res/values/styles.xml +9 -0
- package/example/android/app/src/release/java/com/treemultiselectexample/ReactNativeFlipper.java +20 -0
- package/example/android/build.gradle +23 -0
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/example/android/gradle.properties +44 -0
- package/example/android/gradlew +244 -0
- package/example/android/gradlew.bat +92 -0
- package/example/android/settings.gradle +4 -0
- package/example/app.json +4 -0
- package/example/babel.config.js +17 -0
- package/example/index.js +5 -0
- package/example/ios/.xcode.env +11 -0
- package/example/ios/File.swift +6 -0
- package/example/ios/Podfile +62 -0
- package/example/ios/Podfile.lock +639 -0
- package/example/ios/TreeMultiSelectExample/AppDelegate.h +6 -0
- package/example/ios/TreeMultiSelectExample/AppDelegate.mm +26 -0
- package/example/ios/TreeMultiSelectExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/example/ios/TreeMultiSelectExample/Images.xcassets/Contents.json +6 -0
- package/example/ios/TreeMultiSelectExample/Info.plist +74 -0
- package/example/ios/TreeMultiSelectExample/LaunchScreen.storyboard +47 -0
- package/example/ios/TreeMultiSelectExample/main.m +10 -0
- package/example/ios/TreeMultiSelectExample-Bridging-Header.h +3 -0
- package/example/ios/TreeMultiSelectExample.xcodeproj/project.pbxproj +706 -0
- package/example/ios/TreeMultiSelectExample.xcodeproj/xcshareddata/xcschemes/TreeMultiSelectExample.xcscheme +88 -0
- package/example/ios/TreeMultiSelectExample.xcworkspace/contents.xcworkspacedata +10 -0
- package/example/ios/TreeMultiSelectExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/example/ios/TreeMultiSelectExampleTests/Info.plist +24 -0
- package/example/ios/TreeMultiSelectExampleTests/TreeMultiSelectExampleTests.m +66 -0
- package/example/metro.config.js +45 -0
- package/example/package.json +41 -0
- package/example/react-native.config.js +10 -0
- package/example/src/App.tsx +70 -0
- package/example/src/components/CustomArrow.tsx +71 -0
- package/example/src/components/CustomCheckboxView.tsx +119 -0
- package/example/src/components/CustomNodeRowView.tsx +124 -0
- package/example/src/components/SearchInput.tsx +68 -0
- package/example/src/screens/CustomArrowScreen.tsx +99 -0
- package/example/src/screens/CustomCheckboxScreen.tsx +99 -0
- package/example/src/screens/CustomNodeRowViewScreen.tsx +99 -0
- package/example/src/screens/LargeDataScreen.tsx +95 -0
- package/example/src/screens/MediumDataScreen.tsx +96 -0
- package/example/src/screens/SmallDataScreen.tsx +96 -0
- package/example/src/screens/screens.styles.ts +25 -0
- package/example/src/utils/sampleDataGenerator.ts +32 -0
- package/example/yarn.lock +6368 -0
- package/lefthook.yml +17 -0
- package/lib/commonjs/TreeView.js +13 -3
- package/lib/commonjs/TreeView.js.map +1 -1
- package/lib/commonjs/helpers/expandCollapse.helper.js +88 -21
- package/lib/commonjs/helpers/expandCollapse.helper.js.map +1 -1
- package/lib/commonjs/helpers/toggleCheckbox.helper.js +0 -1
- package/lib/commonjs/helpers/toggleCheckbox.helper.js.map +1 -1
- package/lib/commonjs/utils/usePreviousState.js +20 -0
- package/lib/commonjs/utils/usePreviousState.js.map +1 -0
- package/lib/module/TreeView.js +14 -4
- package/lib/module/TreeView.js.map +1 -1
- package/lib/module/helpers/expandCollapse.helper.js +86 -21
- package/lib/module/helpers/expandCollapse.helper.js.map +1 -1
- package/lib/module/helpers/toggleCheckbox.helper.js +0 -1
- package/lib/module/helpers/toggleCheckbox.helper.js.map +1 -1
- package/lib/module/utils/usePreviousState.js +15 -0
- package/lib/module/utils/usePreviousState.js.map +1 -0
- package/lib/typescript/TreeView.d.ts.map +1 -1
- package/lib/typescript/__mocks__/generateTree.mock.d.ts +17 -0
- package/lib/typescript/__mocks__/generateTree.mock.d.ts.map +1 -0
- package/lib/typescript/__mocks__/zustand.d.ts +3 -0
- package/lib/typescript/__mocks__/zustand.d.ts.map +1 -0
- package/lib/typescript/__tests__/expandCollapse.helper.test.d.ts +2 -0
- package/lib/typescript/__tests__/expandCollapse.helper.test.d.ts.map +1 -0
- package/lib/typescript/__tests__/flattenTree.helper.test.d.ts +2 -0
- package/lib/typescript/__tests__/flattenTree.helper.test.d.ts.map +1 -0
- package/lib/typescript/__tests__/initNodeMap.helper.test.d.ts +2 -0
- package/lib/typescript/__tests__/initNodeMap.helper.test.d.ts.map +1 -0
- package/lib/typescript/__tests__/search.helper.test.d.ts +2 -0
- package/lib/typescript/__tests__/search.helper.test.d.ts.map +1 -0
- package/lib/typescript/__tests__/selectAll.helper.test.d.ts +2 -0
- package/lib/typescript/__tests__/selectAll.helper.test.d.ts.map +1 -0
- package/lib/typescript/__tests__/store.test.d.ts +2 -0
- package/lib/typescript/__tests__/store.test.d.ts.map +1 -0
- package/lib/typescript/__tests__/toggleCheckbox.helper.test.d.ts +2 -0
- package/lib/typescript/__tests__/toggleCheckbox.helper.test.d.ts.map +1 -0
- package/lib/typescript/helpers/expandCollapse.helper.d.ts +12 -0
- package/lib/typescript/helpers/expandCollapse.helper.d.ts.map +1 -1
- package/lib/typescript/types/treeView.types.d.ts +3 -0
- package/lib/typescript/types/treeView.types.d.ts.map +1 -1
- package/lib/typescript/utils/usePreviousState.d.ts +7 -0
- package/lib/typescript/utils/usePreviousState.d.ts.map +1 -0
- package/package.json +5 -3
- package/scripts/bootstrap.js +29 -0
- package/src/TreeView.tsx +25 -4
- package/src/__mocks__/generateTree.mock.ts +125 -0
- package/src/__mocks__/zustand.ts +24 -0
- package/src/__tests__/expandCollapse.helper.test.ts +189 -0
- package/src/__tests__/flattenTree.helper.test.ts +78 -0
- package/src/__tests__/initNodeMap.helper.test.ts +46 -0
- package/src/__tests__/search.helper.test.ts +47 -0
- package/src/__tests__/selectAll.helper.test.ts +233 -0
- package/src/__tests__/store.test.ts +208 -0
- package/src/__tests__/toggleCheckbox.helper.test.ts +124 -0
- package/src/helpers/expandCollapse.helper.ts +82 -21
- package/src/helpers/toggleCheckbox.helper.ts +1 -1
- package/src/types/treeView.types.ts +5 -0
- package/src/utils/usePreviousState.ts +16 -0
- package/tsconfig.build.json +5 -0
- package/tsconfig.json +31 -0
- package/turbo.json +34 -0
- package/yarn.lock +9953 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Resolve react_native_pods.rb with node to allow for hoisting
|
|
2
|
+
require Pod::Executable.execute_command('node', ['-p',
|
|
3
|
+
'require.resolve(
|
|
4
|
+
"react-native/scripts/react_native_pods.rb",
|
|
5
|
+
{paths: [process.argv[1]]},
|
|
6
|
+
)', __dir__]).strip
|
|
7
|
+
|
|
8
|
+
platform :ios, min_ios_version_supported
|
|
9
|
+
prepare_react_native_project!
|
|
10
|
+
|
|
11
|
+
# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set.
|
|
12
|
+
# because `react-native-flipper` depends on (FlipperKit,...) that will be excluded
|
|
13
|
+
#
|
|
14
|
+
# To fix this you can also exclude `react-native-flipper` using a `react-native.config.js`
|
|
15
|
+
# ```js
|
|
16
|
+
# module.exports = {
|
|
17
|
+
# dependencies: {
|
|
18
|
+
# ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}),
|
|
19
|
+
# ```
|
|
20
|
+
flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled
|
|
21
|
+
|
|
22
|
+
linkage = ENV['USE_FRAMEWORKS']
|
|
23
|
+
if linkage != nil
|
|
24
|
+
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
|
|
25
|
+
use_frameworks! :linkage => linkage.to_sym
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
target 'TreeMultiSelectExample' do
|
|
29
|
+
config = use_native_modules!
|
|
30
|
+
|
|
31
|
+
# Flags change depending on the env values.
|
|
32
|
+
flags = get_default_flags()
|
|
33
|
+
|
|
34
|
+
use_react_native!(
|
|
35
|
+
:path => config[:reactNativePath],
|
|
36
|
+
# Hermes is now enabled by default. Disable by setting this flag to false.
|
|
37
|
+
:hermes_enabled => flags[:hermes_enabled],
|
|
38
|
+
:fabric_enabled => flags[:fabric_enabled],
|
|
39
|
+
# Enables Flipper.
|
|
40
|
+
#
|
|
41
|
+
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
|
42
|
+
# you should disable the next line.
|
|
43
|
+
# :flipper_configuration => flipper_config,
|
|
44
|
+
# An absolute path to your application root.
|
|
45
|
+
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
target 'TreeMultiSelectExampleTests' do
|
|
49
|
+
inherit! :complete
|
|
50
|
+
# Pods for testing
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
post_install do |installer|
|
|
54
|
+
# https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
|
|
55
|
+
react_native_post_install(
|
|
56
|
+
installer,
|
|
57
|
+
config[:reactNativePath],
|
|
58
|
+
:mac_catalyst_enabled => false
|
|
59
|
+
)
|
|
60
|
+
__apply_Xcode_12_5_M1_post_install_workaround(installer)
|
|
61
|
+
end
|
|
62
|
+
end
|
|
@@ -0,0 +1,639 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- boost (1.76.0)
|
|
3
|
+
- DoubleConversion (1.1.6)
|
|
4
|
+
- FBLazyVector (0.72.1)
|
|
5
|
+
- FBReactNativeSpec (0.72.1):
|
|
6
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
7
|
+
- RCTRequired (= 0.72.1)
|
|
8
|
+
- RCTTypeSafety (= 0.72.1)
|
|
9
|
+
- React-Core (= 0.72.1)
|
|
10
|
+
- React-jsi (= 0.72.1)
|
|
11
|
+
- ReactCommon/turbomodule/core (= 0.72.1)
|
|
12
|
+
- fmt (6.2.1)
|
|
13
|
+
- glog (0.3.5)
|
|
14
|
+
- hermes-engine (0.72.1):
|
|
15
|
+
- hermes-engine/Pre-built (= 0.72.1)
|
|
16
|
+
- hermes-engine/Pre-built (0.72.1)
|
|
17
|
+
- libevent (2.1.12)
|
|
18
|
+
- RCT-Folly (2021.07.22.00):
|
|
19
|
+
- boost
|
|
20
|
+
- DoubleConversion
|
|
21
|
+
- fmt (~> 6.2.1)
|
|
22
|
+
- glog
|
|
23
|
+
- RCT-Folly/Default (= 2021.07.22.00)
|
|
24
|
+
- RCT-Folly/Default (2021.07.22.00):
|
|
25
|
+
- boost
|
|
26
|
+
- DoubleConversion
|
|
27
|
+
- fmt (~> 6.2.1)
|
|
28
|
+
- glog
|
|
29
|
+
- RCT-Folly/Futures (2021.07.22.00):
|
|
30
|
+
- boost
|
|
31
|
+
- DoubleConversion
|
|
32
|
+
- fmt (~> 6.2.1)
|
|
33
|
+
- glog
|
|
34
|
+
- libevent
|
|
35
|
+
- RCTRequired (0.72.1)
|
|
36
|
+
- RCTTypeSafety (0.72.1):
|
|
37
|
+
- FBLazyVector (= 0.72.1)
|
|
38
|
+
- RCTRequired (= 0.72.1)
|
|
39
|
+
- React-Core (= 0.72.1)
|
|
40
|
+
- React (0.72.1):
|
|
41
|
+
- React-Core (= 0.72.1)
|
|
42
|
+
- React-Core/DevSupport (= 0.72.1)
|
|
43
|
+
- React-Core/RCTWebSocket (= 0.72.1)
|
|
44
|
+
- React-RCTActionSheet (= 0.72.1)
|
|
45
|
+
- React-RCTAnimation (= 0.72.1)
|
|
46
|
+
- React-RCTBlob (= 0.72.1)
|
|
47
|
+
- React-RCTImage (= 0.72.1)
|
|
48
|
+
- React-RCTLinking (= 0.72.1)
|
|
49
|
+
- React-RCTNetwork (= 0.72.1)
|
|
50
|
+
- React-RCTSettings (= 0.72.1)
|
|
51
|
+
- React-RCTText (= 0.72.1)
|
|
52
|
+
- React-RCTVibration (= 0.72.1)
|
|
53
|
+
- React-callinvoker (0.72.1)
|
|
54
|
+
- React-Codegen (0.72.1):
|
|
55
|
+
- DoubleConversion
|
|
56
|
+
- FBReactNativeSpec
|
|
57
|
+
- glog
|
|
58
|
+
- hermes-engine
|
|
59
|
+
- RCT-Folly
|
|
60
|
+
- RCTRequired
|
|
61
|
+
- RCTTypeSafety
|
|
62
|
+
- React-Core
|
|
63
|
+
- React-jsi
|
|
64
|
+
- React-jsiexecutor
|
|
65
|
+
- React-NativeModulesApple
|
|
66
|
+
- React-rncore
|
|
67
|
+
- ReactCommon/turbomodule/bridging
|
|
68
|
+
- ReactCommon/turbomodule/core
|
|
69
|
+
- React-Core (0.72.1):
|
|
70
|
+
- glog
|
|
71
|
+
- hermes-engine
|
|
72
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
73
|
+
- React-Core/Default (= 0.72.1)
|
|
74
|
+
- React-cxxreact
|
|
75
|
+
- React-hermes
|
|
76
|
+
- React-jsi
|
|
77
|
+
- React-jsiexecutor
|
|
78
|
+
- React-perflogger
|
|
79
|
+
- React-runtimeexecutor
|
|
80
|
+
- React-utils
|
|
81
|
+
- SocketRocket (= 0.6.1)
|
|
82
|
+
- Yoga
|
|
83
|
+
- React-Core/CoreModulesHeaders (0.72.1):
|
|
84
|
+
- glog
|
|
85
|
+
- hermes-engine
|
|
86
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
87
|
+
- React-Core/Default
|
|
88
|
+
- React-cxxreact
|
|
89
|
+
- React-hermes
|
|
90
|
+
- React-jsi
|
|
91
|
+
- React-jsiexecutor
|
|
92
|
+
- React-perflogger
|
|
93
|
+
- React-runtimeexecutor
|
|
94
|
+
- React-utils
|
|
95
|
+
- SocketRocket (= 0.6.1)
|
|
96
|
+
- Yoga
|
|
97
|
+
- React-Core/Default (0.72.1):
|
|
98
|
+
- glog
|
|
99
|
+
- hermes-engine
|
|
100
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
101
|
+
- React-cxxreact
|
|
102
|
+
- React-hermes
|
|
103
|
+
- React-jsi
|
|
104
|
+
- React-jsiexecutor
|
|
105
|
+
- React-perflogger
|
|
106
|
+
- React-runtimeexecutor
|
|
107
|
+
- React-utils
|
|
108
|
+
- SocketRocket (= 0.6.1)
|
|
109
|
+
- Yoga
|
|
110
|
+
- React-Core/DevSupport (0.72.1):
|
|
111
|
+
- glog
|
|
112
|
+
- hermes-engine
|
|
113
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
114
|
+
- React-Core/Default (= 0.72.1)
|
|
115
|
+
- React-Core/RCTWebSocket (= 0.72.1)
|
|
116
|
+
- React-cxxreact
|
|
117
|
+
- React-hermes
|
|
118
|
+
- React-jsi
|
|
119
|
+
- React-jsiexecutor
|
|
120
|
+
- React-jsinspector (= 0.72.1)
|
|
121
|
+
- React-perflogger
|
|
122
|
+
- React-runtimeexecutor
|
|
123
|
+
- React-utils
|
|
124
|
+
- SocketRocket (= 0.6.1)
|
|
125
|
+
- Yoga
|
|
126
|
+
- React-Core/RCTActionSheetHeaders (0.72.1):
|
|
127
|
+
- glog
|
|
128
|
+
- hermes-engine
|
|
129
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
130
|
+
- React-Core/Default
|
|
131
|
+
- React-cxxreact
|
|
132
|
+
- React-hermes
|
|
133
|
+
- React-jsi
|
|
134
|
+
- React-jsiexecutor
|
|
135
|
+
- React-perflogger
|
|
136
|
+
- React-runtimeexecutor
|
|
137
|
+
- React-utils
|
|
138
|
+
- SocketRocket (= 0.6.1)
|
|
139
|
+
- Yoga
|
|
140
|
+
- React-Core/RCTAnimationHeaders (0.72.1):
|
|
141
|
+
- glog
|
|
142
|
+
- hermes-engine
|
|
143
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
144
|
+
- React-Core/Default
|
|
145
|
+
- React-cxxreact
|
|
146
|
+
- React-hermes
|
|
147
|
+
- React-jsi
|
|
148
|
+
- React-jsiexecutor
|
|
149
|
+
- React-perflogger
|
|
150
|
+
- React-runtimeexecutor
|
|
151
|
+
- React-utils
|
|
152
|
+
- SocketRocket (= 0.6.1)
|
|
153
|
+
- Yoga
|
|
154
|
+
- React-Core/RCTBlobHeaders (0.72.1):
|
|
155
|
+
- glog
|
|
156
|
+
- hermes-engine
|
|
157
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
158
|
+
- React-Core/Default
|
|
159
|
+
- React-cxxreact
|
|
160
|
+
- React-hermes
|
|
161
|
+
- React-jsi
|
|
162
|
+
- React-jsiexecutor
|
|
163
|
+
- React-perflogger
|
|
164
|
+
- React-runtimeexecutor
|
|
165
|
+
- React-utils
|
|
166
|
+
- SocketRocket (= 0.6.1)
|
|
167
|
+
- Yoga
|
|
168
|
+
- React-Core/RCTImageHeaders (0.72.1):
|
|
169
|
+
- glog
|
|
170
|
+
- hermes-engine
|
|
171
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
172
|
+
- React-Core/Default
|
|
173
|
+
- React-cxxreact
|
|
174
|
+
- React-hermes
|
|
175
|
+
- React-jsi
|
|
176
|
+
- React-jsiexecutor
|
|
177
|
+
- React-perflogger
|
|
178
|
+
- React-runtimeexecutor
|
|
179
|
+
- React-utils
|
|
180
|
+
- SocketRocket (= 0.6.1)
|
|
181
|
+
- Yoga
|
|
182
|
+
- React-Core/RCTLinkingHeaders (0.72.1):
|
|
183
|
+
- glog
|
|
184
|
+
- hermes-engine
|
|
185
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
186
|
+
- React-Core/Default
|
|
187
|
+
- React-cxxreact
|
|
188
|
+
- React-hermes
|
|
189
|
+
- React-jsi
|
|
190
|
+
- React-jsiexecutor
|
|
191
|
+
- React-perflogger
|
|
192
|
+
- React-runtimeexecutor
|
|
193
|
+
- React-utils
|
|
194
|
+
- SocketRocket (= 0.6.1)
|
|
195
|
+
- Yoga
|
|
196
|
+
- React-Core/RCTNetworkHeaders (0.72.1):
|
|
197
|
+
- glog
|
|
198
|
+
- hermes-engine
|
|
199
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
200
|
+
- React-Core/Default
|
|
201
|
+
- React-cxxreact
|
|
202
|
+
- React-hermes
|
|
203
|
+
- React-jsi
|
|
204
|
+
- React-jsiexecutor
|
|
205
|
+
- React-perflogger
|
|
206
|
+
- React-runtimeexecutor
|
|
207
|
+
- React-utils
|
|
208
|
+
- SocketRocket (= 0.6.1)
|
|
209
|
+
- Yoga
|
|
210
|
+
- React-Core/RCTSettingsHeaders (0.72.1):
|
|
211
|
+
- glog
|
|
212
|
+
- hermes-engine
|
|
213
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
214
|
+
- React-Core/Default
|
|
215
|
+
- React-cxxreact
|
|
216
|
+
- React-hermes
|
|
217
|
+
- React-jsi
|
|
218
|
+
- React-jsiexecutor
|
|
219
|
+
- React-perflogger
|
|
220
|
+
- React-runtimeexecutor
|
|
221
|
+
- React-utils
|
|
222
|
+
- SocketRocket (= 0.6.1)
|
|
223
|
+
- Yoga
|
|
224
|
+
- React-Core/RCTTextHeaders (0.72.1):
|
|
225
|
+
- glog
|
|
226
|
+
- hermes-engine
|
|
227
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
228
|
+
- React-Core/Default
|
|
229
|
+
- React-cxxreact
|
|
230
|
+
- React-hermes
|
|
231
|
+
- React-jsi
|
|
232
|
+
- React-jsiexecutor
|
|
233
|
+
- React-perflogger
|
|
234
|
+
- React-runtimeexecutor
|
|
235
|
+
- React-utils
|
|
236
|
+
- SocketRocket (= 0.6.1)
|
|
237
|
+
- Yoga
|
|
238
|
+
- React-Core/RCTVibrationHeaders (0.72.1):
|
|
239
|
+
- glog
|
|
240
|
+
- hermes-engine
|
|
241
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
242
|
+
- React-Core/Default
|
|
243
|
+
- React-cxxreact
|
|
244
|
+
- React-hermes
|
|
245
|
+
- React-jsi
|
|
246
|
+
- React-jsiexecutor
|
|
247
|
+
- React-perflogger
|
|
248
|
+
- React-runtimeexecutor
|
|
249
|
+
- React-utils
|
|
250
|
+
- SocketRocket (= 0.6.1)
|
|
251
|
+
- Yoga
|
|
252
|
+
- React-Core/RCTWebSocket (0.72.1):
|
|
253
|
+
- glog
|
|
254
|
+
- hermes-engine
|
|
255
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
256
|
+
- React-Core/Default (= 0.72.1)
|
|
257
|
+
- React-cxxreact
|
|
258
|
+
- React-hermes
|
|
259
|
+
- React-jsi
|
|
260
|
+
- React-jsiexecutor
|
|
261
|
+
- React-perflogger
|
|
262
|
+
- React-runtimeexecutor
|
|
263
|
+
- React-utils
|
|
264
|
+
- SocketRocket (= 0.6.1)
|
|
265
|
+
- Yoga
|
|
266
|
+
- React-CoreModules (0.72.1):
|
|
267
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
268
|
+
- RCTTypeSafety (= 0.72.1)
|
|
269
|
+
- React-Codegen (= 0.72.1)
|
|
270
|
+
- React-Core/CoreModulesHeaders (= 0.72.1)
|
|
271
|
+
- React-jsi (= 0.72.1)
|
|
272
|
+
- React-RCTBlob
|
|
273
|
+
- React-RCTImage (= 0.72.1)
|
|
274
|
+
- ReactCommon/turbomodule/core (= 0.72.1)
|
|
275
|
+
- SocketRocket (= 0.6.1)
|
|
276
|
+
- React-cxxreact (0.72.1):
|
|
277
|
+
- boost (= 1.76.0)
|
|
278
|
+
- DoubleConversion
|
|
279
|
+
- glog
|
|
280
|
+
- hermes-engine
|
|
281
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
282
|
+
- React-callinvoker (= 0.72.1)
|
|
283
|
+
- React-jsi (= 0.72.1)
|
|
284
|
+
- React-jsinspector (= 0.72.1)
|
|
285
|
+
- React-logger (= 0.72.1)
|
|
286
|
+
- React-perflogger (= 0.72.1)
|
|
287
|
+
- React-runtimeexecutor (= 0.72.1)
|
|
288
|
+
- React-debug (0.72.1)
|
|
289
|
+
- React-hermes (0.72.1):
|
|
290
|
+
- DoubleConversion
|
|
291
|
+
- glog
|
|
292
|
+
- hermes-engine
|
|
293
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
294
|
+
- RCT-Folly/Futures (= 2021.07.22.00)
|
|
295
|
+
- React-cxxreact (= 0.72.1)
|
|
296
|
+
- React-jsi
|
|
297
|
+
- React-jsiexecutor (= 0.72.1)
|
|
298
|
+
- React-jsinspector (= 0.72.1)
|
|
299
|
+
- React-perflogger (= 0.72.1)
|
|
300
|
+
- React-jsi (0.72.1):
|
|
301
|
+
- boost (= 1.76.0)
|
|
302
|
+
- DoubleConversion
|
|
303
|
+
- glog
|
|
304
|
+
- hermes-engine
|
|
305
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
306
|
+
- React-jsiexecutor (0.72.1):
|
|
307
|
+
- DoubleConversion
|
|
308
|
+
- glog
|
|
309
|
+
- hermes-engine
|
|
310
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
311
|
+
- React-cxxreact (= 0.72.1)
|
|
312
|
+
- React-jsi (= 0.72.1)
|
|
313
|
+
- React-perflogger (= 0.72.1)
|
|
314
|
+
- React-jsinspector (0.72.1)
|
|
315
|
+
- React-logger (0.72.1):
|
|
316
|
+
- glog
|
|
317
|
+
- react-native-safe-area-context (4.10.1):
|
|
318
|
+
- React-Core
|
|
319
|
+
- React-NativeModulesApple (0.72.1):
|
|
320
|
+
- hermes-engine
|
|
321
|
+
- React-callinvoker
|
|
322
|
+
- React-Core
|
|
323
|
+
- React-cxxreact
|
|
324
|
+
- React-jsi
|
|
325
|
+
- React-runtimeexecutor
|
|
326
|
+
- ReactCommon/turbomodule/bridging
|
|
327
|
+
- ReactCommon/turbomodule/core
|
|
328
|
+
- React-perflogger (0.72.1)
|
|
329
|
+
- React-RCTActionSheet (0.72.1):
|
|
330
|
+
- React-Core/RCTActionSheetHeaders (= 0.72.1)
|
|
331
|
+
- React-RCTAnimation (0.72.1):
|
|
332
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
333
|
+
- RCTTypeSafety (= 0.72.1)
|
|
334
|
+
- React-Codegen (= 0.72.1)
|
|
335
|
+
- React-Core/RCTAnimationHeaders (= 0.72.1)
|
|
336
|
+
- React-jsi (= 0.72.1)
|
|
337
|
+
- ReactCommon/turbomodule/core (= 0.72.1)
|
|
338
|
+
- React-RCTAppDelegate (0.72.1):
|
|
339
|
+
- RCT-Folly
|
|
340
|
+
- RCTRequired
|
|
341
|
+
- RCTTypeSafety
|
|
342
|
+
- React-Core
|
|
343
|
+
- React-CoreModules
|
|
344
|
+
- React-hermes
|
|
345
|
+
- React-NativeModulesApple
|
|
346
|
+
- React-RCTImage
|
|
347
|
+
- React-RCTNetwork
|
|
348
|
+
- React-runtimescheduler
|
|
349
|
+
- ReactCommon/turbomodule/core
|
|
350
|
+
- React-RCTBlob (0.72.1):
|
|
351
|
+
- hermes-engine
|
|
352
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
353
|
+
- React-Codegen (= 0.72.1)
|
|
354
|
+
- React-Core/RCTBlobHeaders (= 0.72.1)
|
|
355
|
+
- React-Core/RCTWebSocket (= 0.72.1)
|
|
356
|
+
- React-jsi (= 0.72.1)
|
|
357
|
+
- React-RCTNetwork (= 0.72.1)
|
|
358
|
+
- ReactCommon/turbomodule/core (= 0.72.1)
|
|
359
|
+
- React-RCTImage (0.72.1):
|
|
360
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
361
|
+
- RCTTypeSafety (= 0.72.1)
|
|
362
|
+
- React-Codegen (= 0.72.1)
|
|
363
|
+
- React-Core/RCTImageHeaders (= 0.72.1)
|
|
364
|
+
- React-jsi (= 0.72.1)
|
|
365
|
+
- React-RCTNetwork (= 0.72.1)
|
|
366
|
+
- ReactCommon/turbomodule/core (= 0.72.1)
|
|
367
|
+
- React-RCTLinking (0.72.1):
|
|
368
|
+
- React-Codegen (= 0.72.1)
|
|
369
|
+
- React-Core/RCTLinkingHeaders (= 0.72.1)
|
|
370
|
+
- React-jsi (= 0.72.1)
|
|
371
|
+
- ReactCommon/turbomodule/core (= 0.72.1)
|
|
372
|
+
- React-RCTNetwork (0.72.1):
|
|
373
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
374
|
+
- RCTTypeSafety (= 0.72.1)
|
|
375
|
+
- React-Codegen (= 0.72.1)
|
|
376
|
+
- React-Core/RCTNetworkHeaders (= 0.72.1)
|
|
377
|
+
- React-jsi (= 0.72.1)
|
|
378
|
+
- ReactCommon/turbomodule/core (= 0.72.1)
|
|
379
|
+
- React-RCTSettings (0.72.1):
|
|
380
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
381
|
+
- RCTTypeSafety (= 0.72.1)
|
|
382
|
+
- React-Codegen (= 0.72.1)
|
|
383
|
+
- React-Core/RCTSettingsHeaders (= 0.72.1)
|
|
384
|
+
- React-jsi (= 0.72.1)
|
|
385
|
+
- ReactCommon/turbomodule/core (= 0.72.1)
|
|
386
|
+
- React-RCTText (0.72.1):
|
|
387
|
+
- React-Core/RCTTextHeaders (= 0.72.1)
|
|
388
|
+
- React-RCTVibration (0.72.1):
|
|
389
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
390
|
+
- React-Codegen (= 0.72.1)
|
|
391
|
+
- React-Core/RCTVibrationHeaders (= 0.72.1)
|
|
392
|
+
- React-jsi (= 0.72.1)
|
|
393
|
+
- ReactCommon/turbomodule/core (= 0.72.1)
|
|
394
|
+
- React-rncore (0.72.1)
|
|
395
|
+
- React-runtimeexecutor (0.72.1):
|
|
396
|
+
- React-jsi (= 0.72.1)
|
|
397
|
+
- React-runtimescheduler (0.72.1):
|
|
398
|
+
- glog
|
|
399
|
+
- hermes-engine
|
|
400
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
401
|
+
- React-callinvoker
|
|
402
|
+
- React-debug
|
|
403
|
+
- React-jsi
|
|
404
|
+
- React-runtimeexecutor
|
|
405
|
+
- React-utils (0.72.1):
|
|
406
|
+
- glog
|
|
407
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
408
|
+
- React-debug
|
|
409
|
+
- ReactCommon/turbomodule/bridging (0.72.1):
|
|
410
|
+
- DoubleConversion
|
|
411
|
+
- glog
|
|
412
|
+
- hermes-engine
|
|
413
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
414
|
+
- React-callinvoker (= 0.72.1)
|
|
415
|
+
- React-cxxreact (= 0.72.1)
|
|
416
|
+
- React-jsi (= 0.72.1)
|
|
417
|
+
- React-logger (= 0.72.1)
|
|
418
|
+
- React-perflogger (= 0.72.1)
|
|
419
|
+
- ReactCommon/turbomodule/core (0.72.1):
|
|
420
|
+
- DoubleConversion
|
|
421
|
+
- glog
|
|
422
|
+
- hermes-engine
|
|
423
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
424
|
+
- React-callinvoker (= 0.72.1)
|
|
425
|
+
- React-cxxreact (= 0.72.1)
|
|
426
|
+
- React-jsi (= 0.72.1)
|
|
427
|
+
- React-logger (= 0.72.1)
|
|
428
|
+
- React-perflogger (= 0.72.1)
|
|
429
|
+
- RNFlashList (1.6.4):
|
|
430
|
+
- React-Core
|
|
431
|
+
- RNGestureHandler (2.16.1):
|
|
432
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
433
|
+
- React-Core
|
|
434
|
+
- RNScreens (3.31.1):
|
|
435
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
436
|
+
- React-Core
|
|
437
|
+
- React-RCTImage
|
|
438
|
+
- RNVectorIcons (9.2.0):
|
|
439
|
+
- React-Core
|
|
440
|
+
- SocketRocket (0.6.1)
|
|
441
|
+
- Yoga (1.14.0)
|
|
442
|
+
|
|
443
|
+
DEPENDENCIES:
|
|
444
|
+
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
445
|
+
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
446
|
+
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
447
|
+
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
|
448
|
+
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
449
|
+
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
|
|
450
|
+
- libevent (~> 2.1.12)
|
|
451
|
+
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
452
|
+
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
|
453
|
+
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
454
|
+
- React (from `../node_modules/react-native/`)
|
|
455
|
+
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
456
|
+
- React-Codegen (from `build/generated/ios`)
|
|
457
|
+
- React-Core (from `../node_modules/react-native/`)
|
|
458
|
+
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
459
|
+
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
460
|
+
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
461
|
+
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
|
|
462
|
+
- React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
|
|
463
|
+
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
464
|
+
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
465
|
+
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
|
466
|
+
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
467
|
+
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
|
468
|
+
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
|
469
|
+
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
470
|
+
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
471
|
+
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
472
|
+
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
|
|
473
|
+
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
474
|
+
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
475
|
+
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
476
|
+
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
477
|
+
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
478
|
+
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
479
|
+
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
480
|
+
- React-rncore (from `../node_modules/react-native/ReactCommon`)
|
|
481
|
+
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
482
|
+
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
|
483
|
+
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
|
484
|
+
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
485
|
+
- "RNFlashList (from `../node_modules/@shopify/flash-list`)"
|
|
486
|
+
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
|
|
487
|
+
- RNScreens (from `../node_modules/react-native-screens`)
|
|
488
|
+
- RNVectorIcons (from `../node_modules/react-native-vector-icons`)
|
|
489
|
+
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
490
|
+
|
|
491
|
+
SPEC REPOS:
|
|
492
|
+
trunk:
|
|
493
|
+
- fmt
|
|
494
|
+
- libevent
|
|
495
|
+
- SocketRocket
|
|
496
|
+
|
|
497
|
+
EXTERNAL SOURCES:
|
|
498
|
+
boost:
|
|
499
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
500
|
+
DoubleConversion:
|
|
501
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
502
|
+
FBLazyVector:
|
|
503
|
+
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
504
|
+
FBReactNativeSpec:
|
|
505
|
+
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
|
506
|
+
glog:
|
|
507
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
508
|
+
hermes-engine:
|
|
509
|
+
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
|
|
510
|
+
:tag: hermes-2023-03-20-RNv0.72.0-49794cfc7c81fb8f69fd60c3bbf85a7480cc5a77
|
|
511
|
+
RCT-Folly:
|
|
512
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
513
|
+
RCTRequired:
|
|
514
|
+
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
|
515
|
+
RCTTypeSafety:
|
|
516
|
+
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
517
|
+
React:
|
|
518
|
+
:path: "../node_modules/react-native/"
|
|
519
|
+
React-callinvoker:
|
|
520
|
+
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
521
|
+
React-Codegen:
|
|
522
|
+
:path: build/generated/ios
|
|
523
|
+
React-Core:
|
|
524
|
+
:path: "../node_modules/react-native/"
|
|
525
|
+
React-CoreModules:
|
|
526
|
+
:path: "../node_modules/react-native/React/CoreModules"
|
|
527
|
+
React-cxxreact:
|
|
528
|
+
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
529
|
+
React-debug:
|
|
530
|
+
:path: "../node_modules/react-native/ReactCommon/react/debug"
|
|
531
|
+
React-hermes:
|
|
532
|
+
:path: "../node_modules/react-native/ReactCommon/hermes"
|
|
533
|
+
React-jsi:
|
|
534
|
+
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
535
|
+
React-jsiexecutor:
|
|
536
|
+
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
537
|
+
React-jsinspector:
|
|
538
|
+
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
|
539
|
+
React-logger:
|
|
540
|
+
:path: "../node_modules/react-native/ReactCommon/logger"
|
|
541
|
+
react-native-safe-area-context:
|
|
542
|
+
:path: "../node_modules/react-native-safe-area-context"
|
|
543
|
+
React-NativeModulesApple:
|
|
544
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
|
|
545
|
+
React-perflogger:
|
|
546
|
+
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
547
|
+
React-RCTActionSheet:
|
|
548
|
+
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
549
|
+
React-RCTAnimation:
|
|
550
|
+
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
551
|
+
React-RCTAppDelegate:
|
|
552
|
+
:path: "../node_modules/react-native/Libraries/AppDelegate"
|
|
553
|
+
React-RCTBlob:
|
|
554
|
+
:path: "../node_modules/react-native/Libraries/Blob"
|
|
555
|
+
React-RCTImage:
|
|
556
|
+
:path: "../node_modules/react-native/Libraries/Image"
|
|
557
|
+
React-RCTLinking:
|
|
558
|
+
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
559
|
+
React-RCTNetwork:
|
|
560
|
+
:path: "../node_modules/react-native/Libraries/Network"
|
|
561
|
+
React-RCTSettings:
|
|
562
|
+
:path: "../node_modules/react-native/Libraries/Settings"
|
|
563
|
+
React-RCTText:
|
|
564
|
+
:path: "../node_modules/react-native/Libraries/Text"
|
|
565
|
+
React-RCTVibration:
|
|
566
|
+
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
567
|
+
React-rncore:
|
|
568
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
569
|
+
React-runtimeexecutor:
|
|
570
|
+
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
571
|
+
React-runtimescheduler:
|
|
572
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
|
|
573
|
+
React-utils:
|
|
574
|
+
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
|
575
|
+
ReactCommon:
|
|
576
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
577
|
+
RNFlashList:
|
|
578
|
+
:path: "../node_modules/@shopify/flash-list"
|
|
579
|
+
RNGestureHandler:
|
|
580
|
+
:path: "../node_modules/react-native-gesture-handler"
|
|
581
|
+
RNScreens:
|
|
582
|
+
:path: "../node_modules/react-native-screens"
|
|
583
|
+
RNVectorIcons:
|
|
584
|
+
:path: "../node_modules/react-native-vector-icons"
|
|
585
|
+
Yoga:
|
|
586
|
+
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
587
|
+
|
|
588
|
+
SPEC CHECKSUMS:
|
|
589
|
+
boost: 57d2868c099736d80fcd648bf211b4431e51a558
|
|
590
|
+
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
|
|
591
|
+
FBLazyVector: 55cd4593d570bd9e5e227488d637ce6a9581ce51
|
|
592
|
+
FBReactNativeSpec: 799b0e1a1561699cd0e424e24fe5624da38402f0
|
|
593
|
+
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
594
|
+
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
|
|
595
|
+
hermes-engine: 9df83855a0fd15ef8eb61694652bae636b0c466e
|
|
596
|
+
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
|
597
|
+
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
|
|
598
|
+
RCTRequired: c52ee8fb2b35c1b54031dd8e92d88ad4dba8f2ce
|
|
599
|
+
RCTTypeSafety: 75fa444becadf0ebfa0a456b8c64560c7c89c7df
|
|
600
|
+
React: 3e5b3962f27b7334eaf5517a35b3434503df35ad
|
|
601
|
+
React-callinvoker: c3a225610efe0caadac78da53b6fe78e53eb2b03
|
|
602
|
+
React-Codegen: bba20685e5c1515f8ecb289bd9770835a1338125
|
|
603
|
+
React-Core: 6f6564ea4c5fc118757c945b6359a36aaea86216
|
|
604
|
+
React-CoreModules: ab635016811b610a93e873485f6f900ce0582192
|
|
605
|
+
React-cxxreact: f82f0f1832606fabb9e8c9d61c4230704a3d2d2f
|
|
606
|
+
React-debug: 8aa2bd54b0f0011049300ce3339b0e51254ef3b5
|
|
607
|
+
React-hermes: f076cb5f7351d6cc1600125bef3259ea880460fb
|
|
608
|
+
React-jsi: 9f381c8594161b2328b93cd3ba5d0bcfcd1e093a
|
|
609
|
+
React-jsiexecutor: 184eae1ecdedc7a083194bd9ff809c93f08fd34c
|
|
610
|
+
React-jsinspector: d0b5bfd1085599265f4212034321e829bdf83cc0
|
|
611
|
+
React-logger: b8103c9b04e707b50cdd2b1aeb382483900cbb37
|
|
612
|
+
react-native-safe-area-context: dcab599c527c2d7de2d76507a523d20a0b83823d
|
|
613
|
+
React-NativeModulesApple: 4f31a812364443cee6ef768d256c594ad3b20f53
|
|
614
|
+
React-perflogger: 3d501f34c8d4b10cb75f348e43591765788525ad
|
|
615
|
+
React-RCTActionSheet: f5335572c979198c0c3daff67b07bd1ad8370c1d
|
|
616
|
+
React-RCTAnimation: 5d0d31a4f9c49a70f93f32e4da098fb49b5ae0b3
|
|
617
|
+
React-RCTAppDelegate: 01ddbdeb01b7cefa932cb66a17299d60620e820d
|
|
618
|
+
React-RCTBlob: 280d2605ba10b8f2282f1e8a849584368577251a
|
|
619
|
+
React-RCTImage: e15d22db53406401cdd1407ce51080a66a9c7ed4
|
|
620
|
+
React-RCTLinking: 39815800ec79d6fb15e6329244d195ebeabf7541
|
|
621
|
+
React-RCTNetwork: 2a6548e13d2577b112d4250ac5be74ae62e1e86b
|
|
622
|
+
React-RCTSettings: a76aee44d5398144646be146c334b15c90ad9582
|
|
623
|
+
React-RCTText: afad390f3838f210c2bc9e1a19bb048003b2a771
|
|
624
|
+
React-RCTVibration: 29bbaa5c57c02dc036d7e557584b492000b1d3e7
|
|
625
|
+
React-rncore: 50966ce412d63bee9ffe5c98249857c23870a3c4
|
|
626
|
+
React-runtimeexecutor: d129f2b53d61298093d7c7d8ebfafa664f911ce6
|
|
627
|
+
React-runtimescheduler: 67707a955b9ecc628cc38bdc721fbc498910f0fd
|
|
628
|
+
React-utils: 0a70ea97d4e2749f336b450c082905be1d389435
|
|
629
|
+
ReactCommon: e593d19c9e271a6da4d0bd7f13b28cfeae5d164b
|
|
630
|
+
RNFlashList: b521ebdd7f9352673817f1d98e8bdc0c8cf8545b
|
|
631
|
+
RNGestureHandler: 83e5f2116076f0402da654c0541f7fca20d77775
|
|
632
|
+
RNScreens: 93ae3be2f119d955620f9bbb39ad372adb53b7a9
|
|
633
|
+
RNVectorIcons: fcc2f6cb32f5735b586e66d14103a74ce6ad61f8
|
|
634
|
+
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
|
|
635
|
+
Yoga: 65286bb6a07edce5e4fe8c90774da977ae8fc009
|
|
636
|
+
|
|
637
|
+
PODFILE CHECKSUM: 724628ab4c479b51512d6556b947334166b91272
|
|
638
|
+
|
|
639
|
+
COCOAPODS: 1.15.2
|