mirror of
https://github.com/zhigang1992/react-native-chat-ui.git
synced 2026-01-12 17:42:19 +08:00
Update dependencies
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
||||
- name: Setup Node.js environment
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 14.x
|
||||
node-version: 16.x
|
||||
|
||||
- name: Restore cache
|
||||
id: cache
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -28,6 +28,7 @@ build/
|
||||
.gradle
|
||||
local.properties
|
||||
*.iml
|
||||
*.hprof
|
||||
/android/gradlew
|
||||
/android/gradlew.bat
|
||||
/android/gradle/
|
||||
|
||||
@@ -86,9 +86,9 @@ const App = () => {
|
||||
author: user,
|
||||
createdAt: Date.now(),
|
||||
id: uuidv4(),
|
||||
mimeType: response.type,
|
||||
mimeType: response.type ?? undefined,
|
||||
name: response.name,
|
||||
size: response.size,
|
||||
size: response.size ?? 0,
|
||||
type: 'file',
|
||||
uri: response.uri,
|
||||
}
|
||||
@@ -247,9 +247,9 @@ const App = () => {
|
||||
author: user,
|
||||
createdAt: Date.now(),
|
||||
id: uuidv4(),
|
||||
mimeType: response.type,
|
||||
mimeType: response.type ?? undefined,
|
||||
name: response.name,
|
||||
size: response.size,
|
||||
size: response.size ?? 0,
|
||||
type: 'file',
|
||||
uri: response.uri,
|
||||
}
|
||||
|
||||
1
example/.gitignore
vendored
1
example/.gitignore
vendored
@@ -28,6 +28,7 @@ build/
|
||||
.gradle
|
||||
local.properties
|
||||
*.iml
|
||||
*.hprof
|
||||
|
||||
# node.js
|
||||
#
|
||||
|
||||
@@ -121,6 +121,11 @@ def jscFlavor = 'org.webkit:android-jsc:+'
|
||||
*/
|
||||
def enableHermes = project.ext.react.get('enableHermes', false);
|
||||
|
||||
/**
|
||||
* Architectures to build native code for in debug.
|
||||
*/
|
||||
def nativeArchitectures = project.getProperties().get("reactNativeDebugArchitectures")
|
||||
|
||||
android {
|
||||
ndkVersion rootProject.ext.ndkVersion
|
||||
|
||||
@@ -152,6 +157,11 @@ android {
|
||||
buildTypes {
|
||||
debug {
|
||||
signingConfig signingConfigs.debug
|
||||
if (nativeArchitectures) {
|
||||
ndk {
|
||||
abiFilters nativeArchitectures.split(',')
|
||||
}
|
||||
}
|
||||
}
|
||||
release {
|
||||
// Caution! In production, you need to generate your own keystore file.
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="android:textColor">#000000</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -6,8 +6,8 @@ buildscript {
|
||||
minSdkVersion = 21
|
||||
compileSdkVersion = 30
|
||||
targetSdkVersion = 30
|
||||
kotlinVersion = '1.5.30'
|
||||
ndkVersion = '23.0.7599858'
|
||||
kotlinVersion = '1.5.31'
|
||||
ndkVersion = '21.4.7075529'
|
||||
}
|
||||
repositories {
|
||||
google()
|
||||
|
||||
@@ -25,4 +25,4 @@ android.useAndroidX=true
|
||||
android.enableJetifier=true
|
||||
|
||||
# Version of flipper SDK to use with React Native
|
||||
FLIPPER_VERSION=0.105.0
|
||||
FLIPPER_VERSION=0.99.0
|
||||
|
||||
@@ -16,9 +16,10 @@ target 'example' do
|
||||
#
|
||||
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
||||
# you should disable the next line.
|
||||
use_flipper!({ 'Flipper' => '0.105.0' })
|
||||
use_flipper!()
|
||||
|
||||
post_install do |installer|
|
||||
react_native_post_install(installer)
|
||||
__apply_Xcode_12_5_M1_post_install_workaround(installer)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
PODS:
|
||||
- boost-for-react-native (1.63.0)
|
||||
- boost (1.76.0)
|
||||
- CocoaAsyncSocket (7.6.5)
|
||||
- DoubleConversion (1.1.6)
|
||||
- FBLazyVector (0.65.1)
|
||||
- FBReactNativeSpec (0.65.1):
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCTRequired (= 0.65.1)
|
||||
- RCTTypeSafety (= 0.65.1)
|
||||
- React-Core (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (= 0.65.1)
|
||||
- Flipper (0.105.0):
|
||||
- FBLazyVector (0.66.1)
|
||||
- FBReactNativeSpec (0.66.1):
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTRequired (= 0.66.1)
|
||||
- RCTTypeSafety (= 0.66.1)
|
||||
- React-Core (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (= 0.66.1)
|
||||
- Flipper (0.99.0):
|
||||
- Flipper-Folly (~> 2.6)
|
||||
- Flipper-RSocket (~> 1.4)
|
||||
- Flipper-Boost-iOSX (1.76.0.1.11)
|
||||
@@ -27,320 +27,324 @@ PODS:
|
||||
- Flipper-PeerTalk (0.0.4)
|
||||
- Flipper-RSocket (1.4.3):
|
||||
- Flipper-Folly (~> 2.6)
|
||||
- FlipperKit (0.105.0):
|
||||
- FlipperKit/Core (= 0.105.0)
|
||||
- FlipperKit/Core (0.105.0):
|
||||
- Flipper (~> 0.105.0)
|
||||
- FlipperKit (0.99.0):
|
||||
- FlipperKit/Core (= 0.99.0)
|
||||
- FlipperKit/Core (0.99.0):
|
||||
- Flipper (~> 0.99.0)
|
||||
- FlipperKit/CppBridge
|
||||
- FlipperKit/FBCxxFollyDynamicConvert
|
||||
- FlipperKit/FBDefines
|
||||
- FlipperKit/FKPortForwarding
|
||||
- FlipperKit/CppBridge (0.105.0):
|
||||
- Flipper (~> 0.105.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (0.105.0):
|
||||
- FlipperKit/CppBridge (0.99.0):
|
||||
- Flipper (~> 0.99.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (0.99.0):
|
||||
- Flipper-Folly (~> 2.6)
|
||||
- FlipperKit/FBDefines (0.105.0)
|
||||
- FlipperKit/FKPortForwarding (0.105.0):
|
||||
- FlipperKit/FBDefines (0.99.0)
|
||||
- FlipperKit/FKPortForwarding (0.99.0):
|
||||
- CocoaAsyncSocket (~> 7.6)
|
||||
- Flipper-PeerTalk (~> 0.0.4)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (0.105.0)
|
||||
- FlipperKit/FlipperKitLayoutHelpers (0.105.0):
|
||||
- FlipperKit/FlipperKitHighlightOverlay (0.99.0)
|
||||
- FlipperKit/FlipperKitLayoutHelpers (0.99.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitHighlightOverlay
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.105.0):
|
||||
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.99.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitHighlightOverlay
|
||||
- FlipperKit/FlipperKitLayoutHelpers
|
||||
- YogaKit (~> 1.18)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (0.105.0):
|
||||
- FlipperKit/FlipperKitLayoutPlugin (0.99.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitHighlightOverlay
|
||||
- FlipperKit/FlipperKitLayoutHelpers
|
||||
- FlipperKit/FlipperKitLayoutIOSDescriptors
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||
- YogaKit (~> 1.18)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.105.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (0.105.0):
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.99.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (0.99.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitReactPlugin (0.105.0):
|
||||
- FlipperKit/FlipperKitReactPlugin (0.99.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.105.0):
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.99.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/SKIOSNetworkPlugin (0.105.0):
|
||||
- FlipperKit/SKIOSNetworkPlugin (0.99.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitNetworkPlugin
|
||||
- fmt (6.2.1)
|
||||
- glog (0.3.5)
|
||||
- libevent (2.1.12)
|
||||
- OpenSSL-Universal (1.1.180)
|
||||
- RCT-Folly (2021.04.26.00):
|
||||
- boost-for-react-native
|
||||
- RCT-Folly (2021.06.28.00-v2):
|
||||
- boost
|
||||
- DoubleConversion
|
||||
- fmt (~> 6.2.1)
|
||||
- glog
|
||||
- RCT-Folly/Default (= 2021.04.26.00)
|
||||
- RCT-Folly/Default (2021.04.26.00):
|
||||
- boost-for-react-native
|
||||
- RCT-Folly/Default (= 2021.06.28.00-v2)
|
||||
- RCT-Folly/Default (2021.06.28.00-v2):
|
||||
- boost
|
||||
- DoubleConversion
|
||||
- fmt (~> 6.2.1)
|
||||
- glog
|
||||
- RCTRequired (0.65.1)
|
||||
- RCTTypeSafety (0.65.1):
|
||||
- FBLazyVector (= 0.65.1)
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCTRequired (= 0.65.1)
|
||||
- React-Core (= 0.65.1)
|
||||
- React (0.65.1):
|
||||
- React-Core (= 0.65.1)
|
||||
- React-Core/DevSupport (= 0.65.1)
|
||||
- React-Core/RCTWebSocket (= 0.65.1)
|
||||
- React-RCTActionSheet (= 0.65.1)
|
||||
- React-RCTAnimation (= 0.65.1)
|
||||
- React-RCTBlob (= 0.65.1)
|
||||
- React-RCTImage (= 0.65.1)
|
||||
- React-RCTLinking (= 0.65.1)
|
||||
- React-RCTNetwork (= 0.65.1)
|
||||
- React-RCTSettings (= 0.65.1)
|
||||
- React-RCTText (= 0.65.1)
|
||||
- React-RCTVibration (= 0.65.1)
|
||||
- React-callinvoker (0.65.1)
|
||||
- React-Core (0.65.1):
|
||||
- RCTRequired (0.66.1)
|
||||
- RCTTypeSafety (0.66.1):
|
||||
- FBLazyVector (= 0.66.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTRequired (= 0.66.1)
|
||||
- React-Core (= 0.66.1)
|
||||
- React (0.66.1):
|
||||
- React-Core (= 0.66.1)
|
||||
- React-Core/DevSupport (= 0.66.1)
|
||||
- React-Core/RCTWebSocket (= 0.66.1)
|
||||
- React-RCTActionSheet (= 0.66.1)
|
||||
- React-RCTAnimation (= 0.66.1)
|
||||
- React-RCTBlob (= 0.66.1)
|
||||
- React-RCTImage (= 0.66.1)
|
||||
- React-RCTLinking (= 0.66.1)
|
||||
- React-RCTNetwork (= 0.66.1)
|
||||
- React-RCTSettings (= 0.66.1)
|
||||
- React-RCTText (= 0.66.1)
|
||||
- React-RCTVibration (= 0.66.1)
|
||||
- React-callinvoker (0.66.1)
|
||||
- React-Core (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-Core/Default (= 0.65.1)
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default (= 0.66.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/CoreModulesHeaders (0.65.1):
|
||||
- React-Core/CoreModulesHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/Default (0.65.1):
|
||||
- React-Core/Default (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/DevSupport (0.65.1):
|
||||
- React-Core/DevSupport (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-Core/Default (= 0.65.1)
|
||||
- React-Core/RCTWebSocket (= 0.65.1)
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-jsinspector (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default (= 0.66.1)
|
||||
- React-Core/RCTWebSocket (= 0.66.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-jsinspector (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTActionSheetHeaders (0.65.1):
|
||||
- React-Core/RCTActionSheetHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTAnimationHeaders (0.65.1):
|
||||
- React-Core/RCTAnimationHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTBlobHeaders (0.65.1):
|
||||
- React-Core/RCTBlobHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTImageHeaders (0.65.1):
|
||||
- React-Core/RCTImageHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTLinkingHeaders (0.65.1):
|
||||
- React-Core/RCTLinkingHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTNetworkHeaders (0.65.1):
|
||||
- React-Core/RCTNetworkHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTSettingsHeaders (0.65.1):
|
||||
- React-Core/RCTSettingsHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTTextHeaders (0.65.1):
|
||||
- React-Core/RCTTextHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTVibrationHeaders (0.65.1):
|
||||
- React-Core/RCTVibrationHeaders (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-Core/RCTWebSocket (0.65.1):
|
||||
- React-Core/RCTWebSocket (0.66.1):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-Core/Default (= 0.65.1)
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsiexecutor (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default (= 0.66.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsiexecutor (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- Yoga
|
||||
- React-CoreModules (0.65.1):
|
||||
- FBReactNativeSpec (= 0.65.1)
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCTTypeSafety (= 0.65.1)
|
||||
- React-Core/CoreModulesHeaders (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-RCTImage (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (= 0.65.1)
|
||||
- React-cxxreact (0.65.1):
|
||||
- boost-for-react-native (= 1.63.0)
|
||||
- React-CoreModules (0.66.1):
|
||||
- FBReactNativeSpec (= 0.66.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.1)
|
||||
- React-Core/CoreModulesHeaders (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-RCTImage (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (= 0.66.1)
|
||||
- React-cxxreact (0.66.1):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-callinvoker (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-jsinspector (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-runtimeexecutor (= 0.65.1)
|
||||
- React-jsi (0.65.1):
|
||||
- boost-for-react-native (= 1.63.0)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-callinvoker (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-jsinspector (= 0.66.1)
|
||||
- React-logger (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- React-runtimeexecutor (= 0.66.1)
|
||||
- React-jsi (0.66.1):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-jsi/Default (= 0.65.1)
|
||||
- React-jsi/Default (0.65.1):
|
||||
- boost-for-react-native (= 1.63.0)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-jsi/Default (= 0.66.1)
|
||||
- React-jsi/Default (0.66.1):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-jsiexecutor (0.65.1):
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-jsiexecutor (0.66.1):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- React-jsinspector (0.65.1)
|
||||
- react-native-document-picker (6.0.4):
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- React-jsinspector (0.66.1)
|
||||
- React-logger (0.66.1):
|
||||
- glog
|
||||
- react-native-document-picker (7.1.1):
|
||||
- React-Core
|
||||
- react-native-get-random-values (1.7.0):
|
||||
- React-Core
|
||||
- react-native-image-picker (4.0.6):
|
||||
- react-native-image-picker (4.1.2):
|
||||
- React-Core
|
||||
- react-native-safe-area-context (3.3.2):
|
||||
- React-Core
|
||||
- React-perflogger (0.65.1)
|
||||
- React-RCTActionSheet (0.65.1):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.65.1)
|
||||
- React-RCTAnimation (0.65.1):
|
||||
- FBReactNativeSpec (= 0.65.1)
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCTTypeSafety (= 0.65.1)
|
||||
- React-Core/RCTAnimationHeaders (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (= 0.65.1)
|
||||
- React-RCTBlob (0.65.1):
|
||||
- FBReactNativeSpec (= 0.65.1)
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-Core/RCTBlobHeaders (= 0.65.1)
|
||||
- React-Core/RCTWebSocket (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-RCTNetwork (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (= 0.65.1)
|
||||
- React-RCTImage (0.65.1):
|
||||
- FBReactNativeSpec (= 0.65.1)
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCTTypeSafety (= 0.65.1)
|
||||
- React-Core/RCTImageHeaders (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-RCTNetwork (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (= 0.65.1)
|
||||
- React-RCTLinking (0.65.1):
|
||||
- FBReactNativeSpec (= 0.65.1)
|
||||
- React-Core/RCTLinkingHeaders (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (= 0.65.1)
|
||||
- React-RCTNetwork (0.65.1):
|
||||
- FBReactNativeSpec (= 0.65.1)
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCTTypeSafety (= 0.65.1)
|
||||
- React-Core/RCTNetworkHeaders (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (= 0.65.1)
|
||||
- React-RCTSettings (0.65.1):
|
||||
- FBReactNativeSpec (= 0.65.1)
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- RCTTypeSafety (= 0.65.1)
|
||||
- React-Core/RCTSettingsHeaders (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (= 0.65.1)
|
||||
- React-RCTText (0.65.1):
|
||||
- React-Core/RCTTextHeaders (= 0.65.1)
|
||||
- React-RCTVibration (0.65.1):
|
||||
- FBReactNativeSpec (= 0.65.1)
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-Core/RCTVibrationHeaders (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (= 0.65.1)
|
||||
- React-runtimeexecutor (0.65.1):
|
||||
- React-jsi (= 0.65.1)
|
||||
- ReactCommon/turbomodule/core (0.65.1):
|
||||
- React-perflogger (0.66.1)
|
||||
- React-RCTActionSheet (0.66.1):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.66.1)
|
||||
- React-RCTAnimation (0.66.1):
|
||||
- FBReactNativeSpec (= 0.66.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.1)
|
||||
- React-Core/RCTAnimationHeaders (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (= 0.66.1)
|
||||
- React-RCTBlob (0.66.1):
|
||||
- FBReactNativeSpec (= 0.66.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/RCTBlobHeaders (= 0.66.1)
|
||||
- React-Core/RCTWebSocket (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-RCTNetwork (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (= 0.66.1)
|
||||
- React-RCTImage (0.66.1):
|
||||
- FBReactNativeSpec (= 0.66.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.1)
|
||||
- React-Core/RCTImageHeaders (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-RCTNetwork (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (= 0.66.1)
|
||||
- React-RCTLinking (0.66.1):
|
||||
- FBReactNativeSpec (= 0.66.1)
|
||||
- React-Core/RCTLinkingHeaders (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (= 0.66.1)
|
||||
- React-RCTNetwork (0.66.1):
|
||||
- FBReactNativeSpec (= 0.66.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.1)
|
||||
- React-Core/RCTNetworkHeaders (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (= 0.66.1)
|
||||
- React-RCTSettings (0.66.1):
|
||||
- FBReactNativeSpec (= 0.66.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.1)
|
||||
- React-Core/RCTSettingsHeaders (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (= 0.66.1)
|
||||
- React-RCTText (0.66.1):
|
||||
- React-Core/RCTTextHeaders (= 0.66.1)
|
||||
- React-RCTVibration (0.66.1):
|
||||
- FBReactNativeSpec (= 0.66.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/RCTVibrationHeaders (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (= 0.66.1)
|
||||
- React-runtimeexecutor (0.66.1):
|
||||
- React-jsi (= 0.66.1)
|
||||
- ReactCommon/turbomodule/core (0.66.1):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.04.26.00)
|
||||
- React-callinvoker (= 0.65.1)
|
||||
- React-Core (= 0.65.1)
|
||||
- React-cxxreact (= 0.65.1)
|
||||
- React-jsi (= 0.65.1)
|
||||
- React-perflogger (= 0.65.1)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-callinvoker (= 0.66.1)
|
||||
- React-Core (= 0.66.1)
|
||||
- React-cxxreact (= 0.66.1)
|
||||
- React-jsi (= 0.66.1)
|
||||
- React-logger (= 0.66.1)
|
||||
- React-perflogger (= 0.66.1)
|
||||
- RNFileViewer (2.1.4):
|
||||
- React-Core
|
||||
- Yoga (1.14.0)
|
||||
@@ -348,10 +352,11 @@ PODS:
|
||||
- Yoga (~> 1.14)
|
||||
|
||||
DEPENDENCIES:
|
||||
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
||||
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
||||
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
||||
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
||||
- Flipper (= 0.105.0)
|
||||
- Flipper (= 0.99.0)
|
||||
- Flipper-Boost-iOSX (= 1.76.0.1.11)
|
||||
- Flipper-DoubleConversion (= 3.1.7)
|
||||
- Flipper-Fmt (= 7.1.7)
|
||||
@@ -359,19 +364,19 @@ DEPENDENCIES:
|
||||
- Flipper-Glog (= 0.3.6)
|
||||
- Flipper-PeerTalk (= 0.0.4)
|
||||
- Flipper-RSocket (= 1.4.3)
|
||||
- FlipperKit (= 0.105.0)
|
||||
- FlipperKit/Core (= 0.105.0)
|
||||
- FlipperKit/CppBridge (= 0.105.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (= 0.105.0)
|
||||
- FlipperKit/FBDefines (= 0.105.0)
|
||||
- FlipperKit/FKPortForwarding (= 0.105.0)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (= 0.105.0)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (= 0.105.0)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.105.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (= 0.105.0)
|
||||
- FlipperKit/FlipperKitReactPlugin (= 0.105.0)
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.105.0)
|
||||
- FlipperKit/SKIOSNetworkPlugin (= 0.105.0)
|
||||
- FlipperKit (= 0.99.0)
|
||||
- FlipperKit/Core (= 0.99.0)
|
||||
- FlipperKit/CppBridge (= 0.99.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (= 0.99.0)
|
||||
- FlipperKit/FBDefines (= 0.99.0)
|
||||
- FlipperKit/FKPortForwarding (= 0.99.0)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (= 0.99.0)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (= 0.99.0)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.99.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (= 0.99.0)
|
||||
- FlipperKit/FlipperKitReactPlugin (= 0.99.0)
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.99.0)
|
||||
- FlipperKit/SKIOSNetworkPlugin (= 0.99.0)
|
||||
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
||||
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
||||
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
||||
@@ -386,6 +391,7 @@ DEPENDENCIES:
|
||||
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
||||
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
||||
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
||||
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
||||
- react-native-document-picker (from `../node_modules/react-native-document-picker`)
|
||||
- react-native-get-random-values (from `../node_modules/react-native-get-random-values`)
|
||||
- react-native-image-picker (from `../node_modules/react-native-image-picker`)
|
||||
@@ -407,7 +413,6 @@ DEPENDENCIES:
|
||||
|
||||
SPEC REPOS:
|
||||
trunk:
|
||||
- boost-for-react-native
|
||||
- CocoaAsyncSocket
|
||||
- Flipper
|
||||
- Flipper-Boost-iOSX
|
||||
@@ -424,6 +429,8 @@ SPEC REPOS:
|
||||
- YogaKit
|
||||
|
||||
EXTERNAL SOURCES:
|
||||
boost:
|
||||
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
||||
DoubleConversion:
|
||||
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
||||
FBLazyVector:
|
||||
@@ -454,6 +461,8 @@ EXTERNAL SOURCES:
|
||||
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
||||
React-jsinspector:
|
||||
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
||||
React-logger:
|
||||
:path: "../node_modules/react-native/ReactCommon/logger"
|
||||
react-native-document-picker:
|
||||
:path: "../node_modules/react-native-document-picker"
|
||||
react-native-get-random-values:
|
||||
@@ -492,12 +501,12 @@ EXTERNAL SOURCES:
|
||||
:path: "../node_modules/react-native/ReactCommon/yoga"
|
||||
|
||||
SPEC CHECKSUMS:
|
||||
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
|
||||
boost: a7c83b31436843459a1961bfd74b96033dc77234
|
||||
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
||||
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
|
||||
FBLazyVector: 33c82491102f20ecddb6c6a2c273696ace3191e0
|
||||
FBReactNativeSpec: df8f81d2a7541ee6755a047b398a5cb5a72acd0e
|
||||
Flipper: 661539922ab3878f6cc78356be4fdcbd8b60563b
|
||||
FBLazyVector: 500821d196c3d1bd10e7e828bc93ce075234080f
|
||||
FBReactNativeSpec: 74c869e2cffa2ffec685cd1bac6788c021da6005
|
||||
Flipper: 30e8eeeed6abdc98edaf32af0cda2f198be4b733
|
||||
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
|
||||
Flipper-DoubleConversion: 57ffbe81ef95306cc9e69c4aa3aeeeeb58a6a28c
|
||||
Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
|
||||
@@ -505,42 +514,43 @@ SPEC CHECKSUMS:
|
||||
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
|
||||
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
||||
Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
|
||||
FlipperKit: 059e4269afdca0ba6bb41314bfd2d621c0dece8d
|
||||
FlipperKit: d8d346844eca5d9120c17d441a2f38596e8ed2b9
|
||||
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
||||
glog: 5337263514dd6f09803962437687240c5dc39aa4
|
||||
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
||||
OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
|
||||
RCT-Folly: 0dd9e1eb86348ecab5ba76f910b56f4b5fef3c46
|
||||
RCTRequired: 6cf071ab2adfd769014b3d94373744ee6e789530
|
||||
RCTTypeSafety: b829c59453478bb5b02487b8de3336386ab93ab1
|
||||
React: 29d8a785041b96a2754c25cc16ddea57b7a618ce
|
||||
React-callinvoker: 2857b61132bd7878b736e282581f4b42fd93002b
|
||||
React-Core: 001e21bad5ca41e59e9d90df5c0b53da04c3ce8e
|
||||
React-CoreModules: 0a0410ab296a62ab38e2f8d321e822d1fcc2fe49
|
||||
React-cxxreact: 8d904967134ae8ff0119c5357c42eaae976806f8
|
||||
React-jsi: 12913c841713a15f64eabf5c9ad98592c0ec5940
|
||||
React-jsiexecutor: 43f2542aed3c26e42175b339f8d37fe3dd683765
|
||||
React-jsinspector: 41e58e5b8e3e0bf061fdf725b03f2144014a8fb0
|
||||
react-native-document-picker: a7950caaee8587002c9acbc7fe497a342094d93a
|
||||
RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9
|
||||
RCTRequired: 3cc065b52aa18db729268b9bd78a2feffb4d0f91
|
||||
RCTTypeSafety: 3c4fc37d5dea452d2ef17324db5504ec2f05083a
|
||||
React: 4a00720816c52a213424442954acb7e4b724804a
|
||||
React-callinvoker: 911fc6570538f3bb5c61edf9dc907c1beb4355bf
|
||||
React-Core: e134d3a5d7b2a1a731589be776e20dbb14868f27
|
||||
React-CoreModules: 2f8588b2aa47e7fef27125c8eaaabda963b3ac62
|
||||
React-cxxreact: 8f1382538cad0cc8b8eafca6d66268828e353bea
|
||||
React-jsi: 9fe1854d2c0486216acebd5db3c38b4ccb23ca0b
|
||||
React-jsiexecutor: db2f6e22a534d466fc0e34e622df47d9d20bab2f
|
||||
React-jsinspector: 8c0517dee5e8c70cd6c3066f20213ff7ce54f176
|
||||
React-logger: bfddd3418dc1d45b77b822958f3e31422e2c179b
|
||||
react-native-document-picker: f4cc4df2eff8c9015d862a59bdaef11a153f1292
|
||||
react-native-get-random-values: 237bffb1c7e05fb142092681531810a29ba53015
|
||||
react-native-image-picker: a6e56460d34905c849ada551db30897dc7f3d535
|
||||
react-native-image-picker: 9c8a2687b69300ad9e95cec5d38f35ab9d32467d
|
||||
react-native-safe-area-context: 584dc04881deb49474363f3be89e4ca0e854c057
|
||||
React-perflogger: fd28ee1f2b5b150b00043f0301d96bd417fdc339
|
||||
React-RCTActionSheet: 7f3fa0855c346aa5d7c60f9ced16e067db6d29fa
|
||||
React-RCTAnimation: 2119a18ee26159004b001bc56404ca5dbaae6077
|
||||
React-RCTBlob: a493cc306deeaba0c0efa8ecec2da154afd3a798
|
||||
React-RCTImage: 54999ddc896b7db6650af5760607aaebdf30425c
|
||||
React-RCTLinking: 7fb3fa6397d3700c69c3d361870a299f04f1a2e6
|
||||
React-RCTNetwork: 329ee4f75bd2deb8cf6c4b14231b5bb272cbd9af
|
||||
React-RCTSettings: 1a659d58e45719bc77c280dbebce6a5a5a2733f5
|
||||
React-RCTText: e12d7aae2a038be9ae72815436677a7c6549dd26
|
||||
React-RCTVibration: 92d41c2442e5328cc4d342cd7f78e5876b68bae5
|
||||
React-runtimeexecutor: 85187f19dd9c47a7c102f9994f9d14e4dc2110de
|
||||
ReactCommon: eafed38eec7b591c31751bfa7494801618460459
|
||||
React-perflogger: fcac6090a80e3d967791b4c7f1b1a017f9d4a398
|
||||
React-RCTActionSheet: caf5913d9f9e605f5467206cf9d1caa6d47d7ad6
|
||||
React-RCTAnimation: 6539e3bf594f6a529cd861985ba6548286ae1ead
|
||||
React-RCTBlob: 6e2e999d28b15fd03ed533f164ce33e0fcde571a
|
||||
React-RCTImage: c6bbb10eedb6b840c4474f2108b864173b83de15
|
||||
React-RCTLinking: 8fda9bb8fdb104e78110a903a9a77754318c7d11
|
||||
React-RCTNetwork: 2b26daad93830501cf14aab03eac04e304f942d3
|
||||
React-RCTSettings: 89c0dcee7adb706c749383596f57c1e882a27843
|
||||
React-RCTText: 71734fce8e6cb854daeb4a5eec182c303ea58473
|
||||
React-RCTVibration: 6600b5eed7c0fda4a433fa1198d1cb2690151791
|
||||
React-runtimeexecutor: 33a949a51bec5f8a3c9e8d8092deb259600d761e
|
||||
ReactCommon: 620442811dc6f707b4bf5e3b27d4f19c12d5a821
|
||||
RNFileViewer: 83cc066ad795b1f986791d03b56fe0ee14b6a69f
|
||||
Yoga: aa0cb45287ebe1004c02a13f279c55a95f1572f4
|
||||
Yoga: 2b4a01651f42a32f82e6cef3830a3ba48088237f
|
||||
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
||||
|
||||
PODFILE CHECKSUM: 686647afa833da6881fa9b52eaf16bf68f044f43
|
||||
PODFILE CHECKSUM: 9d2dead264e8a42ac453e46434ac53d9891db9dd
|
||||
|
||||
COCOAPODS: 1.11.0
|
||||
COCOAPODS: 1.11.2
|
||||
|
||||
@@ -375,7 +375,11 @@
|
||||
/usr/lib/swift,
|
||||
"$(inherited)",
|
||||
);
|
||||
LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
|
||||
LIBRARY_SEARCH_PATHS = (
|
||||
"\"$(SDKROOT)/usr/lib/swift\"",
|
||||
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
||||
"\"$(inherited)\"",
|
||||
);
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
OTHER_SWIFT_FLAGS = "-D DEBUG";
|
||||
@@ -430,7 +434,11 @@
|
||||
/usr/lib/swift,
|
||||
"$(inherited)",
|
||||
);
|
||||
LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
|
||||
LIBRARY_SEARCH_PATHS = (
|
||||
"\"$(SDKROOT)/usr/lib/swift\"",
|
||||
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
||||
"\"$(inherited)\"",
|
||||
);
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
SDKROOT = iphoneos;
|
||||
SWIFT_COMPILATION_MODE = wholemodule;
|
||||
|
||||
@@ -13,33 +13,32 @@
|
||||
"test": "jest"
|
||||
},
|
||||
"dependencies": {
|
||||
"@expo/react-native-action-sheet": "^3.11.0",
|
||||
"@expo/react-native-action-sheet": "^3.12.0",
|
||||
"react": "^17.0.2",
|
||||
"react-native": "^0.65.1",
|
||||
"react-native-document-picker": "^6.0.4",
|
||||
"react-native": "^0.66.1",
|
||||
"react-native-document-picker": "^7.1.1",
|
||||
"react-native-file-viewer": "^2.1.4",
|
||||
"react-native-get-random-values": "^1.7.0",
|
||||
"react-native-image-picker": "^4.0.6",
|
||||
"react-native-image-picker": "^4.1.2",
|
||||
"react-native-safe-area-context": "^3.3.2",
|
||||
"uuid": "^8.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.15.5",
|
||||
"@babel/core": "^7.15.8",
|
||||
"@babel/runtime": "^7.15.4",
|
||||
"@react-native-community/eslint-config": "^3.0.1",
|
||||
"@types/jest": "^27.0.1",
|
||||
"@types/react-native": "^0.65.0",
|
||||
"@types/jest": "^27.0.2",
|
||||
"@types/react-native": "^0.66.0",
|
||||
"@types/react-test-renderer": "^17.0.1",
|
||||
"@types/uuid": "^8.3.1",
|
||||
"babel-jest": "^27.2.0",
|
||||
"babel-jest": "^27.3.1",
|
||||
"casual": "^1.6.2",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-plugin-simple-import-sort": "^7.0.0",
|
||||
"jest": "^27.2.0",
|
||||
"jest": "^27.3.1",
|
||||
"metro-react-native-babel-preset": "^0.66.2",
|
||||
"react-native-codegen": "^0.0.7",
|
||||
"react-test-renderer": "^17.0.2",
|
||||
"typescript": "^4.4.3"
|
||||
"typescript": "^4.4.4"
|
||||
},
|
||||
"resolutions": {
|
||||
"@types/react": "^17"
|
||||
|
||||
@@ -46,9 +46,9 @@ const App = () => {
|
||||
author: user,
|
||||
createdAt: Date.now(),
|
||||
id: uuidv4(),
|
||||
mimeType: response.type,
|
||||
mimeType: response.type ?? undefined,
|
||||
name: response.name,
|
||||
size: response.size,
|
||||
size: response.size ?? 0,
|
||||
type: 'file',
|
||||
uri: response.uri,
|
||||
}
|
||||
|
||||
1436
example/yarn.lock
1436
example/yarn.lock
File diff suppressed because it is too large
Load Diff
27
package.json
27
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@flyerhq/react-native-chat-ui",
|
||||
"version": "1.4.2",
|
||||
"version": "1.4.3",
|
||||
"description": "Actively maintained, community-driven chat UI implementation with an optional Firebase BaaS.",
|
||||
"homepage": "https://flyer.chat",
|
||||
"repository": {
|
||||
@@ -38,34 +38,33 @@
|
||||
"type-coverage": "type-coverage"
|
||||
},
|
||||
"dependencies": {
|
||||
"@flyerhq/react-native-keyboard-accessory-view": "^2.3.2",
|
||||
"@flyerhq/react-native-link-preview": "^1.5.1",
|
||||
"@flyerhq/react-native-keyboard-accessory-view": "^2.3.3",
|
||||
"@flyerhq/react-native-link-preview": "^1.5.2",
|
||||
"dayjs": "^1.10.7",
|
||||
"react-native-image-viewing": "^0.2.0",
|
||||
"react-native-image-viewing": "^0.2.1",
|
||||
"react-native-parsed-text": "^0.0.22"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.15.5",
|
||||
"@babel/core": "^7.15.8",
|
||||
"@babel/runtime": "^7.15.4",
|
||||
"@react-native-community/eslint-config": "^3.0.1",
|
||||
"@testing-library/react-native": "^7.2.0",
|
||||
"@types/jest": "^27.0.1",
|
||||
"@types/react-native": "^0.65.0",
|
||||
"@testing-library/react-native": "^8.0.0",
|
||||
"@types/jest": "^27.0.2",
|
||||
"@types/react-native": "^0.66.0",
|
||||
"@types/react-test-renderer": "^17.0.1",
|
||||
"babel-jest": "^27.2.0",
|
||||
"babel-jest": "^27.3.1",
|
||||
"copyfiles": "^2.4.1",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-plugin-jest": "^24.4.2",
|
||||
"eslint-plugin-jest": "^25.2.2",
|
||||
"eslint-plugin-simple-import-sort": "^7.0.0",
|
||||
"jest": "^27.2.0",
|
||||
"jest": "^27.3.1",
|
||||
"metro-react-native-babel-preset": "^0.66.2",
|
||||
"react": "^17.0.2",
|
||||
"react-native": "^0.65.1",
|
||||
"react-native-codegen": "^0.0.7",
|
||||
"react-native": "^0.66.1",
|
||||
"react-native-safe-area-context": "^3.3.2",
|
||||
"react-test-renderer": "^17.0.2",
|
||||
"type-coverage": "^2.18.2",
|
||||
"typescript": "^4.4.3"
|
||||
"typescript": "^4.4.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "*",
|
||||
|
||||
@@ -43,6 +43,7 @@ const animate = () => {
|
||||
LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
|
||||
}
|
||||
|
||||
// eslint-disable-next-line jest/require-hook
|
||||
dayjs.extend(calendar)
|
||||
|
||||
export type ChatTopLevelProps = InputTopLevelProps & MessageTopLevelProps
|
||||
@@ -155,6 +156,11 @@ export const Chat = ({
|
||||
const [imageViewIndex, setImageViewIndex] = React.useState(0)
|
||||
const [stackEntry, setStackEntry] = React.useState<StatusBarProps>({})
|
||||
|
||||
const l10nValue = React.useMemo(
|
||||
() => ({ ...l10n[locale], ...unwrap(l10nOverride) }),
|
||||
[l10nOverride, locale]
|
||||
)
|
||||
|
||||
const { chatMessages, gallery } = calculateChatMessages(messages, user, {
|
||||
customDateHeaderText,
|
||||
dateFormat,
|
||||
@@ -325,12 +331,12 @@ export const Chat = ({
|
||||
{oneOf(
|
||||
emptyState,
|
||||
<Text style={emptyComponentTitle}>
|
||||
{l10n[locale].emptyChatPlaceholder}
|
||||
{l10nValue.emptyChatPlaceholder}
|
||||
</Text>
|
||||
)()}
|
||||
</View>
|
||||
),
|
||||
[emptyComponentContainer, emptyComponentTitle, emptyState, locale]
|
||||
[emptyComponentContainer, emptyComponentTitle, emptyState, l10nValue]
|
||||
)
|
||||
|
||||
const renderListFooterComponent = React.useCallback(
|
||||
@@ -397,7 +403,7 @@ export const Chat = ({
|
||||
return (
|
||||
<UserContext.Provider value={user}>
|
||||
<ThemeContext.Provider value={theme}>
|
||||
<L10nContext.Provider value={{ ...l10n[locale], ...l10nOverride }}>
|
||||
<L10nContext.Provider value={l10nValue}>
|
||||
<View style={container} onLayout={onLayout}>
|
||||
{customBottomComponent ? (
|
||||
<>
|
||||
|
||||
13
src/theme.ts
13
src/theme.ts
@@ -66,89 +66,76 @@ export const defaultTheme: Theme = {
|
||||
fonts: {
|
||||
dateDividerTextStyle: {
|
||||
color: NEUTRAL_2,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 12,
|
||||
fontWeight: '800',
|
||||
lineHeight: 16,
|
||||
},
|
||||
emptyChatPlaceholderTextStyle: {
|
||||
color: NEUTRAL_2,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 16,
|
||||
fontWeight: '500',
|
||||
lineHeight: 24,
|
||||
},
|
||||
inputTextStyle: {
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 16,
|
||||
fontWeight: '500',
|
||||
lineHeight: 24,
|
||||
},
|
||||
receivedMessageBodyTextStyle: {
|
||||
color: NEUTRAL_0,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 16,
|
||||
fontWeight: '500',
|
||||
lineHeight: 24,
|
||||
},
|
||||
receivedMessageCaptionTextStyle: {
|
||||
color: NEUTRAL_2,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 12,
|
||||
fontWeight: '500',
|
||||
lineHeight: 16,
|
||||
},
|
||||
receivedMessageLinkDescriptionTextStyle: {
|
||||
color: NEUTRAL_0,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 14,
|
||||
fontWeight: '400',
|
||||
lineHeight: 20,
|
||||
},
|
||||
receivedMessageLinkTitleTextStyle: {
|
||||
color: NEUTRAL_0,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 16,
|
||||
fontWeight: '800',
|
||||
lineHeight: 22,
|
||||
},
|
||||
sentMessageBodyTextStyle: {
|
||||
color: NEUTRAL_7,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 16,
|
||||
fontWeight: '500',
|
||||
lineHeight: 24,
|
||||
},
|
||||
sentMessageCaptionTextStyle: {
|
||||
color: NEUTRAL_7_WITH_OPACITY,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 12,
|
||||
fontWeight: '500',
|
||||
lineHeight: 16,
|
||||
},
|
||||
sentMessageLinkDescriptionTextStyle: {
|
||||
color: NEUTRAL_7,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 14,
|
||||
fontWeight: '400',
|
||||
lineHeight: 20,
|
||||
},
|
||||
sentMessageLinkTitleTextStyle: {
|
||||
color: NEUTRAL_7,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 16,
|
||||
fontWeight: '800',
|
||||
lineHeight: 22,
|
||||
},
|
||||
userAvatarTextStyle: {
|
||||
color: NEUTRAL_7,
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 12,
|
||||
fontWeight: '800',
|
||||
lineHeight: 16,
|
||||
},
|
||||
userNameTextStyle: {
|
||||
fontFamily: 'Avenir',
|
||||
fontSize: 12,
|
||||
fontWeight: '800',
|
||||
lineHeight: 16,
|
||||
|
||||
@@ -3,12 +3,12 @@ import { formatBytes, getTextSizeInBytes, unwrap } from '..'
|
||||
describe('formatBytes', () => {
|
||||
it('formats bytes correctly when the size is 0', () => {
|
||||
expect.assertions(1)
|
||||
expect(formatBytes(0)).toStrictEqual('0 B')
|
||||
expect(formatBytes(0)).toBe('0 B')
|
||||
})
|
||||
|
||||
it('formats bytes correctly', () => {
|
||||
expect.assertions(1)
|
||||
expect(formatBytes(1024)).toStrictEqual('1 kB')
|
||||
expect(formatBytes(1024)).toBe('1 kB')
|
||||
})
|
||||
})
|
||||
|
||||
@@ -16,13 +16,13 @@ describe('getTextSizeInBytes', () => {
|
||||
it('calculates the size for a simple text', () => {
|
||||
expect.assertions(1)
|
||||
const text = 'text'
|
||||
expect(getTextSizeInBytes(text)).toStrictEqual(4)
|
||||
expect(getTextSizeInBytes(text)).toBe(4)
|
||||
})
|
||||
|
||||
it('calculates the size for an emoji text', () => {
|
||||
expect.assertions(1)
|
||||
const text = '🤔 🤓'
|
||||
expect(getTextSizeInBytes(text)).toStrictEqual(9)
|
||||
expect(getTextSizeInBytes(text)).toBe(9)
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user