From 83e38ae88a09b779bc99af96e44b75d5e1f7ab88 Mon Sep 17 00:00:00 2001 From: CSantosM <4a.santos@gmail.com> Date: Tue, 27 Jan 2026 16:09:07 +0100 Subject: [PATCH] ov-components: Refactor pre-join component to replace Angular animations with CSS animations and optimize video preview container handling --- .../pre-join/pre-join.component.html | 2 +- .../pre-join/pre-join.component.scss | 33 +++++++++++++++ .../components/pre-join/pre-join.component.ts | 42 +++---------------- 3 files changed, 39 insertions(+), 38 deletions(-) diff --git a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/pre-join/pre-join.component.html b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/pre-join/pre-join.component.html index 4a843869e..30d168af9 100644 --- a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/pre-join/pre-join.component.html +++ b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/pre-join/pre-join.component.html @@ -25,7 +25,7 @@
-
+
compact', [animate('250ms cubic-bezier(0.25, 0.8, 0.25, 1)')]), - transition('compact => normal', [animate('350ms cubic-bezier(0.25, 0.8, 0.25, 1)')]) - ]), - trigger('slideInOut', [ - transition(':enter', [ - style({ - opacity: 0 - }), - animate( - '300ms cubic-bezier(0.34, 1.56, 0.64, 1)', - style({ - opacity: 1 - }) - ) - ]) - ]) - ] + standalone: false }) export class PreJoinComponent implements OnInit, OnDestroy { @Input() set error(error: { name: string; message: string } | undefined) {