Update to material-ui 1.0 beta
This commit is contained in:
parent
48a96b57fa
commit
bef07649d0
14 changed files with 1164 additions and 395 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue