From b4b9adb7fc041c48276be906c8575e46be7ca7f1 Mon Sep 17 00:00:00 2001 From: mhartington Date: Mon, 7 Nov 2016 15:04:53 -0500 Subject: [PATCH] refactor(textarea): remove type input from textarea --- src/components/input/input.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/components/input/input.ts b/src/components/input/input.ts index 95ce4dd964..c072e42aba 100644 --- a/src/components/input/input.ts +++ b/src/components/input/input.ts @@ -320,17 +320,6 @@ export class TextArea extends InputBase { super.setValue(val); } - /** - * @private - */ - @Input() - get type() { - return this._type; - } - set type(val: any) { - super.setType(val); - } - /** * @input {bool} Wheather the textara should be disabled or not */