Hello,
ABP 4.4 packages are not compatible with angular 13. You need to upgrade the ABP version to 5.1
Hello,
Currently, you can't customize user edit/create modal tabs without replacing the user component. But i opened an internal issue about this request. We will consider making dynamic tabs.
Hello
You shouldn't add secondary entrypoints to package.json. If you using services, models etc from ABP packages, you need to change imports. For example, if you use IdentityUserService
, you need to change import with the following way
before
import { IdentityUserService } "@volo/abp.ng.identity"
to
import { IdentityUserService } "@volo/abp.ng.identity/proxy"
Please ensure the following dependencies matches with your project dependencies for updating version to ABP version 6.0
{
"dependencies":{
// other deps
"@abp/ng.components": "~6.0.3",
"@abp/ng.core": "~6.0.3",
"@abp/ng.setting-management": "~6.0.3",
"@abp/ng.theme.shared": "~6.0.3",
"@volo/abp.commercial.ng.ui": "~6.0.3",
"@volo/abp.ng.account": "~6.0.3",
"@volo/abp.ng.audit-logging": "~6.0.3",
"@volo/abp.ng.gdpr": "~6.0.3",
"@volo/abp.ng.identity": "~6.0.3",
"@volo/abp.ng.openiddictpro": "~6.0.3",
"@volo/abp.ng.language-management": "~6.0.3",
"@volo/abp.ng.saas": "~6.0.3",
"@volo/abp.ng.text-template-management": "~6.0.3",
"@volo/abp.ng.theme.lepton": "~6.0.3",
}
}
Hello
Can you send the result of yarn why @abp/ng.schematics
command?
Hello,
Yes, we tested in ABP 5.3.3 application. Can you send your app.module.ts, app-routing.module.ts and app.component.ts?
Hello
Can you replace your app.component with following
import { Component } from '@angular/core';
import { FileManagementButtonsComponent } from '@volo/abp.ng.file-management';
import { Uppy } from '@uppy/core';
@Component({
selector: 'app-root',
template: `
<abp-loader-bar></abp-loader-bar>
<abp-dynamic-layout></abp-dynamic-layout>
`,
})
export class AppComponent {}
const afterViewInit = FileManagementButtonsComponent.prototype.ngAfterViewInit;
FileManagementButtonsComponent.prototype.ngAfterViewInit = function () {
afterViewInit.call(this);
(this.uploadService.uppy as Uppy).setOptions({
restrictions: { allowedFileTypes: ['.jpg'] },
});
};
Hello,
I created an issue about this situation. You can follow the status of issue
Also, the module was added wrongly to environment.ts. You can fix it like the following. (This error was fixed in ABP 6.0.3 version)
{
// other properties
apis: {
// other apis
CRS: {
rootNamespace: 'CRS',
},
},
} as Environment;
For your information following steps are not automated with ABP Suite
{
path: 'url-of-module',
loadChildren: () => import('@c-rS').then(m => m.CRSModule);
}
Hello,
Abp 4.3 packages are not compatible with angular 13. You need to upgrade the ABP version to 5.1
Hello
You need to import CRSConfigModule instead of CRSModule.
import { CRSConfigModule } from '@c-rS/config'
Hello
Yes you can paste in app.component.ts