mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-11 08:13:29 +08:00
chore: upgrade deps
This commit is contained in:
@@ -44,6 +44,7 @@
|
||||
.*/node_modules/expo/.*
|
||||
.*/node_modules/react-navigation/.*
|
||||
.*/node_modules/react-native-gesture-handler/.*
|
||||
.*/node_modules/xdl/.*
|
||||
|
||||
[include]
|
||||
|
||||
@@ -76,5 +77,5 @@ suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
|
||||
|
||||
[version]
|
||||
^0.65.0
|
||||
^0.67.0
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import {
|
||||
DefaultTheme,
|
||||
} from 'react-native-paper';
|
||||
import createReactContext from 'create-react-context';
|
||||
import { DrawerNavigator } from 'react-navigation';
|
||||
import { createDrawerNavigator } from 'react-navigation';
|
||||
import RootNavigator from './src/RootNavigator';
|
||||
import DrawerItems from './DrawerItems';
|
||||
import type { Theme } from 'react-native-paper/types';
|
||||
@@ -20,7 +20,7 @@ type State = {
|
||||
|
||||
const ThemeToggleContext: any = createReactContext();
|
||||
|
||||
const App = DrawerNavigator(
|
||||
const App = createDrawerNavigator(
|
||||
{ Home: { screen: RootNavigator } },
|
||||
{
|
||||
contentComponent: () => (
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"description": "Example app for React Native Paper: https://callstack.github.io/react-native-paper/",
|
||||
"slug": "react-native-paper-example",
|
||||
"privacy": "public",
|
||||
"sdkVersion": "26.0.0",
|
||||
"sdkVersion": "27.0.0",
|
||||
"version": "1.0.0",
|
||||
"orientation": "default",
|
||||
"primaryColor": "#cccccc",
|
||||
|
||||
@@ -15,22 +15,22 @@
|
||||
"color": "^2.0.1",
|
||||
"create-react-context": "^0.2.2",
|
||||
"deepmerge": "^2.1.0",
|
||||
"expo": "~26.0.0",
|
||||
"react": "16.3.0-alpha.1",
|
||||
"react-lifecycles-compat": "^3.0.2",
|
||||
"react-native": "~0.54.4",
|
||||
"react-navigation": "^1.5.11"
|
||||
"expo": "~27.0.2",
|
||||
"react": "16.3.1",
|
||||
"react-lifecycles-compat": "^3.0.4",
|
||||
"react-native": "~0.55.4",
|
||||
"react-navigation": "^2.0.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-plugin-module-resolver": "^3.1.1",
|
||||
"babel-preset-expo": "^4.0.0",
|
||||
"glob-to-regexp": "^0.4.0",
|
||||
"react-native-scripts": "1.13.1"
|
||||
"react-native-scripts": "1.14.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"**/deepmerge": "2.1.0",
|
||||
"**/hoist-non-react-statics": "2.5.0",
|
||||
"**/react-lifecycles-compat": "3.0.2",
|
||||
"**/react": "16.3.0-alpha.1"
|
||||
"**/react-lifecycles-compat": "3.0.4",
|
||||
"**/react": "16.3.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* @flow */
|
||||
|
||||
import * as React from 'react';
|
||||
import { StackNavigator } from 'react-navigation';
|
||||
import { createStackNavigator } from 'react-navigation';
|
||||
import { Toolbar } from 'react-native-paper';
|
||||
import ExampleList, { examples } from './ExampleList';
|
||||
|
||||
@@ -30,7 +30,7 @@ const routes = Object.keys(examples)
|
||||
};
|
||||
}, {});
|
||||
|
||||
export default StackNavigator(
|
||||
export default createStackNavigator(
|
||||
{
|
||||
home: { screen: ExampleList },
|
||||
...routes,
|
||||
@@ -39,10 +39,7 @@ export default StackNavigator(
|
||||
navigationOptions: ({ navigation }) => ({
|
||||
header: (
|
||||
<Toolbar>
|
||||
<Toolbar.Action
|
||||
icon="menu"
|
||||
onPress={() => navigation.navigate('DrawerOpen')}
|
||||
/>
|
||||
<Toolbar.Action icon="menu" onPress={() => navigation.openDrawer()} />
|
||||
<Toolbar.Content title="Examples" />
|
||||
</Toolbar>
|
||||
),
|
||||
|
||||
2905
example/yarn.lock
2905
example/yarn.lock
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
@@ -41,7 +41,7 @@
|
||||
"create-react-context": "^0.2.2",
|
||||
"deepmerge": "^2.1.0",
|
||||
"hoist-non-react-statics": "^2.5.0",
|
||||
"react-lifecycles-compat": "^3.0.2"
|
||||
"react-lifecycles-compat": "^3.0.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-cli": "^6.26.0",
|
||||
@@ -51,15 +51,15 @@
|
||||
"eslint-config-callstack-io": "^1.1.1",
|
||||
"eslint-plugin-prettier": "^2.6.0",
|
||||
"eslint-plugin-react-native": "^3.2.1",
|
||||
"flow-bin": "~0.65.0",
|
||||
"flow-bin": "~0.67.1",
|
||||
"husky": "^0.14.3",
|
||||
"jest": "^22.4.3",
|
||||
"jest": "^23.0.0",
|
||||
"prettier": "^1.12.1",
|
||||
"react": "16.3.0-alpha.1",
|
||||
"react-dom": "16.3.0-alpha.1",
|
||||
"react-native": "~0.54.4",
|
||||
"react": "16.3.1",
|
||||
"react-dom": "16.3.1",
|
||||
"react-native": "~0.55.4",
|
||||
"react-native-vector-icons": "~4.6.0",
|
||||
"react-test-renderer": "16.3.0-alpha.1"
|
||||
"react-test-renderer": "16.3.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "*",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,6 @@
|
||||
|
||||
exports[`renders button with color 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -25,15 +24,8 @@ exports[`renders button with color 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -45,8 +37,6 @@ exports[`renders button with color 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -118,7 +108,6 @@ exports[`renders button with color 1`] = `
|
||||
|
||||
exports[`renders button with icon 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -141,15 +130,8 @@ exports[`renders button with icon 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -161,8 +143,6 @@ exports[`renders button with icon 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -268,7 +248,6 @@ exports[`renders button with icon 1`] = `
|
||||
|
||||
exports[`renders contained contained with mode 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -299,15 +278,8 @@ exports[`renders contained contained with mode 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -319,8 +291,6 @@ exports[`renders contained contained with mode 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -392,7 +362,6 @@ exports[`renders contained contained with mode 1`] = `
|
||||
|
||||
exports[`renders disabled button 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -415,15 +384,8 @@ exports[`renders disabled button 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -435,8 +397,6 @@ exports[`renders disabled button 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -508,7 +468,6 @@ exports[`renders disabled button 1`] = `
|
||||
|
||||
exports[`renders loading button 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -531,15 +490,8 @@ exports[`renders loading button 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -551,8 +503,6 @@ exports[`renders loading button 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -637,7 +587,6 @@ exports[`renders loading button 1`] = `
|
||||
|
||||
exports[`renders outlined button with mode 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -660,15 +609,8 @@ exports[`renders outlined button with mode 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -680,8 +622,6 @@ exports[`renders outlined button with mode 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -753,7 +693,6 @@ exports[`renders outlined button with mode 1`] = `
|
||||
|
||||
exports[`renders text button by default 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -776,15 +715,8 @@ exports[`renders text button by default 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -796,8 +728,6 @@ exports[`renders text button by default 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -869,7 +799,6 @@ exports[`renders text button by default 1`] = `
|
||||
|
||||
exports[`renders text button with mode 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -892,15 +821,8 @@ exports[`renders text button with mode 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -912,8 +834,6 @@ exports[`renders text button with mode 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
|
||||
@@ -2,13 +2,7 @@
|
||||
|
||||
exports[`renders chip with icon 1`] = `
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hitSlop={undefined}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -29,7 +23,6 @@ exports[`renders chip with icon 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
>
|
||||
<Text
|
||||
accessible={true}
|
||||
@@ -108,13 +101,7 @@ exports[`renders chip with icon 1`] = `
|
||||
|
||||
exports[`renders chip with onPress 1`] = `
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hitSlop={undefined}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -135,7 +122,6 @@ exports[`renders chip with onPress 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
>
|
||||
<Text
|
||||
accessible={true}
|
||||
@@ -190,13 +176,7 @@ exports[`renders chip with onPress 1`] = `
|
||||
|
||||
exports[`renders deletable chip 1`] = `
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hitSlop={undefined}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -217,7 +197,6 @@ exports[`renders deletable chip 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
>
|
||||
<Text
|
||||
accessible={true}
|
||||
@@ -292,13 +271,7 @@ exports[`renders deletable chip 1`] = `
|
||||
Example Chip
|
||||
</Text>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hitSlop={undefined}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -310,7 +283,6 @@ exports[`renders deletable chip 1`] = `
|
||||
"padding": 6,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
>
|
||||
<Text
|
||||
accessible={true}
|
||||
|
||||
@@ -17,15 +17,8 @@ exports[`renders DrawerItem with icon 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -37,8 +30,6 @@ exports[`renders DrawerItem with icon 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -144,15 +135,8 @@ exports[`renders active DrawerItem 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -164,8 +148,6 @@ exports[`renders active DrawerItem 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -271,15 +253,8 @@ exports[`renders basic DrawerItem 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -291,8 +266,6 @@ exports[`renders basic DrawerItem 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
exports[`renders extended FAB 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -29,15 +28,8 @@ exports[`renders extended FAB 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -49,8 +41,6 @@ exports[`renders extended FAB 1`] = `
|
||||
"borderRadius": 28,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
pointerEvents="none"
|
||||
@@ -83,7 +73,6 @@ exports[`renders extended FAB 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Object {
|
||||
"bottom": 0,
|
||||
@@ -179,7 +168,6 @@ exports[`renders extended FAB 1`] = `
|
||||
|
||||
exports[`renders normal FAB 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -206,15 +194,8 @@ exports[`renders normal FAB 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -226,8 +207,6 @@ exports[`renders normal FAB 1`] = `
|
||||
"borderRadius": 28,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
pointerEvents="none"
|
||||
@@ -260,7 +239,6 @@ exports[`renders normal FAB 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Object {
|
||||
"bottom": 0,
|
||||
@@ -310,7 +288,6 @@ exports[`renders normal FAB 1`] = `
|
||||
|
||||
exports[`renders small FAB 1`] = `
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -337,15 +314,8 @@ exports[`renders small FAB 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -357,8 +327,6 @@ exports[`renders small FAB 1`] = `
|
||||
"borderRadius": 28,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
pointerEvents="none"
|
||||
@@ -391,7 +359,6 @@ exports[`renders small FAB 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Object {
|
||||
"bottom": 0,
|
||||
|
||||
@@ -3,15 +3,8 @@
|
||||
exports[`renders list accordion with children 1`] = `
|
||||
<View>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -26,8 +19,6 @@ exports[`renders list accordion with children 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
pointerEvents="none"
|
||||
@@ -178,15 +169,8 @@ exports[`renders list accordion with children 1`] = `
|
||||
exports[`renders list accordion with icons 1`] = `
|
||||
<View>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -201,8 +185,6 @@ exports[`renders list accordion with icons 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
pointerEvents="none"
|
||||
@@ -353,15 +335,8 @@ exports[`renders list accordion with icons 1`] = `
|
||||
exports[`renders multiline list accordion 1`] = `
|
||||
<View>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -376,8 +351,6 @@ exports[`renders multiline list accordion 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
pointerEvents="none"
|
||||
|
||||
@@ -2,15 +2,8 @@
|
||||
|
||||
exports[`renders list item with avatar 1`] = `
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -25,8 +18,6 @@ exports[`renders list item with avatar 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -122,15 +113,8 @@ exports[`renders list item with avatar 1`] = `
|
||||
|
||||
exports[`renders list item with avatar and icon 1`] = `
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -145,8 +129,6 @@ exports[`renders list item with avatar and icon 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -331,15 +313,8 @@ exports[`renders list item with avatar and icon 1`] = `
|
||||
|
||||
exports[`renders list item with icon 1`] = `
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -354,8 +329,6 @@ exports[`renders list item with icon 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -468,15 +441,8 @@ exports[`renders list item with icon 1`] = `
|
||||
|
||||
exports[`renders list item with title and description 1`] = `
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -491,8 +457,6 @@ exports[`renders list item with title and description 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
|
||||
@@ -60,15 +60,8 @@ exports[`renders list section with title 1`] = `
|
||||
Some title
|
||||
</Text>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -83,8 +76,6 @@ exports[`renders list section with title 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -194,15 +185,8 @@ exports[`renders list section with title 1`] = `
|
||||
</View>
|
||||
</View>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -217,8 +201,6 @@ exports[`renders list section with title 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -342,15 +324,8 @@ exports[`renders list section without title 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -365,8 +340,6 @@ exports[`renders list section without title 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -476,15 +449,8 @@ exports[`renders list section without title 1`] = `
|
||||
</View>
|
||||
</View>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -499,8 +465,6 @@ exports[`renders list section without title 1`] = `
|
||||
undefined,
|
||||
]
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
|
||||
@@ -34,7 +34,6 @@ exports[`renders not visible snackbar with content 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Object {
|
||||
"opacity": 0,
|
||||
@@ -155,7 +154,6 @@ exports[`renders snackbar with Text as a child 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Object {
|
||||
"opacity": 0,
|
||||
@@ -282,7 +280,6 @@ exports[`renders snackbar with action button 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Object {
|
||||
"opacity": 0,
|
||||
@@ -363,7 +360,6 @@ exports[`renders snackbar with action button 1`] = `
|
||||
Snackbar content
|
||||
</Text>
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Array [
|
||||
Object {
|
||||
@@ -388,15 +384,8 @@ exports[`renders snackbar with action button 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
accessibilityComponentType={undefined}
|
||||
accessibilityLabel={undefined}
|
||||
accessibilityTraits={undefined}
|
||||
accessible={true}
|
||||
hasTVPreferredFocus={undefined}
|
||||
hitSlop={undefined}
|
||||
isTVSelectable={true}
|
||||
nativeID={undefined}
|
||||
onLayout={undefined}
|
||||
onResponderGrant={[Function]}
|
||||
onResponderMove={[Function]}
|
||||
onResponderRelease={[Function]}
|
||||
@@ -408,8 +397,6 @@ exports[`renders snackbar with action button 1`] = `
|
||||
"borderRadius": 4,
|
||||
}
|
||||
}
|
||||
testID={undefined}
|
||||
tvParallaxProperties={undefined}
|
||||
>
|
||||
<View
|
||||
style={
|
||||
@@ -520,7 +507,6 @@ exports[`renders snackbar with content 1`] = `
|
||||
}
|
||||
>
|
||||
<View
|
||||
collapsable={undefined}
|
||||
style={
|
||||
Object {
|
||||
"opacity": 0,
|
||||
|
||||
Reference in New Issue
Block a user