From 80a477dbab26f3dada2bed28a6fffa75ad843528 Mon Sep 17 00:00:00 2001 From: Ales Rechtorik Date: Sat, 22 Oct 2016 14:48:30 +0200 Subject: [PATCH] change type of wrap input --- src/lib/input/input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/input/input.ts b/src/lib/input/input.ts index 08e6eae64b47..2d7f89b991dc 100644 --- a/src/lib/input/input.ts +++ b/src/lib/input/input.ts @@ -269,7 +269,7 @@ export class MdInput implements ControlValueAccessor, AfterContentInit, OnChange @Input() autocapitalize: string; @Input() cols: string; @Input() rows: string; - @Input() wrap: string; + @Input() wrap: 'hard' | 'soft'; @Input() @BooleanFieldValue() autofocus: boolean = false; @Input() @BooleanFieldValue() disabled: boolean = false; @Input() id: string = `md-input-${nextUniqueId++}`;