Viktor Lukashov
Viktor Lukashov
When parsing a curl command with repeating headers, like in `curl example.com --header "Accept: application/json" --header "Accept: */*"`, I expect the value for the repeated header to be correctly concatenated...
@campbellbartlett commented on [Mon Dec 30 2019](https://github.com/vaadin/vaadin-connect/issues/426) Would it be possible to consider allowing custom AccessChecker beans to be defined so that a developer could implement their own? This would...
I want to use a different webpack loader for `.css` files (NOTE: Flow generates a `webpack.generated.js` that uses `raw-loader` for that). This is what I have in `webpack.config.js` ```js module.exports...
When calling Vaadin Service methods, Connect validates the parameters passed to the server-side (based on the [JSR-380](https://beanvalidation.org/2.0/) spec. If validation fails the error details are propagated to the client side...
When using a Vaadin Grid component in a TypeScript view I want to have an easy way of loading the data lazily so that users do not have to wait...
When transferring primitive array-like data using Connect endpoints, I want primitive Java arrays like `byte[]` to be mapped to typed JS arrays like `Int8Array`, so that (a) the transfer is...
When defining Java types that are used from TypeScript, I want have a `@TypeScriptType` annotation that I can put on a Java property to define its type in the generated...
The [current documentation for the `@JsonProperty` annotation](https://vaadin.com/docs/v15/flow/typescript/custom-serialization.html#the-jsonproperty-annotation) is misleading: in reality it seem to have no effect on the TypeScript type generator (as of Vaadin 15.0.4). 1. After reading the...
If I follow the [Creating an Embedded Vaadin Application Tutorial](https://vaadin.com/docs/v15/flow/embedding-flow-applications/tutorial-webcomponent-exporter.html) in order to embed a server-side Vaadin component into a TypeScript Vaadin view, my application does not work as expected:...
When adding a splash screen to a V15+ app I want to keep the splash screen visible until the first view is completely loaded. In case if the first view...