Update to material-ui 1.0 beta

This commit is contained in:
uwap 2017-10-31 17:01:12 +01:00
parent 48a96b57fa
commit bef07649d0
14 changed files with 1164 additions and 395 deletions

View file

@ -10,9 +10,10 @@ declare type Topic = {
declare type Topics = Map<string,Topic>;
declare type ControlUI = {
type: "toggle" | "dropDown" | "slider",
type: "toggle" | "dropDown" | "slider" | "section",
text: string,
topic: string,
topic?: string,
icon?: string,
enableCondition?: (internal: string, actual: any) => boolean,
@ -23,6 +24,7 @@ declare type ControlUI = {
// DROPDOWN optional properties
options?: Map<string,any>, //options for dropDown
renderValue?: (value: string) => string
// SLIDER optional properties
min?: number,