Hello,I updated my System to Vaadin 24.0.0-alpha7 and got the fol

Hello,

I updated my System to Vaadin 24.0.0-alpha7 and got the following message in the browser window:

[TypeScript]
 Could not find a declaration file for module 'onecolor'. '/home/heiner/git/brpro/node_modules/onecolor/index.js' implicitly has an 'any' type. Try `npm i --save-dev @types/onecolor` if it exists or add a new declaration (.d.ts) file containing `declare module 'onecolor';`
   4 | import ApexCharts from 'apexcharts/dist/apexcharts.esm';
    5 | import '@webcomponents/shadycss/apply-shim.min.js';
  > 6 | import color from "onecolor";
      |                   ^^^^^^^^^^
    7 |
    8 | @customElement('apex-charts-wrapper')
    9 | export class ApexChartsWrapper extends LitElement {
[TypeScript]
 Expected 1 arguments, but got 0.
/home/heiner/git/brpro/frontend/generated/jar-resources/com/github/appreciated/apexcharts/apexcharts-wrapper.ts:95:15
    93 |
    94 |     firstUpdated() {
  > 95 |         super.firstUpdated();
       |               ^^^^^^^^^^^^^^
    96 |         const div = document.createElement('div');
    97 |         this.appendChild(div);
    98 |         this.updateConfig();
[TypeScript]
 Property 'chartComponent' does not exist on type 'ApexChartsWrapper'.
/home/heiner/git/brpro/frontend/generated/jar-resources/com/github/appreciated/apexcharts/apexcharts-wrapper.ts:99:14
     97 |         this.appendChild(div);
     98 |         this.updateConfig();
  >  99 |         this.chartComponent = new ApexCharts(div, this.config);
        |              ^^^^^^^^^^^^^^
    100 |         this.beginRender();
    101 |     }
    102 |

:

:

:

here same problem using 23.3.0

Same problem using Vaadin 23.3.2. See this relevant issue.

Works for me now with Java 19, Vaadin 23.2.12, Spring Boot 2.7.5.