mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
refactor: circular deps part 10
This commit is contained in:
@ -3,7 +3,7 @@ import { LayoutBase } from '../layout-base';
|
||||
import { CoreTypes } from '../../../core-types';
|
||||
import { View, CSSType } from '../../core/view';
|
||||
import { Property } from '../../core/properties';
|
||||
import { Length } from '../../styling/style-properties';
|
||||
import { Length } from '../../styling/length-shared';
|
||||
|
||||
export * from '../layout-base';
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { AbsoluteLayoutBase, leftProperty, topProperty } from './absolute-layout-common';
|
||||
import { View } from '../../core/view';
|
||||
import { Length } from '../../styling/style-properties';
|
||||
import { Length } from '../../styling/length-shared';
|
||||
|
||||
export * from './absolute-layout-common';
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { LayoutBase } from '../layout-base';
|
||||
import { Property } from '../../core/properties';
|
||||
import { View } from '../../core/view';
|
||||
import { Length } from '../../styling/style-properties';
|
||||
import { Length } from '../../styling/length-shared';
|
||||
import { CoreTypes } from '../../../core-types';
|
||||
|
||||
/**
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { AbsoluteLayoutBase } from './absolute-layout-common';
|
||||
import { CoreTypes } from '../../../core-types';
|
||||
import { View } from '../../core/view';
|
||||
import { Length } from '../../styling/style-properties';
|
||||
import { layout } from '../../../utils';
|
||||
|
||||
export * from './absolute-layout-common';
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { FlexDirection, FlexWrap, JustifyContent, AlignItems, AlignContent, FlexboxLayoutBase, orderProperty, Order, flexGrowProperty, FlexGrow, flexShrinkProperty, FlexShrink, flexWrapBeforeProperty, FlexWrapBefore, alignSelfProperty, AlignSelf, flexDirectionProperty, flexWrapProperty, justifyContentProperty, alignItemsProperty, alignContentProperty } from './flexbox-layout-common';
|
||||
import { CoreTypes } from '../../../core-types';
|
||||
import { View } from '../../core/view';
|
||||
import { Length } from '../../styling/style-properties';
|
||||
import { Length } from '../../styling/length-shared';
|
||||
|
||||
export * from './flexbox-layout-common';
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
import { LayoutBaseCommon, clipToBoundsProperty, isPassThroughParentEnabledProperty } from './layout-base-common';
|
||||
import { Length, paddingLeftProperty, paddingTopProperty, paddingRightProperty, paddingBottomProperty } from '../styling/style-properties';
|
||||
import { paddingLeftProperty, paddingTopProperty, paddingRightProperty, paddingBottomProperty } from '../styling/style-properties';
|
||||
import { Length } from '../styling/length-shared';
|
||||
import { CoreTypes } from '../../core-types';
|
||||
|
||||
export * from './layout-base-common';
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { WrapLayoutBase, orientationProperty, itemWidthProperty, itemHeightProperty } from './wrap-layout-common';
|
||||
import { CoreTypes } from '../../../core-types';
|
||||
import { Length } from '../../styling/style-properties';
|
||||
import { Length } from '../../styling/length-shared';
|
||||
|
||||
export * from './wrap-layout-common';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { LayoutBase } from '../layout-base';
|
||||
import { Length } from '../../styling/style-properties';
|
||||
import { Length } from '../../styling/length-shared';
|
||||
import { Property } from '../../core/properties';
|
||||
import { CoreTypes } from '../../../core-types';
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
import { LayoutBase } from '../layout-base';
|
||||
import { CSSType } from '../../core/view';
|
||||
import { Property, makeValidator, makeParser } from '../../core/properties';
|
||||
import { Length } from '../../styling/style-properties';
|
||||
import { Length } from '../../styling/length-shared';
|
||||
import { CoreTypes } from '../../../core-types';
|
||||
|
||||
export * from '../layout-base';
|
||||
|
Reference in New Issue
Block a user