Activities of "DominaTang"

Our current solution has some custom pages in Auth server project:

After upgrade to ABP 8.2.1 (Theme.LeptonX latest version 3.2.0), on login screen, click the eye icon, the password is not changed to plain text. It must be related to the JS and login page's style and login css. But I don't know where is above pages copy from.

Plus, I also notice there are a Themes folder contains all source code of the theme? Where these files come from?

If compare Administration Db snapshot between 8.2.1 and 8.1.4, we can notice that FlagIcon column is dropped from AbpLanguages. After add Db Migration to Administration Db, we can see the following table schema changes: protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "FlagIcon", table: "AbpLanguages"); }

However, after DbMigrator, if we try to launch Admin Service, the swagger is break complain about missing FlagIcon. I checked all Abp NuGet packages are upgraded to 8.2.1

Our project extend some app service in Identity service:

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IIdentityUserAppService))]
public class AbcIdentityUserAppService : IdentityUserAppService
{
 //Some override methods
//Some new methods
}

When in ABP 7, when generate identity-service proxy, in angular side, there are two sub folder generated, one called abp, one called volo. After upgrade to ABP 8, the proxy for identity-service, only one folder volo generated, the new methods in class AbcIdentityUserAppService is not available for client side to call.

Error: src/app/abp-modules/account/public/src/components/personal-settings/personal-settings.component.ts:61:5 - error TS2740: Type 'FormGroup' is missing the following properties from type 'FormGroup<any>': addValidators, addAsyncValidators, removeValidators, removeAsyncValidators, and 4 more.

61 this.form = generateFormFromProps(data);

Error: src/app/abp-modules/account/public/src/defaults/default-my-security-logs-entity-props.ts:15:5 - error TS2322: Type '(data: Omit<PropData<IdentitySecurityLogDto>, "data">) => Observable<string>' is not assignable to type 'PropCallback<IdentitySecurityLogDto, Observable<any>>'. Type 'Observable<string>' is missing the following properties from type 'Observable<any>': _isScalar, _trySubscribe, _subscribe

15 valueResolver: data => { ....

After upgrade to ABP 8.2.1. there are following compile error:

Error: src/app/abp-modules/account/public/src/components/personal-settings/personal-settings-email/personal-settings-email.component.ts:3:3 - error TS2305: Module '"@abp/ng.theme.shared/extensions"' has no exported member 'EXTENSIBLE_FORM_VIEW_PROVIDER'.

Similar not exported member include: EXTENSIONS_FORM_PROP EXTENSIONS_FORM_PROP_DATA EXTENSIBLE_FORM_VIEW_PROVIDER EXTENSIONS_FORM_PROP EXTENSIBLE_FORM_VIEW_PROVIDER EXTENSIONS_FORM_PROP EXTENSIONS_FORM_PROP_DATA EXTENSIBLE_FORM_VIEW_PROVIDER EXTENSIONS_FORM_PROP EXTENSIONS_FORM_PROP_DATA

We has a shared project which defined shared Enum used by App Micro Services. We have the following case: Micro Service A use this enum, And Micro Service B setup that can call AppServices in Micro Services A; Service B also use this enum;

The generated property for Service B import this enum twice with build error: error TS2300: Duplicate identifier 'xxxxEnum'

ABP CLI is 8.1.5, package.json, ABP version is 8.1.5. After re-generate all proxies, there is the following error: Error: src/app/identity/identity.module.ts:87:5 - error NG6002: 'UiExtensionsModule' does not appear to be an NgModule class.

87 UiExtensionsModule, ~~~~~~~~~~~~~~~~~~

../../../../node_modules/@abp/ng.theme.shared/extensions/lib/ui-extensions.module.d.ts:3:22 3 export declare class UiExtensionsModule { ~~~~~~~~~~~~~~~~~~ This likely means that the library (@abp/ng.theme.shared/extensions) which declares UiExtensionsModule is not compatible with Angular Ivy. Check if a newer version of the library is available, and update if so. Also consider checking with the library's authors to see if the library is expected to be compatible with Ivy.

Question

In our Angular App UI, the scroll bar has similar background color and the 'button' on scroll bar is also not obvious. Do you know which theme CSS should change?

  • ABP Framework version: V7.2.1
  • UI Type: Angular
  • Database System: MongoDB

Hello,

We have plan to upgrade existing project from ABP 7 to 8.1.4. I noticed that if create new solution when choose 8.1.4 with ABP Suite, the client side Angular package is ~17.1.0, however when use ABP upgrade command, the Angular package is ^17.1.0.

I am wondering, is it safe to upgrade to Angular 18 with ABP 8.1.4?

Thanks,

I want to check the source code for when an user account is locked, is there any email is sent? And what the source code looks like so that I can add more code on top of it. However, when I use Abp suite, and click modules link, it gives a bunch of folder access errors such as users[my account]\AppData\Local\Application Data.

  • Do you know the reason of above reason?
  • There is another way to access source code instead of using abp suite?
  • With build-in Abp Lock user method, is there an email sent to the user?
Showing 1 to 10 of 36 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 18, 2024, 12:46