chore: update dependencies

This commit is contained in:
Satyajit Sahoo
2020-01-03 21:53:55 +01:00
parent db5aec09e1
commit 005f4844b1
7 changed files with 853 additions and 365 deletions

View File

@@ -9,7 +9,9 @@ import * as TransitionPresets from './vendor/TransitionConfigs/TransitionPresets
export { default as createStackNavigator } from './navigators/createStackNavigator';
export const Assets = [
// eslint-disable-next-line import/no-commonjs
require('./vendor/views/assets/back-icon.png'),
// eslint-disable-next-line import/no-commonjs
require('./vendor/views/assets/back-icon-mask.png'),
];

View File

@@ -126,7 +126,6 @@ Array [
}
/>
<View
progress={1}
style={
Array [
Object {
@@ -281,7 +280,6 @@ Array [
}
/>
<View
progress={1}
style={
Array [
Object {

View File

@@ -126,7 +126,6 @@ Array [
}
/>
<View
progress={1}
style={
Array [
Object {
@@ -424,7 +423,6 @@ Array [
}
/>
<View
progress={1}
style={
Array [
Object {

View File

@@ -1,3 +1,4 @@
import { StyleProp, ViewStyle } from 'react-native';
import { StackNavigationOptions, StackNavigationConfig } from '../vendor/types';
type Validation = {
@@ -17,7 +18,10 @@ const validations: Record<string, Validation> = {
c.transparentCard
? {
...o,
cardStyle: [{ backgroundColor: 'transparent' }, o.cardStyle],
cardStyle: [
{ backgroundColor: 'transparent' },
o.cardStyle,
] as StyleProp<ViewStyle>,
}
: o,
},