UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

71 lines (68 loc) 1.95 kB
import { TemplateRef } from '@angular/core'; import { PassThroughOption, PassThrough, MenuItem } from 'primeng/api'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link Dock.pt} * @group Interface */ interface DockPassThroughOptions<I = unknown> { /** * Used to pass attributes to the root's DOM element. */ root?: PassThroughOption<HTMLElement, I>; /** * Used to pass attributes to the list container's DOM element. */ listContainer?: PassThroughOption<HTMLDivElement, I>; /** * Used to pass attributes to the list's DOM element. */ list?: PassThroughOption<HTMLUListElement, I>; /** * Used to pass attributes to the item's DOM element. */ item?: PassThroughOption<HTMLLIElement, I>; /** * Used to pass attributes to the item content's DOM element. */ itemContent?: PassThroughOption<HTMLDivElement, I>; /** * Used to pass attributes to the item link's DOM element. */ itemLink?: PassThroughOption<HTMLAnchorElement, I>; /** * Used to pass attributes to the item icon's DOM element. */ itemIcon?: PassThroughOption<HTMLSpanElement, I>; } /** * Defines valid pass-through options in Dock. * @see {@link DockPassThroughOptions} * * @template I Type of instance. */ type DockPassThrough<I = unknown> = PassThrough<I, DockPassThroughOptions<I>>; /** * Custom item template context. * @group Interface */ interface DockItemTemplateContext { /** * Menu item instance. */ $implicit: MenuItem; } /** * Defines valid templates in Dock. * @group Templates */ interface DockTemplates { /** * Custom template of item. * @param {Object} context - item data. */ item(context: DockItemTemplateContext): TemplateRef<DockItemTemplateContext>; } export type { DockItemTemplateContext, DockPassThrough, DockPassThroughOptions, DockTemplates };