refactoring circular imports

This commit is contained in:
Hristo Hristov
2017-03-06 14:01:22 +02:00
parent 347755367e
commit ea22eb9c20
82 changed files with 2229 additions and 2188 deletions

View File

@@ -1,12 +1,20 @@
import { Point, View as ViewDefinition } from "ui/core/view";
import { ios } from "ui/styling/background";
// Definitions.
import { Point, View as ViewDefinition } from "ui/core/view";
import { ios, Background } from "ui/styling/background";
import {
ViewCommon, isEnabledProperty, originXProperty, originYProperty, automationTextProperty, isUserInteractionEnabledProperty, visibilityProperty, opacityProperty,
rotateProperty, scaleXProperty, scaleYProperty,
translateXProperty, translateYProperty, zIndexProperty, backgroundInternalProperty,
clipPathProperty, layout, traceEnabled, traceWrite, traceCategories, Background, Visibility, Length
ViewCommon, layout, isEnabledProperty, originXProperty, originYProperty, automationTextProperty, isUserInteractionEnabledProperty,
traceEnabled, traceWrite, traceCategories
} from "./view-common";
import {
Visibility, Length,
visibilityProperty, opacityProperty,
rotateProperty, scaleXProperty, scaleYProperty,
translateXProperty, translateYProperty, zIndexProperty,
backgroundInternalProperty, clipPathProperty
} from "ui/styling/style-properties";
export * from "./view-common";
const PFLAG_FORCE_LAYOUT = 1;
@@ -459,4 +467,4 @@ export class CustomLayoutView extends View {
child.nativeView.removeFromSuperview();
}
}
}
}