Anyone having issues with Vaadin 22. Update your webapp.config.js to this:

Anyone having issues with Vaadin 22. Update your webapp.config.js to this:

const merge = require('webpack-merge');
const flowDefaults = require('./webpack.generated.js');

const mergedConfig = merge(flowDefaults);
mergedConfig.resolve.alias['@vaadin/vaadin-combo-box/src/vaadin-combo-box-placeholder.js']
 = '@vaadin/combo-box/src/vaadin-combo-box-placeholder.js';
module.exports = mergedConfig;

Hello Stefan. Unfortunately this is not enough. The component is shown, but it is not possible to select an item. You find some details in https://github.com/gatanaso/multiselect-combo-box-flow/issues/94

Is there anything in the roadmap that might bring Multiselect Combo Box over as an official component in the future? From the discussion over the years - and especially recently with it breaking with Vaadin 22 - this add-on is clearly important for users.

Hi Tori,

Thanks to help from Serhii, the component is now also compatible with Vaadin 22+.

You can give it a try by updating to the latest 4.x.x version, i.e.

<dependency>
   <groupId>org.vaadin.gatanaso</groupId>
   <artifactId>multiselect-combo-box-flow</artifactId>
   <version>4.0.0-rc2</version>
</dependency>

BR