libs/core/dynamic-form/src/info-icon/info-icon.model.ts
Configuration for an info icon in a dynamic form field.
Properties |
|
popoverDirection (Optional) | |
Type |
"top" | "bottom" | "left" | "right"
|
Description
|
The direction in which the popover should be displayed. Default: 'bottom'. |
popoverText | |
Type |
string
|
Description
|
The content of the popover that opens when clicking on the info icon. |
export interface DfInfoIconConfig {
/**
* The content of the popover that opens when clicking on the info icon.
*/
popoverText: string;
/**
* The direction in which the popover should be displayed.
* Default: 'bottom'.
*
*/
popoverDirection?: 'top' | 'bottom' | 'left' | 'right';
}