systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
13 lines (12 loc) • 846 B
TypeScript
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
import { ContextMenuOption } from '../contextmenu/context-menu-option';
import { AbstractContextComponent } from '../contextmenu/abstract-context.component';
import * as i0 from "@angular/core";
export declare class ContextPanelComponent extends AbstractContextComponent<ContextMenuOption> implements OnInit, OnDestroy {
protected el: ElementRef;
protected myRenderer: Renderer2;
protected cdr: ChangeDetectorRef;
constructor(el: ElementRef, myRenderer: Renderer2, cdr: ChangeDetectorRef);
static ɵfac: i0.ɵɵFactoryDeclaration<ContextPanelComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ContextPanelComponent, "systelab-context-panel", never, {}, {}, never, [".header-content", ".main-content"], false, never>;
}