dockview
Version:
Docking layout manager — tabs, groups, grids, splitviews, drag and drop, floating panels
29 lines (25 loc) • 912 B
JavaScript
/**
* dockview
* @version 8.0.0
* @link https://github.com/dockview/dockview
* @license MIT
*/
Object.defineProperty(exports, "__esModule", { value: true });
//#region src/index.ts
/**
* `dockview` is the recommended free entry point: a thin re-export of
* `dockview-core`. The separable enterprise feature modules now live in the
* separately-published `dockview-enterprise` package (which depends on and
* re-exports `dockview`); install that to opt into them.
*
* This module has no side effects (it's a pure re-export), so bundlers can
* fully tree-shake unused exports out of consumer builds.
*/
//#endregion
var dockview_core = require("dockview-core");
Object.keys(dockview_core).forEach(function (k) {
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
enumerable: true,
get: function () { return dockview_core[k]; }
});
});