Make height and width optional for model view components (#1657)

This commit is contained in:
Matt Irvine
2018-06-18 16:27:57 -07:00
committed by GitHub
parent 9c95e1289f
commit 3274c0b734

View File

@@ -304,8 +304,8 @@ declare module 'sqlops' {
export type InputBoxInputType = 'color' | 'date' | 'datetime-local' | 'email' | 'month' | 'number' | 'password' | 'range' | 'search' | 'text' | 'time' | 'url' | 'week';
export interface ComponentProperties {
height: number | string;
width: number | string;
height?: number | string;
width?: number | string;
}
export interface InputBoxProperties extends ComponentProperties {