[AAE-7119] Fix circular dependencies (#7472)

* fix language item dependency

* fix public-api export

* dependency fixes

* fix circular deps

* fix circular deps

* fix circular deps

* fix circular deps

* fix circular dependency

* workaround for circular deps

* fix lint
This commit is contained in:
Denys Vuika
2022-01-28 14:14:42 +00:00
committed by GitHub
parent e8871e7867
commit 3aa629d4be
27 changed files with 144 additions and 56 deletions

View File

@@ -16,17 +16,11 @@
*/
import { Injectable } from '@angular/core';
import { Direction } from '@angular/cdk/bidi';
import { BehaviorSubject } from 'rxjs';
import { AppConfigService, AppConfigValues } from '../app-config/app-config.service';
import { LanguageItem } from './language-item.interface';
import { UserPreferencesService } from './user-preferences.service';
export interface LanguageItem {
key: string;
label: string;
direction?: Direction;
}
@Injectable({providedIn: 'root'})
export class LanguageService {