@abp/ng.core 7.4.0-rc.5 → 7.4.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/esm2022/lib/abstracts/auth.guard.mjs +5 -6
- package/esm2022/lib/abstracts/auth.service.mjs +5 -6
- package/esm2022/lib/abstracts/ng-model.component.mjs +5 -6
- package/esm2022/lib/clients/http.client.mjs +5 -6
- package/esm2022/lib/components/dynamic-layout.component.mjs +5 -6
- package/esm2022/lib/components/replaceable-route-container.component.mjs +6 -7
- package/esm2022/lib/components/router-outlet.component.mjs +5 -6
- package/esm2022/lib/core.module.mjs +16 -19
- package/esm2022/lib/directives/autofocus.directive.mjs +5 -6
- package/esm2022/lib/directives/caps-lock.directive.mjs +6 -7
- package/esm2022/lib/directives/debounce.directive.mjs +5 -6
- package/esm2022/lib/directives/for.directive.mjs +5 -6
- package/esm2022/lib/directives/form-submit.directive.mjs +5 -6
- package/esm2022/lib/directives/init.directive.mjs +5 -6
- package/esm2022/lib/directives/permission.directive.mjs +5 -6
- package/esm2022/lib/directives/replaceable-template.directive.mjs +5 -6
- package/esm2022/lib/directives/show-password.directive.mjs +5 -6
- package/esm2022/lib/directives/stop-propagation.directive.mjs +5 -6
- package/esm2022/lib/guards/permission.guard.mjs +5 -6
- package/esm2022/lib/handlers/routes.handler.mjs +5 -6
- package/esm2022/lib/interceptors/api.interceptor.mjs +5 -6
- package/esm2022/lib/localization.module.mjs +6 -7
- package/esm2022/lib/models/dtos.mjs +3 -1
- package/esm2022/lib/pipes/localization.pipe.mjs +6 -7
- package/esm2022/lib/pipes/safe-html.pipe.mjs +6 -7
- package/esm2022/lib/pipes/short-date-time.pipe.mjs +5 -6
- package/esm2022/lib/pipes/short-date.pipe.mjs +5 -6
- package/esm2022/lib/pipes/short-time.pipe.mjs +5 -6
- package/esm2022/lib/pipes/sort.pipe.mjs +6 -7
- package/esm2022/lib/pipes/to-injector.pipe.mjs +5 -6
- package/esm2022/lib/proxy/pages/abp/multi-tenancy/abp-tenant.service.mjs +5 -6
- package/esm2022/lib/proxy/volo/abp/asp-net-core/mvc/api-exploring/abp-api-definition.service.mjs +5 -6
- package/esm2022/lib/proxy/volo/abp/asp-net-core/mvc/application-configurations/abp-application-configuration.service.mjs +5 -6
- package/esm2022/lib/proxy/volo/abp/asp-net-core/mvc/application-configurations/abp-application-localization.service.mjs +5 -6
- package/esm2022/lib/services/config-state.service.mjs +5 -6
- package/esm2022/lib/services/content-projection.service.mjs +5 -6
- package/esm2022/lib/services/dom-insertion.service.mjs +5 -6
- package/esm2022/lib/services/environment.service.mjs +5 -6
- package/esm2022/lib/services/http-error-reporter.service.mjs +5 -6
- package/esm2022/lib/services/http-wait.service.mjs +5 -6
- package/esm2022/lib/services/internet-connection-service.mjs +5 -6
- package/esm2022/lib/services/lazy-load.service.mjs +5 -6
- package/esm2022/lib/services/list.service.mjs +5 -6
- package/esm2022/lib/services/local-storage.service.mjs +5 -6
- package/esm2022/lib/services/localization.service.mjs +5 -6
- package/esm2022/lib/services/multi-tenancy.service.mjs +5 -6
- package/esm2022/lib/services/permission.service.mjs +5 -6
- package/esm2022/lib/services/replaceable-components.service.mjs +5 -6
- package/esm2022/lib/services/resource-wait.service.mjs +5 -6
- package/esm2022/lib/services/rest.service.mjs +5 -6
- package/esm2022/lib/services/router-events.service.mjs +5 -6
- package/esm2022/lib/services/router-wait.service.mjs +5 -6
- package/esm2022/lib/services/routes.service.mjs +9 -11
- package/esm2022/lib/services/session-state.service.mjs +5 -6
- package/esm2022/lib/services/subscription.service.mjs +5 -6
- package/esm2022/lib/services/track-by.service.mjs +5 -6
- package/esm2022/lib/services/window.service.mjs +5 -6
- package/esm2022/lib/utils/file-utils.mjs +2 -1
- package/esm2022/testing/lib/core-testing.module.mjs +6 -7
- package/esm2022/testing/lib/services/mock-permission.service.mjs +5 -6
- package/esm2022/testing/lib/services/mock-rest.service.mjs +5 -6
- package/fesm2022/abp-ng.core-testing.mjs +10 -10
- package/fesm2022/abp-ng.core-testing.mjs.map +1 -1
- package/fesm2022/abp-ng.core.mjs +189 -186
- package/fesm2022/abp-ng.core.mjs.map +1 -1
- package/lib/models/dtos.d.ts +2 -0
- package/lib/utils/file-utils.d.ts +1 -0
- package/package.json +2 -2
package/lib/models/dtos.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ export declare class AuditedEntityDto<TPrimaryKey = string> extends CreationAudi
|
|
|
57
57
|
lastModifierId?: string;
|
|
58
58
|
constructor(initialValues?: Partial<AuditedEntityDto<TPrimaryKey>>);
|
|
59
59
|
}
|
|
60
|
+
/** @deprecated the class signature will change in v8.0 */
|
|
60
61
|
export declare class AuditedEntityWithUserDto<TUserDto, TPrimaryKey = string> extends AuditedEntityDto<TPrimaryKey> {
|
|
61
62
|
creator?: TUserDto;
|
|
62
63
|
lastModifier?: TUserDto;
|
|
@@ -68,6 +69,7 @@ export declare class FullAuditedEntityDto<TPrimaryKey = string> extends AuditedE
|
|
|
68
69
|
deletionTime?: Date | string;
|
|
69
70
|
constructor(initialValues?: Partial<FullAuditedEntityDto<TPrimaryKey>>);
|
|
70
71
|
}
|
|
72
|
+
/** @deprecated the class signature will change in v8.0 */
|
|
71
73
|
export declare class FullAuditedEntityWithUserDto<TUserDto, TPrimaryKey = string> extends FullAuditedEntityDto<TPrimaryKey> {
|
|
72
74
|
creator?: TUserDto;
|
|
73
75
|
lastModifier?: TUserDto;
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abp/ng.core",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.1",
|
|
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": "~7.4.
|
|
10
|
+
"@abp/utils": "~7.4.1",
|
|
11
11
|
"angular-oauth2-oidc": "^15.0.1",
|
|
12
12
|
"just-clone": "^6.1.1",
|
|
13
13
|
"just-compare": "^2.3.0",
|