fix(all): docs for all missing props

This commit is contained in:
Manu Mtz.-Almeida
2018-10-11 16:02:15 -05:00
committed by Manu MA
parent 53305741a0
commit a72fced6fe
119 changed files with 1026 additions and 657 deletions

View File

@ -36,7 +36,7 @@ export class Select implements ComponentInterface {
@Prop() mode!: Mode;
/**
* If true, the user cannot interact with the select. Defaults to `false`.
* If `true`, the user cannot interact with the select. Defaults to `false`.
*/
@Prop() disabled = false;
@ -66,7 +66,7 @@ export class Select implements ComponentInterface {
@Prop() selectedText?: string | null;
/**
* If true, the select can accept multiple values.
* If `true`, the select can accept multiple values.
*/
@Prop() multiple = false;
@ -260,6 +260,10 @@ export class Select implements ComponentInterface {
this.emitStyle();
}
/**
* Opens the select overlay, it could be an alert, action-sheet or popover,
* based in `ion-select` settings.
*/
@Method()
open(ev?: UIEvent): Promise<OverlaySelect> {
let selectInterface = this.interface;