UNPKG

dockview

Version:

Docking layout manager — tabs, groups, grids, splitviews, drag and drop, floating panels

14 lines (13 loc) 636 B
import { markDockviewPackageLoaded, registerModules } from 'dockview-core'; import { Modules } from 'dockview-modules'; export * from 'dockview-core'; /** * `dockview` is the batteries-included entry point: it re-exports the core API * and registers the separable feature modules so every component gets the full * feature set out of the box. Consumers who want only the core can depend on * `dockview-core` directly. */ registerModules(Modules); // Mark the public package as loaded so `dockview-core` doesn't warn about // direct usage. Purely drives that developer warning — no functional effect. markDockviewPackageLoaded();