@abp/ng.core 5.3.0-rc.2 → 5.3.1
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/esm2020/lib/core.module.mjs +12 -14
- package/esm2020/lib/directives/form-submit.directive.mjs +1 -1
- package/esm2020/lib/directives/permission.directive.mjs +12 -3
- package/esm2020/lib/services/list.service.mjs +2 -3
- package/fesm2015/abp-ng.core.mjs +22 -15
- package/fesm2015/abp-ng.core.mjs.map +1 -1
- package/fesm2020/abp-ng.core.mjs +22 -15
- package/fesm2020/abp-ng.core.mjs.map +1 -1
- package/lib/core.module.d.ts +0 -1
- package/lib/directives/permission.directive.d.ts +2 -1
- package/package.json +2 -2
package/fesm2020/abp-ng.core.mjs
CHANGED
|
@@ -1906,6 +1906,7 @@ class PermissionDirective {
|
|
|
1906
1906
|
this.vcRef = vcRef;
|
|
1907
1907
|
this.permissionService = permissionService;
|
|
1908
1908
|
this.cdRef = cdRef;
|
|
1909
|
+
this.runChangeDetection = true;
|
|
1909
1910
|
}
|
|
1910
1911
|
check() {
|
|
1911
1912
|
if (this.subscription) {
|
|
@@ -1918,7 +1919,12 @@ class PermissionDirective {
|
|
|
1918
1919
|
this.vcRef.clear();
|
|
1919
1920
|
if (isGranted)
|
|
1920
1921
|
this.vcRef.createEmbeddedView(this.templateRef);
|
|
1921
|
-
this.
|
|
1922
|
+
if (this.runChangeDetection) {
|
|
1923
|
+
this.cdRef.detectChanges();
|
|
1924
|
+
}
|
|
1925
|
+
else {
|
|
1926
|
+
this.cdRef.markForCheck();
|
|
1927
|
+
}
|
|
1922
1928
|
});
|
|
1923
1929
|
}
|
|
1924
1930
|
ngOnDestroy() {
|
|
@@ -1930,7 +1936,7 @@ class PermissionDirective {
|
|
|
1930
1936
|
}
|
|
1931
1937
|
}
|
|
1932
1938
|
PermissionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.6", ngImport: i0, type: PermissionDirective, deps: [{ token: i0.TemplateRef, optional: true }, { token: i0.ViewContainerRef }, { token: PermissionService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1933
|
-
PermissionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.6", type: PermissionDirective, selector: "[abpPermission]", inputs: { condition: ["abpPermission", "condition"] }, usesOnChanges: true, ngImport: i0 });
|
|
1939
|
+
PermissionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.6", type: PermissionDirective, selector: "[abpPermission]", inputs: { condition: ["abpPermission", "condition"], runChangeDetection: ["abpPermissionRunChangeDetection", "runChangeDetection"] }, usesOnChanges: true, ngImport: i0 });
|
|
1934
1940
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.6", ngImport: i0, type: PermissionDirective, decorators: [{
|
|
1935
1941
|
type: Directive,
|
|
1936
1942
|
args: [{
|
|
@@ -1941,6 +1947,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.6", ngImpor
|
|
|
1941
1947
|
}] }, { type: i0.ViewContainerRef }, { type: PermissionService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { condition: [{
|
|
1942
1948
|
type: Input,
|
|
1943
1949
|
args: ['abpPermission']
|
|
1950
|
+
}], runChangeDetection: [{
|
|
1951
|
+
type: Input,
|
|
1952
|
+
args: ['abpPermissionRunChangeDetection']
|
|
1944
1953
|
}] } });
|
|
1945
1954
|
|
|
1946
1955
|
class ReplaceableTemplateDirective {
|
|
@@ -3292,8 +3301,7 @@ class ListService {
|
|
|
3292
3301
|
return this._isLoading$.asObservable();
|
|
3293
3302
|
}
|
|
3294
3303
|
hookToQuery(streamCreatorCallback) {
|
|
3295
|
-
this._isLoading$.next(true);
|
|
3296
|
-
return this.query$.pipe(switchMap(query => streamCreatorCallback(query).pipe(catchError(() => of(null)))), filter(Boolean), tap(() => this._isLoading$.next(false)), shareReplay({ bufferSize: 1, refCount: true }), takeUntil(this.destroy$));
|
|
3304
|
+
return this.query$.pipe(tap(() => this._isLoading$.next(true)), switchMap(query => streamCreatorCallback(query).pipe(catchError(() => of(null)))), filter(Boolean), tap(() => this._isLoading$.next(false)), shareReplay({ bufferSize: 1, refCount: true }), takeUntil(this.destroy$));
|
|
3297
3305
|
}
|
|
3298
3306
|
ngOnDestroy() {
|
|
3299
3307
|
this.destroy$.next();
|
|
@@ -3564,7 +3572,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.6", ngImpor
|
|
|
3564
3572
|
ToInjectorPipe,
|
|
3565
3573
|
ShortDateTimePipe,
|
|
3566
3574
|
ShortTimePipe,
|
|
3567
|
-
ShortDatePipe
|
|
3575
|
+
ShortDatePipe,
|
|
3568
3576
|
],
|
|
3569
3577
|
imports: [
|
|
3570
3578
|
OAuthModule,
|
|
@@ -3592,9 +3600,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.6", ngImpor
|
|
|
3592
3600
|
ToInjectorPipe,
|
|
3593
3601
|
ShortDateTimePipe,
|
|
3594
3602
|
ShortTimePipe,
|
|
3595
|
-
ShortDatePipe
|
|
3603
|
+
ShortDatePipe,
|
|
3596
3604
|
],
|
|
3597
|
-
providers: [LocalizationPipe]
|
|
3605
|
+
providers: [LocalizationPipe],
|
|
3598
3606
|
}]
|
|
3599
3607
|
}] });
|
|
3600
3608
|
/**
|
|
@@ -3604,11 +3612,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.6", ngImpor
|
|
|
3604
3612
|
class RootCoreModule {
|
|
3605
3613
|
}
|
|
3606
3614
|
RootCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.6", ngImport: i0, type: RootCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3607
|
-
RootCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.6", ngImport: i0, type: RootCoreModule, imports: [BaseCoreModule, LocalizationModule,
|
|
3615
|
+
RootCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.6", ngImport: i0, type: RootCoreModule, imports: [BaseCoreModule, LocalizationModule,
|
|
3616
|
+
OAuthModule, i1.HttpClientXsrfModule], exports: [BaseCoreModule, LocalizationModule] });
|
|
3608
3617
|
RootCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.6", ngImport: i0, type: RootCoreModule, imports: [[
|
|
3609
3618
|
BaseCoreModule,
|
|
3610
3619
|
LocalizationModule,
|
|
3611
|
-
OAuthModule
|
|
3620
|
+
OAuthModule,
|
|
3612
3621
|
HttpClientXsrfModule.withOptions({
|
|
3613
3622
|
cookieName: 'XSRF-TOKEN',
|
|
3614
3623
|
headerName: 'RequestVerificationToken',
|
|
@@ -3621,7 +3630,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.6", ngImpor
|
|
|
3621
3630
|
imports: [
|
|
3622
3631
|
BaseCoreModule,
|
|
3623
3632
|
LocalizationModule,
|
|
3624
|
-
OAuthModule
|
|
3633
|
+
OAuthModule,
|
|
3625
3634
|
HttpClientXsrfModule.withOptions({
|
|
3626
3635
|
cookieName: 'XSRF-TOKEN',
|
|
3627
3636
|
headerName: 'RequestVerificationToken',
|
|
@@ -3637,6 +3646,7 @@ class CoreModule {
|
|
|
3637
3646
|
return {
|
|
3638
3647
|
ngModule: RootCoreModule,
|
|
3639
3648
|
providers: [
|
|
3649
|
+
OAuthModule.forRoot().providers,
|
|
3640
3650
|
LocaleProvider,
|
|
3641
3651
|
CookieLanguageProvider,
|
|
3642
3652
|
{
|
|
@@ -3717,10 +3727,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.6", ngImpor
|
|
|
3717
3727
|
exports: [BaseCoreModule],
|
|
3718
3728
|
imports: [BaseCoreModule],
|
|
3719
3729
|
}]
|
|
3720
|
-
}] });
|
|
3721
|
-
function ngxsStoragePluginSerialize(data) {
|
|
3722
|
-
return data;
|
|
3723
|
-
}
|
|
3730
|
+
}] });
|
|
3724
3731
|
|
|
3725
3732
|
class AuthGuard {
|
|
3726
3733
|
constructor(oauthService, authService) {
|
|
@@ -4321,5 +4328,5 @@ const AbpValidators = {
|
|
|
4321
4328
|
* Generated bundle index. Do not edit.
|
|
4322
4329
|
*/
|
|
4323
4330
|
|
|
4324
|
-
export { APP_INIT_ERROR_HANDLERS, AbpApiDefinitionService, AbpApplicationConfigurationService, AbpTenantService, AbpValidators, AbstractNavTreeService, AbstractNgModelComponent, AbstractTreeService, ApiInterceptor, AuditedEntityDto, AuditedEntityWithUserDto, AuthGuard, AuthService, AutofocusDirective, BaseCoreModule, BaseTreeNode, 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, CoreModule, CreationAuditedEntityDto, CreationAuditedEntityWithUserDto, CrossOriginStrategy, DOM_STRATEGY, DomInsertionService, DomStrategy, DynamicLayoutComponent, EntityDto, EnvironmentService, ExtensibleAuditedEntityDto, ExtensibleAuditedEntityWithUserDto, ExtensibleCreationAuditedEntityDto, ExtensibleCreationAuditedEntityWithUserDto, ExtensibleEntityDto, ExtensibleFullAuditedEntityDto, ExtensibleFullAuditedEntityWithUserDto, ExtensibleObject, ForDirective, FormSubmitDirective, FullAuditedEntityDto, FullAuditedEntityWithUserDto, HttpErrorReporterService, HttpWaitService, INJECTOR_PIPE_DATA_TOKEN, InitDirective, InputEventDebounceDirective, InsertIntoContainerStrategy, InternalStore, LIST_QUERY_DEBOUNCE_TIME, LOADER_DELAY, LOADING_STRATEGY, LOCALIZATIONS, LazyLoadService, LazyModuleFactory, LimitedResultRequestDto, ListResultDto, ListService, LoadingStrategy, LocalizationModule, LocalizationPipe, LocalizationService, LooseContentSecurityStrategy, MultiTenancyService, NAVIGATE_TO_MANAGE_PROFILE, NavigationEvent, NoContentSecurityStrategy, NoContextStrategy, NoCrossOriginStrategy, index as ObjectExtending, PROJECTION_STRATEGY, PagedAndSortedResultRequestDto, PagedResultDto, PagedResultRequestDto, PermissionDirective, PermissionGuard, PermissionService, ProjectionStrategy, ReplaceableComponentsService, ReplaceableRouteContainerComponent, ReplaceableTemplateDirective, ResourceWaitService, RestService, RootComponentProjectionStrategy, RootCoreModule, RouterEvents, RouterOutletComponent, RouterWaitService, RoutesService, ScriptContentStrategy, ScriptLoadingStrategy, SessionStateService, ShortDatePipe, ShortDateTimePipe, ShortTimePipe, SortPipe, StopPropagationDirective, StyleContentStrategy, StyleLoadingStrategy, SubscriptionService, TENANT_KEY, TemplateContextStrategy, TemplateProjectionStrategy, ToInjectorPipe, TrackByService, WebHttpUrlEncodingCodec, checkAccessToken, coreOptionsFactory, createLocalizationPipeKeyGenerator, createLocalizer, createLocalizerWithFallback, createMapFromList, createTokenParser, createTreeFromList, createTreeNodeFilterCreator, deepMerge, differentLocales, downloadBlob, escapeHtmlChars, exists, featuresFactory, findRoute, fromLazyLoad, generateHash, generatePassword, getInitialData, getLocaleDirection, getPathName, getRemoteEnv, getRoutePath, getShortDateFormat, getShortDateShortTimeFormat, getShortTimeFormat, interpolate, isArray, isNode, isNullOrUndefined, isNumber, isObject, isObjectAndNotArray, isObjectAndNotArrayNotNode, isUndefinedOrEmptyString, localeInitializer, localizationContributor, localizations$, mapEnumToOptions,
|
|
4331
|
+
export { APP_INIT_ERROR_HANDLERS, AbpApiDefinitionService, AbpApplicationConfigurationService, AbpTenantService, AbpValidators, AbstractNavTreeService, AbstractNgModelComponent, AbstractTreeService, ApiInterceptor, AuditedEntityDto, AuditedEntityWithUserDto, AuthGuard, AuthService, AutofocusDirective, BaseCoreModule, BaseTreeNode, 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, CoreModule, CreationAuditedEntityDto, CreationAuditedEntityWithUserDto, CrossOriginStrategy, DOM_STRATEGY, DomInsertionService, DomStrategy, DynamicLayoutComponent, EntityDto, EnvironmentService, ExtensibleAuditedEntityDto, ExtensibleAuditedEntityWithUserDto, ExtensibleCreationAuditedEntityDto, ExtensibleCreationAuditedEntityWithUserDto, ExtensibleEntityDto, ExtensibleFullAuditedEntityDto, ExtensibleFullAuditedEntityWithUserDto, ExtensibleObject, ForDirective, FormSubmitDirective, FullAuditedEntityDto, FullAuditedEntityWithUserDto, HttpErrorReporterService, HttpWaitService, INJECTOR_PIPE_DATA_TOKEN, InitDirective, InputEventDebounceDirective, InsertIntoContainerStrategy, InternalStore, LIST_QUERY_DEBOUNCE_TIME, LOADER_DELAY, LOADING_STRATEGY, LOCALIZATIONS, LazyLoadService, LazyModuleFactory, LimitedResultRequestDto, ListResultDto, ListService, LoadingStrategy, LocalizationModule, LocalizationPipe, LocalizationService, LooseContentSecurityStrategy, MultiTenancyService, NAVIGATE_TO_MANAGE_PROFILE, NavigationEvent, NoContentSecurityStrategy, NoContextStrategy, NoCrossOriginStrategy, index as ObjectExtending, PROJECTION_STRATEGY, PagedAndSortedResultRequestDto, PagedResultDto, PagedResultRequestDto, PermissionDirective, PermissionGuard, PermissionService, ProjectionStrategy, ReplaceableComponentsService, ReplaceableRouteContainerComponent, ReplaceableTemplateDirective, ResourceWaitService, RestService, RootComponentProjectionStrategy, RootCoreModule, RouterEvents, RouterOutletComponent, RouterWaitService, RoutesService, ScriptContentStrategy, ScriptLoadingStrategy, SessionStateService, ShortDatePipe, ShortDateTimePipe, ShortTimePipe, SortPipe, StopPropagationDirective, StyleContentStrategy, StyleLoadingStrategy, SubscriptionService, TENANT_KEY, TemplateContextStrategy, TemplateProjectionStrategy, ToInjectorPipe, TrackByService, WebHttpUrlEncodingCodec, checkAccessToken, coreOptionsFactory, createLocalizationPipeKeyGenerator, createLocalizer, createLocalizerWithFallback, createMapFromList, createTokenParser, createTreeFromList, createTreeNodeFilterCreator, deepMerge, differentLocales, downloadBlob, escapeHtmlChars, exists, featuresFactory, findRoute, fromLazyLoad, generateHash, generatePassword, getInitialData, getLocaleDirection, getPathName, getRemoteEnv, getRoutePath, getShortDateFormat, getShortDateShortTimeFormat, getShortTimeFormat, interpolate, isArray, isNode, isNullOrUndefined, isNumber, isObject, isObjectAndNotArray, isObjectAndNotArrayNotNode, isUndefinedOrEmptyString, localeInitializer, localizationContributor, localizations$, mapEnumToOptions, noop, parseTenantFromUrl, pipeToLogin, pushValueTo, reloadRoute, removeRememberMe, setRememberMe, setTokenResponseToStorage, storageFactory, trackBy, trackByDeep, uuid, validateCreditCard, validateMinAge, validateRange, validateRequired, validateStringLength, validateUrl };
|
|
4325
4332
|
//# sourceMappingURL=abp-ng.core.mjs.map
|