[ACS-9602] resolve issue for upgrading prettier (#4554)

* Build(deps-dev): Bump prettier from 2.8.8 to 3.5.3

Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.5.3.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.5.3)

---
updated-dependencies:
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Resolve issue for upgrading prettier

* Update ADF

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dominikiwanekhyland
2025-05-12 11:47:59 +02:00
committed by GitHub
parent 325d072c4d
commit bf909d9a5b
32 changed files with 234 additions and 62 deletions

View File

@@ -33,7 +33,11 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
export class PaginationDirective implements OnInit {
private readonly destroyRef = inject(DestroyRef);
constructor(private pagination: PaginationComponent, private preferences: UserPreferencesService, private config: AppConfigService) {}
constructor(
private readonly pagination: PaginationComponent,
private readonly preferences: UserPreferencesService,
private readonly config: AppConfigService
) {}
ngOnInit() {
this.pagination.supportedPageSizes = this.config.get('pagination.supportedPageSizes');

View File

@@ -119,7 +119,10 @@ export class ContentApiService {
this._versionsApi = this._versionsApi ?? new VersionsApi(this.api.getInstance());
return this._versionsApi;
}
constructor(private api: AlfrescoApiService, private preferences: UserPreferencesService) {}
constructor(
private readonly api: AlfrescoApiService,
private readonly preferences: UserPreferencesService
) {}
/**
* Moves a node to the trashcan.

View File

@@ -36,7 +36,10 @@ export class RouterExtensionService {
auth: ['app.auth', 'app.extensions.dataLoaderGuard']
};
constructor(private router: Router, protected extensions: ExtensionService) {}
constructor(
private readonly router: Router,
protected readonly extensions: ExtensionService
) {}
mapExtensionRoutes() {
const routesWithoutParent = [];