docs(): update usage and examples

This commit is contained in:
mhartington
2018-05-30 12:40:43 -04:00
parent 8e164d6036
commit 3cdc696847
43 changed files with 389 additions and 397 deletions

View File

@ -23,8 +23,7 @@ export class Checkbox implements CheckboxInput {
@State() keyFocus = false;
/**
* The color to use.
* Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`.
* The color to use for the checkbox.
*/
@Prop() color?: Color;
@ -50,7 +49,7 @@ export class Checkbox implements CheckboxInput {
@Prop() disabled = false;
/**
* the value of the checkbox.
* The value of the checkbox.
*/
@Prop() value = 'on';