-
Notifications
You must be signed in to change notification settings - Fork 773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Was fxShow and fxHide designed to work with gd? #1130
Comments
No, grid directives are not as inter-connected with the rest of the library as the others. This was work that was planned, but postponed. We're working on some re-architecting right now (in the design phase still) that should correct that though. Stay tuned! |
For anyone who comes across this page, I've found a temporary solution that will work for the time being if you need this functionality. Recently someone brought up an issue regarding SSR, issue #1135. In their issue they discussed the use of |
@RyanTibbetts-OnScale You mean this documentation? |
Bug Report
What is the expected behavior?
fxShow
andfxHide
with responsive tags should hide or show elements.What is the current behavior?
So I'm not certain if this was the intention, but it looks like when setting
fxShow
orfxHide
with responsive tags thatgd
overwrites or overrides thedisplay: none;
set byfxShow
andfxHide
.What are the steps to reproduce?
To replicate what I'm seeing, simply take my code below (since the Stack Blitz doesn't work right now) and put it into any existing angular project using angular flex layout. When you're at screen size
gt-sm
you'll see three blocks for each case: the blocks in agd
and the blocks not in agd
. They are roughly identical except that one is using[fxShow.lt-md]="booleanValue"
alongside agd
and the other is using a[fxShow.lt-md]="booleanValue"
without agd
.If you start at
gt-sm
and resize your window tolt-md
the one in thegd
will not work as intended and the one not in agd
will work as intended. This is permanently buggy and also persistent in all screen sizes at this point until you refresh.If you start at
lt-md
and start with a refreshed browser then everything works as intended and all is well. However once changing togt-sm
, chaos ensues if you try to return tolt-md
The Stack Blitz is broken right now but here is a Stack Blitz with a basic example of this:
StackBlitz
Since the stack blitz is broken you can get the code from there and test it somewhere else, but here is a Pastebin with the code in case you wanted to test it. It's pretty simple so you can copy-paste in into any angular project that uses angular flex layout and it will work:
PasteBin
What is the use-case or motivation for changing an existing behavior?
Well, if
fxShow
andfxHide
was intended to work withgd
then this is just incorrect behavior.Which versions of Angular, Material, OS, TypeScript, browsers are affected?
Angular 7 on Chrome is what I was using when I discovered this.
The text was updated successfully, but these errors were encountered: