Browse Source

Merge pull request #17976 from abpframework/auto-merge/rel-7-4/2249

Merge branch dev with rel-7.4
pull/17978/head
Masum ULU 2 years ago
committed by GitHub
parent
commit
26dbeb6747
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      npm/ng-packs/packages/core/src/lib/models/dtos.ts
  2. 1
      npm/ng-packs/packages/core/src/lib/utils/file-utils.ts

4
npm/ng-packs/packages/core/src/lib/models/dtos.ts

@ -136,7 +136,7 @@ export class AuditedEntityDto<TPrimaryKey = string> extends CreationAuditedEntit
}
}
/** @deprecated the class signature will change in v8.0 */
export class AuditedEntityWithUserDto<
TPrimaryKey = string,
TUserDto = any,
@ -158,7 +158,7 @@ export class FullAuditedEntityDto<TPrimaryKey = string> extends AuditedEntityDto
super(initialValues);
}
}
/** @deprecated the class signature will change in v8.0 */
export class FullAuditedEntityWithUserDto<
TPrimaryKey = string,
TUserDto = any

1
npm/ng-packs/packages/core/src/lib/utils/file-utils.ts

@ -1,3 +1,4 @@
/** @deprecated the method will change in v8.0 */
export function downloadBlob(blob: Blob, filename: string) {
const blobUrl = URL.createObjectURL(blob);

Loading…
Cancel
Save