Javier Godoy
Javier Godoy
### Description of the bug TaskUpdateImports (from build-frontend) can fail with the following message: > [ERROR] Failed to execute goal com.vaadin:vaadin-maven-plugin:14.8.6:build-frontend (default) on project webclient: Execution default of goal com.vaadin:vaadin-maven-plugin:14.8.6:build-frontend...
The [animation](https://api.highcharts.com/highcharts/plotOptions.boxplot.animation) property (enable or disable the initial animation when a series is displayed) is missing from `PlotOptionsBoxplot`. Note that [chart.animation](https://api.highcharts.com/highcharts/chart.animation) does not affect the initial series animation. Applies to:...
MapDb 3.0.8. StoreWAL and StoreDirect do not `releaseRecid` if `oldSize == NULL_RECORD_SIZE`, thus preallocating and deleting a recid (without ever writing a value to it) will cause the recid not...
Hello, and thank you very much for this excellent parser. I'm using jsqlparser 0.9.5 and I've found some issues when parsing the following ALTER TABLE statements that work in an...
### Describe your motivation The details cell does not have even-odd parts applied, so it's not possible to write the following style with part selector ``` :host [part~="odd-row"] [part~="details-cell"] {background:...
### Description When a menubar has full width, moving the mouse from the overflow button to an item in the overflow menu may hover another item in the menubar, which...
**Describe the bug** I was in the process of creating a Wireguard peer via GraphQL API. By mistake, I created a peer with a wrong key, and now `fly wireguard...
Please document in documentation/routing (Vaadin 14) that, when navigating from a view with URL parameters to the same view (using a different parameter value, i.e. `ui.navigate(SomeView.class, ++parameter)`), the same view...
The regular expression in https://vaadin.com/docs/latest/components/text-field#constraints is wrong https://github.com/vaadin/docs/blob/0732f33ae30d12bf19c6d44a98630e30cff1b646/src/main/java/com/vaadin/demo/component/textfield/TextFieldConstraints.java#L17  Compare: ``` TextField f4 = new TextField(); f4.setPattern("^[+]?[(]?[0-9]{3}[)]?[-s.]?[0-9]{3}[-s.]?[0-9]{4,6}$"); TextField f5 = new TextField(); f5.setPattern("^[+]?[\\(]?[0-9]{3}[\\)]?-?\\s*[0-9]{3}-?\\s*[0-9]{4,6}$"); add(f4, f5); ``` Only the second field...