md2
Version:
Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Chips(Tags), Collapse, Colorpicker, Data Table, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.
23 lines • 792 B
JavaScript
/**
* OverlayState is a bag of values for either the initial configuration or current state of an
* overlay.
*/
var OverlayState = (function () {
function OverlayState() {
/** Custom class to add to the overlay pane. */
this.panelClass = '';
/** Whether the overlay has a backdrop. */
this.hasBackdrop = false;
/** Custom class to add to the backdrop */
this.backdropClass = 'cdk-overlay-dark-backdrop';
/** The direction of the text in the overlay panel. */
this.direction = 'ltr';
// TODO(jelbourn): configuration still to add
// - focus trap
// - disable pointer events
// - z-index
}
return OverlayState;
}());
export { OverlayState };
//# sourceMappingURL=overlay-state.js.map