text-decoration won’t be applied to edit-text (#3932)

* text-decoration won’t be applied to edit-text

* stop printing slow tests

* remove console line

* fix failing tests

* fix wrong checks
This commit is contained in:
Hristo Hristov
2017-04-04 13:50:34 +03:00
committed by GitHub
parent 1fbb9ccac2
commit 5f14fc6a23
3 changed files with 38 additions and 26 deletions

View File

@@ -2,7 +2,7 @@
EditableTextBase as EditableTextBaseCommon, keyboardTypeProperty,
returnKeyTypeProperty, editableProperty,
autocapitalizationTypeProperty, autocorrectProperty, hintProperty,
textProperty, placeholderColorProperty, Color
textProperty, placeholderColorProperty, Color, textTransformProperty
} from "./editable-text-base-common";
import { ad } from "../../utils/utils";
@@ -410,4 +410,8 @@ export abstract class EditableTextBase extends EditableTextBaseCommon {
this.nativeView.setHintTextColor(value);
}
}
}
[textTransformProperty.setNative](value: "default") {
//
}
}