mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
fix(all): docs for all missing props
This commit is contained in:

committed by
Manu MA

parent
53305741a0
commit
a72fced6fe
@ -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;
|
||||
|
Reference in New Issue
Block a user