From 94f3ac3e3516dacc214ad531be86a304fb1e11fa Mon Sep 17 00:00:00 2001 From: Alexandru Ciuca Date: Thu, 1 Oct 2015 10:46:00 +0300 Subject: [PATCH] Added alternateTextColor; made spacing non-optional in RawTheme. --- material-ui/material-ui.d.ts | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/material-ui/material-ui.d.ts b/material-ui/material-ui.d.ts index ae6953fe3..87bd32a09 100644 --- a/material-ui/material-ui.d.ts +++ b/material-ui/material-ui.d.ts @@ -844,16 +844,17 @@ declare namespace __MaterialUI { desktopToolbarHeight?: number; } interface ThemePalette { - primary1Color?: string, - primary2Color?: string, - primary3Color?: string, - accent1Color?: string, - accent2Color?: string, - accent3Color?: string, - textColor?: string, - canvasColor?: string, - borderColor?: string, - disabledColor?: string + primary1Color?: string; + primary2Color?: string; + primary3Color?: string; + accent1Color?: string; + accent2Color?: string; + accent3Color?: string; + textColor?: string; + canvasColor?: string; + borderColor?: string; + disabledColor?: string; + alternateTextColor?: string; } interface MuiTheme { rawTheme: RawTheme; @@ -1044,7 +1045,7 @@ declare namespace __MaterialUI { } interface RawTheme { - spacing?: Spacing; + spacing: Spacing; fontFamily?: string; palette: ThemePalette; }