fix(inputs): disabled handling (#16071)

This commit is contained in:
Manu MA
2018-10-25 22:50:06 +02:00
committed by GitHub
parent 4d3ad67740
commit ef6895acbd
36 changed files with 320 additions and 231 deletions

View File

@ -77,7 +77,7 @@ export class Menu implements ComponentInterface, MenuI {
}
/**
* If `true`, the menu is disabled. Default `false`.
* If `true`, the menu is disabled. Defaults to `false`.
*/
@Prop({ mutable: true }) disabled = false;
@ -102,7 +102,7 @@ export class Menu implements ComponentInterface, MenuI {
}
/**
* If `true`, swiping the menu is enabled. Default `true`.
* If `true`, swiping the menu is enabled. Defaults to `true`.
*/
@Prop() swipeGesture = true;