Given the following
mat-buttondirective responds to adisabledattribute / inputmatTooltipdirective responds to adisabledattribute / input
Is it possible to create a material button element that is disabled, but has a non-disabled tooltip associated with it? i.e. is it possible to namespace / target a component input so that it only applies to the mat-button directive and not the matTooltip directive?
In the following example, both the button AND tooltip are disabled:
<button mat-button matTooltip="first enter email address" [disabled]=true>
Next
</button>
I can't seem to disable just the button and not the tooltip. It's possible that this is a bug in the current matTooltip implementation.
Thanks!!
Using angular 4.4.6 and material 2-beta.12