diff --git a/packages/angular/demo/src/app/inputs/inputs-test-page.component.html b/packages/angular/demo/src/app/inputs/inputs-test-page.component.html
index d2d5288e08..9e27f2ea41 100644
--- a/packages/angular/demo/src/app/inputs/inputs-test-page.component.html
+++ b/packages/angular/demo/src/app/inputs/inputs-test-page.component.html
@@ -31,6 +31,18 @@
{{ionTextInput}}
+
+
+
+ Ionic Text Area Input
+
+
+
+
+ Ionic Text Input:
+ {{ionTextareaInput}}
+
+
diff --git a/packages/angular/demo/src/app/inputs/inputs-test-page.component.ts b/packages/angular/demo/src/app/inputs/inputs-test-page.component.ts
index 890adcfdde..5178455886 100644
--- a/packages/angular/demo/src/app/inputs/inputs-test-page.component.ts
+++ b/packages/angular/demo/src/app/inputs/inputs-test-page.component.ts
@@ -7,6 +7,7 @@ import { Component, OnInit, ViewEncapsulation } from '@angular/core';
encapsulation: ViewEncapsulation.None
})
export class InputsTestPageComponent implements OnInit {
+ ionTextareaInput = 'This is the Ionic Textarea Input';
ionTextInput = 'This is the Ionic Text Input';
stdTextInput = 'This is the HTML Text Input';
diff --git a/packages/angular/demo/src/app/shared/ion-text-value-accessor/ion-text-value-accessor.directive.ts b/packages/angular/demo/src/app/shared/ion-text-value-accessor/ion-text-value-accessor.directive.ts
index 3186afe350..e8c56cd44c 100644
--- a/packages/angular/demo/src/app/shared/ion-text-value-accessor/ion-text-value-accessor.directive.ts
+++ b/packages/angular/demo/src/app/shared/ion-text-value-accessor/ion-text-value-accessor.directive.ts
@@ -5,7 +5,7 @@ import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
// May also need to look at this to see if we need anything else:
// https://github.com/angular/angular/blob/5.0.1/packages/forms/src/directives/default_value_accessor.ts#L33-L101
@Directive({
- selector: 'ion-input',
+ selector: 'ion-input,ion-textarea',
providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: IonTextValueAccessorDirective, multi: true }]
})
export class IonTextValueAccessorDirective implements ControlValueAccessor {