From 860dd672b13e57158c2c8a928a901eb8184b6768 Mon Sep 17 00:00:00 2001 From: mhartington Date: Mon, 1 Feb 2016 15:39:36 -0500 Subject: [PATCH] docs(label): make inputs private --- ionic/components/label/label.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ionic/components/label/label.ts b/ionic/components/label/label.ts index 269b3e5ee4..bef41feb2c 100644 --- a/ionic/components/label/label.ts +++ b/ionic/components/label/label.ts @@ -50,6 +50,9 @@ import {Directive, ElementRef, Renderer, Input, Optional, Attribute} from 'angul export class Label { private _id: string; + /** + * @private + */ type: string; constructor( @@ -63,6 +66,9 @@ export class Label { this.type = (isFloating === '' ? 'floating' : (isStacked === '' ? 'stacked' : (isFixed === '' ? 'fixed' : (isInset === '' ? 'inset' : null)))); } + /** + * @private + */ @Input() get id(): string { return this._id; @@ -75,6 +81,9 @@ export class Label { } } + /** + * @private + */ get text(): string { return this._elementRef.nativeElement.textContent || ''; }