docking-egid
Version:
This library is built to provide a solution for Angular enables the creation of complex layouts consisting of panels that can be floated, docked, nested, resized, pinned, unpinned and closed. Additional components can be integrated to create an IDE-like l
45 lines (44 loc) • 1.06 kB
JavaScript
/**
* @hidden
*/
export const IGC_DEFAULT_PANE_SIZE = 100;
/**
* @hidden
*/
export const IGC_DEFAULT_UNPIN_PANE_SIZE = 200;
/**
* @hidden
*/
export const IGC_RESIZING_MIN_SIZE = 42;
/**
* @hidden
*/
export const IGC_DEFAULT_RESIZE = 10;
/**
* @hidden
*/
export const IGC_DRAG_FLYOUT_THRESHOLD = 50;
/**
* @hidden
*/
export var IgcTabHeadersPosition;
(function (IgcTabHeadersPosition) {
IgcTabHeadersPosition["top"] = "top";
IgcTabHeadersPosition["bottom"] = "bottom";
})(IgcTabHeadersPosition || (IgcTabHeadersPosition = {}));
/**
* @hidden
*/
export var IgcContextMenuOrientation;
(function (IgcContextMenuOrientation) {
IgcContextMenuOrientation["top"] = "top";
IgcContextMenuOrientation["bottom"] = "bottom";
})(IgcContextMenuOrientation || (IgcContextMenuOrientation = {}));
/**
* @hidden
*/
export var IgcPinBehavior;
(function (IgcPinBehavior) {
IgcPinBehavior["allPanes"] = "allPanes";
IgcPinBehavior["selectedPane"] = "selectedPane";
})(IgcPinBehavior || (IgcPinBehavior = {}));