Merge pull request #7339 from Karabur/master

Added min-height css property to react definitions
This commit is contained in:
Masahiro Wakame
2015-12-27 22:13:58 +09:00

5
react/react.d.ts vendored
View File

@@ -1145,6 +1145,11 @@ declare namespace __React {
*/
maxWidth?: any;
/**
* Sets the minimum height for an element. It prevents the height of the element to be smaller than the specified value. The value of min-height overrides both max-height and height.
*/
minHeight?: any;
/**
* Sets the minimum width of an element. It limits the width property to be not smaller than the value specified in min-width.
*/