Leif Åstrand

Results 241 comments of Leif Åstrand
trafficstars

The parser already marks unknown (i.e. custom) tags as selfClosing if they are encountered as such in the input, but there is no such support for tags created programatically using...

On the other hand, this might not make any sense at all since "html5" has no concept of self-closing tags as explained in e.g. http://stackoverflow.com/a/3558200 other than for "foreign" elements,...

> Does not that require importing `my-view.ts` and all other views to set up routing? The actual script is loaded in the browser only when the callback is run, even...

We don't have any plans for Jakarta EE or Quarkus support at this moment. We want to make Hilla really great for a single tech stack before we take on...

What would this feature look like in practice? If the bean has two separate validators related to different fields, then what would you expect to write in application code to...

I was asking specifically for the case from the original ticket description: > I need a way to relate a given constraint violation to one or more fields in my...

3D rendering can mean many different things. Is there something in particular that you would want to do with it?

I think the requirements have changed a bit now when we have settled on using [full-stack signals](https://github.com/vaadin/hilla/discussions/1902) for synchronizing state. You should return a Flux on the server if you...

For reference, this is what I think the cursor tracker example could look like with signals: ```typescript const cursors: ListSignal = CursorTracker.cursors(); const ownCursorSignal: ValueSignal = cursors.insertLast(currentCursorPosition, {connectionScoped: true}).signal; effect(()...

The core idea is to give the application developer a way of "manually" recovering from connectivity issues. More sophisticated "automatic" state management will eventually be handled through full-stack signals so...