react-grid-system
Advanced tools
Comparing version 4.1.3 to 4.1.4
@@ -25,3 +25,3 @@ declare module 'react-grid-system' { | ||
} | ||
type ColProps = { | ||
type ColProps = React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & { | ||
debug?: boolean, | ||
@@ -40,3 +40,3 @@ align?: Align | ||
type ContainerProps = { | ||
type ContainerProps = React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & { | ||
xs?: boolean, | ||
@@ -51,3 +51,3 @@ sm?: boolean, | ||
type RowProps = { | ||
type RowProps = React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & { | ||
align?: Align, | ||
@@ -54,0 +54,0 @@ debug?: boolean, |
{ | ||
"name": "react-grid-system", | ||
"version": "4.1.3", | ||
"version": "4.1.4", | ||
"description": "A powerful Bootstrap-like responsive grid system for React.", | ||
@@ -5,0 +5,0 @@ "main": "./build/index.js", |
69707