Browse Source

Fix has a circular dependency on @abp/ng.core

pull/15201/head
Mahmut Gundogdu 3 years ago
parent
commit
2aa56f1f4b
  1. 2
      npm/ng-packs/packages/core/locale/src/utils/register-locale.ts
  2. 2
      npm/ng-packs/packages/core/src/lib/tokens/check-authentication-state.ts

2
npm/ng-packs/packages/core/locale/src/utils/register-locale.ts

@ -1,4 +1,4 @@
import { differentLocales } from '@abp/ng.core';
import { differentLocales } from '../../../src/lib/constants';
import { isDevMode } from '@angular/core';
export interface LocaleErrorHandlerData {

2
npm/ng-packs/packages/core/src/lib/tokens/check-authentication-state.ts

@ -1,5 +1,5 @@
import { InjectionToken } from '@angular/core';
import { CheckAuthenticationStateFn } from '@abp/ng.core';
import { CheckAuthenticationStateFn } from '../models/auth';
export const CHECK_AUTHENTICATION_STATE_FN_KEY = new InjectionToken<CheckAuthenticationStateFn>(
'CHECK_AUTHENTICATION_STATE_FN_KEY',

Loading…
Cancel
Save