UNPKG

@nepwork/dashboards

Version:

Dashboards for emergencies and monitoring

57 lines 1.74 kB
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { __decorate, __metadata } from "tslib"; import { Component, Input } from '@angular/core'; import { NbPositionedContainer } from '../cdk/overlay/overlay-container'; /** * Context menu component used as content within NbContextMenuDirective. * * @styles * * context-menu-background-color: * context-menu-border-color: * context-menu-border-style: * context-menu-border-width: * context-menu-border-radius: * context-menu-text-align: * context-menu-min-width: * context-menu-max-width: * context-menu-shadow: * */ let NbContextMenuComponent = class NbContextMenuComponent extends NbPositionedContainer { constructor() { super(...arguments); this.items = []; this.context = { items: [] }; } /** * The method is empty since we don't need to do anything additionally * render is handled by change detection */ renderContent() { } }; __decorate([ Input(), __metadata("design:type", Array) ], NbContextMenuComponent.prototype, "items", void 0); __decorate([ Input(), __metadata("design:type", String) ], NbContextMenuComponent.prototype, "tag", void 0); __decorate([ Input(), __metadata("design:type", Object) ], NbContextMenuComponent.prototype, "context", void 0); NbContextMenuComponent = __decorate([ Component({ selector: 'nb-context-menu', template: ` <nb-menu class="context-menu" [items]="context.items" [tag]="context.tag"></nb-menu> ` }) ], NbContextMenuComponent); export { NbContextMenuComponent }; //# sourceMappingURL=context-menu.component.js.map