react-loader-display
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "react-loader-display", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "A simple customizable ReactJS component that allows a developer to display a loading modal.", | ||
@@ -21,5 +21,6 @@ "main": "index.js", | ||
"createclass": "^0.2.4", | ||
"react-hyperscript": "^3.0.0", | ||
"react": "^15.5.4" | ||
"prop-types": "^15.5.10", | ||
"react": "^15.5.4", | ||
"react-hyperscript": "^3.0.0" | ||
} | ||
} |
@@ -5,2 +5,3 @@ 'use strict'; | ||
var React=require('react'); | ||
var PropTypes=require('prop-types'); | ||
@@ -19,9 +20,9 @@ module.exports = createReactClass({ | ||
propTypes:{ | ||
IsLoading: React.PropTypes.bool.isRequired, | ||
LoadingImage:React.PropTypes.string.isRequired, | ||
ZIndex:React.PropTypes.number, | ||
LoaderMessage: React.PropTypes.string, | ||
BackDropRGBA: React.PropTypes.string, | ||
ForeGroundColor: React.PropTypes.string, | ||
TextColor: React.PropTypes.string | ||
IsLoading: PropTypes.bool.isRequired, | ||
LoadingImage:PropTypes.string.isRequired, | ||
ZIndex:PropTypes.number, | ||
LoaderMessage: PropTypes.string, | ||
BackDropRGBA: PropTypes.string, | ||
ForeGroundColor: PropTypes.string, | ||
TextColor: PropTypes.string | ||
}, | ||
@@ -28,0 +29,0 @@ render: function() { |
Sorry, the diff of this file is not supported yet
23555
86
4
+ Addedprop-types@^15.5.10