Robert Pattis

Results 69 comments of Robert Pattis

@appreciated The current `Default` more or less mathces the Material Design `Modal`. It goes over the content and is closed as soon as I click outside. The dissmisible instead should...

> I disagree in this point, the top behaviours serve a different purpose than the left behaviours and they shouldn't become modal at any width. I was just talking about...

I just noticed, that the problem in my app was actually the change-detection. I am using `CdkPortal` and `CdkPortalOutlet` to dynamicaly change the ocntent of my app-bar (including some `mat-icon`s)....

I know about that issue but it's solution won't work for resizable columns, since they can be resized to those 25px or even less. In my opinion the ellipsis should...

I solved this by overwriting the `text-overflow: ellipsis` using this code: ``` [part~="cell"] ::slotted(vaadin-grid-cell-content) { text-overflow: unset; } ``` The `Component`s that should display the `ellipsis` can simply set the...

We are facing the same issue in our project. With webpack, we had to restart the server, so that changes in other modules were detected but now with vite, we...

Thank you for providing a workaround @Artur- Do we still have to use custom file watcher like @ggecy has implemented for webpack or is that not needed anymore?

Thanks for the information. @ggecy do you mind sharing some information about your file watcher solution?

Thank you very much. I am running an embedded jetty but the approach should probably be more or less the same. Thanks again :)

@Artur- does this fix change the way we import resources form other modules? I am currently using `import { MyComponent } from "@vaadin/flow-frondend/my-component"`