fix(select): update select interfaces

This commit is contained in:
Adam Bradley
2017-12-11 13:49:44 -06:00
parent 903a12dc39
commit 8b6a1826a3
15 changed files with 515 additions and 413 deletions

View File

@ -2493,7 +2493,6 @@ declare global {
namespace JSXElements {
export interface IonSelectPopoverAttributes extends HTMLAttributes {
options?: SelectPopoverOption[];
value?: string;
}
}
}
@ -2527,11 +2526,12 @@ declare global {
cancelText?: string;
okText?: string;
placeholder?: string;
selectOptions?: any;
interface?: string;
name?: string;
selectedText?: string;
multiple?: boolean;
value?: string | string[];
interface?: string;
interfaceOptions?: any;
value?: string|string[];
}
}
}