MultiSelectComboBox - select text in chips

Hello,
I’m trying to achieve one thing - select text in combobox chip. We use this field as “tags” field and sometimes users want to copy value of tag to clipboard but there is no way to select text displayed within the chip.

Ok there is a way (right click on chip, but that’s more of OS context menu opening feature and as thus not usable for us).

Is there any reason the selection is not possible? Is there a way to allow it - by css override or something? I tried to enable user-select: text to the chip label part but with no effect.

Thank you

JS

Haven’t tested this thoroughly, so it could potentially cause other issues.

vaadin-multi-select-combo-box::part(input-field) {
  pointer-events: none;
}