recently I've switched our CSS styles for our application and components to theme (added in vaadin 14.6). Right now I'm looking for an alternative to include parameter of @CssImport annotation.
@CssImport(value = "./styles/custom-charts.css", themeFor = "vaadin-chart", include = "vaadin-chart-default-theme")
We have some style changes for vaadin-chart but we needed to include original vaadin-chart-default-theme.
Is there a way to achieve the same with the Theme support?
Thank you