mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[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:
@@ -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: [
|
||||
|
@@ -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';
|
||||
|
@@ -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>
|
@@ -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();
|
||||
});
|
@@ -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 {
|
||||
|
Reference in New Issue
Block a user