react-native-vector-icons
Advanced tools
Comparing version 0.8.4 to 0.8.5
@@ -8,6 +8,7 @@ /** | ||
var React = require('react-native'); | ||
var { | ||
PropTypes, | ||
requireNativeComponent, | ||
} = require('react-native'); | ||
} = React; | ||
@@ -27,3 +28,18 @@ var iface = { | ||
}; | ||
var RNTypefaceTextView = requireNativeComponent('RNTypefaceTextView', iface); | ||
module.exports = requireNativeComponent('RNTypefaceTextView', iface); | ||
var TypefaceTextView = React.createClass({ | ||
getChildContext: function(): Object { | ||
return {isInAParentText: true}; | ||
}, | ||
childContextTypes: { | ||
isInAParentText: React.PropTypes.bool | ||
}, | ||
render: function() { | ||
return <RNTypefaceTextView {...this.props} />; | ||
}, | ||
}); | ||
module.exports = TypefaceTextView; |
{ | ||
"name": "react-native-vector-icons", | ||
"version": "0.8.4", | ||
"version": "0.8.5", | ||
"description": "Customizable Icons for React Native with support for NavBar/TabBar, image source and full styling. Choose from 3000+ bundled icons or use your own.", | ||
@@ -50,3 +50,3 @@ "main": "index.js", | ||
"peerDependencies": { | ||
"react-native": ">=0.4.0 || 0.5.0-rc1 || 0.6.0-rc || 0.7.0-rc || 0.7.0-rc.2 || 0.8.0-rc || 0.8.0-rc.2 || 0.9.0-rc || 0.10.0-rc || 0.11.0-rc || 0.12.0-rc || 0.13.0-rc || 0.14.0-rc" | ||
"react-native": ">=0.4.0 || 0.5.0-rc1 || 0.6.0-rc || 0.7.0-rc || 0.7.0-rc.2 || 0.8.0-rc || 0.8.0-rc.2 || 0.9.0-rc || 0.10.0-rc || 0.11.0-rc || 0.12.0-rc || 0.13.0-rc || 0.14.0-rc || 0.15.0-rc" | ||
}, | ||
@@ -53,0 +53,0 @@ "dependencies": { |
@@ -57,3 +57,3 @@ # Vector Icons for React Native | ||
Edit `Info.plist` and **Link Binary With Libraries** as described above. | ||
Edit `Info.plist` as described above. | ||
@@ -60,0 +60,0 @@ ### Android (experimental) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
789657
3748