Thanks. Do you have any plans to add support for DateTimeOffset in the near future?
Hi, can you support this in next version?
Hi Team,
I am customizing the built-in UsersComponent from @volo/abp.ng.identity. While attempting to replace it with my own component:

I encountered an error because the ExcelService and UserSessionsComponent are not exported externally

Could you consider exporting them in the next version?

Thanks for your support
Hi, I'm reviewing the UploadService source code, and I noticed that uppy: Uppy; is declared without a default value and isn't initialized in the constructor. This is considered bad practice. Even if the issue isn't immediately reproducible, such practices should be avoided. If you choose not to set a default value, you must ensure that this.uppy is not undefined before using it.
"@volo/abp.ng.file-management": "~9.0.2" "@volosoft/abp.ng.theme.lepton-x": "~4.0.4"
Iām using the Pro version and am unable to create a PR to address this issue. Could someone from the ABP team please look into and resolve this bug?
When reloading the page at the route /file-management, the app in the browser crashes. This issue only occurs upon reloading the page; it functions correctly when navigating to /file-management using the navigation menu.
This is the browser console log:

The source code is the class UploadService at angular\projects\file-management\src\lib\services\upload.service.ts
It should be like this to avoid the exception:
ngOnDestroy() { this.uppy?.close(); this.subscriptionService.closeAll(); }
Please fix this in the next version.