hilla
hilla copied to clipboard
Build better business applications, faster. No more juggling REST endpoints or deciphering GraphQL queries. Hilla seamlessly connects Spring Boot and React to accelerate application development.
### Describe the bug There is a case for handling the wildcard route params that seems to be edgy and doesn't provide a good DX. With a directory structure like...
### Describe your motivation Exposing [CustomFormFieldProps](https://github.com/vaadin/hilla/blob/05ac3247349981c1ee0c50c5876bfbeda524f706/packages/ts/react-crud/src/autoform-field.tsx#L33) is useful to declare a [field renderer](https://github.com/vaadin/hilla/blob/05ac3247349981c1ee0c50c5876bfbeda524f706/packages/ts/react-crud/src/autoform-field.tsx#L129) as a separate function instead of inline. ### Describe the solution you'd like _No response_ ### Describe...
Let's combine Hilla generator cli, utils, and plugins into one npm package.
Let's combine Hilla parser and parser plugins into one artifact. For users wanting to avoid Kotlin dependencies, they could exclude `kotlin-reflect` from Hilla Maven dependencies.
### Describe your motivation Hilla access control is currently based on some annotations: `@AnonymousAllowed`, `@PermitAll`, `@RolesAllowed`, and `@DenyAll`. They cover all most common use cases. Unfortunately, `@PermitAll` is used to...
### Describe the bug After an endpoint request is cancelled programmatically using `AbortController.abort(reason)`, the builtin Vaadin connection indicator erroneously shows ”Connection lost” status. Note: aborting without a specific reason works...
Fixes https://github.com/vaadin/flow/issues/20983
Add support for returning a Spring `Resource` result from Hilla endpoints. The files should be downloaded using an appropriate HTTP MIME type. Example endpoint: ```java @BrowserCallable class DownloadEndpoint { public...
### Describe your motivation I would like to be able to run a scheduled routine to update a Signals value periodically but only when a client is actually subscribed to...
### Describe your motivation At the moment, Hilla looks for a bean of type `Validator`, and if nothing found, it falls back the default from Jakarta API. Most of the...