Hi,
Hey,
It is not possible to download the lepton-x source code, because it says it is already installed, but the lepton-x source code does not appear in the backend in the modules folder.
Is it just downloading and adding manually?
If so, I downloaded it, copy the theme-shared folder to the Angular projects folder and in the tsconfig.json file I put this code:
"@abp/ng.theme.shared/extensions": [ "projects/theme-shared/extensions/src/public-api.ts" ], Error: Debug error: DtsModuleScopeResolver.read(UiExtensionsModule from D:/Projects/CI/Base/7.4.1/angular/projects/theme-shared/extensions/src/lib/ui-extensions.module.ts), but not a .d.ts file
However, for example, when I change anything in the default modal, it does not reflect local because it is still taking the node_modules
Taking advantage, could you email me the source code for the commercial-ui of version 7.4.1?
email: fernandos@ci.com.br
Verifique a documentação antes de fazer uma pergunta: https://docs.abp.io/en/commercial/latest/ Confira os exemplos para ver as tarefas básicas: https://docs.abp.io/en/commercial/latest/samples/index A solução exata para sua pergunta pode ter sido respondida antes, então use primeiro a busca na página inicial. Forneça-nos as seguintes informações:
Hi,
Can I change or replace the components generated by abp suite with my custom components at the time of generation?
Ex.: From <div class="mb-3"> <label class="form-label" for="demo-employee-name"> {{ '::Name' | abpLocalization }} * </label> <input id="demo-employee-name" formControlName="name" class="form-control" autofocus /> </div>
To <cds-input-text [label]="' '::Name' | abpLocalization" [id]="'demo-employee-name'" [name]="'demoText'" formControlName="name"> </cds-input-text>
Can you help me?
Verifique a documentação antes de fazer uma pergunta: https://docs.abp.io/en/commercial/latest/ Confira os exemplos para ver as tarefas básicas: https://docs.abp.io/en/commercial/latest/samples/index A solução exata para sua pergunta pode ter sido respondida antes, então use primeiro a busca na página inicial. Forneça-nos as seguintes informações:
Hi,
On the OpenId screen > Applications > New Application (Modal) there are two checkboxes that are not reflecting the translations.
In the default-applications-form-props.ts file, one of the fields that has the problem is configured as follows:
{ type: ePropType.Boolean, defaultValue: false, name: 'allowClientCredentialsFlow', displayTextResolver: data => { .getInjected(ApplicationFormModalComponent) .changeTextToType('AbpOpenIddict::AllowClientCredentialsFlow'); }, disabled: data => { const formValue = data.getInjected(ApplicationFormModalComponent).getFormValue(); return formValue.type === defaultApplicationTypes.public; }, id: 'allowClientCredentialsFlow', group: groupRight, className: className, },
I believe that the displayTextResolver function is not working correctly, because it does not display the expected text, but rather the name of the input.
can you help me?
Hi,
I downloaded the Volo.Abp.OpenIddict module and in this module we have the Volo.Abp.OpenIddict.Domain.Shared project where the module's translations are. But when I change any of the translations it does not reflect in Angular.
Would you help me?
Verifique a documentação antes de fazer uma pergunta: https://docs.abp.io/en/commercial/latest/ Confira os exemplos para ver as tarefas básicas: https://docs.abp.io/en/commercial/latest/samples/index A solução exata para sua pergunta pode ter sido respondida antes, então use primeiro a busca na página inicial. Forneça-nos as seguintes informações:
Hi,
Work for two companies, each company has its bussines license.
I needed to make a project based on the ABP that will serve both companies and I downloaded some modules for customization, etc...
Based on this base project that I customized, I need to make two copies, that is, one for each company.
Where do I need to change the license key so that each project has its respective license for each company?
Hey, How do I get access to the source code of this abp-advanced-entity-filters component?
Hey, I'm trying to use the local theme.shared. I used the following command to add the packages to the angular solution: abp add-package @abp/ng.theme.shared -v 7.2.3 --with-source-code.
In tsconfig.json paths: [ ..., "@abp/ng.theme.shared/testing": [ "projects/abp-ng.theme.shared/testing/src/public-api.ts" ], "@abp/ng.theme.shared/extensions/testing": [ "projects/abp-ng.theme.shared/extensions/testing/src/public-api.ts" ], "@abp/ng.theme.shared": [ "projects/abp-ng.theme.shared/src/public-api.ts" ], "@abp/ng.theme.shared/extensions": [ "projects/abp-ng.theme.shared/extensions/src/public-api.ts" ], ]
In angular.json projects: [ ..., "abp-ng.theme.shared": { "projectType": "library", "root": "projects/abp-ng.theme.shared", "sourceRoot": "projects/abp-ng.theme.shared/src", "prefix": "abp", "architect": { "build": { "builder": "@angular-devkit/build-angular:ng-packagr", "options": { "tsConfig": "projects/abp-ng.theme.shared/tsconfig.lib.json", "project": "projects/abp-ng.theme.shared/ng-package.json" }, "settings": { "production": { "tsConfig": "projects/abp-ng.theme.shared/tsconfig.lib.prod.json" } } }, "test": { "builder": "@angular-builders/jest:run", "options": { "coverage": true, "passWithNoTests": true } }, "lint": { "builder": "@angular-devkit/build-angular:tslint", "options": { "tsConfig": [ "projects/abp-ng.theme.shared/tsconfig.lib.json", "projects/abp-ng.theme.shared/tsconfig.spec.json" ], "exclude": [ "/node_modules/" ] } } } } ]
When I try to upload the application with yarn run start, it gives the error: Error: Debug error: DtsModuleScopeResolver.read(UiExtensionsModule from angular/projects/abp-ng.theme.shared/extensions /src/lib/ui-extensions.module.ts), but not a .d.ts file
Would you help me?
The angular account/login page is not working. It stays blank and gives the error in the console: "Account layout not found. Please check your configuration. If you are using LeptonX, please make sure you have added "AccountLayoutModule.forRoot()" to your app.module configuration"
I downloaded version 7.3.0 and configured the login through front angular according to the documentation.
Is this a bug in version 7.3.0?