[ADF-1906] Accordion Menu - Provide a way to show the tooltip (#2641)

* Added tooltip for accordion header icon
This commit is contained in:
Deepak Paul
2017-11-13 23:20:57 +05:30
committed by Eugenio Romano
parent 9608beba9f
commit 961e89ea73
6 changed files with 24 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ Adds a collapsible panel to an [accordion menu](accordion.component.md).
```html
<adf-accordion>
<adf-accordion-group [heading]="titleHeading" [isSelected]="true" [headingIcon]="'assignment'">
<adf-accordion-group [heading]="titleHeading" [isSelected]="true" [headingIcon]="'assignment'" [headingIconTooltip]="'Group Tooltip'">
<my-list></my-list>
</adf-accordion-group>
</adf-accordion>
@@ -50,6 +50,7 @@ export class MyComponent implements OnInit {
| isSelected | boolean | Is this group currently selected? |
| headingIcon | string | The material design icon. |
| hasAccordionIcon | boolean | Should the (expanded) accordion icon be shown? Defaults to true |
| headingIconTooltip | string | Tooltip message to be shown for headingIcon |
## Details