react-grid-system
Advanced tools
Comparing version 4.3.0 to 4.3.1
declare module 'react-grid-system' { | ||
import * as React from 'react' | ||
type Align = "normal" | "start" | "center" | "end" | ||
import * as React from 'react'; | ||
type Align = 'normal' | 'start' | 'center' | 'end' | ||
type Justify = 'start' | 'center' | 'end' | 'between' | 'around' | 'initial' | 'inherit'; | ||
type Offsets = { | ||
@@ -11,2 +14,3 @@ xs?: number, | ||
} | ||
type Push = { | ||
@@ -19,2 +23,3 @@ xs?: number, | ||
} | ||
type Pull = { | ||
@@ -27,2 +32,3 @@ xs?: number, | ||
} | ||
type ColProps = React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & { | ||
@@ -54,2 +60,3 @@ debug?: boolean, | ||
align?: Align, | ||
justify?: Justify, | ||
debug?: boolean, | ||
@@ -93,13 +100,14 @@ style?: object, | ||
gridColumns?: number, | ||
defaultScreenClass?: "xs" | "sm" | "md" | "lg" | "xl" | ||
defaultScreenClass?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | ||
} | ||
export function setConfiguration(configuration: Configuration): void | ||
export class Col extends React.Component<ColProps, any> {} | ||
export class Container extends React.Component<ContainerProps, any> {} | ||
export class Row extends React.Component<RowProps, any> {} | ||
export class ClearFix extends React.Component<ClearFixProps, any> {} | ||
export class Hidden extends React.Component<HiddenProps, any> {} | ||
export class ScreenClassRender extends React.Component<ScreenClassRenderProps, any> {} | ||
export class Visible extends React.Component<VisibleProps, any> {} | ||
export class Col extends React.Component<ColProps, any> { } | ||
export class Container extends React.Component<ContainerProps, any> { } | ||
export class Row extends React.Component<RowProps, any> { } | ||
export class ClearFix extends React.Component<ClearFixProps, any> { } | ||
export class Hidden extends React.Component<HiddenProps, any> { } | ||
export class ScreenClassRender extends React.Component<ScreenClassRenderProps, any> { } | ||
export class Visible extends React.Component<VisibleProps, any> { } | ||
} |
{ | ||
"name": "react-grid-system", | ||
"version": "4.3.0", | ||
"version": "4.3.1", | ||
"description": "A powerful Bootstrap-like responsive grid system for React.", | ||
@@ -5,0 +5,0 @@ "main": "./build/index.js", |
@@ -1,2 +0,2 @@ | ||
A no CSS Bootstrap-like responsive grid system for React. | ||
A powerful Bootstrap-like responsive grid system for React. | ||
@@ -3,0 +3,0 @@ For more information on these components, view this project on GitHub: [https://github.com/JSxMachina/react-grid-system](https://github.com/JSxMachina/react-grid-system) |
74234
1693