openvidu-components: Deleted unnecessary webcomponent directive

pull/780/head
Carlos Santos 2023-02-17 17:10:06 +01:00
parent 10bcc87ac5
commit 931b9d63bd
1 changed files with 1 additions and 21 deletions

View File

@ -2,7 +2,6 @@ import { Component, ElementRef, EventEmitter, Input, OnInit, Output } from '@ang
import { OpenViduService, ParticipantAbstractModel, RecordingInfo, TokenModel } from 'openvidu-angular';
import { Session } from 'openvidu-browser';
import { CaptionsLangOption } from '../../../projects/openvidu-angular/src/lib/models/caption.model';
import { StreamingInfo } from '../../../projects/openvidu-angular/src/lib/models/streaming.model';
/**
*
@ -142,12 +141,6 @@ export class OpenviduWebComponentComponent implements OnInit {
*/
_recordingActivityRecordingsList: RecordingInfo[] = [];
/**
* @internal
* TODO: Remove this directive when RTMP Exported was included on OV and streaming ready event was fired.
*/
_streamingActivityStreamingInfo: StreamingInfo;
/**
* @internal
*/
@ -544,19 +537,6 @@ export class OpenviduWebComponentComponent implements OnInit {
this._activitiesPanelStreamingActivity = this.castToBoolean(value);
}
/**
* The **streamingActivityStreamingInfo** attribute allows show to show the live streaming info in {@link StreamingActivityComponent}.
*
* Default: `undefined`
*
* @example
* <openvidu-webcomponent streaming-activity-streaming-info="streamingInfo"></openvidu-webcomponent>
*/
@Input() set streamingActivityStreamingInfo(value: StreamingInfo) {
this._streamingActivityStreamingInfo = value;
}
/**
* The **streamingActivityStreamingError** attribute allows to show any possible error with the streaming in the {@link StreamingActivityComponent}.
*
@ -565,7 +545,7 @@ export class OpenviduWebComponentComponent implements OnInit {
* @example
* <openvidu-webcomponent streaming-activity-streaming-error="streamingError"></openvidu-webcomponent>
*/
@Input() set streamingActivityStreamingError(value: any) {
@Input() set streamingActivityStreamingError(value: any) {
this._streamingActivityStreamingError = value;
}