diff --git a/tns-core-modules/ui/button/button-common.ts b/tns-core-modules/ui/button/button-common.ts index fc253eff9..bf1e28dd0 100644 --- a/tns-core-modules/ui/button/button-common.ts +++ b/tns-core-modules/ui/button/button-common.ts @@ -12,4 +12,4 @@ export abstract class ButtonBase extends TextBase implements ButtonDefinition { set textWrap(value: boolean) { this.style.whiteSpace = value ? WhiteSpace.NORMAL : WhiteSpace.NO_WRAP; } -} \ No newline at end of file +} diff --git a/tns-core-modules/ui/button/button.android.ts b/tns-core-modules/ui/button/button.android.ts index fe1a01f54..7a167a730 100644 --- a/tns-core-modules/ui/button/button.android.ts +++ b/tns-core-modules/ui/button/button.android.ts @@ -107,4 +107,4 @@ export class Button extends ButtonBase { this.nativeView.setStateListAnimator(null); } } -} \ No newline at end of file +} diff --git a/tns-core-modules/ui/core/view-common.ts b/tns-core-modules/ui/core/view-common.ts index 5e977a41d..6bd6d2b21 100644 --- a/tns-core-modules/ui/core/view-common.ts +++ b/tns-core-modules/ui/core/view-common.ts @@ -7,7 +7,13 @@ import { Property, CssProperty, CssAnimationProperty, ShorthandProperty, InheritedCssProperty, gestureFromString, isIOS, traceEnabled, traceWrite, traceCategories, makeParser, makeValidator } from "./view-base"; -import { observe as gestureObserve, GesturesObserver, GestureTypes, GestureEventData } from "ui/gestures"; +import { + observe as gestureObserve, + GesturesObserver, + GestureTypes, + GestureEventData, + TouchAction +} from "ui/gestures"; import { Font, parseFont, FontStyle, FontWeight } from "ui/styling/font"; // Only types: @@ -21,8 +27,13 @@ export { layout }; export * from "./view-base"; export { - GestureTypes, GesturesObserver, GestureEventData, - Background, Font, Color + GestureTypes, + GesturesObserver, + GestureEventData, + TouchAction, + Background, + Font, + Color, } import * as am from "ui/animation";