diff --git a/meet-ce/frontend/package.json b/meet-ce/frontend/package.json index fcc9e68..4970e86 100644 --- a/meet-ce/frontend/package.json +++ b/meet-ce/frontend/package.json @@ -4,6 +4,7 @@ "scripts": { "dev": "pnpm exec ng build --configuration development --watch", "build": "func() { pnpm exec ng build --configuration production --base-href=\"${1:-/}\"; }; func", + "lib:serve": "ng build shared-meet-components --watch", "lib:build": "ng build shared-meet-components --configuration production", "lib:pack": "cd dist/shared-meet-components && pnpm pack", "test:unit": "ng test openvidu-meet --watch=false --code-coverage", @@ -27,6 +28,7 @@ "@angular/platform-browser-dynamic": "20.3.3", "@angular/router": "20.3.3", "@livekit/track-processors": "0.6.1", + "@openvidu-meet/shared-components": "workspace:*", "@openvidu-meet/typings": "workspace:*", "autolinker": "4.1.5", "core-js": "3.45.1", diff --git a/meet-ce/frontend/projects/shared-meet-components/ng-package.json b/meet-ce/frontend/projects/shared-meet-components/ng-package.json index 7459241..6eb1c66 100644 --- a/meet-ce/frontend/projects/shared-meet-components/ng-package.json +++ b/meet-ce/frontend/projects/shared-meet-components/ng-package.json @@ -1,6 +1,6 @@ { "$schema": "../../node_modules/ng-packagr/ng-package.schema.json", - "dest": "../../dist/shared-meet-components", + "dest": "dist", "lib": { "entryFile": "src/public-api.ts" } diff --git a/meet-ce/frontend/projects/shared-meet-components/package.json b/meet-ce/frontend/projects/shared-meet-components/package.json index 3ba9381..9abb50b 100644 --- a/meet-ce/frontend/projects/shared-meet-components/package.json +++ b/meet-ce/frontend/projects/shared-meet-components/package.json @@ -1,6 +1,9 @@ { "name": "@openvidu-meet/shared-components", "version": "0.0.1", + "main": "dist/fesm2022/openvidu-meet-shared-components.mjs", + "module": "dist/fesm2022/openvidu-meet-shared-components.mjs", + "typings": "dist/index.d.ts", "peerDependencies": { "@angular/animations": "^20.0.0", "@angular/cdk": "^20.0.0", diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/console-nav/console-nav.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/console-nav/console-nav.component.ts index 05c3106..629e3fe 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/console-nav/console-nav.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/console-nav/console-nav.component.ts @@ -7,8 +7,8 @@ import { MatSidenav, MatSidenavModule } from '@angular/material/sidenav'; import { MatToolbarModule } from '@angular/material/toolbar'; import { MatTooltipModule } from '@angular/material/tooltip'; import { RouterModule } from '@angular/router'; -import { ConsoleNavLink } from '@openvidu-meet/shared/models'; -import { AppDataService, ThemeService } from '@openvidu-meet/shared/services'; +import { ConsoleNavLink } from '../../models'; +import { AppDataService, ThemeService } from '../../services'; @Component({ selector: 'ov-console-nav', diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/basic-dialog/dialog.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/basic-dialog/dialog.component.ts index 55f3aba..e10d7a7 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/basic-dialog/dialog.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/basic-dialog/dialog.component.ts @@ -10,7 +10,7 @@ import { MatDialogTitle } from '@angular/material/dialog'; import { MatIconModule } from '@angular/material/icon'; -import type { DialogOptions } from '@openvidu-meet/shared/models'; +import type { DialogOptions } from '../../../models'; @Component({ selector: 'ov-dialog', diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/delete-room-dialog/delete-room-dialog.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/delete-room-dialog/delete-room-dialog.component.ts index 955f81d..f8da271 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/delete-room-dialog/delete-room-dialog.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/delete-room-dialog/delete-room-dialog.component.ts @@ -10,7 +10,7 @@ import { } from '@angular/material/dialog'; import { MatIconModule } from '@angular/material/icon'; import { MatRadioModule } from '@angular/material/radio'; -import type { DeleteRoomDialogOptions } from '@openvidu-meet/shared/models'; +import type { DeleteRoomDialogOptions } from '../../../models'; import { MeetRoomDeletionPolicyWithMeeting, MeetRoomDeletionPolicyWithRecordings } from '@openvidu-meet/typings'; @Component({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/share-recording-dialog/share-recording-dialog.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/share-recording-dialog/share-recording-dialog.component.ts index efcff5c..b9f3771 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/share-recording-dialog/share-recording-dialog.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/dialogs/share-recording-dialog/share-recording-dialog.component.ts @@ -15,7 +15,7 @@ import { MatInputModule } from '@angular/material/input'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatRadioModule } from '@angular/material/radio'; import { MatTooltipModule } from '@angular/material/tooltip'; -import { RecordingService } from '@openvidu-meet/shared/services'; +import { RecordingService } from '../../../services'; @Component({ selector: 'ov-share-recording-dialog', diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/index.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/index.ts index b5ceb4b..ae9e84d 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/index.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/index.ts @@ -10,3 +10,8 @@ export * from './selectable-card/selectable-card.component'; export * from './spinner/spinner.component'; export * from './step-indicator/step-indicator.component'; export * from './wizard-nav/wizard-nav.component'; +export * from './share-meeting-link/share-meeting-link.component'; + +export * from './dialogs/basic-dialog/dialog.component'; +export * from './dialogs/share-recording-dialog/share-recording-dialog.component'; +export * from './dialogs/delete-room-dialog/delete-room-dialog.component'; diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/logo-selector/logo-selector.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/logo-selector/logo-selector.component.ts index 810dda5..8ea7345 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/logo-selector/logo-selector.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/logo-selector/logo-selector.component.ts @@ -1,7 +1,7 @@ import { Component } from '@angular/core'; import { MatButtonModule } from '@angular/material/button'; import { MatIconModule } from '@angular/material/icon'; -import { ProFeatureBadgeComponent } from '@openvidu-meet/shared/components'; +import { ProFeatureBadgeComponent } from '../../components'; @Component({ selector: 'ov-logo-selector', diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/recording-lists/recording-lists.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/recording-lists/recording-lists.component.ts index 37bbf80..acab71e 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/recording-lists/recording-lists.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/recording-lists/recording-lists.component.ts @@ -15,7 +15,7 @@ import { MatTableModule } from '@angular/material/table'; import { MatToolbarModule } from '@angular/material/toolbar'; import { MatTooltipModule } from '@angular/material/tooltip'; import { MeetRecordingInfo, MeetRecordingStatus } from '@openvidu-meet/typings'; -import { formatBytes, formatDurationToHMS } from '@openvidu-meet/shared/utils'; +import { formatBytes, formatDurationToHMS } from '../../utils'; import { ViewportService } from 'openvidu-components-angular'; export interface RecordingTableAction { diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/selectable-card/selectable-card.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/selectable-card/selectable-card.component.ts index cb6af51..96b294c 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/selectable-card/selectable-card.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/selectable-card/selectable-card.component.ts @@ -1,7 +1,7 @@ import { CommonModule } from '@angular/common'; import { Component, EventEmitter, Input, Output } from '@angular/core'; import { MatIconModule } from '@angular/material/icon'; -import { ProFeatureBadgeComponent } from '@openvidu-meet/shared/components'; +import { ProFeatureBadgeComponent } from '../../components'; /** * Interface for selectable card option data diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/step-indicator/step-indicator.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/step-indicator/step-indicator.component.ts index a4c7653..d483a03 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/step-indicator/step-indicator.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/step-indicator/step-indicator.component.ts @@ -4,7 +4,7 @@ import { CommonModule } from '@angular/common'; import { Component, computed, input, output } from '@angular/core'; import { ReactiveFormsModule } from '@angular/forms'; import { MatStepperModule } from '@angular/material/stepper'; -import { WizardStep } from '@openvidu-meet/shared/models'; +import { WizardStep } from '../../models'; import { Observable } from 'rxjs'; import { map } from 'rxjs/operators'; diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/wizard-nav/wizard-nav.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/wizard-nav/wizard-nav.component.ts index 48a5af5..ceddc65 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/components/wizard-nav/wizard-nav.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/components/wizard-nav/wizard-nav.component.ts @@ -1,7 +1,7 @@ import { Component, EventEmitter, Input, Output } from '@angular/core'; import { MatButton } from '@angular/material/button'; import { MatIcon } from '@angular/material/icon'; -import type { WizardNavigationConfig, WizardNavigationEvent } from '@openvidu-meet/shared/models'; +import type { WizardNavigationConfig, WizardNavigationEvent } from '../../models'; @Component({ selector: 'ov-wizard-nav', diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/auth.guard.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/auth.guard.ts index 38bdb83..840d3ab 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/auth.guard.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/auth.guard.ts @@ -1,6 +1,6 @@ import { inject } from '@angular/core'; import { ActivatedRouteSnapshot, CanActivateFn, RouterStateSnapshot } from '@angular/router'; -import { ErrorReason } from '@openvidu-meet/shared/models'; +import { ErrorReason } from '../models'; import { AuthService, GlobalConfigService, @@ -8,7 +8,7 @@ import { ParticipantService, RecordingService, RoomService -} from '@openvidu-meet/shared/services'; +} from '../services'; import { AuthMode, ParticipantRole } from '@openvidu-meet/typings'; export const checkUserAuthenticatedGuard: CanActivateFn = async ( diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/extract-query-params.guard.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/extract-query-params.guard.ts index eaa70f5..0d461e0 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/extract-query-params.guard.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/extract-query-params.guard.ts @@ -1,13 +1,13 @@ import { inject } from '@angular/core'; import { ActivatedRouteSnapshot, CanActivateFn } from '@angular/router'; -import { ErrorReason } from '@openvidu-meet/shared/models'; +import { ErrorReason } from '../models'; import { AppDataService, NavigationService, ParticipantService, RoomService, SessionStorageService -} from '@openvidu-meet/shared/services'; +} from '../services'; import { WebComponentProperty } from '@openvidu-meet/typings'; export const extractRoomQueryParamsGuard: CanActivateFn = (route: ActivatedRouteSnapshot) => { diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/remove-secret.guard.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/remove-secret.guard.ts index 0d29d82..b7d8bcf 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/remove-secret.guard.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/remove-secret.guard.ts @@ -1,6 +1,6 @@ import { inject } from '@angular/core'; import { CanActivateFn, NavigationEnd, Router } from '@angular/router'; -import { NavigationService } from '@openvidu-meet/shared/services'; +import { NavigationService } from '../services'; import { filter, take } from 'rxjs'; /** diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/validate-access.guard.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/validate-access.guard.ts index 820db0a..f4385e1 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/validate-access.guard.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/guards/validate-access.guard.ts @@ -1,7 +1,7 @@ import { inject } from '@angular/core'; import { ActivatedRouteSnapshot, CanActivateFn, RouterStateSnapshot } from '@angular/router'; -import { ErrorReason } from '@openvidu-meet/shared/models'; -import { NavigationService, ParticipantService, RecordingService, RoomService } from '@openvidu-meet/shared/services'; +import { ErrorReason } from '../models'; +import { NavigationService, ParticipantService, RecordingService, RoomService } from '../services'; /** * Guard to validate access to a room by generating a participant token. diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/interceptors/http.interceptor.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/interceptors/http.interceptor.ts index bf6ea97..22acbdd 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/interceptors/http.interceptor.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/interceptors/http.interceptor.ts @@ -1,7 +1,7 @@ import { HttpErrorResponse, HttpEvent, HttpHandlerFn, HttpInterceptorFn, HttpRequest } from '@angular/common/http'; import { inject } from '@angular/core'; import { Router } from '@angular/router'; -import { AuthService, ParticipantService, RecordingService, RoomService, TokenStorageService } from '@openvidu-meet/shared/services'; +import { AuthService, ParticipantService, RecordingService, RoomService, TokenStorageService } from '../services'; import { catchError, from, Observable, switchMap } from 'rxjs'; /** diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.ts index ceeea7f..e956282 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/config/config.component.ts @@ -10,7 +10,7 @@ import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatSelectModule } from '@angular/material/select'; import { MatSlideToggleChange, MatSlideToggleModule } from '@angular/material/slide-toggle'; import { MatTooltipModule } from '@angular/material/tooltip'; -import { GlobalConfigService, NotificationService } from '@openvidu-meet/shared/services'; +import { GlobalConfigService, NotificationService } from '../../../services'; import { MeetAppearanceConfig, MeetRoomTheme, MeetRoomThemeMode } from '@openvidu-meet/typings'; import { OPENVIDU_COMPONENTS_DARK_THEME, OPENVIDU_COMPONENTS_LIGHT_THEME } from 'openvidu-components-angular'; diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/console.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/console.component.ts index 152d999..0e10686 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/console.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/console.component.ts @@ -1,7 +1,7 @@ import { Component } from '@angular/core'; -import { ConsoleNavComponent } from '@openvidu-meet/shared/components'; -import { ConsoleNavLink } from '@openvidu-meet/shared/models'; -import { AuthService } from '@openvidu-meet/shared/services'; +import { ConsoleNavComponent } from '../../components'; +import { ConsoleNavLink } from '../../models'; +import { AuthService } from '../../services'; @Component({ selector: 'ov-console', diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/embedded/embedded.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/embedded/embedded.component.ts index 356822e..0a7b820 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/embedded/embedded.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/embedded/embedded.component.ts @@ -9,7 +9,7 @@ import { MatInputModule } from '@angular/material/input'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatSlideToggleModule } from '@angular/material/slide-toggle'; import { MatTooltipModule } from '@angular/material/tooltip'; -import { AuthService, GlobalConfigService, NotificationService } from '@openvidu-meet/shared/services'; +import { AuthService, GlobalConfigService, NotificationService } from '../../../services'; import { MeetApiKey } from '@openvidu-meet/typings'; @Component({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/overview/overview.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/overview/overview.component.ts index 202c793..de112d9 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/overview/overview.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/overview/overview.component.ts @@ -4,7 +4,7 @@ import { MatButtonModule } from '@angular/material/button'; import { MatCardModule } from '@angular/material/card'; import { MatGridListModule } from '@angular/material/grid-list'; import { MatIconModule } from '@angular/material/icon'; -import { NavigationService, RecordingService, RoomService } from '@openvidu-meet/shared/services'; +import { NavigationService, RecordingService, RoomService } from '../../../services'; import { MeetRecordingStatus, MeetRoom, MeetRoomStatus } from '@openvidu-meet/typings'; interface OverviewStats { diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/recordings/recordings.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/recordings/recordings.component.ts index b9fa9cb..868cc7e 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/recordings/recordings.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/recordings/recordings.component.ts @@ -2,8 +2,8 @@ import { Component, OnInit, signal } from '@angular/core'; import { MatIconModule } from '@angular/material/icon'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { ActivatedRoute } from '@angular/router'; -import { RecordingListsComponent, RecordingTableAction } from '@openvidu-meet/shared/components'; -import { NotificationService, RecordingService } from '@openvidu-meet/shared/services'; +import { RecordingListsComponent, RecordingTableAction } from '../../../components'; +import { NotificationService, RecordingService } from '../../../services'; import { MeetRecordingFilters, MeetRecordingInfo } from '@openvidu-meet/typings'; import { ILogger, LoggerService } from 'openvidu-components-angular'; diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-basic-creation/room-basic-creation.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-basic-creation/room-basic-creation.component.ts index ddccbbc..9fe7c2c 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-basic-creation/room-basic-creation.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-basic-creation/room-basic-creation.component.ts @@ -5,7 +5,7 @@ import { MatFormFieldModule } from '@angular/material/form-field'; import { MatIconModule } from '@angular/material/icon'; import { MatInputModule } from '@angular/material/input'; import { MatTooltipModule } from '@angular/material/tooltip'; -import { RoomWizardStateService } from '@openvidu-meet/shared/services'; +import { RoomWizardStateService } from '../../../../services'; import { MeetRoomOptions } from '@openvidu-meet/typings'; import { Subject, takeUntil } from 'rxjs'; diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/room-wizard.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/room-wizard.component.ts index 4afba05..8522366 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/room-wizard.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/room-wizard.component.ts @@ -5,9 +5,9 @@ import { MatIconModule } from '@angular/material/icon'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatSlideToggleModule } from '@angular/material/slide-toggle'; import { ActivatedRoute } from '@angular/router'; -import { StepIndicatorComponent, WizardNavComponent } from '@openvidu-meet/shared/components'; -import { WizardNavigationConfig, WizardStep } from '@openvidu-meet/shared/models'; -import { NavigationService, NotificationService, RoomService, RoomWizardStateService } from '@openvidu-meet/shared/services'; +import { StepIndicatorComponent, WizardNavComponent } from '../../../../components'; +import { WizardNavigationConfig, WizardStep } from '../../../../models'; +import { NavigationService, NotificationService, RoomService, RoomWizardStateService } from '../../../../services'; import { MeetRoomOptions } from '@openvidu-meet/typings'; import { RoomBasicCreationComponent } from '../room-basic-creation/room-basic-creation.component'; import { RecordingConfigComponent } from './steps/recording-config/recording-config.component'; diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-config/recording-config.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-config/recording-config.component.ts index d49df11..f80b030 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-config/recording-config.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-config/recording-config.component.ts @@ -7,8 +7,8 @@ import { MatFormFieldModule } from '@angular/material/form-field'; import { MatIconModule } from '@angular/material/icon'; import { MatRadioModule } from '@angular/material/radio'; import { MatSelectModule } from '@angular/material/select'; -import { SelectableCardComponent, SelectableOption, SelectionEvent } from '@openvidu-meet/shared/components'; -import { RoomWizardStateService } from '@openvidu-meet/shared/services'; +import { SelectableCardComponent, SelectableOption, SelectionEvent } from '../../../../../../components'; +import { RoomWizardStateService } from '../../../../../../services'; import { MeetRecordingAccess } from '@openvidu-meet/typings'; import { Subject, takeUntil } from 'rxjs'; diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-layout/recording-layout.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-layout/recording-layout.component.ts index 734d760..0561189 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-layout/recording-layout.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-layout/recording-layout.component.ts @@ -5,8 +5,8 @@ import { MatButtonModule } from '@angular/material/button'; import { MatCardModule } from '@angular/material/card'; import { MatIconModule } from '@angular/material/icon'; import { MatRadioModule } from '@angular/material/radio'; -import { SelectableCardComponent, SelectableOption, SelectionEvent } from '@openvidu-meet/shared/components'; -import { RoomWizardStateService } from '@openvidu-meet/shared/services'; +import { SelectableCardComponent, SelectableOption, SelectionEvent } from '../../../../../../components'; +import { RoomWizardStateService } from '../../../../../../services'; import { Subject, takeUntil } from 'rxjs'; @Component({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-trigger/recording-trigger.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-trigger/recording-trigger.component.ts index f550526..bba3b0d 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-trigger/recording-trigger.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/recording-trigger/recording-trigger.component.ts @@ -5,8 +5,8 @@ import { MatButtonModule } from '@angular/material/button'; import { MatCardModule } from '@angular/material/card'; import { MatIconModule } from '@angular/material/icon'; import { MatRadioModule } from '@angular/material/radio'; -import { SelectableCardComponent, SelectableOption, SelectionEvent } from '@openvidu-meet/shared/components'; -import { RoomWizardStateService } from '@openvidu-meet/shared/services'; +import { SelectableCardComponent, SelectableOption, SelectionEvent } from '../../../../../../components'; +import { RoomWizardStateService } from '../../../../../../services'; import { Subject, takeUntil } from 'rxjs'; @Component({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/room-config/room-config.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/room-config/room-config.component.ts index 28760d9..a8f1382 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/room-config/room-config.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/room-config/room-config.component.ts @@ -3,7 +3,7 @@ import { FormGroup, ReactiveFormsModule } from '@angular/forms'; import { MatCardModule } from '@angular/material/card'; import { MatIconModule } from '@angular/material/icon'; import { MatSlideToggleModule } from '@angular/material/slide-toggle'; -import { RoomWizardStateService } from '@openvidu-meet/shared/services'; +import { RoomWizardStateService } from '../../../../../../services'; import { Subject, takeUntil } from 'rxjs'; @Component({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/room-details/room-details.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/room-details/room-details.component.ts index a8da4a0..891693d 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/room-details/room-details.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/room-wizard/steps/room-details/room-details.component.ts @@ -8,7 +8,7 @@ import { MatIconModule } from '@angular/material/icon'; import { MatInputModule } from '@angular/material/input'; import { MatSelectModule } from '@angular/material/select'; import { MatTooltipModule } from '@angular/material/tooltip'; -import { RoomWizardStateService } from '@openvidu-meet/shared/services'; +import { RoomWizardStateService } from '../../../../../../services'; import { MeetRoomAutoDeletionPolicy, MeetRoomDeletionPolicyWithMeeting, diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/rooms.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/rooms.component.ts index 83c0b92..763f1a2 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/rooms.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/rooms/rooms.component.ts @@ -15,10 +15,9 @@ import { MatSortModule } from '@angular/material/sort'; import { MatTableModule } from '@angular/material/table'; import { MatTooltipModule } from '@angular/material/tooltip'; import { RouterModule } from '@angular/router'; -import { RoomsListsComponent, RoomTableAction } from '@openvidu-meet/shared/components'; -import { DeleteRoomDialogComponent } from '@openvidu-meet/shared/components/dialogs/delete-room-dialog/delete-room-dialog.component'; -import { DeleteRoomDialogOptions } from '@openvidu-meet/shared/models'; -import { NavigationService, NotificationService, RoomService } from '@openvidu-meet/shared/services'; +import { DeleteRoomDialogComponent, RoomsListsComponent, RoomTableAction } from '../../../components'; +import { DeleteRoomDialogOptions } from '../../../models'; +import { NavigationService, NotificationService, RoomService } from '../../../services'; import { MeetRoom, MeetRoomDeletionErrorCode, diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/users-permissions/users-permissions.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/users-permissions/users-permissions.component.ts index 2c27dab..63a1e6d 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/users-permissions/users-permissions.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/console/users-permissions/users-permissions.component.ts @@ -17,8 +17,8 @@ import { MatInputModule } from '@angular/material/input'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatSelectModule } from '@angular/material/select'; import { MatTooltipModule } from '@angular/material/tooltip'; -// import { ProFeatureBadgeComponent } from '@openvidu-meet/shared/components'; -import { AuthService, GlobalConfigService, NotificationService } from '@openvidu-meet/shared/services'; +// import { ProFeatureBadgeComponent } from '../components'; +import { AuthService, GlobalConfigService, NotificationService } from '../../../services'; import { AuthMode } from '@openvidu-meet/typings'; @Component({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/error/error.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/error/error.component.ts index f4fd54e..93e96eb 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/error/error.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/error/error.component.ts @@ -3,8 +3,8 @@ import { MatButtonModule } from '@angular/material/button'; import { MatCardModule } from '@angular/material/card'; import { MatIconModule } from '@angular/material/icon'; import { ActivatedRoute } from '@angular/router'; -import { ErrorReason } from '@openvidu-meet/shared/models'; -import { AppDataService, AuthService, NavigationService, WebComponentManagerService } from '@openvidu-meet/shared/services'; +import { ErrorReason } from '../../models'; +import { AppDataService, AuthService, NavigationService, WebComponentManagerService } from '../../services'; @Component({ selector: 'ov-error', diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/login/login.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/login/login.component.ts index 3720ea1..361be87 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/login/login.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/login/login.component.ts @@ -8,7 +8,7 @@ import { MatIconModule } from '@angular/material/icon'; import { MatInputModule } from '@angular/material/input'; import { MatTooltipModule } from '@angular/material/tooltip'; import { ActivatedRoute, RouterModule } from '@angular/router'; -import { AuthService, NavigationService } from '@openvidu-meet/shared/services'; +import { AuthService, NavigationService } from '../../services'; @Component({ selector: 'ov-login', diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/meeting/end-meeting/end-meeting.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/meeting/end-meeting/end-meeting.component.ts index 7050060..074489b 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/meeting/end-meeting/end-meeting.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/meeting/end-meeting/end-meeting.component.ts @@ -4,7 +4,7 @@ import { MatButtonModule } from '@angular/material/button'; import { MatCardModule } from '@angular/material/card'; import { MatIconModule } from '@angular/material/icon'; import { ActivatedRoute } from '@angular/router'; -import { AppDataService, AuthService, NavigationService, WebComponentManagerService } from '@openvidu-meet/shared/services'; +import { AppDataService, AuthService, NavigationService, WebComponentManagerService } from '../../../services'; import { LeftEventReason } from '@openvidu-meet/typings'; @Component({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.ts index 8113b79..9cb481f 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/meeting/meeting.component.ts @@ -12,9 +12,8 @@ import { MatInputModule } from '@angular/material/input'; import { MatMenuModule } from '@angular/material/menu'; import { MatTooltipModule } from '@angular/material/tooltip'; import { ActivatedRoute } from '@angular/router'; -import { ShareMeetingLinkComponent } from '@openvidu-meet/shared/components/share-meeting-link/share-meeting-link.component'; -import { ErrorReason } from '@openvidu-meet/shared/models'; -import { CustomParticipantModel } from '@openvidu-meet/shared/models/custom-participant.model'; +import { ShareMeetingLinkComponent } from '../../components'; +import { CustomParticipantModel, ErrorReason } from '../../models'; import { AppDataService, ApplicationFeatures, @@ -30,7 +29,7 @@ import { SessionStorageService, TokenStorageService, WebComponentManagerService -} from '@openvidu-meet/shared/services'; +} from '../../services'; import { LeftEventReason, MeetRoom, diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/room-recordings/room-recordings.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/room-recordings/room-recordings.component.ts index 1760eef..1bc5800 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/room-recordings/room-recordings.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/room-recordings/room-recordings.component.ts @@ -4,8 +4,8 @@ import { MatIconModule } from '@angular/material/icon'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatToolbarModule } from '@angular/material/toolbar'; import { ActivatedRoute } from '@angular/router'; -import { RecordingListsComponent, RecordingTableAction } from '@openvidu-meet/shared/components'; -import { NavigationService, NotificationService, RecordingService, RoomService } from '@openvidu-meet/shared/services'; +import { RecordingListsComponent, RecordingTableAction } from '../../components'; +import { NavigationService, NotificationService, RecordingService, RoomService } from '../../services'; import { MeetRecordingFilters, MeetRecordingInfo } from '@openvidu-meet/typings'; import { ILogger, LoggerService } from 'openvidu-components-angular'; diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/view-recording/view-recording.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/view-recording/view-recording.component.ts index ed74b7c..b1dd516 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/view-recording/view-recording.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/pages/view-recording/view-recording.component.ts @@ -7,10 +7,10 @@ import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatSnackBarModule } from '@angular/material/snack-bar'; import { MatTooltipModule } from '@angular/material/tooltip'; import { ActivatedRoute, Router } from '@angular/router'; -import { RecordingVideoPlayerComponent } from '@openvidu-meet/shared/components'; -import { NotificationService, RecordingService } from '@openvidu-meet/shared/services'; +import { RecordingVideoPlayerComponent } from '../../components'; +import { NotificationService, RecordingService } from '../../services'; import { MeetRecordingInfo, MeetRecordingStatus } from '@openvidu-meet/typings'; -import { formatDurationToTime } from '@openvidu-meet/shared/utils'; +import { formatDurationToTime } from '../../utils'; import { ViewportService } from 'openvidu-components-angular'; @Component({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/routes/base-routes.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/routes/base-routes.ts index 005906f..d9b42d9 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/routes/base-routes.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/routes/base-routes.ts @@ -10,7 +10,7 @@ import { runGuardsSerially, validateRecordingAccessGuard, validateRoomAccessGuard -} from '@openvidu-meet/shared/guards'; +} from '../guards'; import { ConsoleComponent, EmbeddedComponent, @@ -26,7 +26,7 @@ import { UsersPermissionsComponent, ViewRecordingComponent, ConfigComponent -} from '@openvidu-meet/shared/pages'; +} from '../pages'; export const baseRoutes: Routes = [ { diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/app-data.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/app-data.service.ts index d86f7b1..f3acc67 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/app-data.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/app-data.service.ts @@ -1,6 +1,6 @@ import { Injectable } from '@angular/core'; -import { AppData, ApplicationMode, Edition } from '@openvidu-meet/shared/models'; -import { WebComponentManagerService } from '@openvidu-meet/shared/services'; +import { AppData, ApplicationMode, Edition } from '../models'; +import { WebComponentManagerService } from '../services'; @Injectable({ providedIn: 'root' diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/auth.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/auth.service.ts index fe27182..a0ec30c 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/auth.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/auth.service.ts @@ -1,8 +1,7 @@ import { HttpErrorResponse } from '@angular/common/http'; import { Injectable } from '@angular/core'; -import { HttpService, NavigationService, TokenStorageService } from '@openvidu-meet/shared/services'; +import { HttpService, NavigationService, TokenStorageService } from '../services'; import { MeetApiKey, User, UserRole } from '@openvidu-meet/typings'; -import { from, Observable } from 'rxjs'; @Injectable({ providedIn: 'root' diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/global-config.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/global-config.service.ts index bd9084e..697c24a 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/global-config.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/global-config.service.ts @@ -1,5 +1,5 @@ import { Injectable } from '@angular/core'; -import { FeatureConfigurationService, HttpService } from '@openvidu-meet/shared/services'; +import { FeatureConfigurationService, HttpService } from '../services'; import { AuthMode, AuthTransportMode, MeetAppearanceConfig, SecurityConfig, WebhookConfig } from '@openvidu-meet/typings'; import { LoggerService } from 'openvidu-components-angular'; diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/meeting.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/meeting.service.ts index 254664e..81f89a7 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/meeting.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/meeting.service.ts @@ -1,5 +1,5 @@ import { Injectable } from '@angular/core'; -import { HttpService, ParticipantService } from '@openvidu-meet/shared/services'; +import { HttpService, ParticipantService } from '../services'; import { LoggerService } from 'openvidu-components-angular'; @Injectable({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/navigation.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/navigation.service.ts index 87b9b5d..e0f5571 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/navigation.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/navigation.service.ts @@ -1,7 +1,7 @@ import { Injectable } from '@angular/core'; import { Params, Router, UrlTree } from '@angular/router'; -import { ErrorReason } from '@openvidu-meet/shared/models'; -import { AppDataService, SessionStorageService } from '@openvidu-meet/shared/services'; +import { ErrorReason } from '../models'; +import { AppDataService, SessionStorageService } from '../services'; @Injectable({ providedIn: 'root' diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/notification.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/notification.service.ts index cbfa669..67fa563 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/notification.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/notification.service.ts @@ -3,8 +3,8 @@ import { ComponentPortal } from '@angular/cdk/portal'; import { Injectable } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; import { MatSnackBar } from '@angular/material/snack-bar'; -import { DialogComponent, SpinnerComponent } from '@openvidu-meet/shared/components'; -import { DialogOptions } from '@openvidu-meet/shared/models'; +import { DialogComponent, SpinnerComponent } from '../components'; +import { DialogOptions } from '../models'; @Injectable({ providedIn: 'root' diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/participant.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/participant.service.ts index c651cdf..b46dff7 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/participant.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/participant.service.ts @@ -1,5 +1,5 @@ import { Injectable } from '@angular/core'; -import { FeatureConfigurationService, GlobalConfigService, HttpService, TokenStorageService } from '@openvidu-meet/shared/services'; +import { FeatureConfigurationService, GlobalConfigService, HttpService, TokenStorageService } from '../services'; import { AuthTransportMode, MeetTokenMetadata, @@ -7,7 +7,7 @@ import { ParticipantPermissions, ParticipantRole } from '@openvidu-meet/typings'; -import { getValidDecodedToken } from '@openvidu-meet/shared/utils'; +import { getValidDecodedToken } from '../utils'; import { LoggerService } from 'openvidu-components-angular'; @Injectable({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/recording.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/recording.service.ts index 10e217f..4fa4324 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/recording.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/recording.service.ts @@ -1,6 +1,6 @@ import { Injectable } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; -import { ShareRecordingDialogComponent } from '@openvidu-meet/shared/components'; +import { ShareRecordingDialogComponent } from '../components'; import { AuthService, FeatureConfigurationService, @@ -8,9 +8,9 @@ import { HttpService, TokenStorageService, ParticipantService -} from '@openvidu-meet/shared/services'; +} from '../services'; import { AuthTransportMode, MeetRecordingFilters, MeetRecordingInfo, RecordingPermissions } from '@openvidu-meet/typings'; -import { getValidDecodedToken } from '@openvidu-meet/shared/utils'; +import { getValidDecodedToken } from '../utils'; import { LoggerService } from 'openvidu-components-angular'; @Injectable({ diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/room.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/room.service.ts index 95d9788..ce2da05 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/room.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/room.service.ts @@ -1,5 +1,5 @@ import { Injectable } from '@angular/core'; -import { FeatureConfigurationService, HttpService, ParticipantService, SessionStorageService } from '@openvidu-meet/shared/services'; +import { FeatureConfigurationService, HttpService, ParticipantService, SessionStorageService } from '../services'; import { MeetRoom, MeetRoomConfig, diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/webcomponent-manager.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/webcomponent-manager.service.ts index 2079991..53eb590 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/webcomponent-manager.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/webcomponent-manager.service.ts @@ -1,5 +1,5 @@ import { Injectable } from '@angular/core'; -import { MeetingService, ParticipantService, RoomService } from '@openvidu-meet/shared/services'; +import { MeetingService, ParticipantService, RoomService } from '../services'; import { WebComponentCommand, WebComponentEvent, diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts index 53b6265..5a1593c 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts @@ -1,6 +1,6 @@ import { computed, Injectable, signal } from '@angular/core'; import { AbstractControl, FormBuilder, ValidationErrors, Validators } from '@angular/forms'; -import { WizardNavigationConfig, WizardStep } from '@openvidu-meet/shared/models'; +import { WizardNavigationConfig, WizardStep } from '../models'; import { MeetRecordingAccess, MeetRoomConfig, diff --git a/meet-ce/frontend/src/app/app.component.ts b/meet-ce/frontend/src/app/app.component.ts index bc41dbb..b773330 100644 --- a/meet-ce/frontend/src/app/app.component.ts +++ b/meet-ce/frontend/src/app/app.component.ts @@ -1,6 +1,6 @@ import { Component, OnInit, inject } from '@angular/core'; import { RouterOutlet } from '@angular/router'; -import { AppDataService } from '@openvidu-meet/shared/services'; +import { AppDataService } from '@openvidu-meet/shared-components'; import packageInfo from '../../package.json'; @Component({ diff --git a/meet-ce/frontend/tsconfig.json b/meet-ce/frontend/tsconfig.json index f402c09..14ab6b8 100644 --- a/meet-ce/frontend/tsconfig.json +++ b/meet-ce/frontend/tsconfig.json @@ -29,9 +29,6 @@ ], "@app/*": [ "src/app/*" - ], - "@openvidu-meet/shared/*": [ - "projects/shared-meet-components/src/lib/*" ] }, "importHelpers": true, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a34a68a..e164fe3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -219,6 +219,9 @@ importers: '@livekit/track-processors': specifier: 0.6.1 version: 0.6.1(@types/dom-mediacapture-transform@0.1.11)(livekit-client@2.15.11(@types/dom-mediacapture-record@1.0.22)) + '@openvidu-meet/shared-components': + specifier: workspace:* + version: link:projects/shared-meet-components '@openvidu-meet/typings': specifier: workspace:* version: link:../typings @@ -365,6 +368,39 @@ importers: specifier: 5.9.2 version: 5.9.2 + meet-ce/frontend/projects/shared-meet-components: + dependencies: + '@angular/animations': + specifier: ^20.0.0 + version: 20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/cdk': + specifier: ^20.0.0 + version: 20.2.7(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': + specifier: ^20.0.0 + version: 20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': + specifier: ^20.0.0 + version: 20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/forms': + specifier: ^20.0.0 + version: 20.3.3(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.3(@angular/animations@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/material': + specifier: ' ^20.0.0' + version: 20.2.7(9c11a8eb564a221c173ca8f1e04d1698) + jwt-decode: + specifier: ^4.0.0 + version: 4.0.0 + openvidu-components-angular: + specifier: ^3.4.0 + version: 3.4.0(00bb4b6f47ece36647efc73b9ad8009f) + rxjs: + specifier: 7.8.2 + version: 7.8.2 + tslib: + specifier: ^2.3.0 + version: 2.8.1 + meet-ce/frontend/webcomponent: dependencies: '@openvidu-meet/typings': @@ -648,6 +684,9 @@ importers: '@livekit/track-processors': specifier: 0.6.1 version: 0.6.1(@types/dom-mediacapture-transform@0.1.11)(livekit-client@2.15.11(@types/dom-mediacapture-record@1.0.22)) + '@openvidu-meet/shared-components': + specifier: workspace:* + version: link:../../meet-ce/frontend/projects/shared-meet-components '@openvidu-meet/typings': specifier: workspace:* version: link:../../meet-ce/typings @@ -794,6 +833,15 @@ importers: specifier: 5.9.2 version: 5.9.2 + meet-pro/typings: + devDependencies: + '@openvidu-meet/typings': + specifier: workspace:* + version: link:../../meet-ce/typings + typescript: + specifier: 5.9.2 + version: 5.9.2 + testapp: dependencies: '@openvidu-meet/typings': @@ -7404,6 +7452,20 @@ packages: resolution: {integrity: sha512-24epA6vxDX0hqEg+jKhMzeMZ9CvNoJlTcqat6+CL8U8bETM4Kc5i7wv2jhbqGFXHHw7kHLtPFz4QjgTooV5nHQ==} hasBin: true + openvidu-components-angular@3.4.0: + resolution: {integrity: sha512-WsJfBLBUjsnM6jDfjsOmtGlHgG1HFhIkk238f0u0VxqRdhwXlh/BK/kESxJVl6/RkhhIoU6GJ5Q3bCRXrXNzqg==} + peerDependencies: + '@angular/animations': ^17.0.0 || ^18.0.0 || ^19.0.0 + '@angular/cdk': ^17.0.0 || ^18.0.0 || ^19.0.0 + '@angular/common': ^17.0.0 || ^18.0.0 || ^19.0.0 + '@angular/core': ^17.0.0 || ^18.0.0 || ^19.0.0 + '@angular/forms': ^17.0.0 || ^18.0.0 || ^19.0.0 + '@angular/material': ^17.0.0 || ^18.0.0 || ^19.0.0 + '@livekit/track-processors': ^0.6.0 + autolinker: ^4.0.0 + buffer: ^6.0.3 + livekit-client: ^2.15.0 + opn@5.3.0: resolution: {integrity: sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==} engines: {node: '>=4'} @@ -10674,7 +10736,7 @@ snapshots: '@babel/traverse': 7.28.4 '@babel/types': 7.28.4 convert-source-map: 2.0.0 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -10694,7 +10756,7 @@ snapshots: '@babel/types': 7.28.4 '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -10746,7 +10808,7 @@ snapshots: '@babel/core': 7.28.3 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.10 transitivePeerDependencies: @@ -11428,7 +11490,7 @@ snapshots: '@babel/parser': 7.28.4 '@babel/template': 7.27.2 '@babel/types': 7.28.4 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -11625,7 +11687,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.2 @@ -11687,7 +11749,7 @@ snapshots: '@humanwhocodes/config-array@0.13.0': dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -13526,7 +13588,7 @@ snapshots: '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.1)(typescript@5.9.2) '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.9.2) '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) eslint: 8.57.1 graphemer: 1.4.0 ignore: 5.3.2 @@ -13578,7 +13640,7 @@ snapshots: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.2) '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) eslint: 8.57.1 optionalDependencies: typescript: 5.9.2 @@ -13591,7 +13653,7 @@ snapshots: '@typescript-eslint/types': 8.24.1 '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) '@typescript-eslint/visitor-keys': 8.24.1 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) eslint: 8.57.1 typescript: 5.7.3 transitivePeerDependencies: @@ -13603,7 +13665,7 @@ snapshots: '@typescript-eslint/types': 8.46.1 '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.46.1 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) eslint: 8.57.1 typescript: 5.9.2 transitivePeerDependencies: @@ -13613,7 +13675,7 @@ snapshots: dependencies: '@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.2) '@typescript-eslint/types': 8.46.1 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -13641,7 +13703,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.2) '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.9.2) - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) eslint: 8.57.1 ts-api-utils: 1.4.3(typescript@5.9.2) optionalDependencies: @@ -13653,7 +13715,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) '@typescript-eslint/utils': 8.24.1(eslint@8.57.1)(typescript@5.7.3) - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) eslint: 8.57.1 ts-api-utils: 2.1.0(typescript@5.7.3) typescript: 5.7.3 @@ -13665,7 +13727,7 @@ snapshots: '@typescript-eslint/types': 8.46.1 '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.2) '@typescript-eslint/utils': 8.46.1(eslint@8.57.1)(typescript@5.9.2) - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) eslint: 8.57.1 ts-api-utils: 2.1.0(typescript@5.9.2) typescript: 5.9.2 @@ -13682,7 +13744,7 @@ snapshots: dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 @@ -13697,7 +13759,7 @@ snapshots: dependencies: '@typescript-eslint/types': 8.24.1 '@typescript-eslint/visitor-keys': 8.24.1 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 @@ -13713,7 +13775,7 @@ snapshots: '@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.2) '@typescript-eslint/types': 8.46.1 '@typescript-eslint/visitor-keys': 8.46.1 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 @@ -13920,7 +13982,7 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -14297,7 +14359,7 @@ snapshots: dependencies: bytes: 3.1.2 content-type: 1.0.5 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) http-errors: 2.0.0 iconv-lite: 0.6.3 on-finished: 2.4.1 @@ -15569,7 +15631,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -15721,7 +15783,7 @@ snapshots: content-type: 1.0.5 cookie: 0.7.2 cookie-signature: 1.2.2 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 @@ -15749,7 +15811,7 @@ snapshots: extract-zip@2.0.1: dependencies: - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -15861,7 +15923,7 @@ snapshots: finalhandler@2.1.0: dependencies: - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) encodeurl: 2.0.0 escape-html: 1.0.3 on-finished: 2.4.1 @@ -15906,7 +15968,7 @@ snapshots: follow-redirects@1.15.11(debug@4.4.3): optionalDependencies: - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) for-each@0.3.5: dependencies: @@ -16081,7 +16143,7 @@ snapshots: dependencies: basic-ftp: 5.0.5 data-uri-to-buffer: 6.0.2 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -16258,14 +16320,14 @@ snapshots: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.4 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -16284,7 +16346,7 @@ snapshots: http-proxy-middleware@3.0.5: dependencies: '@types/http-proxy': 1.17.16 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) http-proxy: 1.18.1(debug@4.4.3) is-glob: 4.0.3 is-plain-object: 5.0.0 @@ -16303,14 +16365,14 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color https-proxy-agent@7.0.6: dependencies: agent-base: 7.1.4 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -16424,7 +16486,7 @@ snapshots: dependencies: '@ioredis/commands': 1.4.0 cluster-key-slot: 1.1.2 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -16672,7 +16734,7 @@ snapshots: istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: @@ -17569,7 +17631,7 @@ snapshots: log4js@6.9.1: dependencies: date-format: 4.0.14 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) flatted: 3.3.3 rfdc: 1.4.1 streamroller: 3.1.5 @@ -18108,6 +18170,20 @@ snapshots: transitivePeerDependencies: - '@types/node' + openvidu-components-angular@3.4.0(00bb4b6f47ece36647efc73b9ad8009f): + dependencies: + '@angular/animations': 20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/cdk': 20.2.7(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/forms': 20.3.3(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.3(@angular/animations@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.3(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.3(@angular/compiler@20.3.3)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/material': 20.2.7(9c11a8eb564a221c173ca8f1e04d1698) + '@livekit/track-processors': 0.6.1(@types/dom-mediacapture-transform@0.1.11)(livekit-client@2.15.11(@types/dom-mediacapture-record@1.0.22)) + autolinker: 4.1.5 + buffer: 6.0.3 + livekit-client: 2.15.11(@types/dom-mediacapture-record@1.0.22) + tslib: 2.8.1 + opn@5.3.0: dependencies: is-wsl: 1.1.0 @@ -18183,7 +18259,7 @@ snapshots: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.4 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) get-uri: 6.0.5 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -18587,7 +18663,7 @@ snapshots: proxy-agent@6.5.0: dependencies: agent-base: 7.1.4 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 lru-cache: 7.18.3 @@ -18897,7 +18973,7 @@ snapshots: router@2.2.0: dependencies: - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) depd: 2.0.0 is-promise: 4.0.0 parseurl: 1.3.3 @@ -19035,7 +19111,7 @@ snapshots: send@1.2.0: dependencies: - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 @@ -19242,7 +19318,7 @@ snapshots: socks-proxy-agent@8.0.5: dependencies: agent-base: 7.1.4 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) socks: 2.8.7 transitivePeerDependencies: - supports-color @@ -19290,7 +19366,7 @@ snapshots: spdy-transport@3.0.0: dependencies: - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -19301,7 +19377,7 @@ snapshots: spdy@4.0.2: dependencies: - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 @@ -19354,7 +19430,7 @@ snapshots: streamroller@3.1.5: dependencies: date-format: 4.0.14 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) fs-extra: 8.1.0 transitivePeerDependencies: - supports-color @@ -19459,7 +19535,7 @@ snapshots: dependencies: component-emitter: 1.3.1 cookiejar: 2.1.4 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) fast-safe-stringify: 2.1.1 form-data: 4.0.4 formidable: 3.5.4 @@ -19817,7 +19893,7 @@ snapshots: tuf-js@3.1.0: dependencies: '@tufjs/models': 3.0.1 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.4.3(supports-color@8.1.1) make-fetch-happen: 14.0.3 transitivePeerDependencies: - supports-color diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 21ea5f6..b30af1d 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -2,6 +2,7 @@ packages: - meet-ce/typings - meet-ce/frontend - meet-ce/frontend/webcomponent + - meet-ce/frontend/projects/shared-meet-components - meet-ce/backend - meet-pro/frontend - meet-pro/backend