Skip to content

Commit

Permalink
checkout new branch for touch events support
Browse files Browse the repository at this point in the history
  • Loading branch information
magicismight committed May 14, 2016
1 parent ddb317e commit 1f7a908
Show file tree
Hide file tree
Showing 19 changed files with 28 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Example/examples/Circle.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Circle
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Clipping.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
ClipPath,
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Ellipse.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Ellipse
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/G.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
G,
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Gradients.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Defs,
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Image.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Image,
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Line.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Line
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Path.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Path,
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Polygon.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Polygon,
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Polyline.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Polyline
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Rect.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Rect
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Stroking.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Path,
Expand Down
7 changes: 5 additions & 2 deletions Example/examples/Svg.js
@@ -1,9 +1,12 @@
import React, {
Component,
import {
StyleSheet,
View
} from 'react-native';

import React, {
Component
} from 'react';

const styles = StyleSheet.create({
container: {
flex: 1,
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Symbol.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Symbol,
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Text.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Text,
Expand Down
2 changes: 1 addition & 1 deletion Example/examples/Use.js
@@ -1,6 +1,6 @@
import React, {
Component
} from 'react-native';
} from 'react';

import Svg, {
Defs,
Expand Down
5 changes: 3 additions & 2 deletions Example/main.js
Expand Up @@ -3,9 +3,8 @@
* https://github.com/facebook/react-native
*/
'use strict';
import React, {
import {
AppRegistry,
Component,
StyleSheet,
Text,
View,
Expand All @@ -16,6 +15,8 @@ import React, {
Easing
} from 'react-native';

import React, {Component} from 'react';

import {
Svg,
Circle,
Expand Down
2 changes: 1 addition & 1 deletion Example/package.json
Expand Up @@ -6,7 +6,7 @@
"start": "react-native start"
},
"dependencies": {
"react-native": "^0.24.0",
"react-native": "^0.25.1",
"react-native-svg": "../",
"react-native-root-modal": "^1.0.3",
"react": "^0.14.5"
Expand Down
5 changes: 4 additions & 1 deletion package.json
@@ -1,5 +1,5 @@
{
"version": "1.3.1",
"version": "2.0.0",
"name": "react-native-svg",
"description": "react native svg library",
"repository": {
Expand All @@ -20,6 +20,9 @@
"scripts": {
"lint": "eslint ./"
},
"peerDependencies": {
"react-native": ">=0.25.1"
},
"dependencies": {
"color": "^0.11.1",
"lodash": "^4.0.0"
Expand Down

0 comments on commit 1f7a908

Please sign in to comment.