You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
Developers currently must use the default API when one or more responsive APIs are defined.
Consider the following scenario where the default is fxShow and the responsive API defined is fxShow.xs:
<divfxShow[fxShow.xs]="menuOpen" class="banner">
I should hide and show
</div>
The above ^ works fine. When I do not, however, specify the default non-responsive selector fxShow:
<div[fxShow.xs]="menuOpen" class="banner">
I should hide and show
</div>
then a Template Parse error occurs:
Uncaught (in promise): Error: Template parse errors:
Can't bind to 'fxShow.xs' since it isn't a known property of 'div'. ("
</button>
<div [ERROR ->][fxShow.xs]="menuOpen" class="banner">
I should hide and show
</div>
"): TestApp@5:9
Error: Template parse errors:
Can't bind to 'fxShow.xs' since it isn't a known property of 'div'. ("
</button>