@skyux/layout
Version:
This library was generated with [Nx](https://nx.dev).
30 lines (29 loc) • 2.03 kB
TypeScript
import { QueryList, TemplateRef } from '@angular/core';
import { SkyDescriptionListDescriptionComponent } from './description-list-description.component';
import { SkyDescriptionListTermComponent } from './description-list-term.component';
import * as i0 from "@angular/core";
/**
* Wraps the term-description pairs in the description list.
*/
export declare class SkyDescriptionListContentComponent {
termComponents: QueryList<SkyDescriptionListTermComponent> | undefined;
descriptionComponents: QueryList<SkyDescriptionListDescriptionComponent> | undefined;
/**
* A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) button is
* placed beside the description list content label. Clicking the button invokes global help as configured by the application.
*/
helpKey: string | undefined;
/**
* The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
* button is added to the description list content. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
* when clicked using the specified content and optional title.
*/
helpPopoverContent: string | TemplateRef<unknown> | undefined;
/**
* The title of the help popover. This property only applies when `helpPopoverContent` is
* also specified.
*/
helpPopoverTitle: string | undefined;
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDescriptionListContentComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDescriptionListContentComponent, "sky-description-list-content", never, { "helpKey": { "alias": "helpKey"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; }, {}, ["termComponents", "descriptionComponents"], ["*"], false, never>;
}