2026-03-13 00:14:03 +00:00
|
|
|
@using AIStudio.Tools.PluginSystem.Assistants.DataModel
|
2026-02-24 16:21:50 +00:00
|
|
|
<MudStack Row="true" Class='@this.MergeClasses(this.Class, "mb-3")' Style="@this.Style">
|
2025-11-10 16:01:49 +00:00
|
|
|
<MudSelect
|
2025-11-11 14:57:15 +00:00
|
|
|
T="string"
|
|
|
|
|
Value="@this.Value"
|
|
|
|
|
ValueChanged="@(val => this.OnValueChanged(val))"
|
2025-11-10 16:01:49 +00:00
|
|
|
Label="@this.Label"
|
2026-03-13 00:14:03 +00:00
|
|
|
HelperText="@this.HelperText"
|
2025-11-10 16:01:49 +00:00
|
|
|
Placeholder="@this.Default.Value"
|
2026-03-13 00:14:03 +00:00
|
|
|
OpenIcon="@this.OpenIcon"
|
|
|
|
|
CloseIcon="@this.CloseIcon"
|
|
|
|
|
Adornment="@this.IconPosition"
|
|
|
|
|
AdornmentColor="@this.IconColor"
|
|
|
|
|
Variant="@this.Variant"
|
|
|
|
|
Margin="Margin.Normal"
|
|
|
|
|
MultiSelection="@this.IsMultiselect"
|
|
|
|
|
SelectAll="@this.HasSelectAll"
|
|
|
|
|
SelectAllText="@this.SelectAllText"
|
2025-11-11 14:57:15 +00:00
|
|
|
>
|
|
|
|
|
@foreach (var item in Items)
|
|
|
|
|
{
|
|
|
|
|
<MudSelectItem Value="@item.Value">
|
|
|
|
|
@item.Display
|
|
|
|
|
</MudSelectItem>
|
|
|
|
|
}
|
2025-11-10 16:01:49 +00:00
|
|
|
</MudSelect>
|
2026-02-24 16:21:50 +00:00
|
|
|
</MudStack>
|