I have a Vue dialog that populates a custom block element with data from a 3rd party API. I have it showing a list of items similar to the built-in image block editor, but I can’t figure out how to make it clickable/selectable (and I can’t find it’s source code). I know about :selecting="true" but that makes it into a multiple-choice list, which is not what I need. I’d like a “radio button” type of list where only one element can be chose, ideally firing a JS event that I can use to manipulate the dialog further.
Here’s what I have today:
<!-- Albums List -->
<k-collection
v-else-if="isAlbumsStep"
:items="albums"
layout="list"
size="medium"
/>
For reference, this is the UX I’d like to imitate:
Thanks in advance!

