feat(core): RootLayout with api to fluidly handle dynamic layers (#8980)

This commit is contained in:
William Tjondrosuharto
2021-01-30 02:49:32 +07:00
committed by Nathan Walker
parent cbba5ed19d
commit 577b1e9dad
10 changed files with 821 additions and 41 deletions

View File

@@ -2,6 +2,8 @@ export { AbsoluteLayout } from './absolute-layout';
export { DockLayout } from './dock-layout';
export { FlexboxLayout } from './flexbox-layout';
export { GridLayout, GridUnitType, ItemSpec } from './grid-layout';
export { RootLayout, getRootLayout } from './root-layout';
export type { RootLayoutOptions, ShadeCoverOptions } from './root-layout';
export { StackLayout } from './stack-layout';
export { WrapLayout } from './wrap-layout';
export { LayoutBase } from './layout-base';