feat: plugins v1.7
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<aside class="flex h-full min-h-0 flex-col bg-card">
|
||||
<div
|
||||
appThemeNode="roomPanelHeader"
|
||||
class="border-b border-border px-3 py-3"
|
||||
class="shrink-0 border-b border-border px-3 py-3"
|
||||
>
|
||||
@if (panelMode() === 'channels') {
|
||||
<div class="flex items-center gap-3">
|
||||
@@ -252,7 +252,10 @@
|
||||
</section>
|
||||
|
||||
@if (pluginChannelSections().length > 0 || pluginSidePanels().length > 0) {
|
||||
<section class="border-t border-border px-2 py-3" data-testid="plugin-room-side-panel">
|
||||
<section
|
||||
class="border-t border-border px-2 py-3"
|
||||
data-testid="plugin-room-side-panel"
|
||||
>
|
||||
<div class="mb-2 px-1">
|
||||
<h4 class="text-xs font-semibold uppercase tracking-[0.18em] text-muted-foreground">Plugins</h4>
|
||||
</div>
|
||||
@@ -262,7 +265,8 @@
|
||||
@for (record of pluginChannelSections(); track record.id) {
|
||||
<button
|
||||
class="flex w-full items-center gap-2 rounded-md px-2 py-1.5 text-left text-sm text-foreground/70 transition-colors hover:bg-secondary/60 hover:text-foreground"
|
||||
[title]="record.pluginId">
|
||||
[title]="record.pluginId"
|
||||
>
|
||||
<ng-icon
|
||||
[name]="record.contribution.type === 'video' ? 'lucideVideo' : 'lucideHash'"
|
||||
class="h-4 w-4 text-muted-foreground"
|
||||
@@ -531,7 +535,7 @@
|
||||
<!-- Voice controls pinned to sidebar bottom (hidden when floating controls visible) -->
|
||||
@if (panelMode() === 'channels' && showVoiceControls() && voiceEnabled()) {
|
||||
@if (localUserHasDesync()) {
|
||||
<div class="mx-2 mb-1 flex items-center gap-2 rounded-md bg-amber-500/15 px-3 py-2 text-xs text-amber-400">
|
||||
<div class="mx-2 mb-1 flex shrink-0 items-center gap-2 rounded-md bg-amber-500/15 px-3 py-2 text-xs text-amber-400">
|
||||
<ng-icon
|
||||
name="lucideAlertTriangle"
|
||||
class="w-4 h-4 shrink-0"
|
||||
@@ -540,7 +544,7 @@
|
||||
</div>
|
||||
}
|
||||
<div
|
||||
class="border-t border-border px-2 py-3"
|
||||
class="shrink-0 border-t border-border px-2 py-3"
|
||||
[class.invisible]="showFloatingControls()"
|
||||
>
|
||||
<app-voice-controls />
|
||||
|
||||
Reference in New Issue
Block a user