2022-03-07 15:50:27 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
2023-02-17 17:03:15 +01:00
|
|
|
import { ActivitiesPanelBroadcastingActivityDirective, ActivitiesPanelRecordingActivityDirective } from './activities-panel.directive';
|
2022-06-10 11:27:43 +02:00
|
|
|
import { AdminLoginDirective, AdminRecordingsListDirective } from './admin.directive';
|
2023-02-17 17:03:15 +01:00
|
|
|
import { BroadcastingActivityBroadcastingErrorDirective } from './broadcasting-activity.directive';
|
2022-04-28 13:01:34 +02:00
|
|
|
import { LogoDirective } from './internals.directive';
|
2022-03-10 12:55:43 +01:00
|
|
|
import { ParticipantPanelItemMuteButtonDirective } from './participant-panel-item.directive';
|
2022-06-02 10:57:47 +02:00
|
|
|
import { RecordingActivityRecordingErrorDirective, RecordingActivityRecordingsListDirective } from './recording-activity.directive';
|
2022-03-07 15:50:27 +01:00
|
|
|
import {
|
|
|
|
StreamDisplayAudioDetectionDirective,
|
2022-10-24 17:08:32 +02:00
|
|
|
StreamDisplayParticipantNameDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
StreamSettingsButtonDirective
|
|
|
|
} from './stream.directive';
|
|
|
|
import {
|
2022-10-24 17:08:32 +02:00
|
|
|
ToolbarActivitiesPanelButtonDirective,
|
2023-02-17 17:03:15 +01:00
|
|
|
ToolbarBackgroundEffectsButtonDirective, ToolbarBroadcastingButtonDirective, ToolbarCaptionsButtonDirective,
|
2022-10-24 17:08:32 +02:00
|
|
|
ToolbarChatPanelButtonDirective,
|
|
|
|
ToolbarDisplayLogoDirective,
|
|
|
|
ToolbarDisplaySessionNameDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
ToolbarFullscreenButtonDirective,
|
|
|
|
ToolbarLeaveButtonDirective,
|
|
|
|
ToolbarParticipantsPanelButtonDirective,
|
2022-06-16 14:01:07 +02:00
|
|
|
ToolbarRecordingButtonDirective,
|
2022-10-24 17:08:32 +02:00
|
|
|
ToolbarScreenshareButtonDirective,
|
2023-02-17 17:03:15 +01:00
|
|
|
ToolbarSettingsButtonDirective
|
2022-03-07 15:50:27 +01:00
|
|
|
} from './toolbar.directive';
|
2022-03-16 14:19:04 +01:00
|
|
|
import {
|
|
|
|
AudioMutedDirective,
|
2022-12-23 16:17:04 +01:00
|
|
|
CaptionsLangDirective,
|
|
|
|
CaptionsLangOptionsDirective,
|
|
|
|
LangDirective,
|
|
|
|
MinimalDirective,
|
2022-05-13 17:11:04 +02:00
|
|
|
ParticipantNameDirective,
|
2022-10-24 17:08:32 +02:00
|
|
|
PrejoinDirective,
|
|
|
|
VideoMutedDirective
|
2022-03-16 14:19:04 +01:00
|
|
|
} from './videoconference.directive';
|
2022-03-07 15:50:27 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
MinimalDirective,
|
2022-05-13 17:11:04 +02:00
|
|
|
LangDirective,
|
2022-11-23 23:57:58 +01:00
|
|
|
CaptionsLangOptionsDirective,
|
2022-10-24 17:08:32 +02:00
|
|
|
CaptionsLangDirective,
|
2022-03-10 14:12:43 +01:00
|
|
|
PrejoinDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
VideoMutedDirective,
|
|
|
|
AudioMutedDirective,
|
|
|
|
ToolbarScreenshareButtonDirective,
|
|
|
|
ToolbarFullscreenButtonDirective,
|
2022-04-25 16:17:32 +02:00
|
|
|
ToolbarBackgroundEffectsButtonDirective,
|
2022-07-06 13:46:42 +02:00
|
|
|
ToolbarCaptionsButtonDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
ToolbarLeaveButtonDirective,
|
2022-06-02 10:57:47 +02:00
|
|
|
ToolbarRecordingButtonDirective,
|
2023-02-17 17:03:15 +01:00
|
|
|
ToolbarBroadcastingButtonDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
ToolbarParticipantsPanelButtonDirective,
|
|
|
|
ToolbarChatPanelButtonDirective,
|
2022-04-25 16:17:32 +02:00
|
|
|
ToolbarActivitiesPanelButtonDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
ToolbarDisplaySessionNameDirective,
|
|
|
|
ToolbarDisplayLogoDirective,
|
2022-06-16 14:01:07 +02:00
|
|
|
ToolbarSettingsButtonDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
StreamDisplayParticipantNameDirective,
|
|
|
|
StreamDisplayAudioDetectionDirective,
|
|
|
|
StreamSettingsButtonDirective,
|
2022-03-10 12:55:43 +01:00
|
|
|
LogoDirective,
|
2022-03-16 14:19:04 +01:00
|
|
|
ParticipantPanelItemMuteButtonDirective,
|
2022-06-02 10:57:47 +02:00
|
|
|
ParticipantNameDirective,
|
|
|
|
ActivitiesPanelRecordingActivityDirective,
|
2023-02-17 17:03:15 +01:00
|
|
|
ActivitiesPanelBroadcastingActivityDirective,
|
2022-06-02 10:57:47 +02:00
|
|
|
RecordingActivityRecordingsListDirective,
|
2022-06-10 11:27:43 +02:00
|
|
|
RecordingActivityRecordingErrorDirective,
|
2023-02-17 17:03:15 +01:00
|
|
|
BroadcastingActivityBroadcastingErrorDirective,
|
2022-06-10 11:27:43 +02:00
|
|
|
AdminRecordingsListDirective,
|
|
|
|
AdminLoginDirective
|
2022-03-07 15:50:27 +01:00
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
MinimalDirective,
|
2022-05-13 17:11:04 +02:00
|
|
|
LangDirective,
|
2022-11-23 23:57:58 +01:00
|
|
|
CaptionsLangOptionsDirective,
|
2022-10-24 17:08:32 +02:00
|
|
|
CaptionsLangDirective,
|
2022-03-10 14:12:43 +01:00
|
|
|
PrejoinDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
VideoMutedDirective,
|
|
|
|
AudioMutedDirective,
|
|
|
|
ToolbarScreenshareButtonDirective,
|
|
|
|
ToolbarFullscreenButtonDirective,
|
2022-04-25 16:17:32 +02:00
|
|
|
ToolbarBackgroundEffectsButtonDirective,
|
2022-07-06 13:46:42 +02:00
|
|
|
ToolbarCaptionsButtonDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
ToolbarLeaveButtonDirective,
|
2022-06-02 10:57:47 +02:00
|
|
|
ToolbarRecordingButtonDirective,
|
2023-02-17 17:03:15 +01:00
|
|
|
ToolbarBroadcastingButtonDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
ToolbarParticipantsPanelButtonDirective,
|
|
|
|
ToolbarChatPanelButtonDirective,
|
2022-04-25 16:17:32 +02:00
|
|
|
ToolbarActivitiesPanelButtonDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
ToolbarDisplaySessionNameDirective,
|
|
|
|
ToolbarDisplayLogoDirective,
|
2022-06-16 14:01:07 +02:00
|
|
|
ToolbarSettingsButtonDirective,
|
2022-03-07 15:50:27 +01:00
|
|
|
StreamDisplayParticipantNameDirective,
|
|
|
|
StreamDisplayAudioDetectionDirective,
|
2022-03-07 16:54:27 +01:00
|
|
|
StreamSettingsButtonDirective,
|
2022-03-10 12:55:43 +01:00
|
|
|
LogoDirective,
|
2022-03-16 14:19:04 +01:00
|
|
|
ParticipantPanelItemMuteButtonDirective,
|
2022-06-02 10:57:47 +02:00
|
|
|
ParticipantNameDirective,
|
|
|
|
ActivitiesPanelRecordingActivityDirective,
|
2023-02-17 17:03:15 +01:00
|
|
|
ActivitiesPanelBroadcastingActivityDirective,
|
2022-06-02 10:57:47 +02:00
|
|
|
RecordingActivityRecordingsListDirective,
|
2022-06-10 11:27:43 +02:00
|
|
|
RecordingActivityRecordingErrorDirective,
|
2023-02-17 17:03:15 +01:00
|
|
|
BroadcastingActivityBroadcastingErrorDirective,
|
2022-06-10 11:27:43 +02:00
|
|
|
AdminRecordingsListDirective,
|
|
|
|
AdminLoginDirective
|
2022-03-07 15:50:27 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class ApiDirectiveModule {}
|