mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
refactoring circular imports
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user