fundamental-ngx
Version:
SAP Fiori Fundamentals, implemented in Angular
19 lines (18 loc) • 589 B
TypeScript
/**
* The component that represents an inline-help.
* Inline help is used to display help text in a popover, often inline with headers, body text and form labels.
*
* ```html
* <fd-inline-help [position]="'bottom-left'">
* Lorem ipsum dolor sit amet, consectetur adipiscing.
* </fd-inline-help>
* ```
*/
export declare class InlineHelpComponent {
/**
* The position of the inline help component.
* Options include *bottom-right*, *bottom-left*, *bottom-center*, *right*, and *left*.
* The default position is *bottom right*
*/
position: string;
}