-
Notifications
You must be signed in to change notification settings - Fork 137
Platform: Link Component Technical Design FRD
Deepak Kumar edited this page Jan 20, 2020
·
25 revisions
Link is a navigational component and is represented through a meaningful text having distinct visual properties. Navigation is to an application defined location – a page or a resource within the application or a webpage or a resource which is outside the application, etc. Link will have a distinct visual cue to represent navigational action.
<fdp-link
[href]="string"
[importance]="standard|emphasized"
[wrap]="true|false"
[disabled]="true|false"
[popoverText]="string"
(onClick)="onLinkClick($event)"
>
<ng-content></ng-content>
</fdp-link>
navigational url relative or external.
this value of importance will make the link text normal or bold text.
Setting true will wrap the content to align text with other Form Element.
link can be in enabled or disabled status.
A popup text will be displayed on long mouse-hover.
On link click it will check if Navigation is successful or Not. In case of failure, it can notify to application
N/A
N/A
- fd-link mixing in fundamental-styles
Deepak:
- For displaying Pop-over text do we need Pop-over component implementation planned in Q1/Q2?