From 12c2709559409a358cbb172423c9ec4dbb9e58fb Mon Sep 17 00:00:00 2001 From: mhartington Date: Wed, 10 Feb 2016 13:32:22 -0500 Subject: [PATCH] docs(checkbox): update inputs/outputs --- ionic/components/checkbox/checkbox.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ionic/components/checkbox/checkbox.ts b/ionic/components/checkbox/checkbox.ts index b7300d8e64..092b21b274 100644 --- a/ionic/components/checkbox/checkbox.ts +++ b/ionic/components/checkbox/checkbox.ts @@ -12,9 +12,6 @@ import {isTrueProperty} from '../../util/util'; * * See the [Angular 2 Docs](https://angular.io/docs/js/latest/api/core/Form-interface.html) for more info on forms and input. * - * @property [checked] - whether or not the checkbox is checked (defaults to false) - * @property [value] - the value of the checkbox component - * @property [disabled] - whether or not the checkbox is disabled or not. * * @usage * ```html @@ -69,7 +66,7 @@ export class Checkbox { id: string; /** - * @private + * @input {String} the value of the checkbox component */ @Input() value: string = ''; @@ -100,7 +97,7 @@ export class Checkbox { } /** - * @private + * @input {Bool} whether or not the checkbox is checked (defaults to false) */ @Input() get checked() { @@ -116,7 +113,7 @@ export class Checkbox { } /** - * @private + * @input {Bool} whether or not the checkbox is disabled or not. */ @Input() get disabled() {