dynamicdialog-config.d.ts 422 B

123456789101112131415161718
  1. export declare class DynamicDialogConfig {
  2. data?: any;
  3. header?: string;
  4. footer?: string;
  5. width?: string;
  6. height?: string;
  7. closeOnEscape?: boolean;
  8. baseZIndex?: number;
  9. autoZIndex?: boolean;
  10. dismissableMask?: boolean;
  11. rtl?: boolean;
  12. style?: any;
  13. contentStyle?: any;
  14. styleClass?: string;
  15. transitionOptions?: string;
  16. closable?: boolean;
  17. showHeader?: boolean;
  18. }