fundamental-ngx
Version:
SAP Fiori Fundamentals, implemented in Angular
25 lines (24 loc) • 496 B
TypeScript
/**
* Directive that applies fundamental modal styling to a header.
*
* ```html
* <h1 fd-modal-title>Modal Title</h1>
* ```
*/
export declare class ModalTitleDirective {
/** @hidden */
modalTitle: boolean;
}
/**
* Directive that applies fundamental modal styling to a button.
*
* ```html
* <button fd-modal-close-btn></button>
* ```
*/
export declare class ModalCloseButtonDirective {
/** @hidden */
lightButton: boolean;
/** @hidden */
modalClose: boolean;
}