mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 19:59:48 +00:00
34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
@using AIStudio.Tools.PluginSystem
|
|
@attribute [Route(Routes.PLUGINS)]
|
|
|
|
<div class="inner-scrolling-context">
|
|
<MudText Typo="Typo.h3" Class="mb-2">
|
|
Plugins
|
|
</MudText>
|
|
<PreviewExperimental ApplyInnerScrollingFix="true"/>
|
|
|
|
<InnerScrolling>
|
|
<MudList T="string">
|
|
@foreach (var plugin in PluginFactory.AvailablePlugins)
|
|
{
|
|
<MudListItem>
|
|
<AvatarContent>
|
|
<MudAvatar Size="Size.Large" Class="align-content-stretch me-4">
|
|
<div class="plugin-icon-container">
|
|
@((MarkupString)plugin.IconSVG)
|
|
</div>
|
|
</MudAvatar>
|
|
</AvatarContent>
|
|
<ChildContent>
|
|
<MudText Typo="Typo.h6">
|
|
@plugin.Name
|
|
</MudText>
|
|
<MudJustifiedText Typo="Typo.body1">
|
|
@plugin.Description
|
|
</MudJustifiedText>
|
|
</ChildContent>
|
|
</MudListItem>
|
|
}
|
|
</MudList>
|
|
</InnerScrolling>
|
|
</div> |