feat: Add deafen to pc, fix mobiel view, fix freeze on startup
This commit is contained in:
@@ -5,6 +5,7 @@ import {
|
||||
} from '@angular/core';
|
||||
import { NgIcon, provideIcons } from '@ng-icons/core';
|
||||
import {
|
||||
lucideHeadphones,
|
||||
lucideMic,
|
||||
lucideMicOff,
|
||||
lucideMonitor,
|
||||
@@ -22,6 +23,7 @@ import {
|
||||
imports: [NgIcon],
|
||||
viewProviders: [
|
||||
provideIcons({
|
||||
lucideHeadphones,
|
||||
lucideMic,
|
||||
lucideMicOff,
|
||||
lucideMonitor,
|
||||
@@ -38,6 +40,7 @@ import {
|
||||
export class PrivateCallControlsComponent {
|
||||
readonly connected = input.required<boolean>();
|
||||
readonly muted = input.required<boolean>();
|
||||
readonly deafened = input.required<boolean>();
|
||||
readonly cameraEnabled = input.required<boolean>();
|
||||
readonly screenSharing = input.required<boolean>();
|
||||
readonly showSpeakerphoneButton = input(false);
|
||||
@@ -45,6 +48,7 @@ export class PrivateCallControlsComponent {
|
||||
|
||||
readonly joinRequested = output();
|
||||
readonly muteToggled = output();
|
||||
readonly deafenToggled = output();
|
||||
readonly cameraToggled = output();
|
||||
readonly screenShareToggled = output();
|
||||
readonly speakerphoneToggled = output();
|
||||
|
||||
Reference in New Issue
Block a user