@nova-ui/dashboards
Version:
Nova Dashboards is a framework designed to provide feature developers with a common solution for presenting data coming from various sources within a single view, as well as a set of predefined widget visualizations that are 100% configuration-driven and
14 lines (13 loc) • 639 B
TypeScript
import { ComponentPortal } from "@angular/cdk/portal";
import { Injector } from "@angular/core";
import { LoggerService } from "@nova-ui/bits";
import { ComponentRegistryService } from "./component-registry.service";
import { IPortalEnvironment } from "../../types";
/** @ignore */
export declare class ComponentPortalService {
private componentRegistry;
private logger;
constructor(componentRegistry: ComponentRegistryService, logger: LoggerService);
createComponentPortal(componentType: string | Function, injector: Injector | null): ComponentPortal<any>;
createInjector(environment: IPortalEnvironment): Injector;
}