diff --git a/demo-shell/src/app/components/social/social.component.ts b/demo-shell/src/app/components/social/social.component.ts index 4513291973..0c543dafe1 100644 --- a/demo-shell/src/app/components/social/social.component.ts +++ b/demo-shell/src/app/components/social/social.component.ts @@ -17,6 +17,9 @@ import { Component, ViewEncapsulation } from '@angular/core'; +/** + * @deprecated This component uses Like and Rating components that are not used in ACA/ADW/ACC and can be removed. + */ @Component({ selector: 'app-social', templateUrl: './social.component.html', diff --git a/demo-shell/src/app/components/social/social.module.ts b/demo-shell/src/app/components/social/social.module.ts index 93c69b554a..1d1c484889 100644 --- a/demo-shell/src/app/components/social/social.module.ts +++ b/demo-shell/src/app/components/social/social.module.ts @@ -29,6 +29,9 @@ const routes: Routes = [ } ]; +/** + * @deprecated This module uses Like and Rating components that are not used in ACA/ADW/ACC and can be removed. + */ @NgModule({ imports: [ CommonModule, diff --git a/lib/content-services/src/lib/social/like.component.ts b/lib/content-services/src/lib/social/like.component.ts index 6ec0eacb11..5977daaa14 100644 --- a/lib/content-services/src/lib/social/like.component.ts +++ b/lib/content-services/src/lib/social/like.component.ts @@ -19,6 +19,9 @@ import { Component, EventEmitter, Input, OnChanges, Output, ViewEncapsulation } import { RatingService } from './services/rating.service'; import { RatingEntry } from '@alfresco/js-api'; +/** + * @deprecated Like component is not used in ACA/ADW/ACC, can be removed. + */ @Component({ selector: 'adf-like', styleUrls: ['./like.component.scss'], diff --git a/lib/content-services/src/lib/social/rating.component.ts b/lib/content-services/src/lib/social/rating.component.ts index 392e4aa3be..426e70a0ab 100644 --- a/lib/content-services/src/lib/social/rating.component.ts +++ b/lib/content-services/src/lib/social/rating.component.ts @@ -21,6 +21,9 @@ import { RatingEntry } from '@alfresco/js-api'; import { takeUntil } from 'rxjs/operators'; import { Subject } from 'rxjs'; +/** + * @deprecated Rating component is not used in ACA/ADW/ACC, can be removed. + */ @Component({ selector: 'adf-rating', styleUrls: ['./rating.component.scss'], diff --git a/lib/content-services/src/lib/social/social.module.ts b/lib/content-services/src/lib/social/social.module.ts index deea4aeae2..732f087d08 100644 --- a/lib/content-services/src/lib/social/social.module.ts +++ b/lib/content-services/src/lib/social/social.module.ts @@ -22,6 +22,9 @@ import { MaterialModule } from '../material.module'; import { LikeComponent } from './like.component'; import { RatingComponent } from './rating.component'; +/** + * @deprecated This module uses Like and Rating components are not used in ACA/ADW/ACC and can be removed. + */ @NgModule({ imports: [ CommonModule,