@typeparam TValue
@*
Compact multi-select control: a Bootstrap dropdown whose toggle button
summarises the current selection over a checkbox menu. Replaces a wrapped
block of chip buttons with a single control of one row's height.
*@
@if (Items.Count == 0)
{
@EmptyText
}
else
{
@foreach (var item in Items)
{
var isSelected = Selected.Contains(item);