From 7794c7269ed8a864bc80233c3a815c436fe4ac29 Mon Sep 17 00:00:00 2001 From: mhartington Date: Tue, 2 Feb 2016 12:18:02 -0500 Subject: [PATCH] docs(radio): update radio-button docs --- ionic/components/radio/radio-button.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/ionic/components/radio/radio-button.ts b/ionic/components/radio/radio-button.ts index f45799de15..505dcc25e7 100644 --- a/ionic/components/radio/radio-button.ts +++ b/ionic/components/radio/radio-button.ts @@ -52,8 +52,14 @@ export class RadioButton { private _labelId: string; private _value = null; + /** + * @private + */ id: string; + /** + * @private + */ @Output() select: EventEmitter = new EventEmitter(); constructor( @@ -77,6 +83,9 @@ export class RadioButton { } } + /** + * @private + */ @Input() get value() { // if the value is not defined then use it's unique id @@ -87,6 +96,9 @@ export class RadioButton { this._value = val; } + /** + * @private + */ @Input() get checked() { return this._checked; @@ -117,6 +129,9 @@ export class RadioButton { } } + /** + * @private + */ @Input() get disabled() { return this._disabled;