Skip to content

Commit 0c78fdb

Browse files
committed
Moved files
1 parent 3e4c0bf commit 0c78fdb

19 files changed

Lines changed: 24 additions & 21 deletions

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,13 +220,13 @@ android/app/libs
220220
android/keystores/debug.keystore
221221
AndroidE2E/.project
222222
AndroidE2E/app/.project
223-
lib/android/.project
223+
android/.project
224224
playground/android/.project
225225
AndroidE2E/app/.classpath
226226
AndroidE2E/app/.settings/
227227
AndroidE2E/app/bin/
228-
lib/android/.settings/
229-
lib/android/app/.settings/
228+
android/.settings/
229+
android/app/.settings/
230230
playground/android/.settings/
231231
playground/android/app/.settings/
232232
AndroidE2E/.settings/

Mock.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './lib/Mock';
1+
export * from './Mock';

Mock/Components/ComponentScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { Component } from 'react';
22
import { View, Text, TouchableOpacity, Image, ImageURISource } from 'react-native';
3-
import { Navigation, ImageResource } from 'react-native-navigation';
3+
import { Navigation, ImageResource } from 'src';
44
import { ComponentProps } from '../ComponentProps';
55
import { VISIBLE_SCREEN_TEST_ID } from '../constants';
66
import { LayoutStore } from '../Stores/LayoutStore';

Mock/Components/NavigationButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { Component } from 'react';
22
import { Button, TouchableOpacity } from 'react-native';
3-
import { Navigation, OptionsTopBarButton } from 'react-native-navigation';
3+
import { Navigation, OptionsTopBarButton } from 'src';
44
import { events } from '../Stores/EventsStore';
55

66
interface ButtonProps {

Mock/Components/TopBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
OptionsTopBar,
66
OptionsTopBarBackButton,
77
OptionsTopBarButton,
8-
} from 'react-native-navigation';
8+
} from 'src';
99
import ParentNode from '../Layouts/ParentNode';
1010
import { LayoutStore } from '../Stores/LayoutStore';
1111
import { NavigationButton } from './NavigationButton';

Mock/Layouts/BottomTabsNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import _ from 'lodash';
2-
import { Options } from '../../src/index';
2+
import { Options } from '../../src';
33
import { switchTabByIndex } from '../actions/layoutActions';
44
import ParentNode from './ParentNode';
55

Mock/Layouts/Node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Options } from '../../src/index';
1+
import { Options } from '../../src';
22
import ParentNode from './ParentNode';
33

44
interface Data {

Mock/Layouts/ParentNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import _ from 'lodash';
22
import { OptionsTopBarButton } from '../../src/interfaces/Options';
3-
import { Options } from '../../src/index';
3+
import { Options } from '../../src';
44
import { LayoutStore } from '../Stores/LayoutStore';
55
import ComponentNode from './ComponentNode';
66
import LayoutNodeFactory from './LayoutNodeFactory';

Mock/Layouts/SideMenu.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import ParentNode from './ParentNode';
22
import ComponentNode from './ComponentNode';
3-
import { Options } from '../../src/index';
3+
import { Options } from '../../src';
44
import * as layoutActions from '../actions/layoutActions';
55
import { NodeType } from './Node';
66

Mock/Stores/EventsStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
ModalDismissedEvent,
55
ScreenPoppedEvent,
66
} from '../../src/interfaces/ComponentEvents';
7-
import { ComponentDidAppearEvent, NavigationButtonPressedEvent } from '../../src/index';
7+
import { ComponentDidAppearEvent, NavigationButtonPressedEvent } from '../../src';
88
import { BottomTabPressedEvent, CommandCompletedEvent } from '../../src/interfaces/Events';
99

1010
export const events = {

0 commit comments

Comments
 (0)