Viktor Lukashov

Results 36 comments of Viktor Lukashov

Another use case for this: Support for `file://` URLs in Finicky would be handy to intercept DropBox links like `file:///private/var/folders/7r/36k441tx5p35hzfv8fxrnr8c0000gn/T/dbxlpkl63l09.html` that it uses when opening un-synched files through its native...

I agree, it’s better to match the curl behavior. But there is a problem with generating ```js headers: { 'Accept': 'application/json', 'Accept': '*/*' } ``` The second key/value pair overshadows...

In Vaadin 15 the server-side UI instance is created separately, possibly after the app shell is initialized. However, the loading indicator config is tied to the UI instance. That's why...

@vlipovetskii, can you please share two minimal projects - one with V14 and another with V15 that show the issue? I am probably missing something in your description because I...

I can still see the following issues when testing with 17.0-SNAPSHOT / 3.2-SNAPSHOT: 1. `@JsonProperty` on a field is ignored: ```java public static class Book { @JsonProperty("bookId") private String id;...

Workaround (by `@⁠tomivirkki`): > We had the same issue = Polymer (and the Vaadin components) got imported from two separate bundles: the one from docs-app and the one from Vaadin...

More context in a [slack discussion](https://vaadin.slack.com/archives/CDNTYMS9H/p1587558644301000) > Flow embedding currently works in a way that it creates its own `vaadin-export` bundle out of the `generated-flow-imports` file. In webpack terms that's...

Thanks for a great summary, @platosha! 🥇 ### Embedding within one app **One use case for embedding server-side web components into TypeScript views is hybrid apps.** The currently supported hybrid...

Another use case for cross-app embedding: gradual migration from an older Vaadin app to Fusion: want to embed parts of the old app inside the new app, without putting the...

As a workaround, please use `ElementFactory.createRouterLink(href, text)`. BTW, the `router-link` attribute is not necessary starting from Vaadin 15.