UNPKG

dockview-core

Version:

Zero dependency layout manager supporting tabs, groups, grids and splitviews for vanilla TypeScript

23 lines (22 loc) 899 B
import { FloatingGroupModule } from './floatingGroupService'; import { PopoutWindowModule } from './popoutWindowService'; import { WatermarkModule } from './watermarkService'; import { EdgeGroupModule } from './edgeGroupService'; import { RootDropTargetModule } from './rootDropTargetService'; import { HeaderActionsModule } from './headerActionsService'; import { LiveRegionModule } from './liveRegionService'; /** * Internal list of the built-in modules that ship with the core. Registered * automatically by DockviewComponent at construction time; not exported from * the package. Additional modules contributed by sibling packages (via * `registerModules(...)`) are appended at construction. */ export const AllModules = [ FloatingGroupModule, PopoutWindowModule, WatermarkModule, EdgeGroupModule, RootDropTargetModule, HeaderActionsModule, LiveRegionModule, ];