@abp/ng.core 10.1.1 → 10.2.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/fesm2022/abp-ng.core.mjs +236 -170
- package/fesm2022/abp-ng.core.mjs.map +1 -1
- package/package.json +2 -2
- package/types/abp-ng.core.d.ts +81 -37
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abp/ng.core",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.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.
|
|
10
|
+
"@abp/utils": "~10.2.0-rc.2",
|
|
11
11
|
"just-clone": "^6.0.0",
|
|
12
12
|
"just-compare": "^2.0.0",
|
|
13
13
|
"ts-toolbelt": "^9.0.0",
|
package/types/abp-ng.core.d.ts
CHANGED
|
@@ -27,9 +27,9 @@ declare class AbstractNgModelComponent<T = any, U = T> implements ControlValueAc
|
|
|
27
27
|
onChange?: (value: T) => void;
|
|
28
28
|
onTouched?: () => void;
|
|
29
29
|
disabled?: boolean;
|
|
30
|
-
readonly
|
|
31
|
-
valueFn: (value: U, previousValue?: T) => T
|
|
32
|
-
valueLimitFn: (value: T, previousValue?: T) => any
|
|
30
|
+
readonly readonly: i0.InputSignal<boolean>;
|
|
31
|
+
readonly valueFn: i0.InputSignal<(value: U, previousValue?: T) => T>;
|
|
32
|
+
readonly valueLimitFn: i0.InputSignal<(value: T, previousValue?: T) => any>;
|
|
33
33
|
set value(value: T);
|
|
34
34
|
get value(): T;
|
|
35
35
|
get defaultValue(): T;
|
|
@@ -39,7 +39,7 @@ declare class AbstractNgModelComponent<T = any, U = T> implements ControlValueAc
|
|
|
39
39
|
registerOnTouched(fn: any): void;
|
|
40
40
|
setDisabledState(isDisabled: boolean): void;
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractNgModelComponent<any, any>, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AbstractNgModelComponent<any, any>, "ng-component", never, { "
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AbstractNgModelComponent<any, any>, "ng-component", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "valueFn": { "alias": "valueFn"; "required": false; "isSignal": true; }; "valueLimitFn": { "alias": "valueLimitFn"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
/**
|
|
@@ -207,6 +207,25 @@ declare namespace ABP {
|
|
|
207
207
|
othersGroup?: string;
|
|
208
208
|
dynamicLayouts?: Map<string, string>;
|
|
209
209
|
disableProjectNameInTitle?: boolean;
|
|
210
|
+
uiLocalization?: UILocalizationOptions;
|
|
211
|
+
}
|
|
212
|
+
interface UILocalizationOptions {
|
|
213
|
+
/**
|
|
214
|
+
* Enable UI localization feature
|
|
215
|
+
* When enabled, localization files are automatically loaded based on selected language
|
|
216
|
+
* Files should be located at: {basePath}/{culture}.json
|
|
217
|
+
* Example: /assets/localization/en.json
|
|
218
|
+
* JSON format: { "ResourceName": { "Key": "Value" } }
|
|
219
|
+
* Merges with backend localizations (UI > Backend priority)
|
|
220
|
+
*/
|
|
221
|
+
enabled?: boolean;
|
|
222
|
+
/**
|
|
223
|
+
* Base path for localization JSON files
|
|
224
|
+
* Default: '/assets/localization'
|
|
225
|
+
* Files should be located at: {basePath}/{culture}.json
|
|
226
|
+
* Example: /assets/localization/en.json
|
|
227
|
+
*/
|
|
228
|
+
basePath?: string;
|
|
210
229
|
}
|
|
211
230
|
interface Child {
|
|
212
231
|
localizations?: Localization[];
|
|
@@ -909,6 +928,7 @@ declare class SubscriptionService implements OnDestroy {
|
|
|
909
928
|
declare class ConfigStateService {
|
|
910
929
|
private abpConfigService;
|
|
911
930
|
private abpApplicationLocalizationService;
|
|
931
|
+
private environmentService;
|
|
912
932
|
private readonly includeLocalizationResources;
|
|
913
933
|
private updateSubject;
|
|
914
934
|
private readonly store;
|
|
@@ -1695,6 +1715,31 @@ declare class ListService<QueryParamsType = ABP.PageQueryParams | any> implement
|
|
|
1695
1715
|
}
|
|
1696
1716
|
type QueryStreamCreatorCallback<T, QueryParamsType = ABP.PageQueryParams> = (query: QueryParamsType) => Observable<PagedResultDto<T>>;
|
|
1697
1717
|
|
|
1718
|
+
interface UILocalizationResource {
|
|
1719
|
+
[resourceName: string]: Record<string, string>;
|
|
1720
|
+
}
|
|
1721
|
+
/**
|
|
1722
|
+
* Service for managing UI localizations in ABP Angular applications.
|
|
1723
|
+
* Automatically loads localization files based on selected language
|
|
1724
|
+
* Merges with backend localizations (UI > Backend priority)
|
|
1725
|
+
*/
|
|
1726
|
+
declare class UILocalizationService {
|
|
1727
|
+
private http;
|
|
1728
|
+
private localizationService;
|
|
1729
|
+
private sessionState;
|
|
1730
|
+
private options;
|
|
1731
|
+
private loadedLocalizations$;
|
|
1732
|
+
private currentLanguage$;
|
|
1733
|
+
constructor();
|
|
1734
|
+
private subscribeToLanguageChanges;
|
|
1735
|
+
private loadLocalizationFile;
|
|
1736
|
+
private processLocalizationData;
|
|
1737
|
+
addAngularLocalizeLocalization(culture: string, resourceName: string, translations: Record<string, string>): void;
|
|
1738
|
+
getLoadedLocalizations(culture?: string): UILocalizationResource;
|
|
1739
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UILocalizationService, never>;
|
|
1740
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UILocalizationService>;
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1698
1743
|
declare class MultiTenancyService {
|
|
1699
1744
|
private sessionState;
|
|
1700
1745
|
private tenantService;
|
|
@@ -2397,22 +2442,20 @@ declare global {
|
|
|
2397
2442
|
|
|
2398
2443
|
declare class AutofocusDirective implements AfterViewInit {
|
|
2399
2444
|
private elRef;
|
|
2400
|
-
|
|
2401
|
-
set delay(val: number | string | undefined);
|
|
2402
|
-
get delay(): number | string | undefined;
|
|
2445
|
+
readonly delay: i0.InputSignalWithTransform<number, unknown>;
|
|
2403
2446
|
ngAfterViewInit(): void;
|
|
2404
2447
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutofocusDirective, never>;
|
|
2405
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AutofocusDirective, "[autofocus]", never, { "delay": { "alias": "autofocus"; "required": false; }; }, {}, never, never, true, never>;
|
|
2448
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AutofocusDirective, "[autofocus]", never, { "delay": { "alias": "autofocus"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2406
2449
|
}
|
|
2407
2450
|
|
|
2408
2451
|
declare class InputEventDebounceDirective implements OnInit {
|
|
2409
2452
|
private el;
|
|
2410
2453
|
private subscription;
|
|
2411
|
-
debounce: number
|
|
2412
|
-
readonly debounceEvent:
|
|
2454
|
+
readonly debounce: i0.InputSignal<number>;
|
|
2455
|
+
readonly debounceEvent: i0.OutputEmitterRef<Event>;
|
|
2413
2456
|
ngOnInit(): void;
|
|
2414
2457
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputEventDebounceDirective, never>;
|
|
2415
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<InputEventDebounceDirective, "[input.debounce]", never, { "debounce": { "alias": "debounce"; "required": false; }; }, { "debounceEvent": "input.debounce"; }, never, never, true, never>;
|
|
2458
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InputEventDebounceDirective, "[input.debounce]", never, { "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; }, { "debounceEvent": "input.debounce"; }, never, never, true, never>;
|
|
2416
2459
|
}
|
|
2417
2460
|
|
|
2418
2461
|
type CompareFn<T = any> = (value: T, comparison: T) => boolean;
|
|
@@ -2420,14 +2463,14 @@ declare class ForDirective implements OnChanges {
|
|
|
2420
2463
|
private tempRef;
|
|
2421
2464
|
private vcRef;
|
|
2422
2465
|
private differs;
|
|
2423
|
-
items: any[]
|
|
2424
|
-
orderBy
|
|
2425
|
-
orderDir
|
|
2426
|
-
filterBy
|
|
2427
|
-
filterVal: any
|
|
2428
|
-
trackBy
|
|
2429
|
-
compareBy
|
|
2430
|
-
emptyRef
|
|
2466
|
+
readonly items: i0.InputSignal<any[]>;
|
|
2467
|
+
readonly orderBy: i0.InputSignal<string>;
|
|
2468
|
+
readonly orderDir: i0.InputSignal<"ASC" | "DESC">;
|
|
2469
|
+
readonly filterBy: i0.InputSignal<string>;
|
|
2470
|
+
readonly filterVal: i0.InputSignal<any>;
|
|
2471
|
+
readonly trackBy: i0.InputSignal<TrackByFunction<any>>;
|
|
2472
|
+
readonly compareBy: i0.InputSignal<CompareFn<any>>;
|
|
2473
|
+
readonly emptyRef: i0.InputSignal<TemplateRef<any>>;
|
|
2431
2474
|
private differ;
|
|
2432
2475
|
private lastItemsRef;
|
|
2433
2476
|
private isShowEmptyRef;
|
|
@@ -2439,7 +2482,7 @@ declare class ForDirective implements OnChanges {
|
|
|
2439
2482
|
private sortItems;
|
|
2440
2483
|
ngOnChanges(): void;
|
|
2441
2484
|
static ɵfac: i0.ɵɵFactoryDeclaration<ForDirective, never>;
|
|
2442
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ForDirective, "[abpFor]", never, { "items": { "alias": "abpForOf"; "required":
|
|
2485
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ForDirective, "[abpFor]", never, { "items": { "alias": "abpForOf"; "required": true; "isSignal": true; }; "orderBy": { "alias": "abpForOrderBy"; "required": false; "isSignal": true; }; "orderDir": { "alias": "abpForOrderDir"; "required": false; "isSignal": true; }; "filterBy": { "alias": "abpForFilterBy"; "required": false; "isSignal": true; }; "filterVal": { "alias": "abpForFilterVal"; "required": false; "isSignal": true; }; "trackBy": { "alias": "abpForTrackBy"; "required": false; "isSignal": true; }; "compareBy": { "alias": "abpForCompareBy"; "required": false; "isSignal": true; }; "emptyRef": { "alias": "abpForEmptyRef"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2443
2486
|
}
|
|
2444
2487
|
|
|
2445
2488
|
/**
|
|
@@ -2450,20 +2493,20 @@ declare class FormSubmitDirective implements OnInit {
|
|
|
2450
2493
|
private host;
|
|
2451
2494
|
private cdRef;
|
|
2452
2495
|
private subscription;
|
|
2453
|
-
debounce: number
|
|
2454
|
-
notValidateOnSubmit
|
|
2455
|
-
markAsDirtyWhenSubmit: boolean
|
|
2456
|
-
readonly ngSubmit:
|
|
2496
|
+
readonly debounce: i0.InputSignal<number>;
|
|
2497
|
+
readonly notValidateOnSubmit: i0.InputSignal<string | boolean>;
|
|
2498
|
+
readonly markAsDirtyWhenSubmit: i0.InputSignal<boolean>;
|
|
2499
|
+
readonly ngSubmit: i0.OutputEmitterRef<void>;
|
|
2457
2500
|
executedNgSubmit: boolean;
|
|
2458
2501
|
ngOnInit(): void;
|
|
2459
2502
|
markAsDirty(): void;
|
|
2460
2503
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSubmitDirective, never>;
|
|
2461
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FormSubmitDirective, "form[ngSubmit][formGroup]", never, { "debounce": { "alias": "debounce"; "required": false; }; "notValidateOnSubmit": { "alias": "notValidateOnSubmit"; "required": false; }; "markAsDirtyWhenSubmit": { "alias": "markAsDirtyWhenSubmit"; "required": false; }; }, { "ngSubmit": "ngSubmit"; }, never, never, true, never>;
|
|
2504
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FormSubmitDirective, "form[ngSubmit][formGroup]", never, { "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; "notValidateOnSubmit": { "alias": "notValidateOnSubmit"; "required": false; "isSignal": true; }; "markAsDirtyWhenSubmit": { "alias": "markAsDirtyWhenSubmit"; "required": false; "isSignal": true; }; }, { "ngSubmit": "ngSubmit"; }, never, never, true, never>;
|
|
2462
2505
|
}
|
|
2463
2506
|
|
|
2464
2507
|
declare class InitDirective implements AfterViewInit {
|
|
2465
2508
|
private elRef;
|
|
2466
|
-
readonly init:
|
|
2509
|
+
readonly init: i0.OutputEmitterRef<ElementRef<any>>;
|
|
2467
2510
|
ngAfterViewInit(): void;
|
|
2468
2511
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitDirective, never>;
|
|
2469
2512
|
static ɵdir: i0.ɵɵDirectiveDeclaration<InitDirective, "[abpInit]", never, {}, { "init": "abpInit"; }, never, never, true, never>;
|
|
@@ -2490,8 +2533,8 @@ declare class PermissionDirective implements OnDestroy, OnChanges, AfterViewInit
|
|
|
2490
2533
|
private permissionService;
|
|
2491
2534
|
private cdRef;
|
|
2492
2535
|
queue: QueueManager;
|
|
2493
|
-
condition: string
|
|
2494
|
-
runChangeDetection: boolean
|
|
2536
|
+
readonly condition: i0.InputSignal<string>;
|
|
2537
|
+
readonly runChangeDetection: i0.InputSignal<boolean>;
|
|
2495
2538
|
subscription: Subscription;
|
|
2496
2539
|
cdrSubject: ReplaySubject<void>;
|
|
2497
2540
|
rendered: boolean;
|
|
@@ -2500,7 +2543,7 @@ declare class PermissionDirective implements OnDestroy, OnChanges, AfterViewInit
|
|
|
2500
2543
|
ngOnChanges(): void;
|
|
2501
2544
|
ngAfterViewInit(): void;
|
|
2502
2545
|
static ɵfac: i0.ɵɵFactoryDeclaration<PermissionDirective, never>;
|
|
2503
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PermissionDirective, "[abpPermission]", never, { "condition": { "alias": "abpPermission"; "required": false; }; "runChangeDetection": { "alias": "abpPermissionRunChangeDetection"; "required": false; }; }, {}, never, never, true, never>;
|
|
2546
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PermissionDirective, "[abpPermission]", never, { "condition": { "alias": "abpPermission"; "required": false; "isSignal": true; }; "runChangeDetection": { "alias": "abpPermissionRunChangeDetection"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2504
2547
|
}
|
|
2505
2548
|
|
|
2506
2549
|
declare class ReplaceableTemplateDirective implements OnInit, OnChanges {
|
|
@@ -2509,7 +2552,7 @@ declare class ReplaceableTemplateDirective implements OnInit, OnChanges {
|
|
|
2509
2552
|
private vcRef;
|
|
2510
2553
|
private replaceableComponents;
|
|
2511
2554
|
private subscription;
|
|
2512
|
-
data: ReplaceableComponents.ReplaceableTemplateDirectiveInput<any, any
|
|
2555
|
+
readonly data: i0.InputSignal<ReplaceableComponents.ReplaceableTemplateDirectiveInput<any, any>>;
|
|
2513
2556
|
providedData: ReplaceableComponents.ReplaceableTemplateData<any, any>;
|
|
2514
2557
|
context: any;
|
|
2515
2558
|
externalComponent: Type<any>;
|
|
@@ -2523,13 +2566,13 @@ declare class ReplaceableTemplateDirective implements OnInit, OnChanges {
|
|
|
2523
2566
|
setProvidedData(): void;
|
|
2524
2567
|
resetDefaultComponent(): void;
|
|
2525
2568
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReplaceableTemplateDirective, never>;
|
|
2526
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ReplaceableTemplateDirective, "[abpReplaceableTemplate]", never, { "data": { "alias": "abpReplaceableTemplate"; "required":
|
|
2569
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ReplaceableTemplateDirective, "[abpReplaceableTemplate]", never, { "data": { "alias": "abpReplaceableTemplate"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2527
2570
|
}
|
|
2528
2571
|
|
|
2529
2572
|
declare class StopPropagationDirective implements OnInit {
|
|
2530
2573
|
private el;
|
|
2531
2574
|
private subscription;
|
|
2532
|
-
readonly stopPropEvent:
|
|
2575
|
+
readonly stopPropEvent: i0.OutputEmitterRef<MouseEvent>;
|
|
2533
2576
|
ngOnInit(): void;
|
|
2534
2577
|
static ɵfac: i0.ɵɵFactoryDeclaration<StopPropagationDirective, never>;
|
|
2535
2578
|
static ɵdir: i0.ɵɵDirectiveDeclaration<StopPropagationDirective, "[click.stop]", never, {}, { "stopPropEvent": "click.stop"; }, never, never, true, never>;
|
|
@@ -2665,13 +2708,14 @@ declare class CoreModule {
|
|
|
2665
2708
|
|
|
2666
2709
|
declare class ShowPasswordDirective {
|
|
2667
2710
|
protected readonly elementRef: ElementRef<any>;
|
|
2668
|
-
|
|
2711
|
+
readonly abpShowPassword: i0.InputSignal<boolean>;
|
|
2712
|
+
constructor();
|
|
2669
2713
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShowPasswordDirective, never>;
|
|
2670
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ShowPasswordDirective, "[abpShowPassword]", never, { "abpShowPassword": { "alias": "abpShowPassword"; "required": false; }; }, {}, never, never, true, never>;
|
|
2714
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ShowPasswordDirective, "[abpShowPassword]", never, { "abpShowPassword": { "alias": "abpShowPassword"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2671
2715
|
}
|
|
2672
2716
|
|
|
2673
2717
|
declare class TrackCapsLockDirective {
|
|
2674
|
-
capsLock:
|
|
2718
|
+
readonly capsLock: i0.OutputEmitterRef<boolean>;
|
|
2675
2719
|
onKeyDown(event: KeyboardEvent): void;
|
|
2676
2720
|
onKeyUp(event: KeyboardEvent): void;
|
|
2677
2721
|
isCapsLockOpen(e: any): boolean;
|
|
@@ -3101,5 +3145,5 @@ declare const timezoneInterceptor: HttpInterceptorFn;
|
|
|
3101
3145
|
|
|
3102
3146
|
declare const transferStateInterceptor: HttpInterceptorFn;
|
|
3103
3147
|
|
|
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 };
|
|
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 };
|
|
3148
|
+
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, UILocalizationService, 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 };
|
|
3149
|
+
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, UILocalizationResource, UniqueCharacterError, UrlError, WindowsTimeZone, customMergeFn };
|