feat: plugins v1.5

This commit is contained in:
2026-04-29 01:14:30 +02:00
parent 6920f93b41
commit eabbc08896
59 changed files with 2197 additions and 352 deletions

View File

@@ -34,7 +34,7 @@
<!-- Channels View -->
@if (panelMode() === 'channels') {
<div class="flex-1 overflow-auto">
<div class="min-h-0 flex-1 overflow-auto">
<!-- Text Channels -->
<section
appThemeNode="roomTextChannelsSection"
@@ -276,7 +276,7 @@
@if (pluginSidePanels().length > 0) {
<div class="mt-3 space-y-2">
@for (record of pluginSidePanels(); track record.id) {
<article class="rounded-md border border-border bg-background/40 p-2">
<article class="max-h-64 overflow-auto rounded-md border border-border bg-background/40 p-2">
<p class="mb-2 truncate text-xs font-medium text-muted-foreground">{{ record.contribution.label }}</p>
<app-plugin-render-host [render]="record.contribution.render" />
</article>