import { PassThroughOption, PassThrough } from 'primeng/api'; import { ButtonPassThrough } from 'primeng/types/button'; import { TemplateRef } from '@angular/core'; import { MotionOptions } from '@primeuix/motion'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link Dialog.pt} * @group Interface */ interface DialogPassThroughOptions { /** * Used to pass attributes to the host's DOM element. */ host?: PassThroughOption; /** * Used to pass attributes to the root's DOM element. */ root?: PassThroughOption; /** * Used to pass attributes to the mask's DOM element. */ mask?: PassThroughOption; /** * Used to pass attributes to the resize handle's DOM element. */ resizeHandle?: PassThroughOption; /** * Used to pass attributes to the header's DOM element. */ header?: PassThroughOption; /** * Used to pass attributes to the title's DOM element. */ title?: PassThroughOption; /** * Used to pass attributes to the header actions' DOM element. */ headerActions?: PassThroughOption; /** * Used to pass attributes to the maximize Button component. * @see {@link ButtonPassThrough} */ pcMaximizeButton?: ButtonPassThrough; /** * Used to pass attributes to the close Button component. * @see {@link ButtonPassThrough} */ pcCloseButton?: ButtonPassThrough; /** * Used to pass attributes to the content's DOM element. */ content?: PassThroughOption; /** * Used to pass attributes to the footer's DOM element. */ footer?: PassThroughOption; /** * Used to pass options to the motion component/directive. */ motion?: MotionOptions; } /** * Defines valid pass-through options in Dialog. * @see {@link DialogPassThroughOptions} * * @template I Type of instance. */ type DialogPassThrough = PassThrough>; /** * Defines valid templates in Dialog. * @group Templates */ interface DialogTemplates { /** * Custom template of header. */ header(): TemplateRef; /** * Custom template of content. */ content(): TemplateRef; /** * Custom template of footer. */ footer(): TemplateRef; /** * Custom template of closeicon. */ closeicon(): TemplateRef; /** * Custom template of maximizeicon. */ maximizeicon(): TemplateRef; /** * Custom template of minimizeicon. */ minimizeicon(): TemplateRef; /** * Custom headless template to replace the entire dialog content. */ headless(): TemplateRef; } export type { DialogPassThrough, DialogPassThroughOptions, DialogTemplates };