[AAE-1152] Add People and Group component in the AAE Forms (#5314)

* firt version groupo component widget

* fix group

* fix compilation issue

* fix compilation issue

* fix compilation issue

* fix compilation issue

* fix problem update script

* multiple browser ps cloud

* add field assignment

* add field in form model

* no need subobject we need an issue to refactor the field model

* no need subobject we need an issue to refactor the field model

* fix unit test

* remove title modify

* revert

* fix lint

* exclude AAE-1179

* exclude tooltip e2e
This commit is contained in:
Eugenio Romano
2019-12-10 11:24:24 +00:00
committed by GitHub
parent a63e487637
commit 703b96c9b0
51 changed files with 319 additions and 82 deletions

View File

@@ -22,7 +22,7 @@ import { MaterialModule } from '../material.module';
import { CoreModule } from '@alfresco/adf-core';
import { AppsListComponent } from './apps-list.component';
import { SelectAppsDialogComponent } from './select-apps-dialog-component';
import { SelectAppsDialogComponent } from './select-apps-dialog.component';
@NgModule({
imports: [

View File

@@ -16,6 +16,6 @@
*/
export * from './apps-list.component';
export * from './select-apps-dialog-component';
export * from './select-apps-dialog.component';
export * from './apps-list.module';

View File

@@ -1,7 +1,7 @@
<header mat-dialog-title id="adf-selet-app-dialog-title">{{'APP.DIALOG.TITLE' | translate}}</header>
<header mat-dialog-title id="adf-select-app-dialog-title">{{'APP.DIALOG.TITLE' | translate}}</header>
<section mat-dialog-content>
<mat-select id="adf-selet-app-dialog-dropdown" placeholder="{{'APP.DIALOG.LIST' | translate}}" [(value)]="selectedProcess" >
<mat-select id="adf-select-app-dialog-dropdown" placeholder="{{'APP.DIALOG.LIST' | translate}}" [(value)]="selectedProcess" >
<mat-option *ngFor="let currentProcessApp of processApps" [value]="currentProcessApp">
{{ currentProcessApp.name }}
</mat-option>

View File

@@ -23,7 +23,7 @@ import { AppsProcessService, setupTestBed } from '@alfresco/adf-core';
import { deployedApps } from '../mock/apps-list.mock';
import { of } from 'rxjs';
import { SelectAppsDialogComponent } from './select-apps-dialog-component';
import { SelectAppsDialogComponent } from './select-apps-dialog.component';
import { ProcessTestingModule } from '../testing/process.testing.module';
@Component({
@@ -102,12 +102,12 @@ describe('Select app dialog', () => {
expect(
overlayContainerElement.querySelector(
'.adf-selet-app-dialog-title'
'.adf-select-app-dialog-title'
)
).toBeDefined();
expect(
overlayContainerElement.querySelector(
'.adf-selet-app-dialog-dropdown'
'.adf-select-app-dialog-dropdown'
)
).toBeDefined();
});

View File

@@ -21,7 +21,7 @@ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material';
@Component({
selector: 'adf-select-apps-dialog',
templateUrl: 'select-apps-dialog-component.html'
templateUrl: 'select-apps-dialog.component.html'
})
export class SelectAppsDialogComponent {