@abp/ng.core 10.0.2 → 10.1.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@abp/ng.core",
3
- "version": "10.0.2",
3
+ "version": "10.1.0-rc.2",
4
4
  "homepage": "https://abp.io",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/abpframework/abp.git"
8
8
  },
9
9
  "dependencies": {
10
- "@abp/utils": "~10.0.2",
10
+ "@abp/utils": "~10.1.0-rc.2",
11
11
  "just-clone": "^6.0.0",
12
12
  "just-compare": "^2.0.0",
13
13
  "ts-toolbelt": "^9.0.0",
@@ -32,21 +32,21 @@
32
32
  "webapp"
33
33
  ],
34
34
  "module": "fesm2022/abp-ng.core.mjs",
35
- "typings": "index.d.ts",
35
+ "typings": "types/abp-ng.core.d.ts",
36
36
  "exports": {
37
37
  "./package.json": {
38
38
  "default": "./package.json"
39
39
  },
40
40
  ".": {
41
- "types": "./index.d.ts",
41
+ "types": "./types/abp-ng.core.d.ts",
42
42
  "default": "./fesm2022/abp-ng.core.mjs"
43
43
  },
44
44
  "./locale": {
45
- "types": "./locale/index.d.ts",
45
+ "types": "./types/abp-ng.core-locale.d.ts",
46
46
  "default": "./fesm2022/abp-ng.core-locale.mjs"
47
47
  },
48
48
  "./testing": {
49
- "types": "./testing/index.d.ts",
49
+ "types": "./types/abp-ng.core-testing.d.ts",
50
50
  "default": "./fesm2022/abp-ng.core-testing.mjs"
51
51
  }
52
52
  },
@@ -3,16 +3,16 @@ import { ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, CanActivateFn, Pa
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable, UnaryFunction, Subject, Subscription, PartialObserver, ReplaySubject, BehaviorSubject } from 'rxjs';
5
5
  import * as i0 from '@angular/core';
6
- import { ChangeDetectorRef, Injector, Type, EventEmitter, TemplateRef, OnDestroy, ComponentRef, ViewContainerRef, EmbeddedViewRef, TrackByFunction, OnInit, AfterViewInit, OnChanges, ElementRef, SimpleChanges, PipeTransform, InjectionToken, ModuleWithProviders, Provider, NgModuleFactory, NgModuleRef, NgZone } from '@angular/core';
6
+ import { ChangeDetectorRef, Injector, Type, EventEmitter, TemplateRef, OnDestroy, ViewContainerRef, ComponentRef, EmbeddedViewRef, TrackByFunction, OnInit, AfterViewInit, OnChanges, ElementRef, SimpleChanges, PipeTransform, InjectionToken, ModuleWithProviders, Provider, NgModuleFactory, NgModuleRef, NgZone } from '@angular/core';
7
7
  import * as i2 from '@angular/forms';
8
8
  import { ControlValueAccessor, ValidatorFn, Validators } from '@angular/forms';
9
9
  import { HttpHeaders, HttpParameterCodec, HttpParams, HttpErrorResponse, HttpRequest, HttpClient, HttpContextToken, HttpInterceptor, HttpHandler, HttpEvent, HttpInterceptorFn } from '@angular/common/http';
10
10
  import { AuthConfig } from 'angular-oauth2-oidc';
11
+ import * as _abp_ng_core from '@abp/ng.core';
11
12
  import * as i1 from '@angular/common';
12
13
  import { DatePipe } from '@angular/common';
13
14
  import * as i4 from '@ngx-validate/core';
14
15
  export { NgxValidateCoreModule, Validation } from '@ngx-validate/core';
15
- import * as _abp_ng_core from '@abp/ng.core';
16
16
  import { DateTime } from 'luxon';
17
17
  import { O as O$1 } from 'ts-toolbelt';
18
18
  import { Title } from '@angular/platform-browser';
@@ -799,7 +799,7 @@ declare class RouterEvents {
799
799
  Start: typeof NavigationStart;
800
800
  }[Key]> : never : never>;
801
801
  getAllEvents(): Observable<Event$1>;
802
- getAllNavigationEvents(): Observable<NavigationStart | NavigationEnd | NavigationCancel | NavigationError>;
802
+ getAllNavigationEvents(): Observable<NavigationCancel | NavigationEnd | NavigationError | NavigationStart>;
803
803
  static ɵfac: i0.ɵɵFactoryDeclaration<RouterEvents, never>;
804
804
  static ɵprov: i0.ɵɵInjectableDeclaration<RouterEvents>;
805
805
  }
@@ -1285,27 +1285,6 @@ declare class ConfigStateService {
1285
1285
  static ɵprov: i0.ɵɵInjectableDeclaration<ConfigStateService>;
1286
1286
  }
1287
1287
 
1288
- declare abstract class ContextStrategy<T = any> {
1289
- context: Partial<ContextType<T>>;
1290
- constructor(context: Partial<ContextType<T>>);
1291
- setContext(componentRef?: ComponentRef<InferredInstanceOf<T>>): Partial<ContextType<T>>;
1292
- }
1293
- declare class NoContextStrategy<T extends Type<any> | TemplateRef<any> = any> extends ContextStrategy<T> {
1294
- constructor();
1295
- }
1296
- declare class ComponentContextStrategy<T extends Type<any> = any> extends ContextStrategy<T> {
1297
- setContext(componentRef: ComponentRef<InferredInstanceOf<T>>): Partial<InferredInstanceOf<T>>;
1298
- }
1299
- declare class TemplateContextStrategy<T extends TemplateRef<any> = any> extends ContextStrategy<T> {
1300
- setContext(): Partial<InferredContextOf<T>>;
1301
- }
1302
- declare const CONTEXT_STRATEGY: {
1303
- None<T extends Type<any> | TemplateRef<any> = any>(): NoContextStrategy<T>;
1304
- Component<T extends Type<any> = any>(context: Partial<InferredInstanceOf<T>>): ComponentContextStrategy<T>;
1305
- Template<T extends TemplateRef<any> = any>(context: Partial<InferredContextOf<T>>): TemplateContextStrategy<T>;
1306
- };
1307
- type ContextType<T> = T extends Type<infer U> | TemplateRef<infer U> ? U : never;
1308
-
1309
1288
  declare abstract class ContainerStrategy {
1310
1289
  containerRef: ViewContainerRef;
1311
1290
  constructor(containerRef: ViewContainerRef);
@@ -1328,6 +1307,27 @@ declare const CONTAINER_STRATEGY: {
1328
1307
  Insert(containerRef: ViewContainerRef, index: number): InsertIntoContainerStrategy;
1329
1308
  };
1330
1309
 
1310
+ declare abstract class ContextStrategy<T = any> {
1311
+ context: Partial<ContextType<T>>;
1312
+ constructor(context: Partial<ContextType<T>>);
1313
+ setContext(componentRef?: ComponentRef<InferredInstanceOf<T>>): Partial<ContextType<T>>;
1314
+ }
1315
+ declare class NoContextStrategy<T extends Type<any> | TemplateRef<any> = any> extends ContextStrategy<T> {
1316
+ constructor();
1317
+ }
1318
+ declare class ComponentContextStrategy<T extends Type<any> = any> extends ContextStrategy<T> {
1319
+ setContext(componentRef: ComponentRef<InferredInstanceOf<T>>): Partial<InferredInstanceOf<T>>;
1320
+ }
1321
+ declare class TemplateContextStrategy<T extends TemplateRef<any> = any> extends ContextStrategy<T> {
1322
+ setContext(): Partial<InferredContextOf<T>>;
1323
+ }
1324
+ declare const CONTEXT_STRATEGY: {
1325
+ None<T extends Type<any> | TemplateRef<any> = any>(): NoContextStrategy<T>;
1326
+ Component<T extends Type<any> = any>(context: Partial<InferredInstanceOf<T>>): ComponentContextStrategy<T>;
1327
+ Template<T extends TemplateRef<any> = any>(context: Partial<InferredContextOf<T>>): TemplateContextStrategy<T>;
1328
+ };
1329
+ type ContextType<T> = T extends Type<infer U> | TemplateRef<infer U> ? U : never;
1330
+
1331
1331
  declare class DomStrategy {
1332
1332
  private getTarget;
1333
1333
  position: InsertPosition;
@@ -1362,7 +1362,7 @@ declare class RootComponentProjectionStrategy<T extends Type<any>> extends Proje
1362
1362
  declare class TemplateProjectionStrategy<T extends TemplateRef<any>> extends ProjectionStrategy<T> {
1363
1363
  private containerStrategy;
1364
1364
  private contextStrategy;
1365
- constructor(templateRef: T, containerStrategy: ContainerStrategy, contextStrategy?: NoContextStrategy<any>);
1365
+ constructor(templateRef: T, containerStrategy: ContainerStrategy, contextStrategy?: _abp_ng_core.NoContextStrategy<any>);
1366
1366
  injectContent(): ComponentRefOrEmbeddedViewRef<T>;
1367
1367
  }
1368
1368
  declare const PROJECTION_STRATEGY: {
@@ -1523,7 +1523,7 @@ declare class EnvironmentService {
1523
1523
  production?: boolean;
1524
1524
  remoteEnv?: {
1525
1525
  url?: string;
1526
- mergeStrategy?: "deepmerge" | "overwrite" | customMergeFn;
1526
+ mergeStrategy?: "deepmerge" | "overwrite" | _abp_ng_core.customMergeFn;
1527
1527
  method?: string;
1528
1528
  headers?: {
1529
1529
  [x: string]: string;
@@ -1537,8 +1537,8 @@ declare class EnvironmentService {
1537
1537
  setState(environment: Environment): void;
1538
1538
  getIssuer(): string;
1539
1539
  getIssuer$(): Observable<string>;
1540
- getImpersonation(): Impersonation;
1541
- getImpersonation$(): Observable<Impersonation>;
1540
+ getImpersonation(): _abp_ng_core.Impersonation;
1541
+ getImpersonation$(): Observable<_abp_ng_core.Impersonation>;
1542
1542
  static ɵfac: i0.ɵɵFactoryDeclaration<EnvironmentService, never>;
1543
1543
  static ɵprov: i0.ɵɵInjectableDeclaration<EnvironmentService>;
1544
1544
  }
@@ -2429,6 +2429,7 @@ declare class ForDirective implements OnChanges {
2429
2429
  compareBy?: CompareFn;
2430
2430
  emptyRef?: TemplateRef<any>;
2431
2431
  private differ;
2432
+ private lastItemsRef;
2432
2433
  private isShowEmptyRef;
2433
2434
  get compareFn(): CompareFn;
2434
2435
  get trackByFn(): TrackByFunction<any>;
@@ -2606,10 +2607,20 @@ declare class UtcToLocalPipe implements PipeTransform {
2606
2607
  static ɵprov: i0.ɵɵInjectableDeclaration<UtcToLocalPipe>;
2607
2608
  }
2608
2609
 
2609
- declare class LazyLocalizationPipe implements PipeTransform {
2610
+ declare class AsyncLocalizationPipe implements PipeTransform {
2610
2611
  private localizationService;
2611
2612
  private configStateService;
2612
2613
  transform(key: string, ...params: (string | string[])[]): Observable<string>;
2614
+ static ɵfac: i0.ɵɵFactoryDeclaration<AsyncLocalizationPipe, never>;
2615
+ static ɵpipe: i0.ɵɵPipeDeclaration<AsyncLocalizationPipe, "abpAsyncLocalization", true>;
2616
+ static ɵprov: i0.ɵɵInjectableDeclaration<AsyncLocalizationPipe>;
2617
+ }
2618
+
2619
+ /**
2620
+ * @deprecated Use `AsyncLocalizationPipe` instead. This pipe will be removed in a future version.
2621
+ * LazyLocalizationPipe has been renamed to AsyncLocalizationPipe to better express its async nature.
2622
+ */
2623
+ declare class LazyLocalizationPipe extends AsyncLocalizationPipe {
2613
2624
  static ɵfac: i0.ɵɵFactoryDeclaration<LazyLocalizationPipe, never>;
2614
2625
  static ɵpipe: i0.ɵɵPipeDeclaration<LazyLocalizationPipe, "abpLazyLocalization", true>;
2615
2626
  static ɵprov: i0.ɵɵInjectableDeclaration<LazyLocalizationPipe>;
@@ -2623,7 +2634,7 @@ declare class LazyLocalizationPipe implements PipeTransform {
2623
2634
  */
2624
2635
  declare class BaseCoreModule {
2625
2636
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseCoreModule, never>;
2626
- static ɵmod: i0.ɵɵNgModuleDeclaration<BaseCoreModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.RouterModule, typeof i4.NgxValidateCoreModule, typeof AutofocusDirective, typeof InputEventDebounceDirective, typeof ForDirective, typeof FormSubmitDirective, typeof InitDirective, typeof PermissionDirective, typeof ReplaceableTemplateDirective, typeof StopPropagationDirective, typeof LocalizationPipe, typeof SortPipe, typeof SafeHtmlPipe, typeof ShortDateTimePipe, typeof ShortTimePipe, typeof ShortDatePipe, typeof ToInjectorPipe, typeof UtcToLocalPipe, typeof LazyLocalizationPipe, typeof DynamicLayoutComponent, typeof ReplaceableRouteContainerComponent, typeof RouterOutletComponent, typeof AbstractNgModelComponent], [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.RouterModule, typeof i4.NgxValidateCoreModule, typeof AutofocusDirective, typeof InputEventDebounceDirective, typeof ForDirective, typeof FormSubmitDirective, typeof InitDirective, typeof PermissionDirective, typeof ReplaceableTemplateDirective, typeof StopPropagationDirective, typeof LocalizationPipe, typeof SortPipe, typeof SafeHtmlPipe, typeof ShortDateTimePipe, typeof ShortTimePipe, typeof ShortDatePipe, typeof ToInjectorPipe, typeof UtcToLocalPipe, typeof LazyLocalizationPipe, typeof DynamicLayoutComponent, typeof ReplaceableRouteContainerComponent, typeof RouterOutletComponent, typeof AbstractNgModelComponent]>;
2637
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BaseCoreModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.RouterModule, typeof i4.NgxValidateCoreModule, typeof AutofocusDirective, typeof InputEventDebounceDirective, typeof ForDirective, typeof FormSubmitDirective, typeof InitDirective, typeof PermissionDirective, typeof ReplaceableTemplateDirective, typeof StopPropagationDirective, typeof LocalizationPipe, typeof SortPipe, typeof SafeHtmlPipe, typeof ShortDateTimePipe, typeof ShortTimePipe, typeof ShortDatePipe, typeof ToInjectorPipe, typeof UtcToLocalPipe, typeof AsyncLocalizationPipe, typeof LazyLocalizationPipe, typeof DynamicLayoutComponent, typeof ReplaceableRouteContainerComponent, typeof RouterOutletComponent, typeof AbstractNgModelComponent], [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.RouterModule, typeof i4.NgxValidateCoreModule, typeof AutofocusDirective, typeof InputEventDebounceDirective, typeof ForDirective, typeof FormSubmitDirective, typeof InitDirective, typeof PermissionDirective, typeof ReplaceableTemplateDirective, typeof StopPropagationDirective, typeof LocalizationPipe, typeof SortPipe, typeof SafeHtmlPipe, typeof ShortDateTimePipe, typeof ShortTimePipe, typeof ShortDatePipe, typeof ToInjectorPipe, typeof UtcToLocalPipe, typeof AsyncLocalizationPipe, typeof LazyLocalizationPipe, typeof DynamicLayoutComponent, typeof ReplaceableRouteContainerComponent, typeof RouterOutletComponent, typeof AbstractNgModelComponent]>;
2627
2638
  static ɵinj: i0.ɵɵInjectorDeclaration<BaseCoreModule>;
2628
2639
  }
2629
2640
  /**
@@ -2677,6 +2688,7 @@ declare class PermissionGuard implements IAbpGuard {
2677
2688
  protected readonly authService: AuthService;
2678
2689
  protected readonly permissionService: PermissionService;
2679
2690
  protected readonly httpErrorReporter: HttpErrorReporterService;
2691
+ protected readonly configStateService: ConfigStateService;
2680
2692
  canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean | UrlTree>;
2681
2693
  static ɵfac: i0.ɵɵFactoryDeclaration<PermissionGuard, never>;
2682
2694
  static ɵprov: i0.ɵɵInjectableDeclaration<PermissionGuard>;
@@ -2684,12 +2696,12 @@ declare class PermissionGuard implements IAbpGuard {
2684
2696
  declare const permissionGuard: CanActivateFn;
2685
2697
 
2686
2698
  /**
2687
- * @deprecated Use `LocalizationPipe` and `LazyLocalizationPipe` directly as a standalone pipe.
2688
- * This module is no longer necessary for using the `LocalizationPipe` and `LazyLocalizationPipe` pipes.
2699
+ * @deprecated Use `LocalizationPipe`, `AsyncLocalizationPipe` and `LazyLocalizationPipe` directly as a standalone pipe.
2700
+ * This module is no longer necessary for using the `LocalizationPipe`, `AsyncLocalizationPipe` and `LazyLocalizationPipe` pipes.
2689
2701
  */
2690
2702
  declare class LocalizationModule {
2691
2703
  static ɵfac: i0.ɵɵFactoryDeclaration<LocalizationModule, never>;
2692
- static ɵmod: i0.ɵɵNgModuleDeclaration<LocalizationModule, never, [typeof LocalizationPipe, typeof LazyLocalizationPipe], [typeof LocalizationPipe, typeof LazyLocalizationPipe]>;
2704
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LocalizationModule, never, [typeof LocalizationPipe, typeof AsyncLocalizationPipe, typeof LazyLocalizationPipe], [typeof LocalizationPipe, typeof AsyncLocalizationPipe, typeof LazyLocalizationPipe]>;
2693
2705
  static ɵinj: i0.ɵɵInjectorDeclaration<LocalizationModule>;
2694
2706
  }
2695
2707
 
@@ -3089,5 +3101,5 @@ declare const timezoneInterceptor: HttpInterceptorFn;
3089
3101
 
3090
3102
  declare const transferStateInterceptor: HttpInterceptorFn;
3091
3103
 
3092
- export { ABP, APP_INIT_ERROR_HANDLERS, APP_STARTED_WITH_SSR, AbpApiDefinitionService, AbpApplicationConfigurationService, AbpApplicationLocalizationService, AbpCookieStorageService, AbpLocalStorageService, AbpTenantService, AbpTitleStrategy, AbpValidators, AbpWindowService, AbstractAuthErrorFilter, AbstractNavTreeService, AbstractNgModelComponent, AbstractTreeService, ApiInterceptor, AuditedEntityDto, AuditedEntityWithUserDto, AuthErrorEvent, AuthErrorFilterService, AuthEvent, AuthGuard, AuthInfoEvent, AuthService, AuthSuccessEvent, AutofocusDirective, BaseCoreModule, BaseTreeNode, CHECK_AUTHENTICATION_STATE_FN_KEY, CONTAINER_STRATEGY, CONTENT_SECURITY_STRATEGY, CONTENT_STRATEGY, CONTEXT_STRATEGY, COOKIE_LANGUAGE_KEY, CORE_OPTIONS, CROSS_ORIGIN_STRATEGY, ClearContainerStrategy, ComponentContextStrategy, ComponentProjectionStrategy, ConfigStateService, ContainerStrategy, ContentProjectionService, ContentSecurityStrategy, ContentStrategy, ContextStrategy, CookieLanguageProvider, CoreFeatureKind, CoreModule, CreationAuditedEntityDto, CreationAuditedEntityWithUserDto, CrossOriginStrategy, DEFAULT_DYNAMIC_LAYOUTS, DISABLE_PROJECT_NAME, DOM_STRATEGY, DYNAMIC_LAYOUTS_TOKEN, DefaultQueueManager, DomInsertionService, DomStrategy, DomStrategyService, DynamicLayoutComponent, EntityDto, EnvironmentService, ExtensibleAuditedEntityDto, ExtensibleAuditedEntityWithUserDto, ExtensibleCreationAuditedEntityDto, ExtensibleCreationAuditedEntityWithUserDto, ExtensibleEntityDto, ExtensibleFullAuditedEntityDto, ExtensibleFullAuditedEntityWithUserDto, ExtensibleLimitedResultRequestDto, ExtensibleObject, ExtensiblePagedAndSortedResultRequestDto, ExtensiblePagedResultRequestDto, ExternalHttpClient, ForDirective, FormSubmitDirective, FullAuditedEntityDto, FullAuditedEntityWithUserDto, HtmlEncodePipe, HtmlEncodingService, HttpErrorReporterService, HttpWaitService, INCUDE_LOCALIZATION_RESOURCES_TOKEN, INJECTOR_PIPE_DATA_TOKEN, IS_EXTERNAL_REQUEST, IncludeLocalizationResourcesProvider, InitDirective, InputEventDebounceDirective, InsertIntoContainerStrategy, InternalStore, InternetConnectionService, LIST_QUERY_DEBOUNCE_TIME, LOADER_DELAY, LOADING_STRATEGY, LOCALIZATIONS, LazyLoadService, LazyLocalizationPipe, LazyModuleFactory, LimitedResultRequestDto, ListResultDto, ListService, LoadingStrategy, LocalStorageListenerService, LocaleId, LocaleProvider, LocalizationModule, LocalizationPipe, LocalizationService, LooseContentSecurityStrategy, MultiTenancyService, NAVIGATE_TO_MANAGE_PROFILE, NavigationEvent, NoContentSecurityStrategy, NoContextStrategy, NoCrossOriginStrategy, OTHERS_GROUP, index_d as ObjectExtending, PIPE_TO_LOGIN_FN_KEY, PROJECTION_STRATEGY, PagedAndSortedResultRequestDto, PagedResultDto, PagedResultRequestDto, PermissionDirective, PermissionGuard, PermissionService, ProjectionStrategy, QUEUE_MANAGER, ReplaceableComponents, ReplaceableComponentsService, ReplaceableRouteContainerComponent, ReplaceableTemplateDirective, ResourceWaitService, Rest, RestService, RootComponentProjectionStrategy, RootCoreModule, RouterEvents, RouterOutletComponent, RouterWaitService, RoutesService, SET_TOKEN_RESPONSE_TO_STORAGE_FN_KEY, SORT_COMPARE_FUNC, SSR_FLAG, SafeHtmlPipe, ScriptContentStrategy, ScriptLoadingStrategy, ServerCookieParser, Session, SessionStateService, ShortDatePipe, ShortDateTimePipe, ShortTimePipe, ShowPasswordDirective, SortPipe, StopPropagationDirective, StyleContentStrategy, StyleLoadingStrategy, SubscriptionService, TENANT_KEY, TENANT_NOT_FOUND_BY_NAME, TemplateContextStrategy, TemplateProjectionStrategy, TimeService, TimezoneService, ToInjectorPipe, TrackByService, TrackCapsLockDirective, UtcToLocalPipe, WebHttpUrlEncodingCodec, asyncAuthGuard, authGuard, checkHasProp, compareFuncFactory, coreOptionsFactory, createGroupMap, createLocalizationPipeKeyGenerator, createLocalizer, createLocalizerWithFallback, createMapFromList, createTokenParser, createTreeFromList, createTreeNodeFilterCreator, deepMerge, differentLocales, downloadBlob, eLayoutType, eThemeSharedComponents, escapeHtmlChars, exists, featuresFactory, findRoute, fromLazyLoad, generateHash, generatePassword, getCurrentTenancyNameFromUrl, getInitialData, getLocaleDirection, getPathName, getRemoteEnv, getRoutePath, getShortDateFormat, getShortDateShortTimeFormat, getShortTimeFormat, interpolate, isArray, isNode, isNullOrEmpty, isNullOrUndefined, isNumber, isObject, isObjectAndNotArray, isObjectAndNotArrayNotNode, isUndefinedOrEmptyString, localeInitializer, localizationContributor, localizations$, mapEnumToOptions, noop, parseTenantFromUrl, permissionGuard, provideAbpCore, provideAbpCoreChild, pushValueTo, reloadRoute, setLanguageToCookie, timezoneInterceptor, trackBy, trackByDeep, transferStateInterceptor, uuid, validateCreditCard, validateMinAge, validateRange, validateRequired, validateStringLength, validateUniqueCharacter, validateUrl, withCompareFuncFactory, withOptions, withTitleStrategy };
3104
+ export { ABP, APP_INIT_ERROR_HANDLERS, APP_STARTED_WITH_SSR, AbpApiDefinitionService, AbpApplicationConfigurationService, AbpApplicationLocalizationService, AbpCookieStorageService, AbpLocalStorageService, AbpTenantService, AbpTitleStrategy, AbpValidators, AbpWindowService, AbstractAuthErrorFilter, AbstractNavTreeService, AbstractNgModelComponent, AbstractTreeService, ApiInterceptor, AsyncLocalizationPipe, AuditedEntityDto, AuditedEntityWithUserDto, AuthErrorEvent, AuthErrorFilterService, AuthEvent, AuthGuard, AuthInfoEvent, AuthService, AuthSuccessEvent, AutofocusDirective, BaseCoreModule, BaseTreeNode, CHECK_AUTHENTICATION_STATE_FN_KEY, CONTAINER_STRATEGY, CONTENT_SECURITY_STRATEGY, CONTENT_STRATEGY, CONTEXT_STRATEGY, COOKIE_LANGUAGE_KEY, CORE_OPTIONS, CROSS_ORIGIN_STRATEGY, ClearContainerStrategy, ComponentContextStrategy, ComponentProjectionStrategy, ConfigStateService, ContainerStrategy, ContentProjectionService, ContentSecurityStrategy, ContentStrategy, ContextStrategy, CookieLanguageProvider, CoreFeatureKind, CoreModule, CreationAuditedEntityDto, CreationAuditedEntityWithUserDto, CrossOriginStrategy, DEFAULT_DYNAMIC_LAYOUTS, DISABLE_PROJECT_NAME, DOM_STRATEGY, DYNAMIC_LAYOUTS_TOKEN, DefaultQueueManager, DomInsertionService, DomStrategy, DomStrategyService, DynamicLayoutComponent, EntityDto, EnvironmentService, ExtensibleAuditedEntityDto, ExtensibleAuditedEntityWithUserDto, ExtensibleCreationAuditedEntityDto, ExtensibleCreationAuditedEntityWithUserDto, ExtensibleEntityDto, ExtensibleFullAuditedEntityDto, ExtensibleFullAuditedEntityWithUserDto, ExtensibleLimitedResultRequestDto, ExtensibleObject, ExtensiblePagedAndSortedResultRequestDto, ExtensiblePagedResultRequestDto, ExternalHttpClient, ForDirective, FormSubmitDirective, FullAuditedEntityDto, FullAuditedEntityWithUserDto, HtmlEncodePipe, HtmlEncodingService, HttpErrorReporterService, HttpWaitService, INCUDE_LOCALIZATION_RESOURCES_TOKEN, INJECTOR_PIPE_DATA_TOKEN, IS_EXTERNAL_REQUEST, IncludeLocalizationResourcesProvider, InitDirective, InputEventDebounceDirective, InsertIntoContainerStrategy, InternalStore, InternetConnectionService, LIST_QUERY_DEBOUNCE_TIME, LOADER_DELAY, LOADING_STRATEGY, LOCALIZATIONS, LazyLoadService, LazyLocalizationPipe, LazyModuleFactory, LimitedResultRequestDto, ListResultDto, ListService, LoadingStrategy, LocalStorageListenerService, LocaleId, LocaleProvider, LocalizationModule, LocalizationPipe, LocalizationService, LooseContentSecurityStrategy, MultiTenancyService, NAVIGATE_TO_MANAGE_PROFILE, NavigationEvent, NoContentSecurityStrategy, NoContextStrategy, NoCrossOriginStrategy, OTHERS_GROUP, index_d as ObjectExtending, PIPE_TO_LOGIN_FN_KEY, PROJECTION_STRATEGY, PagedAndSortedResultRequestDto, PagedResultDto, PagedResultRequestDto, PermissionDirective, PermissionGuard, PermissionService, ProjectionStrategy, QUEUE_MANAGER, ReplaceableComponents, ReplaceableComponentsService, ReplaceableRouteContainerComponent, ReplaceableTemplateDirective, ResourceWaitService, Rest, RestService, RootComponentProjectionStrategy, RootCoreModule, RouterEvents, RouterOutletComponent, RouterWaitService, RoutesService, SET_TOKEN_RESPONSE_TO_STORAGE_FN_KEY, SORT_COMPARE_FUNC, SSR_FLAG, SafeHtmlPipe, ScriptContentStrategy, ScriptLoadingStrategy, ServerCookieParser, Session, SessionStateService, ShortDatePipe, ShortDateTimePipe, ShortTimePipe, ShowPasswordDirective, SortPipe, StopPropagationDirective, StyleContentStrategy, StyleLoadingStrategy, SubscriptionService, TENANT_KEY, TENANT_NOT_FOUND_BY_NAME, TemplateContextStrategy, TemplateProjectionStrategy, TimeService, TimezoneService, ToInjectorPipe, TrackByService, TrackCapsLockDirective, UtcToLocalPipe, WebHttpUrlEncodingCodec, asyncAuthGuard, authGuard, checkHasProp, compareFuncFactory, coreOptionsFactory, createGroupMap, createLocalizationPipeKeyGenerator, createLocalizer, createLocalizerWithFallback, createMapFromList, createTokenParser, createTreeFromList, createTreeNodeFilterCreator, deepMerge, differentLocales, downloadBlob, eLayoutType, eThemeSharedComponents, escapeHtmlChars, exists, featuresFactory, findRoute, fromLazyLoad, generateHash, generatePassword, getCurrentTenancyNameFromUrl, getInitialData, getLocaleDirection, getPathName, getRemoteEnv, getRoutePath, getShortDateFormat, getShortDateShortTimeFormat, getShortTimeFormat, interpolate, isArray, isNode, isNullOrEmpty, isNullOrUndefined, isNumber, isObject, isObjectAndNotArray, isObjectAndNotArrayNotNode, isUndefinedOrEmptyString, localeInitializer, localizationContributor, localizations$, mapEnumToOptions, noop, parseTenantFromUrl, permissionGuard, provideAbpCore, provideAbpCoreChild, pushValueTo, reloadRoute, setLanguageToCookie, timezoneInterceptor, trackBy, trackByDeep, transferStateInterceptor, uuid, validateCreditCard, validateMinAge, validateRange, validateRequired, validateStringLength, validateUniqueCharacter, validateUrl, withCompareFuncFactory, withOptions, withTitleStrategy };
3093
3105
  export type { AbpAuthResponse, ActionApiDescriptionModel, ApiConfig, Apis, AppInitErrorFn, ApplicationApiDescriptionModel, ApplicationApiDescriptionModelRequestDto, ApplicationAuthConfigurationDto, ApplicationConfigurationDto, ApplicationConfigurationRequestOptions, ApplicationFeatureConfigurationDto, ApplicationGlobalFeatureConfigurationDto, ApplicationInfo, ApplicationLocalizationConfigurationDto, ApplicationLocalizationDto, ApplicationLocalizationRequestDto, ApplicationLocalizationResourceDto, ApplicationSettingConfigurationDto, AuthErrorFilter, CheckAuthenticationStateFn, ClockDto, CompareFn, ControllerApiDescriptionModel, ControllerInterfaceApiDescriptionModel, CoreFeature, CreditCardError, CurrentCultureDto, CurrentTenantDto, CurrentUserDto, DateTimeFormatDto, DeepPartial, ElementOptions, EntityExtensionDto, Environment, EventType, ExtensionEnumDto, ExtensionEnumFieldDto, ExtensionPropertyApiCreateDto, ExtensionPropertyApiDto, ExtensionPropertyApiGetDto, ExtensionPropertyApiUpdateDto, ExtensionPropertyAttributeDto, ExtensionPropertyDto, ExtensionPropertyUiDto, ExtensionPropertyUiFormDto, ExtensionPropertyUiLookupDto, ExtensionPropertyUiTableDto, FindTenantResultDto, HasAdditional, HttpRequestInfo, HttpWaitState, IAbpGuard, IApiInterceptor, IAuthService, IanaTimeZone, Impersonation, InferredContextOf, InferredInstanceOf, InterfaceMethodApiDescriptionModel, LanguageInfo, LegacyLanguageDto, LocalizableStringDto, LocalizationParam, LocalizationWithDefault, LoginParams, MethodParameterApiDescriptionModel, MinAgeError, MinAgeOptions, ModuleApiDescriptionModel, ModuleExtensionDto, MultiTenancyInfoDto, NameValue, NavigationEventKey, NodeKey, NodeValue, ObjectExtensionsDto, ParameterApiDescriptionModel, PipeToLoginFn, Primitive, PropertyApiDescriptionModel, QueryStreamCreatorCallback, QueueManager, RangeError, RangeOptions, RemoteEnv, RequestStatus, RequiredError, RequiredOptions, ResourceDto, ResourceWaitState, ReturnValueApiDescriptionModel, RouteGroup, RouterWaitState, SetTokenResponseToStorageFn, SortOrder, SortableItem, Strict, StringLengthError, StringLengthOptions, TimeZone, TimingDto, TreeNode, TypeApiDescriptionModel, UniqueCharacterError, UrlError, WindowsTimeZone, customMergeFn };