Commit 4aca1f82 authored by d.arizona's avatar d.arizona

update screen ecart

parent 50697d6c
...@@ -10,19 +10,23 @@ export default class BaseButton extends Component { ...@@ -10,19 +10,23 @@ export default class BaseButton extends Component {
onPress: PropTypes.func, onPress: PropTypes.func,
text: PropTypes.string, text: PropTypes.string,
color: PropTypes.any, color: PropTypes.any,
style: PropTypes.object style: PropTypes.object,
textColor: PropTypes.any,
fontSizeText: PropTypes.number
} }
// Defaults for props // Defaults for props
static defaultProps = { static defaultProps = {
text: '', text: '',
color: '#4cc9f0' color: '#4cc9f0',
textColor: 'white',
fontSizeText: 16
} }
render () { render () {
return ( return (
<TouchableOpacity onPress={this.props.onPress} style={[{width:'100%', alignItems: 'center', borderRadius: 32, backgroundColor: this.props.color, paddingVertical: 15}, this.props.style]}> <TouchableOpacity onPress={this.props.onPress} style={[{width:'100%', alignItems: 'center', borderRadius: 32, backgroundColor: this.props.color, paddingVertical: 15}, this.props.style]}>
<BaseText text={this.props.text} type={"bold"} style={{fontSize: 16, color: 'white'}}/> <BaseText text={this.props.text} type={"bold"} style={{fontSize: this.props.fontSizeText, color: this.props.textColor}}/>
</TouchableOpacity> </TouchableOpacity>
) )
} }
......
import React, { Component } from 'react' import React, { Component } from 'react'
import { ScrollView, Text, KeyboardAvoidingView } from 'react-native' import { ScrollView, Text, KeyboardAvoidingView, View, BackHandler, Image } from 'react-native'
import { connect } from 'react-redux' import { connect } from 'react-redux'
// Add Actions - replace 'Your' with whatever your reducer is called :) // Add Actions - replace 'Your' with whatever your reducer is called :)
// import YourActions from '../Redux/YourRedux' // import YourActions from '../Redux/YourRedux'
// Styles // Styles
import styles from './Styles/DetailOrderScreenStyle' import styles from './Styles/DetailOrderScreenStyle'
import BaseHeader from '../Components/BaseHeader'
import BaseText from '../Components/BaseText'
import { Images } from '../Themes'
import BaseButton from '../Components/BaseButton'
class DetailOrderScreen extends Component { class DetailOrderScreen extends Component {
backAction = () => {
this.props.navigation.goBack()
return true;
};
componentDidMount() {
// alert('sadap')
// alert(JSON.stringify(this.props.navigation))
BackHandler.addEventListener("hardwareBackPress", this.backAction);
}
componentWillUnmount() {
BackHandler.removeEventListener("hardwareBackPress", this.backAction);
}
render () { render () {
return ( return (
<ScrollView style={styles.container}> <View style={{flex: 1, backgroundColor: '#4cc9f0'}}>
<KeyboardAvoidingView behavior='position'> <BaseHeader leftText={'No. Order 123456'} onBackPress={this.backAction}/>
<Text>DetailOrderScreen</Text> <ScrollView style={[styles.scrollContent]}>
</KeyboardAvoidingView>
{/* Tanggal */}
<View style={{padding: 15, borderRadius: 10, elevation: 5, backgroundColor: 'white', marginVertical: 20, marginHorizontal: 5}}>
<BaseText text={"Tanggal"} type={"regular"} style={{fontSize: 10, color: '#4b4b4b', opacity: .7}}/>
<BaseText text={"18 Juli 2020, 10:38 AM"} type={"regular"} style={{fontSize: 12, opacity: .9}}/>
<View style={{marginVertical: 10, height: 1, width: '100%', backgroundColor: '#d8d8d8'}}/>
<BaseText text={"Status Pesanan"} type={"regular"} style={{fontSize: 10, color: '#4b4b4b', opacity: .7}}/>
<BaseText text={"MENUNGGU KONFIRMASI"} type={"regular"} style={{fontSize: 12, opacity: .9}}/>
</View>
{/* Produk */}
<View>
<BaseText text={"Produk"} type={"bold"} style={{fontSize: 16, color: '#4b4b4b', paddingHorizontal: 5}}/>
<View style={{padding: 15, borderRadius: 10, elevation: 5, backgroundColor: 'white', marginTop: 20, marginHorizontal: 5}}>
<View style={{flexDirection: 'row', justifyContent: 'space-between'}}>
<View style={{width: 90}}>
<Image source={Images.jaket} style={{resizeMode: 'stretch', height: 90, width: '100%', borderRadius: 40}}/>
</View>
<View style={{flexGrow: 1, justifyContent: 'space-between', paddingLeft: 10}}>
<BaseText text={"88Rising x Guess Hooded Sweatshirt"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b'}}/>
<BaseText text={"Rp. 2.400.000"} type={"bold"} style={{fontSize: 12, color: '#4cc9f0'}}/>
<BaseText text={`Ukuran: L\nJumlah: 1 (1kg)`} type={"bold"} style={{fontSize: 10, color: '#4b4b4b', opacity: .5,}}/>
</View>
</View>
<View style={{marginVertical: 20, height: 1, width: '100%', backgroundColor: '#d8d8d8'}}/>
<BaseText text={"Total Harga"} type={"bold"} style={{fontSize: 10, color: '#4b4b4b', opacity: .5}}/>
<BaseText text={"Rp. 2.400.000"} type={"bold"} style={{fontSize: 12, color: '#4cc9f0'}}/>
</View>
<View style={{padding: 15, borderRadius: 10, elevation: 5, backgroundColor: 'white', marginVertical: 10, marginHorizontal: 5}}>
<View style={{flexDirection: 'row', justifyContent: 'space-between'}}>
<View style={{width: 90}}>
<Image source={Images.sepatu} style={{resizeMode: 'stretch', height: 90, width: '100%', borderRadius: 40}}/>
</View>
<View style={{flexGrow: 1, justifyContent: 'space-between', paddingLeft: 10}}>
<BaseText text={"Compass x Pot Meets Pop"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b'}}/>
<BaseText text={"Rp. 3.700.000"} type={"bold"} style={{fontSize: 12, color: '#4cc9f0'}}/>
<BaseText text={`Ukuran: 43\nJumlah: 1 (1kg)`} type={"bold"} style={{fontSize: 10, color: '#4b4b4b', opacity: .5,}}/>
</View>
</View>
<View style={{marginVertical: 20, height: 1, width: '100%', backgroundColor: '#d8d8d8'}}/>
<BaseText text={"Total Harga"} type={"bold"} style={{fontSize: 10, color: '#4b4b4b', opacity: .5}}/>
<BaseText text={"Rp. 3.700.000"} type={"bold"} style={{fontSize: 12, color: '#4cc9f0'}}/>
</View>
</View>
{/* Detail Pengiriman */}
<View>
<BaseText text={"Detail Pengiriman"} type={"bold"} style={{fontSize: 16, color: '#4b4b4b', paddingHorizontal: 5, marginTop: 10}}/>
<View style={{padding: 15, borderRadius: 10, elevation: 5, backgroundColor: 'white', marginTop: 20, marginHorizontal: 5}}>
<BaseText text={"Kurir Pengiriman"} type={"regular"} style={{fontSize: 10, color: '#4b4b4b', opacity: .7}}/>
<Image source={Images.logoAnterAja} style={{resizeMode: 'stretch', height: 30, width: 70, resizeMode: 'stretch', marginTop: 10}}/>
<View style={{marginVertical: 25}}>
<BaseText text={"No. Resi"} type={"regular"} style={{fontSize: 10, color: '#4b4b4b', opacity: .7}}/>
<View style={{flexDirection: 'row'}}>
<BaseText text={"00987089860"} type={"bold"} style={{fontSize: 12}}/>
<BaseText text={"Salin No. Resi"} type={"bold"} style={{fontSize: 12, color: '#4cc9f0', marginLeft: 20, textDecorationLine: 'underline', textDecorationColor: '#4cc9f0'}}/>
</View>
</View>
<BaseText text={"Alamat Pengiriman"} type={"regular"} style={{fontSize: 10, color: '#4b4b4b', opacity: .7}}/>
<BaseText text={"Rizal Firnando (Rumah)\n08129986899"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b', opacity: .9, marginVertical: 5}}/>
<BaseText text={"Jl. Pejompongan IV No.136, RT.2/RW.5, Bend. Hilir,\nKecamatan Tanah Abang, Kota Jakarta Pusat,\nDKI Jakarta, 10210"} type={"regular"} style={{fontSize: 11, color: '#4b4b4b', opacity: 1}}/>
</View>
</View>
{/* Informasi Pembayaran */}
<View>
<BaseText text={"Informasi Pembayaran"} type={"bold"} style={{fontSize: 16, color: '#4b4b4b', paddingHorizontal: 5, marginTop: 20}}/>
<View style={{padding: 15, borderRadius: 10, elevation: 5, backgroundColor: 'white', marginVertical: 20, marginHorizontal: 5}}>
<View style={{flexDirection:'row', justifyContent:'space-between'}}>
<BaseText text={"Metode Pembayaran"} type={"regular"} style={{fontSize: 12, color: '#4b4b4b', opacity: .7}}/>
<BaseText text={"COD"} type={"bold"} style={{fontSize: 12, opacity: .9}}/>
</View>
<View style={{marginVertical: 10, height: 1, width: '100%', backgroundColor: '#d8d8d8'}}/>
<View style={{paddingVertical: 10}}>
<View style={{flexDirection:'row', justifyContent:'space-between'}}>
<BaseText text={"Total Harga (2 Produk)"} type={"regular"} style={{fontSize: 12, color: '#4b4b4b', opacity: .7}}/>
<BaseText text={"Rp. 6.100.000"} type={"bold"} style={{fontSize: 12, opacity: .9}}/>
</View>
<View style={{flexDirection:'row', justifyContent:'space-between', marginTop: 5}}>
<BaseText text={"Total Ongkos Kirim (1kg)"} type={"regular"} style={{fontSize: 12, color: '#4b4b4b', opacity: .7}}/>
<BaseText text={"Rp. 10.000"} type={"bold"} style={{fontSize: 12, opacity: .9}}/>
</View>
</View>
<View style={{marginVertical: 10, height: 1, width: '100%', backgroundColor: '#d8d8d8'}}/>
<View style={{flexDirection:'row', justifyContent:'space-between', marginTop: 5, paddingVertical: 5}}>
<BaseText text={"Total Bayar"} type={"bold"} style={{color: '#4b4b4b', opacity: .9}}/>
<BaseText text={"Rp. 6.110.000"} type={"bold"} style={{opacity: .9, color: '#4cc9f0'}}/>
</View>
</View>
</View>
{/* Button DUO */}
<View style={{flexDirection: 'row', justifyContent: 'space-between', marginTop: 10, marginBottom: 30}}>
<View style={{width: '50%', alignItems:'center', paddingHorizontal: 5}}>
<BaseButton text={'Tanya Pesanan'} onPress={() => null} fontSizeText={12} color={'white'} textColor={'#4cc9f0'} style={{borderWidth: 1, borderColor: '#4cc9f0'}}/>
</View>
<View style={{width: '50%', alignItems:'center', paddingHorizontal: 5}}>
<BaseButton text={'Pesanan Diterima'} onPress={() => null} fontSizeText={12} />
</View>
</View>
</ScrollView> </ScrollView>
<View style={{padding: 20, alignSelf:'flex-end', justifyContent: 'flex-end', backgroundColor: 'white', elevation: 5, width: '100%', borderTopWidth: .5, borderTopColor: '#d8d8d8'}}>
<BaseButton text={'Lacak Pesanan'} onPress={() => this.props.navigation.navigate('TrackOrderScreen')}/>
</View>
</View>
) )
} }
} }
......
...@@ -71,10 +71,14 @@ class HomePageScreen extends Component { ...@@ -71,10 +71,14 @@ class HomePageScreen extends Component {
</View> </View>
</View> </View>
<View style={{marginTop: 20, borderTopWidth: .5, borderTopColor: '#4b4b4b', alignItems: 'center', borderBottomWidth: .5, borderBottomColor: '#4b4b4b', paddingVertical: 10, paddingLeft: 30, flexDirection: 'row'}}> <View style={{marginTop: 20, borderTopWidth: .5, borderTopColor: '#4b4b4b', alignItems: 'center', borderBottomWidth: .5, borderBottomColor: '#4b4b4b', paddingVertical: 10, paddingLeft: 30, flexDirection: 'row'}}>
<View style={{alignItems:'center', flexDirection: 'column'}}> <TouchableOpacity style={{alignItems:'center', flexDirection: 'column'}}
onPress={() => {
this.toggleOpen()
this.props.navigation.navigate('MyOrderScreen')
}}>
<Image source={Images.icon_pesanansaya} style={{width: 25, height: 30}}/> <Image source={Images.icon_pesanansaya} style={{width: 25, height: 30}}/>
<BaseText type={"regular"} text={'Pesanan Saya'} style={{fontSize: 9, marginTop: 5}}/> <BaseText type={"regular"} text={'Pesanan Saya'} style={{fontSize: 9, marginTop: 5}}/>
</View> </TouchableOpacity>
<TouchableOpacity style={{ alignItems: 'center', flexDirection: 'column', paddingTop: 5, marginLeft: 25 }} <TouchableOpacity style={{ alignItems: 'center', flexDirection: 'column', paddingTop: 5, marginLeft: 25 }}
onPress={() => { onPress={() => {
this.toggleOpen() this.toggleOpen()
......
import React, { Component } from 'react' import React, { Component } from 'react'
import { ScrollView, Text, View, BackHandler, Image, TouchableOpacity } from 'react-native' import { ScrollView, Text, View, BackHandler, Image, TouchableOpacity, Alert } from 'react-native'
import { connect } from 'react-redux' import { connect } from 'react-redux'
import { NavigationActions, StackActions } from 'react-navigation' import { NavigationActions, StackActions } from 'react-navigation'
import AuthAction from '../Redux/AuthRedux' import AuthAction from '../Redux/AuthRedux'
...@@ -25,7 +25,14 @@ class MyAccountScreen extends Component { ...@@ -25,7 +25,14 @@ class MyAccountScreen extends Component {
} }
backAction = () => { backAction = () => {
this.props.navigation.goBack() Alert.alert("Hold on!", "Are you sure you want to exit app?", [
{
text: "Cancel",
onPress: () => null,
style: "cancel"
},
{ text: "YES", onPress: () => BackHandler.exitApp() }
]);
return true; return true;
}; };
...@@ -38,7 +45,10 @@ class MyAccountScreen extends Component { ...@@ -38,7 +45,10 @@ class MyAccountScreen extends Component {
BackHandler.removeEventListener("hardwareBackPress", this.backAction); BackHandler.removeEventListener("hardwareBackPress", this.backAction);
} }
handleNav(to) { handleNav(type) {
if (type == 'Data Diri') {
this.props.navigation.navigate('ProfileScreen');
} else if (type == 'Keluar') {
this.props.authClearData() this.props.authClearData()
const resetAction = StackActions.reset({ const resetAction = StackActions.reset({
index: 0, index: 0,
...@@ -50,17 +60,21 @@ class MyAccountScreen extends Component { ...@@ -50,17 +60,21 @@ class MyAccountScreen extends Component {
key: null key: null
}); });
this.props.navigation.dispatch(resetAction); this.props.navigation.dispatch(resetAction);
} else {
}
} }
render() { render() {
return ( return (
<View style={{ flex: 1, backgroundColor: '#4cc9f0' }}> <View style={{ flex: 1, backgroundColor: '#4cc9f0' }}>
<BaseHeader leftText={'Akun Saya'} onBackPress={() => this.props.navigation.goBack()} /> <BaseHeader withBack={false} leftText={'Akun Saya'} onBackPress={() => this.props.navigation.goBack()} />
<View style={{ flex: 1, backgroundColor: '#fff', borderTopLeftRadius: 30, borderTopRightRadius: 30, width: '100%' }}> <View style={{ flex: 1, backgroundColor: '#fff', borderTopLeftRadius: 30, borderTopRightRadius: 30, width: '100%' }}>
<View style={{ paddingVertical: 40, paddingHorizontal: 30 }}> <View style={{ paddingTop: 25, paddingBottom: 40, paddingHorizontal: 30 }}>
{this.state.array.map((item, index) => { {this.state.array.map((item, index) => {
return ( return (
<TouchableOpacity onPress={() => this.handleNav(item)} style={{ marginTop: index== 0 ? 0 : 20, marginBottom: index == this.state.array.length-1? 30 : 0 }} key={index}> <TouchableOpacity onPress={() => this.handleNav(item.nama)} style={{ marginTop: index== 0 ? 0 : 20, marginBottom: index == this.state.array.length-1? 30 : 0 }} key={index}>
<View style={{ flexDirection: 'row', paddingVertical: 10}}> <View style={{ flexDirection: 'row', paddingVertical: 10}}>
<Image source={item.image} style={{ width: 24, height: 24, resizeMode: 'stretch' }} /> <Image source={item.image} style={{ width: 24, height: 24, resizeMode: 'stretch' }} />
<View style={{ justifyContent: 'center', marginLeft: 20 }}> <View style={{ justifyContent: 'center', marginLeft: 20 }}>
......
import React, { Component } from 'react' import React, { Component } from 'react'
import { ScrollView, Text, KeyboardAvoidingView } from 'react-native' import { ScrollView, Text, KeyboardAvoidingView, View, BackHandler, Image } from 'react-native'
import { connect } from 'react-redux' import { connect } from 'react-redux'
import { Container, Header, Tab, Tabs, ScrollableTab, TabHeading } from 'native-base';
import FontAwesome from 'react-native-vector-icons/FontAwesome'
// Add Actions - replace 'Your' with whatever your reducer is called :) // Add Actions - replace 'Your' with whatever your reducer is called :)
// import YourActions from '../Redux/YourRedux' // import YourActions from '../Redux/YourRedux'
// Styles // Styles
import styles from './Styles/MyOrderScreenStyle' import styles from './Styles/MyOrderScreenStyle'
import BaseHeader from '../Components/BaseHeader';
import BaseText from '../Components/BaseText';
import { NavigationEvents } from 'react-navigation';
import { Images } from '../Themes';
class MyOrderScreen extends Component { class MyOrderScreen extends Component {
constructor(props) {
super(props)
this.state = {
activeTab: 0
}
}
backAction = () => {
this.props.navigation.goBack()
return true;
};
componentDidMount() {
BackHandler.addEventListener("hardwareBackPress", this.backAction);
}
componentWillUnmount() {
BackHandler.removeEventListener("hardwareBackPress", this.backAction);
}
render () { render () {
return ( return (
<ScrollView style={styles.container}> <Container style={{backgroundColor: '#4cc9f0'}}>
<KeyboardAvoidingView behavior='position'> {/* <NavigationEvents onDidFocus={() => alert('asdasd')}/> */}
<Text>MyOrderScreen</Text> <View style={{zIndex: 99}}>
</KeyboardAvoidingView> <BaseHeader leftText={'Pesanan Saya'} onBackPress={this.backAction}/>
</ScrollView> </View>
<View style={{
flex: 1,
backgroundColor: 'white',
borderTopLeftRadius: 32,
borderTopRightRadius: 32,
zIndex: 0,
paddingHorizontal: 10
// paddingTop: 20
}}>
<Tabs onChangeTab={({i}) => this.setState({activeTab: i})} initialPage={this.state.activeTab} tabBarUnderlineStyle={{backgroundColor: '#4cc9f0'}} tabContainerStyle={{borderTopLeftRadius: 32, borderTopRightRadius: 32, zIndex: 0}} renderTabBar={()=> <ScrollableTab backgroundColor={'transparent'} tabsContainerStyle={{borderTopLeftRadius: 32, borderTopRightRadius: 32, backgroundColor:'transparent', zIndex: 0}}/>}>
<Tab heading={
<TabHeading style={{backgroundColor: 'transparent'}}>
<BaseText text={"Semua"} type={"bold"} style={{fontSize: 12, color: this.state.activeTab == 0? 'black' : '#4b4b4b', opacity: this.state.activeTab == 0? 1 : .6,}}/>
</TabHeading>}>
<View style={{paddingHorizontal: 20, flex: 1, alignItems: 'center', backgroundColor: 'white'}}>
<View style={{borderRadius: 10, width: '100%', elevation: 5, backgroundColor:'white', marginTop: 20}}>
<View style={{paddingHorizontal: 20, paddingVertical: 15, backgroundColor: 'rgba(76, 201, 240, .2)', borderTopLeftRadius: 10, borderTopRightRadius: 10, width: '100%', flexDirection: 'row', justifyContent: 'space-between',}}>
<View style={{justifyContent: 'center', width: '50%'}}>
<BaseText text={"18 Juli 2020"} type={"regular"} style={{fontSize: 10, color: '#4b4b4b', opacity: .7}}/>
<BaseText text={"123456"} type={"regular"} style={{fontSize: 12, opacity: .9}}/>
</View>
<View style={{alignItems:'flex-end', justifyContent: 'center', width: '50%'}}>
<BaseText text={"Menunggu Konfirmasi"} type={"bold"} style={{fontSize: 12, color: 'black'}}/>
</View>
</View>
<View style={{padding: 20}}>
<View style={{flexDirection: 'row', justifyContent: 'space-between'}}>
<View style={{width: '20%'}}>
<Image source={Images.jaket} style={{resizeMode: 'stretch', height: 50, width: 50, borderRadius: 40}}/>
</View>
<View style={{flexGrow: 1, justifyContent: 'space-between'}}>
<BaseText text={"88Rising x Guess Hooded Sweatshirt"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b'}}/>
<BaseText text={"1 produk lainnya"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b', opacity: .5,}}/>
</View>
</View>
</View>
<View style={{alignItems:'center', justifyContent: 'center', paddingTop: 0, paddingBottom: 20}}>
<BaseText onPress={() => this.props.navigation.navigate('DetailOrderScreen')} text={"Detail Pesanan"} type={"bold"} style={{color: '#4cc9f0', textDecorationLine: 'underline', textDecorationColor: '#4cc9f0'}}/>
</View>
<View style={{alignItems:'flex-start', justifyContent: 'center', padding: 20, borderTopWidth: 1, borderTopColor: '#d8d8d8'}}>
<BaseText text={"Total Pembayaran"} type={"bold"} style={{fontSize: 11, color: '#4b4b4b', opacity: .5,}}/>
<BaseText text={"Rp. 6.110.000"} type={"bold"} style={{fontSize: 13, color: '#4cc9f0'}}/>
</View>
</View>
</View>
</Tab>
<Tab heading={
<TabHeading style={{backgroundColor: 'transparent'}}>
<BaseText text={"Menunggu Konfirmasi"} type={"bold"} style={{fontSize: 12, color: this.state.activeTab == 1? 'black' : '#4b4b4b', opacity: this.state.activeTab == 1? 1 : .6,}}/>
</TabHeading>}>
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: 'white'}}>
<BaseText text={"List Menunggu Konfirmasi"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b', opacity: .6,}}/>
</View>
</Tab>
<Tab heading={
<TabHeading style={{backgroundColor: 'transparent'}}>
<BaseText text={"Pesanan Diproses"} type={"bold"} style={{fontSize: 12, color: this.state.activeTab == 2? 'black' : '#4b4b4b', opacity: this.state.activeTab == 2? 1 : .6,}}/>
</TabHeading>}>
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: 'white'}}>
<BaseText text={"List Diproses"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b', opacity: .6,}}/>
</View>
</Tab>
<Tab heading={
<TabHeading style={{backgroundColor: 'transparent'}}>
<BaseText text={"Pesanan Dikirim"} type={"bold"} style={{fontSize: 12, color: this.state.activeTab == 3? 'black' : '#4b4b4b', opacity: this.state.activeTab == 3? 1 : .6,}}/>
</TabHeading>}>
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: 'white'}}>
<BaseText text={"List Dikirim"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b', opacity: .6,}}/>
</View>
</Tab>
<Tab heading={
<TabHeading style={{backgroundColor: 'transparent'}}>
<BaseText text={"Pesanan Tiba"} type={"bold"} style={{fontSize: 12, color: this.state.activeTab == 4? 'black' : '#4b4b4b', opacity: this.state.activeTab == 4? 1 : .6,}}/>
</TabHeading>}>
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: 'white'}}>
<BaseText text={"List Tiba"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b', opacity: .6,}}/>
</View>
</Tab>
<Tab heading={
<TabHeading style={{backgroundColor: 'transparent'}}>
<BaseText text={"Pesanan Dikomplain"} type={"bold"} style={{fontSize: 12, color: this.state.activeTab == 5? 'black' : '#4b4b4b', opacity: this.state.activeTab == 5? 1 : .6,}}/>
</TabHeading>}>
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: 'white'}}>
<BaseText text={"List Dikomplain"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b', opacity: .6,}}/>
</View>
</Tab>
<Tab heading={
<TabHeading style={{backgroundColor: 'transparent'}}>
<BaseText text={"Pesanan Selesai"} type={"bold"} style={{fontSize: 12, color: this.state.activeTab == 6? 'black' : '#4b4b4b', opacity: this.state.activeTab == 6? 1 : .6,}}/>
</TabHeading>}
tabStyle={{backgroundColor: 'transparent'}} activeTabStyle={{backgroundColor:'transparent'}}>
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: 'white'}}>
<BaseText text={"List Selesai"} type={"bold"} style={{fontSize: 12, color: '#4b4b4b', opacity: .6,}}/>
</View>
</Tab>
</Tabs>
</View>
</Container>
) )
} }
} }
......
...@@ -48,15 +48,6 @@ class OtpVerificationScreen extends Component { ...@@ -48,15 +48,6 @@ class OtpVerificationScreen extends Component {
} }
backAction = () => { backAction = () => {
// Alert.alert("Hold on!", "Are you sure you want to exit app?", [
// {
// text: "Cancel",
// onPress: () => null,
// style: "cancel"
// },
// { text: "YES", onPress: () => BackHandler.exitApp() }
// ]);
// this.props.navigation.goBack()
return true; return true;
}; };
......
...@@ -20,31 +20,15 @@ class ProfileScreen extends Component { ...@@ -20,31 +20,15 @@ class ProfileScreen extends Component {
} }
} }
backAction = () => { backAction = () => {
Alert.alert("Hold on!", "Are you sure you want to exit app?", [ this.props.navigation.goBack()
{
text: "Cancel",
onPress: () => null,
style: "cancel"
},
{ text: "YES", onPress: () => this.props.navigation.navigate('LoginScreen') }
]);
return true; return true;
}; };
componentDidMount() { componentDidMount() {
// alert('sadap')
// alert(JSON.stringify(this.props.navigation))
const { navigation } = this.props;
this.focusListener = navigation.addListener("didFocus", () => {
// The screen is focused
// Call any action
// alert('addsdas')
});
BackHandler.addEventListener("hardwareBackPress", this.backAction); BackHandler.addEventListener("hardwareBackPress", this.backAction);
} }
componentWillUnmount() { componentWillUnmount() {
this.focusListener.remove();
BackHandler.removeEventListener("hardwareBackPress", this.backAction); BackHandler.removeEventListener("hardwareBackPress", this.backAction);
} }
...@@ -59,7 +43,7 @@ class ProfileScreen extends Component { ...@@ -59,7 +43,7 @@ class ProfileScreen extends Component {
return ( return (
<View style={{ flex: 1, backgroundColor: '#fff' }}> <View style={{ flex: 1, backgroundColor: '#fff' }}>
<StatusBar backgroundColor={'transparent'} translucent={true} barStyle={'light-content'}/> <StatusBar backgroundColor={'transparent'} translucent={true} barStyle={'light-content'}/>
<BaseHeader leftText={'Data Diri'} /> <BaseHeader leftText={'Data Diri'} onBackPress={this.backAction}/>
<View style={{ backgroundColor: '#4cc9f0', borderBottomLeftRadius: 80, borderBottomRightRadius: 80, width: '100%', alignSelf: 'center' }}> <View style={{ backgroundColor: '#4cc9f0', borderBottomLeftRadius: 80, borderBottomRightRadius: 80, width: '100%', alignSelf: 'center' }}>
{/* <BaseText text={this.state.activeIndex} type={"bold"} style={{color: 'red', fontSize: 16, backgroundColor: 'yellow', width: '100%'}}/> */} {/* <BaseText text={this.state.activeIndex} type={"bold"} style={{color: 'red', fontSize: 16, backgroundColor: 'yellow', width: '100%'}}/> */}
<View style={{ justifyContent: 'center', flexDirection: 'row', marginBottom: 20 }}> <View style={{ justifyContent: 'center', flexDirection: 'row', marginBottom: 20 }}>
......
...@@ -30,14 +30,6 @@ class RewardScreen extends Component { ...@@ -30,14 +30,6 @@ class RewardScreen extends Component {
} }
} }
backAction = () => { backAction = () => {
// Alert.alert("Hold on!", "Are you sure you want to exit app?", [
// {
// text: "Cancel",
// onPress: () => null,
// style: "cancel"
// },
// { text: "YES", onPress: () => BackHandler.exitApp() }
// ]);
this.props.navigation.goBack() this.props.navigation.goBack()
return true; return true;
}; };
......
...@@ -2,5 +2,13 @@ import { StyleSheet } from 'react-native' ...@@ -2,5 +2,13 @@ import { StyleSheet } from 'react-native'
import { ApplicationStyles } from '../../Themes/' import { ApplicationStyles } from '../../Themes/'
export default StyleSheet.create({ export default StyleSheet.create({
...ApplicationStyles.screen ...ApplicationStyles.screen,
scrollContent: {
flex: 1,
backgroundColor: 'white',
borderTopLeftRadius: 32,
borderTopRightRadius: 32,
paddingHorizontal: 20,
// paddingTop: 50,
},
}) })
...@@ -2,5 +2,15 @@ import { StyleSheet } from 'react-native' ...@@ -2,5 +2,15 @@ import { StyleSheet } from 'react-native'
import { ApplicationStyles } from '../../Themes/' import { ApplicationStyles } from '../../Themes/'
export default StyleSheet.create({ export default StyleSheet.create({
...ApplicationStyles.screen ...ApplicationStyles.screen,
text: {
fontFamily: "Nunito-Regular",
color: "#4b4b4b",
fontSize: 10
},
activetext: {
fontFamily: "Nunito-Regular",
color: "black",
fontSize: 10
}
}) })
...@@ -2,5 +2,13 @@ import { StyleSheet } from 'react-native' ...@@ -2,5 +2,13 @@ import { StyleSheet } from 'react-native'
import { ApplicationStyles } from '../../Themes/' import { ApplicationStyles } from '../../Themes/'
export default StyleSheet.create({ export default StyleSheet.create({
...ApplicationStyles.screen ...ApplicationStyles.screen,
scrollContent: {
flex: 1,
backgroundColor: 'white',
borderTopLeftRadius: 32,
borderTopRightRadius: 32,
paddingHorizontal: 20,
// paddingTop: 50,
},
}) })
import React, { Component } from 'react' import React, { Component } from 'react'
import { ScrollView, Text, KeyboardAvoidingView } from 'react-native' import { ScrollView, Text, KeyboardAvoidingView, View, BackHandler } from 'react-native'
import { connect } from 'react-redux' import { connect } from 'react-redux'
// Add Actions - replace 'Your' with whatever your reducer is called :) // Add Actions - replace 'Your' with whatever your reducer is called :)
// import YourActions from '../Redux/YourRedux' // import YourActions from '../Redux/YourRedux'
// Styles // Styles
import styles from './Styles/TrackOrderScreenStyle' import styles from './Styles/TrackOrderScreenStyle'
import BaseHeader from '../Components/BaseHeader';
import BaseText from '../Components/BaseText';
class TrackOrderScreen extends Component { class TrackOrderScreen extends Component {
constructor(props) {
super(props)
this.state = {
dummyData: [
{
tanggal: '18 Mei 2020\n09:00 AM',
info: 'Pesanan Diterima',
notes: 'Dealer telah menerima pesanan dari Anda'
},{
tanggal: '18 Mei 2020\n09:45 AM',
info: 'Pesanan Berhasil',
notes: 'Pembayaran sudah diterima'
},{
tanggal: '18 Mei 2020\n10:45 AM',
info: 'Pengemasan Barang',
notes: 'Penjual sedang dalam proses pengemasan barang'
},{
tanggal: '18 Mei 2020\n06:30 PM',
info: 'Proses Pengiriman',
notes: 'Dealer telah menerima pesanan dari Anda'
},{
tanggal: '18 Mei 2020\n07:00 PM',
info: 'Pesanan Sampai Tujuan',
notes: 'Diterima oleh pembeli'
},
]
}
}
backAction = () => {
this.props.navigation.goBack()
return true;
};
componentDidMount() {
// alert('sadap')
// alert(JSON.stringify(this.props.navigation))
BackHandler.addEventListener("hardwareBackPress", this.backAction);
}
componentWillUnmount() {
BackHandler.removeEventListener("hardwareBackPress", this.backAction);
}
render () { render () {
return ( return (
<ScrollView style={styles.container}> <View style={{flex: 1, backgroundColor: '#4cc9f0'}}>
<KeyboardAvoidingView behavior='position'> <BaseHeader leftText={'No. Order 123456'} onBackPress={this.backAction}/>
<Text>TrackOrderScreen</Text> <ScrollView style={[styles.scrollContent]}>
</KeyboardAvoidingView> {this.state.dummyData.map((item, index) => {
return (
<View style={{marginTop: index == 0? 40 : 0}} key={index}>
<View style={{flexDirection:'row', justifyContent: 'space-between'}}>
<BaseText text={item.tanggal} type={"regular"} style={{fontSize: 12, opacity: .6, textAlign: 'right', width: '25%'}}/>
<View style={{width: '10%', alignItems: 'center', marginHorizontal: 5}}>
<View style={{height: 20, width: 20, backgroundColor: '#4cc9f0', borderRadius: 30}}/>
{index != this.state.dummyData.length -1 && <View style={{width: 3, backgroundColor: '#4cc9f0', height: 50, marginVertical: 5,}}/>}
</View>
<View style={{flexGrow: 1}}>
<BaseText text={item.info} type={"bold"} style={{fontSize: 12, opacity: .9, marginTop: 0,}}/>
<BaseText text={item.notes} type={"bold"} style={{fontSize: 10, opacity: .3}}/>
</View>
</View>
</View>
)
})}
</ScrollView> </ScrollView>
</View>
) )
} }
} }
......
...@@ -6,7 +6,7 @@ import { BottomFabBar } from 'rn-wave-bottom-bar' ...@@ -6,7 +6,7 @@ import { BottomFabBar } from 'rn-wave-bottom-bar'
import HomePageScreen from '../Containers/HomePageScreen'; import HomePageScreen from '../Containers/HomePageScreen';
import NotificationScreen from '../Containers/NotificationScreen'; import NotificationScreen from '../Containers/NotificationScreen';
import WishlistScreen from '../Containers/WishlistScreen'; import WishlistScreen from '../Containers/WishlistScreen';
import ProfileScreen from '../Containers/ProfileScreen'; import MyAccountScreen from '../Containers/MyAccountScreen';
import { NavigationEvents } from 'react-navigation'; import { NavigationEvents } from 'react-navigation';
const Tab = createBottomTabNavigator(); const Tab = createBottomTabNavigator();
...@@ -64,17 +64,17 @@ class MyTabs extends React.Component { ...@@ -64,17 +64,17 @@ class MyTabs extends React.Component {
{() => <WishlistScreen navigation={this.props.navigation}/>} {() => <WishlistScreen navigation={this.props.navigation}/>}
</Tab.Screen> </Tab.Screen>
<Tab.Screen <Tab.Screen
name="Profile" name="MyAccount"
// component={Profile} // component={Profile}
options={{ options={{
tabBarLabel: 'Profile', tabBarLabel: 'MyAccount',
tabBarIcon: ({ color, size }) => ( tabBarIcon: ({ color, size }) => (
<MaterialCommunityIcons name="account" color={color} size={size} /> <MaterialCommunityIcons name="account" color={color} size={size} />
), ),
}} }}
> >
{() => <ProfileScreen navigation={this.props.navigation}/>} {() => <MyAccountScreen navigation={this.props.navigation}/>}
</Tab.Screen> </Tab.Screen>
</Tab.Navigator> </Tab.Navigator>
); );
...@@ -100,6 +100,7 @@ export default class App extends React.Component { ...@@ -100,6 +100,7 @@ export default class App extends React.Component {
<NavigationEvents <NavigationEvents
onDidFocus={() => this.refresh()} onDidFocus={() => this.refresh()}
/> />
{/* <MyTabs navigation={this.props.navigation} activeIndex={this.state.activeIndex}/> */}
{!this.state.refresh && <MyTabs navigation={this.props.navigation} activeIndex={this.state.activeIndex}/>} {!this.state.refresh && <MyTabs navigation={this.props.navigation} activeIndex={this.state.activeIndex}/>}
</NavigationContainer> </NavigationContainer>
); );
......
...@@ -46,6 +46,7 @@ const images = { ...@@ -46,6 +46,7 @@ const images = {
beautyProduct: require('../Images/imageDummy/beautyProduct.jpg'), beautyProduct: require('../Images/imageDummy/beautyProduct.jpg'),
bodyShop: require('../Images/imageDummy/bodyShop.jpeg'), bodyShop: require('../Images/imageDummy/bodyShop.jpeg'),
comingSoon: require('../Images/imageDummy/comingSoon.png'), comingSoon: require('../Images/imageDummy/comingSoon.png'),
logoAnterAja: require('../Images/imageDummy/logoAnterAja.png'),
} }
export default images export default images
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
No preview for this file type
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
...@@ -36,6 +36,25 @@ ...@@ -36,6 +36,25 @@
AA65546BBDBE4293810E5EFA /* Nunito-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0690442D3E474BDA913D1FBD /* Nunito-Italic.ttf */; }; AA65546BBDBE4293810E5EFA /* Nunito-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0690442D3E474BDA913D1FBD /* Nunito-Italic.ttf */; };
325311DF88534B4D9872AD0F /* Nunito-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3144B08665A44EFB9D03B4A7 /* Nunito-Light.ttf */; }; 325311DF88534B4D9872AD0F /* Nunito-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3144B08665A44EFB9D03B4A7 /* Nunito-Light.ttf */; };
D8F54053880B4CBE917EC7D4 /* Nunito-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CBB5333CE67B42FF81768FA2 /* Nunito-Regular.ttf */; }; D8F54053880B4CBE917EC7D4 /* Nunito-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CBB5333CE67B42FF81768FA2 /* Nunito-Regular.ttf */; };
66B0C067C458492D9C0FE12C /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 40AFE08B5F7C47208FBC3994 /* AntDesign.ttf */; };
4A5B45C132FC4D7BA469CC8D /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8E96382FB898412BB51F68A7 /* Entypo.ttf */; };
4522C7E99177458A94D4990D /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C22FBB1853CB4CAC99CD48F8 /* EvilIcons.ttf */; };
A385951C32354CA2BB4FCE8D /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7F63D3D6DF2A4A2E8422F269 /* Feather.ttf */; };
12A9BE4914104CD987380109 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 618DFABEB97A4F55A61BA0E4 /* FontAwesome.ttf */; };
5D19F94923DE4BB299C0B1BC /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4A1920DD6D3F41D988301720 /* FontAwesome5_Brands.ttf */; };
8895C4AD663B47ABB3F9DEB9 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4C46F351A9994F809227BCCA /* FontAwesome5_Regular.ttf */; };
1C9772D253B5449A9DE35DF9 /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E82E471E09B1455AA586BBCA /* FontAwesome5_Solid.ttf */; };
A0094245A60D4A33B9F6245F /* Fontisto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 72BADDB704FC4FC99D42D151 /* Fontisto.ttf */; };
BF8F0F16041640F3AE260B9D /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1CD8AB0025024608AAF85F9F /* Foundation.ttf */; };
83B7A78B769D47D6871F5EF6 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BA018E41B6464B8E9D1C4673 /* Ionicons.ttf */; };
06F9E957A2C442E99F5747D7 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D3E01D52A9DB4B56A2B2B4A9 /* MaterialCommunityIcons.ttf */; };
F890D029A9CA41D28DC72837 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D2315A59934D483EAC1BA7E8 /* MaterialIcons.ttf */; };
DBABEC7B7A8D4B379CA10183 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EF1A8E66094744ACAFA945EE /* Octicons.ttf */; };
095A6FB056744A77BB97E023 /* Roboto_medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3F6A7F5CA57446ECB9A614DC /* Roboto_medium.ttf */; };
CDAC25D92476466C86EDE7C6 /* Roboto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 791133F906AC4893925EE9BD /* Roboto.ttf */; };
3B788BE1481B4FC4950BBF76 /* rubicon-icon-font.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1274003C78914CD8B1FA5A66 /* rubicon-icon-font.ttf */; };
7B3629BE9BE7462C838FFBD1 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3C4CBC60B12F4024BB88117B /* SimpleLineIcons.ttf */; };
7E8791994C19416784493D67 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2A2C811268E6443E94231D04 /* Zocial.ttf */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */ /* Begin PBXContainerItemProxy section */
...@@ -91,6 +110,25 @@ ...@@ -91,6 +110,25 @@
0690442D3E474BDA913D1FBD /* Nunito-Italic.ttf */ = {isa = PBXFileReference; name = "Nunito-Italic.ttf"; path = "../App/assets/fonts/Nunito-Italic.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 0690442D3E474BDA913D1FBD /* Nunito-Italic.ttf */ = {isa = PBXFileReference; name = "Nunito-Italic.ttf"; path = "../App/assets/fonts/Nunito-Italic.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
3144B08665A44EFB9D03B4A7 /* Nunito-Light.ttf */ = {isa = PBXFileReference; name = "Nunito-Light.ttf"; path = "../App/assets/fonts/Nunito-Light.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 3144B08665A44EFB9D03B4A7 /* Nunito-Light.ttf */ = {isa = PBXFileReference; name = "Nunito-Light.ttf"; path = "../App/assets/fonts/Nunito-Light.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
CBB5333CE67B42FF81768FA2 /* Nunito-Regular.ttf */ = {isa = PBXFileReference; name = "Nunito-Regular.ttf"; path = "../App/assets/fonts/Nunito-Regular.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; CBB5333CE67B42FF81768FA2 /* Nunito-Regular.ttf */ = {isa = PBXFileReference; name = "Nunito-Regular.ttf"; path = "../App/assets/fonts/Nunito-Regular.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
40AFE08B5F7C47208FBC3994 /* AntDesign.ttf */ = {isa = PBXFileReference; name = "AntDesign.ttf"; path = "../node_modules/native-base/Fonts/AntDesign.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
8E96382FB898412BB51F68A7 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/native-base/Fonts/Entypo.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
C22FBB1853CB4CAC99CD48F8 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/native-base/Fonts/EvilIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
7F63D3D6DF2A4A2E8422F269 /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/native-base/Fonts/Feather.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
618DFABEB97A4F55A61BA0E4 /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
4A1920DD6D3F41D988301720 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Brands.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome5_Brands.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
4C46F351A9994F809227BCCA /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Regular.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome5_Regular.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
E82E471E09B1455AA586BBCA /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Solid.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome5_Solid.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
72BADDB704FC4FC99D42D151 /* Fontisto.ttf */ = {isa = PBXFileReference; name = "Fontisto.ttf"; path = "../node_modules/native-base/Fonts/Fontisto.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
1CD8AB0025024608AAF85F9F /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/native-base/Fonts/Foundation.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
BA018E41B6464B8E9D1C4673 /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/native-base/Fonts/Ionicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
D3E01D52A9DB4B56A2B2B4A9 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialCommunityIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
D2315A59934D483EAC1BA7E8 /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
EF1A8E66094744ACAFA945EE /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/native-base/Fonts/Octicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
3F6A7F5CA57446ECB9A614DC /* Roboto_medium.ttf */ = {isa = PBXFileReference; name = "Roboto_medium.ttf"; path = "../node_modules/native-base/Fonts/Roboto_medium.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
791133F906AC4893925EE9BD /* Roboto.ttf */ = {isa = PBXFileReference; name = "Roboto.ttf"; path = "../node_modules/native-base/Fonts/Roboto.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
1274003C78914CD8B1FA5A66 /* rubicon-icon-font.ttf */ = {isa = PBXFileReference; name = "rubicon-icon-font.ttf"; path = "../node_modules/native-base/Fonts/rubicon-icon-font.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
3C4CBC60B12F4024BB88117B /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/native-base/Fonts/SimpleLineIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
2A2C811268E6443E94231D04 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/native-base/Fonts/Zocial.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
/* End PBXFileReference section */ /* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */
...@@ -221,6 +259,25 @@ ...@@ -221,6 +259,25 @@
0690442D3E474BDA913D1FBD /* Nunito-Italic.ttf */, 0690442D3E474BDA913D1FBD /* Nunito-Italic.ttf */,
3144B08665A44EFB9D03B4A7 /* Nunito-Light.ttf */, 3144B08665A44EFB9D03B4A7 /* Nunito-Light.ttf */,
CBB5333CE67B42FF81768FA2 /* Nunito-Regular.ttf */, CBB5333CE67B42FF81768FA2 /* Nunito-Regular.ttf */,
40AFE08B5F7C47208FBC3994 /* AntDesign.ttf */,
8E96382FB898412BB51F68A7 /* Entypo.ttf */,
C22FBB1853CB4CAC99CD48F8 /* EvilIcons.ttf */,
7F63D3D6DF2A4A2E8422F269 /* Feather.ttf */,
618DFABEB97A4F55A61BA0E4 /* FontAwesome.ttf */,
4A1920DD6D3F41D988301720 /* FontAwesome5_Brands.ttf */,
4C46F351A9994F809227BCCA /* FontAwesome5_Regular.ttf */,
E82E471E09B1455AA586BBCA /* FontAwesome5_Solid.ttf */,
72BADDB704FC4FC99D42D151 /* Fontisto.ttf */,
1CD8AB0025024608AAF85F9F /* Foundation.ttf */,
BA018E41B6464B8E9D1C4673 /* Ionicons.ttf */,
D3E01D52A9DB4B56A2B2B4A9 /* MaterialCommunityIcons.ttf */,
D2315A59934D483EAC1BA7E8 /* MaterialIcons.ttf */,
EF1A8E66094744ACAFA945EE /* Octicons.ttf */,
3F6A7F5CA57446ECB9A614DC /* Roboto_medium.ttf */,
791133F906AC4893925EE9BD /* Roboto.ttf */,
1274003C78914CD8B1FA5A66 /* rubicon-icon-font.ttf */,
3C4CBC60B12F4024BB88117B /* SimpleLineIcons.ttf */,
2A2C811268E6443E94231D04 /* Zocial.ttf */,
); );
name = Resources; name = Resources;
sourceTree = "<group>"; sourceTree = "<group>";
...@@ -382,6 +439,25 @@ ...@@ -382,6 +439,25 @@
AA65546BBDBE4293810E5EFA /* Nunito-Italic.ttf in Resources */, AA65546BBDBE4293810E5EFA /* Nunito-Italic.ttf in Resources */,
325311DF88534B4D9872AD0F /* Nunito-Light.ttf in Resources */, 325311DF88534B4D9872AD0F /* Nunito-Light.ttf in Resources */,
D8F54053880B4CBE917EC7D4 /* Nunito-Regular.ttf in Resources */, D8F54053880B4CBE917EC7D4 /* Nunito-Regular.ttf in Resources */,
66B0C067C458492D9C0FE12C /* AntDesign.ttf in Resources */,
4A5B45C132FC4D7BA469CC8D /* Entypo.ttf in Resources */,
4522C7E99177458A94D4990D /* EvilIcons.ttf in Resources */,
A385951C32354CA2BB4FCE8D /* Feather.ttf in Resources */,
12A9BE4914104CD987380109 /* FontAwesome.ttf in Resources */,
5D19F94923DE4BB299C0B1BC /* FontAwesome5_Brands.ttf in Resources */,
8895C4AD663B47ABB3F9DEB9 /* FontAwesome5_Regular.ttf in Resources */,
1C9772D253B5449A9DE35DF9 /* FontAwesome5_Solid.ttf in Resources */,
A0094245A60D4A33B9F6245F /* Fontisto.ttf in Resources */,
BF8F0F16041640F3AE260B9D /* Foundation.ttf in Resources */,
83B7A78B769D47D6871F5EF6 /* Ionicons.ttf in Resources */,
06F9E957A2C442E99F5747D7 /* MaterialCommunityIcons.ttf in Resources */,
F890D029A9CA41D28DC72837 /* MaterialIcons.ttf in Resources */,
DBABEC7B7A8D4B379CA10183 /* Octicons.ttf in Resources */,
095A6FB056744A77BB97E023 /* Roboto_medium.ttf in Resources */,
CDAC25D92476466C86EDE7C6 /* Roboto.ttf in Resources */,
3B788BE1481B4FC4950BBF76 /* rubicon-icon-font.ttf in Resources */,
7B3629BE9BE7462C838FFBD1 /* SimpleLineIcons.ttf in Resources */,
7E8791994C19416784493D67 /* Zocial.ttf in Resources */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
......
...@@ -75,6 +75,10 @@ ...@@ -75,6 +75,10 @@
<string>Nunito-Italic.ttf</string> <string>Nunito-Italic.ttf</string>
<string>Nunito-Light.ttf</string> <string>Nunito-Light.ttf</string>
<string>Nunito-Regular.ttf</string> <string>Nunito-Regular.ttf</string>
<string>Fontisto.ttf</string>
<string>Roboto_medium.ttf</string>
<string>Roboto.ttf</string>
<string>rubicon-icon-font.ttf</string>
</array> </array>
</dict> </dict>
</plist> </plist>
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
"format-json": "^1.0.3", "format-json": "^1.0.3",
"identity-obj-proxy": "^3.0.0", "identity-obj-proxy": "^3.0.0",
"lodash": "^4.17.15", "lodash": "^4.17.15",
"native-base": "^2.13.12",
"prop-types": "^15.7.2", "prop-types": "^15.7.2",
"querystringify": "^2.1.1", "querystringify": "^2.1.1",
"ramda": "^0.27.0", "ramda": "^0.27.0",
...@@ -58,7 +59,7 @@ ...@@ -58,7 +59,7 @@
"react-native-snap-carousel": "^3.9.1", "react-native-snap-carousel": "^3.9.1",
"react-native-svg": "^12.1.0", "react-native-svg": "^12.1.0",
"react-native-toast-message": "^1.3.1", "react-native-toast-message": "^1.3.1",
"react-native-vector-icons": "6.1.0", "react-native-vector-icons": "6.6.0",
"react-navigation": "^4.2.2", "react-navigation": "^4.2.2",
"react-navigation-redux-helpers": "^4.0.1", "react-navigation-redux-helpers": "^4.0.1",
"react-navigation-stack": "^1.10.3", "react-navigation-stack": "^1.10.3",
......
...@@ -2564,7 +2564,7 @@ ansi-regex@^5.0.0: ...@@ -2564,7 +2564,7 @@ ansi-regex@^5.0.0:
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
ansi-styles@^2.2.1: ansi-styles@^2.1.0, ansi-styles@^2.2.1:
version "2.2.1" version "2.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
...@@ -3859,6 +3859,11 @@ bluebird@^3.3.5, bluebird@^3.5.5: ...@@ -3859,6 +3859,11 @@ bluebird@^3.3.5, bluebird@^3.5.5:
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
blueimp-md5@^2.5.0:
version "2.16.0"
resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.16.0.tgz#9018bb805e4ee05512e0e8cbdb9305eeecbdc87c"
integrity sha512-j4nzWIqEFpLSbdhUApHRGDwfXbV8ALhqOn+FY5L6XBdKPAXU9BpGgFSbDsgqogfqPPR9R2WooseWCsfhfEC6uQ==
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:
version "4.11.9" version "4.11.9"
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828"
...@@ -4230,6 +4235,17 @@ caseless@~0.12.0: ...@@ -4230,6 +4235,17 @@ caseless@~0.12.0:
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
chalk@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.1.tgz#509afb67066e7499f7eb3535c77445772ae2d019"
integrity sha1-UJr7ZwZudJn36zU1x3RFdyri0Bk=
dependencies:
ansi-styles "^2.1.0"
escape-string-regexp "^1.0.2"
has-ansi "^2.0.0"
strip-ansi "^3.0.0"
supports-color "^2.0.0"
chalk@2.4.1: chalk@2.4.1:
version "2.4.1" version "2.4.1"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
...@@ -4370,6 +4386,11 @@ circular-json@^0.3.1: ...@@ -4370,6 +4386,11 @@ circular-json@^0.3.1:
resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A== integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==
clamp@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/clamp/-/clamp-1.0.1.tgz#66a0e64011816e37196828fdc8c8c147312c8634"
integrity sha1-ZqDmQBGBbjcZaCj9yMjBRzEshjQ=
class-utils@^0.3.5: class-utils@^0.3.5:
version "0.3.6" version "0.3.6"
resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
...@@ -4474,6 +4495,15 @@ cliui@^5.0.0: ...@@ -4474,6 +4495,15 @@ cliui@^5.0.0:
strip-ansi "^5.2.0" strip-ansi "^5.2.0"
wrap-ansi "^5.1.0" wrap-ansi "^5.1.0"
cliui@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
dependencies:
string-width "^4.2.0"
strip-ansi "^6.0.0"
wrap-ansi "^6.2.0"
clone-deep@^2.0.1: clone-deep@^2.0.1:
version "2.0.2" version "2.0.2"
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713"
...@@ -4544,7 +4574,7 @@ color-support@^1.1.3: ...@@ -4544,7 +4574,7 @@ color-support@^1.1.3:
resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
color@^3.1.2: color@^3.1.2, color@~3.1.2:
version "3.1.2" version "3.1.2"
resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10"
integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==
...@@ -5666,6 +5696,13 @@ escope@^3.6.0: ...@@ -5666,6 +5696,13 @@ escope@^3.6.0:
esrecurse "^4.1.0" esrecurse "^4.1.0"
estraverse "^4.1.1" estraverse "^4.1.1"
eslint-config-prettier@^6.0.0:
version "6.11.0"
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1"
integrity sha512-oB8cpLWSAjOVFEJhhyMZh6NOEOtBVziaqdDQ86+qhDHFbZXoRTM7pNSvFRfW/W/L/LrQ38C99J5CGuRBBzBsdA==
dependencies:
get-stdin "^6.0.0"
eslint-config-standard-jsx@4.0.1: eslint-config-standard-jsx@4.0.1:
version "4.0.1" version "4.0.1"
resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-4.0.1.tgz#cd4e463d0268e2d9e707f61f42f73f5b3333c642" resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-4.0.1.tgz#cd4e463d0268e2d9e707f61f42f73f5b3333c642"
...@@ -6649,6 +6686,14 @@ fs-extra@^1.0.0: ...@@ -6649,6 +6686,14 @@ fs-extra@^1.0.0:
jsonfile "^2.1.0" jsonfile "^2.1.0"
klaw "^1.0.0" klaw "^1.0.0"
fs-extra@^2.0.0:
version "2.1.2"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35"
integrity sha1-BGxwFjzvmq1GsOSn+kZ/si1x3jU=
dependencies:
graceful-fs "^4.1.2"
jsonfile "^2.1.0"
fs-extra@^7.0.1: fs-extra@^7.0.1:
version "7.0.1" version "7.0.1"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
...@@ -6763,6 +6808,11 @@ get-stdin@^5.0.1: ...@@ -6763,6 +6808,11 @@ get-stdin@^5.0.1:
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
integrity sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g= integrity sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g=
get-stdin@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b"
integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
get-stream@^3.0.0: get-stream@^3.0.0:
version "3.0.0" version "3.0.0"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
...@@ -7068,7 +7118,7 @@ hmac-drbg@^1.0.0: ...@@ -7068,7 +7118,7 @@ hmac-drbg@^1.0.0:
minimalistic-assert "^1.0.0" minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.1" minimalistic-crypto-utils "^1.0.1"
hoist-non-react-statics@1.x.x, hoist-non-react-statics@^1.2.0: hoist-non-react-statics@1.x.x, hoist-non-react-statics@^1.0.5, hoist-non-react-statics@^1.2.0:
version "1.2.0" version "1.2.0"
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb"
integrity sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs= integrity sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs=
...@@ -8199,6 +8249,11 @@ jest-pnp-resolver@^1.2.1: ...@@ -8199,6 +8249,11 @@ jest-pnp-resolver@^1.2.1:
resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
jest-react-native@^18.0.0:
version "18.0.0"
resolved "https://registry.yarnpkg.com/jest-react-native/-/jest-react-native-18.0.0.tgz#77dd909f069324599f227c58c61c2e62168726ba"
integrity sha1-d92QnwaTJFmfInxYxhwuYhaHJro=
jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: jest-regex-util@^24.3.0, jest-regex-util@^24.9.0:
version "24.9.0" version "24.9.0"
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636"
...@@ -9497,6 +9552,40 @@ nanomatch@^1.2.9: ...@@ -9497,6 +9552,40 @@ nanomatch@^1.2.9:
snapdragon "^0.8.1" snapdragon "^0.8.1"
to-regex "^3.0.1" to-regex "^3.0.1"
native-base-shoutem-theme@0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/native-base-shoutem-theme/-/native-base-shoutem-theme-0.3.1.tgz#f15cbd4ca74ca1c8b6a636d297b9164a5f2b3662"
integrity sha512-uwEGhg6gwDuJTHuhNXRKbHtNjni1UI9qfAsVchIqfK7mQAHSNPVU1QRs9Hw6O2K/qLZaP/aJmNoZGc2h2EGSwA==
dependencies:
hoist-non-react-statics "^1.0.5"
lodash "^4.17.14"
prop-types "^15.5.10"
native-base@^2.13.12:
version "2.13.12"
resolved "https://registry.yarnpkg.com/native-base/-/native-base-2.13.12.tgz#06020b46019964ddaef3a646ec07e72008018efc"
integrity sha512-LdKGNXisbmQ0vDHG86McZKIFTlRyo+OQdJpqmQ05Yf7CGlMbBykJZCFe9rdiee5pLq20xiChe/jXbzFdWcysrg==
dependencies:
blueimp-md5 "^2.5.0"
clamp "^1.0.1"
color "~3.1.2"
create-react-class "^15.6.3"
eslint-config-prettier "^6.0.0"
fs-extra "^2.0.0"
jest-react-native "^18.0.0"
lodash "^4.17.14"
native-base-shoutem-theme "0.3.1"
opencollective-postinstall "^2.0.2"
print-message "^2.1.0"
prop-types "^15.5.10"
react-native-drawer "2.5.1"
react-native-easy-grid "0.2.2"
react-native-keyboard-aware-scroll-view "0.9.1"
react-native-vector-icons "^6.6.0"
react-timer-mixin "^0.13.4"
react-tween-state "^0.1.5"
tween-functions "^1.0.1"
natural-compare@^1.4.0: natural-compare@^1.4.0:
version "1.4.0" version "1.4.0"
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
...@@ -9845,7 +9934,7 @@ open@^6.2.0: ...@@ -9845,7 +9934,7 @@ open@^6.2.0:
dependencies: dependencies:
is-wsl "^1.1.0" is-wsl "^1.1.0"
opencollective-postinstall@^2.0.1: opencollective-postinstall@^2.0.1, opencollective-postinstall@^2.0.2:
version "2.0.3" version "2.0.3"
resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259"
integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==
...@@ -10504,6 +10593,13 @@ pretty-hrtime@^1.0.3: ...@@ -10504,6 +10593,13 @@ pretty-hrtime@^1.0.3:
resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
print-message@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/print-message/-/print-message-2.1.0.tgz#b5588ed08b0e1bf77ac7bcb5cb78004afaf9a891"
integrity sha1-tViO0IsOG/d6x7y1y3gASvr5qJE=
dependencies:
chalk "1.1.1"
prismjs@^1.8.4: prismjs@^1.8.4:
version "1.20.0" version "1.20.0"
resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.20.0.tgz#9b685fc480a3514ee7198eac6a3bf5024319ff03" resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.20.0.tgz#9b685fc480a3514ee7198eac6a3bf5024319ff03"
...@@ -10740,6 +10836,13 @@ querystringify@^2.1.1: ...@@ -10740,6 +10836,13 @@ querystringify@^2.1.1:
resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e"
integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==
raf@^3.1.0:
version "3.4.1"
resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
dependencies:
performance-now "^2.1.0"
ramda@^0.21.0: ramda@^0.21.0:
version "0.21.0" version "0.21.0"
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.21.0.tgz#a001abedb3ff61077d4ff1d577d44de77e8d0a35" resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.21.0.tgz#a001abedb3ff61077d4ff1d577d44de77e8d0a35"
...@@ -10979,6 +11082,21 @@ react-native-device-info@^1.6.1: ...@@ -10979,6 +11082,21 @@ react-native-device-info@^1.6.1:
resolved "https://registry.yarnpkg.com/react-native-device-info/-/react-native-device-info-1.8.0.tgz#98a7e3adb4e3d377eeba9c751bda03b2d7f9da35" resolved "https://registry.yarnpkg.com/react-native-device-info/-/react-native-device-info-1.8.0.tgz#98a7e3adb4e3d377eeba9c751bda03b2d7f9da35"
integrity sha512-pGSMzU/ywpJT97bIrC94p0JgNn6VZT4Rrfo9F47PfAfIfQJvsqSef3ulimr6FeUkK1nEfp0oRByV35OaOt+uZA== integrity sha512-pGSMzU/ywpJT97bIrC94p0JgNn6VZT4Rrfo9F47PfAfIfQJvsqSef3ulimr6FeUkK1nEfp0oRByV35OaOt+uZA==
react-native-drawer@2.5.1:
version "2.5.1"
resolved "https://registry.yarnpkg.com/react-native-drawer/-/react-native-drawer-2.5.1.tgz#08b9314184f48c724f1b467f8859797369798654"
integrity sha512-cxcQNbSWy5sbGi7anSVp6EDr6JarOBMY9lbFOeLFeVYbONiudoqRKbgEsSDgSw3/LFCLvUXK5zdjXCOedeytxQ==
dependencies:
prop-types "^15.5.8"
tween-functions "^1.0.1"
react-native-easy-grid@0.2.2:
version "0.2.2"
resolved "https://registry.yarnpkg.com/react-native-easy-grid/-/react-native-easy-grid-0.2.2.tgz#f0be33620be1ebe2d2295918eb58b0a27e8272ab"
integrity sha512-MlYrNIldnEMKn6TVatQN1P64GoVlwGIuz+8ncdfJ0Wq/xtzUkQwlil8Uksyp7MhKfENE09MQnGNcba6Mx3oSAA==
dependencies:
lodash "^4.17.15"
react-native-flipper@^0.34.0: react-native-flipper@^0.34.0:
version "0.34.0" version "0.34.0"
resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.34.0.tgz#7df1f38ba5d97a9321125fe0fccbe47d99e6fa1d" resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.34.0.tgz#7df1f38ba5d97a9321125fe0fccbe47d99e6fa1d"
...@@ -11000,11 +11118,19 @@ react-native-i18n@2.0.14: ...@@ -11000,11 +11118,19 @@ react-native-i18n@2.0.14:
dependencies: dependencies:
i18n-js "^3.0.11" i18n-js "^3.0.11"
react-native-iphone-x-helper@^1.2.1: react-native-iphone-x-helper@^1.0.3, react-native-iphone-x-helper@^1.2.1:
version "1.2.1" version "1.2.1"
resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz#645e2ffbbb49e80844bb4cbbe34a126fda1e6772" resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz#645e2ffbbb49e80844bb4cbbe34a126fda1e6772"
integrity sha512-/VbpIEp8tSNNHIvstuA3Swx610whci1Zpc9mqNkqn14DkMbw+ORviln2u0XyHG1kPvvwTNGZY6QpeFwxYaSdbQ== integrity sha512-/VbpIEp8tSNNHIvstuA3Swx610whci1Zpc9mqNkqn14DkMbw+ORviln2u0XyHG1kPvvwTNGZY6QpeFwxYaSdbQ==
react-native-keyboard-aware-scroll-view@0.9.1:
version "0.9.1"
resolved "https://registry.yarnpkg.com/react-native-keyboard-aware-scroll-view/-/react-native-keyboard-aware-scroll-view-0.9.1.tgz#9e54b565a5f19b30bed12221d48921781f7630af"
integrity sha512-tBZ8rmjELN0F6t5UBp5CW3NYmZXgVnJSzVCssv/OqG2t6kiB+OUTqxNvUP24K+HARX4H+XaW0aEJSFQkQCv6KA==
dependencies:
prop-types "^15.6.2"
react-native-iphone-x-helper "^1.0.3"
react-native-modal@^11.5.6: react-native-modal@^11.5.6:
version "11.5.6" version "11.5.6"
resolved "https://registry.yarnpkg.com/react-native-modal/-/react-native-modal-11.5.6.tgz#bb25a78c35a5e24f45de060e5f64284397d38a87" resolved "https://registry.yarnpkg.com/react-native-modal/-/react-native-modal-11.5.6.tgz#bb25a78c35a5e24f45de060e5f64284397d38a87"
...@@ -11093,14 +11219,23 @@ react-native-toast-message@^1.3.1: ...@@ -11093,14 +11219,23 @@ react-native-toast-message@^1.3.1:
resolved "https://registry.yarnpkg.com/react-native-toast-message/-/react-native-toast-message-1.3.1.tgz#fd93a36b2005076ecfdd1cf59bbe3ee2d740e28b" resolved "https://registry.yarnpkg.com/react-native-toast-message/-/react-native-toast-message-1.3.1.tgz#fd93a36b2005076ecfdd1cf59bbe3ee2d740e28b"
integrity sha512-Jal6SCBVAAPmnKJ/KKPliCkowTt47pZC45+z3J7SmN4CByX+YtqgnuD9EL+986d+SRSzquPiJEG8BwrBtdfVVw== integrity sha512-Jal6SCBVAAPmnKJ/KKPliCkowTt47pZC45+z3J7SmN4CByX+YtqgnuD9EL+986d+SRSzquPiJEG8BwrBtdfVVw==
react-native-vector-icons@6.1.0: react-native-vector-icons@6.6.0:
version "6.1.0" version "6.6.0"
resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-6.1.0.tgz#770a3f8ced692d75deb3afbb9829195ceed1eedd" resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-6.6.0.tgz#66cf004918eb05d90778d64bd42077c1800d481b"
integrity sha512-1GF5I4VWgwnzBtVfAKNgEiR5ziHi5QaKL381wwApMzuiFgIJMNt5XIChuKwKoaiB86s+P5iMcYWxYCyENL96lA== integrity sha512-MImKVx8JEvVVBnaShMr7/yTX4Y062JZMupht1T+IEgbqBj4aQeQ1z2SH4VHWKNtWtppk4kz9gYyUiMWqx6tNSw==
dependencies: dependencies:
lodash "^4.0.0" lodash "^4.0.0"
prop-types "^15.6.2" prop-types "^15.6.2"
yargs "^8.0.2" yargs "^13.2.2"
react-native-vector-icons@^6.6.0:
version "6.7.0"
resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-6.7.0.tgz#8871ba52ef8e98878ba7a932847f96b6dfc1c137"
integrity sha512-LKdwqDIGVxV1+4HnmFIPaok9hba3WyTQ7H2Wj5RFv54zIdIjixrAiV9VD/Ej9Mc5/rUhTpmMiIVF3LVmVYD7dg==
dependencies:
lodash "^4.17.15"
prop-types "^15.7.2"
yargs "^15.0.2"
react-native@0.61.4: react-native@0.61.4:
version "0.61.4" version "0.61.4"
...@@ -11251,6 +11386,11 @@ react-textarea-autosize@^7.0.4: ...@@ -11251,6 +11386,11 @@ react-textarea-autosize@^7.0.4:
"@babel/runtime" "^7.1.2" "@babel/runtime" "^7.1.2"
prop-types "^15.6.0" prop-types "^15.6.0"
react-timer-mixin@^0.13.4:
version "0.13.4"
resolved "https://registry.yarnpkg.com/react-timer-mixin/-/react-timer-mixin-0.13.4.tgz#75a00c3c94c13abe29b43d63b4c65a88fc8264d3"
integrity sha512-4+ow23tp/Tv7hBM5Az5/Be/eKKF7DIvJ09voz5LyHGQaqqz9WV8YMs31eFvcYQs7d451LSg7kDJV70XYN/Ug/Q==
react-transition-group@^2.0.0: react-transition-group@^2.0.0:
version "2.9.0" version "2.9.0"
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d" resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d"
...@@ -11274,6 +11414,14 @@ react-treebeard@3.1.0: ...@@ -11274,6 +11414,14 @@ react-treebeard@3.1.0:
shallowequal "^1.1.0" shallowequal "^1.1.0"
velocity-react "^1.4.1" velocity-react "^1.4.1"
react-tween-state@^0.1.5:
version "0.1.5"
resolved "https://registry.yarnpkg.com/react-tween-state/-/react-tween-state-0.1.5.tgz#e98b066551efb93cb92dd1be14995c2e3deae339"
integrity sha1-6YsGZVHvuTy5LdG+FJlcLj3q4zk=
dependencies:
raf "^3.1.0"
tween-functions "^1.0.1"
react@16.9.0: react@16.9.0:
version "16.9.0" version "16.9.0"
resolved "https://registry.yarnpkg.com/react/-/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa" resolved "https://registry.yarnpkg.com/react/-/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa"
...@@ -12543,7 +12691,7 @@ string-width@^3.0.0, string-width@^3.1.0: ...@@ -12543,7 +12691,7 @@ string-width@^3.0.0, string-width@^3.1.0:
is-fullwidth-code-point "^2.0.0" is-fullwidth-code-point "^2.0.0"
strip-ansi "^5.1.0" strip-ansi "^5.1.0"
string-width@^4.1.0: string-width@^4.1.0, string-width@^4.2.0:
version "4.2.0" version "4.2.0"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
...@@ -12960,6 +13108,11 @@ tunnel-agent@^0.6.0: ...@@ -12960,6 +13108,11 @@ tunnel-agent@^0.6.0:
dependencies: dependencies:
safe-buffer "^5.0.1" safe-buffer "^5.0.1"
tween-functions@^1.0.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/tween-functions/-/tween-functions-1.2.0.tgz#1ae3a50e7c60bb3def774eac707acbca73bbc3ff"
integrity sha1-GuOlDnxguz3vd06scHrLynO7w/8=
tweetnacl@^0.14.3, tweetnacl@~0.14.0: tweetnacl@^0.14.3, tweetnacl@~0.14.0:
version "0.14.5" version "0.14.5"
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
...@@ -13523,6 +13676,15 @@ wrap-ansi@^5.1.0: ...@@ -13523,6 +13676,15 @@ wrap-ansi@^5.1.0:
string-width "^3.0.0" string-width "^3.0.0"
strip-ansi "^5.0.0" strip-ansi "^5.0.0"
wrap-ansi@^6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
dependencies:
ansi-styles "^4.0.0"
string-width "^4.1.0"
strip-ansi "^6.0.0"
wrappy@1: wrappy@1:
version "1.0.2" version "1.0.2"
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
...@@ -13672,6 +13834,14 @@ yargs-parser@^13.1.2: ...@@ -13672,6 +13834,14 @@ yargs-parser@^13.1.2:
camelcase "^5.0.0" camelcase "^5.0.0"
decamelize "^1.2.0" decamelize "^1.2.0"
yargs-parser@^18.1.2:
version "18.1.3"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
dependencies:
camelcase "^5.0.0"
decamelize "^1.2.0"
yargs-parser@^7.0.0: yargs-parser@^7.0.0:
version "7.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
...@@ -13697,7 +13867,7 @@ yargs@^12.0.5: ...@@ -13697,7 +13867,7 @@ yargs@^12.0.5:
y18n "^3.2.1 || ^4.0.0" y18n "^3.2.1 || ^4.0.0"
yargs-parser "^11.1.1" yargs-parser "^11.1.1"
yargs@^13.3.0: yargs@^13.2.2, yargs@^13.3.0:
version "13.3.2" version "13.3.2"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
...@@ -13713,24 +13883,22 @@ yargs@^13.3.0: ...@@ -13713,24 +13883,22 @@ yargs@^13.3.0:
y18n "^4.0.0" y18n "^4.0.0"
yargs-parser "^13.1.2" yargs-parser "^13.1.2"
yargs@^8.0.2: yargs@^15.0.2:
version "8.0.2" version "15.4.1"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
integrity sha1-YpmpBVsc78lp/355wdkY3Osiw2A= integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
dependencies: dependencies:
camelcase "^4.1.0" cliui "^6.0.0"
cliui "^3.2.0" decamelize "^1.2.0"
decamelize "^1.1.1" find-up "^4.1.0"
get-caller-file "^1.0.1" get-caller-file "^2.0.1"
os-locale "^2.0.0"
read-pkg-up "^2.0.0"
require-directory "^2.1.1" require-directory "^2.1.1"
require-main-filename "^1.0.1" require-main-filename "^2.0.0"
set-blocking "^2.0.0" set-blocking "^2.0.0"
string-width "^2.0.0" string-width "^4.2.0"
which-module "^2.0.0" which-module "^2.0.0"
y18n "^3.2.1" y18n "^4.0.0"
yargs-parser "^7.0.0" yargs-parser "^18.1.2"
yargs@^9.0.0: yargs@^9.0.0:
version "9.0.1" version "9.0.1"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment