Jean-Christophe Gueriaud

Results 22 issues of Jean-Christophe Gueriaud

In Vaadin 14.x, there is a new configuration property. devMode.transpile By default it's false in Vaadin 14.2. It's not documented here: https://vaadin.com/docs/v14/flow/advanced/tutorial-all-vaadin-properties.html

Vaadin 24.3 requires lit3. The imports like `import {styleMap} from 'lit-html/directives/style-map.js';` are not working anymore and have to be updated. That should be mentioned in the upgrade guide. Maybe a...

When the browser is not supported by the Vaadin version (too old for example), a default error page is shown. It's possible to customize it by creating a file in...

flow

The parameter `hotdeploy.dependencies` is not in the configuration page https://vaadin.com/docs/latest/configuration/properties.

flow

### Description of the bug When I update the `translations.properties` file the i18n is not updated. If I restart the server, the i18n is updated. I tried to open a...

hilla
I18N

### Describe your motivation Currently if you are doing this: `await i18n.configure();` It uses the browser language by [default](https://github.com/vaadin/hilla/blob/main/packages/ts/react-i18n/test/i18n.spec.tsx#L78-L82). So the lang attribute in the html tag is not the...

hilla
I18N

### Description of the bug It seems not possible to change the `TranslationProvider` for Hilla and use the i18n object, because the `TranslationFileRequestHandler` requires `DefaultI18NProvider` https://github.com/vaadin/flow/blob/main/flow-server/src/main/java/com/vaadin/flow/i18n/TranslationFileRequestHandler.java#L72 ### Expected behavior I...

I18N
hilla

### Describe your motivation Currently the default locale is calculated in [LocaleUtil](https://github.com/vaadin/flow/blob/main/flow-server/src/main/java/com/vaadin/flow/internal/LocaleUtil.java#L119). It's the first locale in the list. With our default provider, it's the first in alphabetical order. For...

enhancement
I18N

### Describe your motivation `ReactAdapterComponent` is an abstract implementation of an adapter for integrating with React components. It extends from the `Component` class, as we can inherit from multiple classes...

enhancement

### Describe the bug When I have this Java class: ``` public class Person { @NotNull private String fullName = "fullName"; @NotNull private String descriptionPublic = "descriptionPublic"; @NotNull private String...

bug
hilla