refactor: circular deps part 11

This commit is contained in:
Nathan Walker
2025-07-09 11:23:53 -07:00
parent 1db6259763
commit 33d967b5b2
15 changed files with 113 additions and 92 deletions

View File

@@ -1,6 +1,7 @@
import { LayoutBase } from '../layout-base';
import { View, CSSType } from '../../core/view';
import { CssProperty, ShorthandProperty, makeParser, makeValidator, unsetValue } from '../../core/properties';
import { CssProperty, ShorthandProperty, makeParser, makeValidator } from '../../core/properties';
import { unsetValue } from '../../core/properties/property-shared';
import { Style } from '../../styling/style';
export type Basis = 'auto' | number;