react-grid-system
Advanced tools
Comparing version 4.4.4 to 4.4.5
@@ -87,3 +87,3 @@ 'use strict'; | ||
*/ | ||
align: _propTypes2.default.oneOf(['normal', 'start', 'center', 'end']), | ||
align: _propTypes2.default.oneOf(['normal', 'start', 'center', 'end', 'stretch']), | ||
/** | ||
@@ -90,0 +90,0 @@ * Horizontal column alignment |
{ | ||
"name": "react-grid-system", | ||
"version": "4.4.4", | ||
"version": "4.4.5", | ||
"description": "A powerful Bootstrap-like responsive grid system for React.", | ||
@@ -5,0 +5,0 @@ "main": "./build/index.js", |
@@ -116,2 +116,8 @@ A powerful Bootstrap-like responsive grid system for React. | ||
</Row> | ||
<br /> | ||
<Row align="stretch" debug> | ||
<Col debug>1 of 3</Col> | ||
<Col debug>2 of 3</Col> | ||
<Col debug>3 of 3</Col> | ||
</Row> | ||
</Container> | ||
@@ -118,0 +124,0 @@ ``` |
@@ -17,3 +17,3 @@ import React from 'react'; | ||
*/ | ||
align: PropTypes.oneOf(['normal', 'start', 'center', 'end']), | ||
align: PropTypes.oneOf(['normal', 'start', 'center', 'end', 'stretch']), | ||
/** | ||
@@ -20,0 +20,0 @@ * Horizontal column alignment |
87417