File

projects/rebirth-ng/src/lib/modal/modal-options.model.ts

Index

Properties

Properties

animation
animation: boolean
Type : boolean
Optional
backdrop
backdrop: boolean
Type : boolean
Optional
backdropClass
backdropClass: string
Type : string
Optional
component
component: Type<any>
Type : Type<any>
componentFactoryResolver
componentFactoryResolver: ComponentFactoryResolver
Type : ComponentFactoryResolver
Optional
injector
injector: Injector
Type : Injector
Optional
keyboard
keyboard: boolean
Type : boolean
Optional
modal
modal: boolean
Type : boolean
Optional
modalClass
modalClass: string
Type : string
Optional
resolve
resolve: any
Type : any
Optional
rootContainer
rootContainer: ViewContainerRef
Type : ViewContainerRef
Optional
size
size: "lg" | "sm"
Type : "lg" | "sm"
Optional
import { Type, ComponentFactoryResolver, Injector, ViewContainerRef } from '@angular/core';

export interface ModalOptions {
  component: Type<any>;
  componentFactoryResolver?: ComponentFactoryResolver;
  injector?: Injector;
  resolve?: any;
  backdrop?: boolean;
  backdropClass?: string;
  keyboard?: boolean;
  modal?: boolean;
  modalClass?: string;
  animation?: boolean;
  size?: 'lg' | 'sm';
  rootContainer?: ViewContainerRef;

}

results matching ""

    No results matching ""