-
Notifications
You must be signed in to change notification settings - Fork 133
Platform: Popover Technical Design
The Popover component provides a user interface for selecting menu Item and performing some user desired action . "dropdown menu is expanded once the button is clicked on.
The input field will have "clear" input button, represented by a cancel ("X") icon.
<fd-popover
[triggers]="['mouseenter', 'mouseleave']"
[fillControlMode]="'equal'"
[noArrow]="false"
[fdPopover]="popoverBody"
[disabled]="disabled"
[placement]="placement"
>
<fd-popover-control>
</fd-popover-control>
<fd-popover-body>
</fd-popover-body>
</fd-popover>
Preset options for the popover body width.
at-least
will apply a minimum width to the body equivalent to the width of the control.
equal
will apply a width to the body equivalent to the width of the control.
Leave blank for no effect.
Whether the popover should display the default arrow.
The "inputText" property sets the value of the input field.
Content of the popover. Used through the actual directive tag. Accepts strings or TemplateRef
accepts boolean as the value and allow to disable the popover.
The trigger events that will open/close the popover.accepts array of strings.
The placement of the popover. It can be one of: top, top-start, top-end, bottom, bottom-start, bottom-end, right, right-start, right-end, left, left-start, left-end.
Event emitted when the state of the isOpen property changes.
N/A
N/A