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

@ -39,7 +39,7 @@ export class Button implements ComponentInterface {
@Prop({ mutable: true }) buttonType = 'button';
/**
* If true, the user cannot interact with the button. Defaults to `false`.
* If `true`, the user cannot interact with the button. Defaults to `false`.
*/
@Prop({ reflectToAttr: true }) disabled = false;
@ -81,7 +81,7 @@ export class Button implements ComponentInterface {
@Prop({ reflectToAttr: true }) size?: 'small' | 'default' | 'large';
/**
* If true, activates a button with a heavier font weight.
* If `true`, activates a button with a heavier font weight.
*/
@Prop() strong = false;