it don't work with vaadin 23.3.3.
[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 | }