refactor: circular deps part 10

This commit is contained in:
Nathan Walker
2025-07-09 09:19:40 -07:00
parent d8681cbebd
commit 1db6259763
43 changed files with 283 additions and 233 deletions

View File

@@ -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';

View File

@@ -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';

View File

@@ -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';