diff --git a/demo-shell/src/app/components/process-service/process-service.component.html b/demo-shell/src/app/components/process-service/process-service.component.html index c67d279ff4..7f645c83bd 100644 --- a/demo-shell/src/app/components/process-service/process-service.component.html +++ b/demo-shell/src/app/components/process-service/process-service.component.html @@ -38,6 +38,7 @@ [presetColumn]="presetColumn" [page]="taskPage" [size]="paginationPageSize" + [selectionMode]="selectionMode" [processDefinitionKey]="taskFilter?.filter?.processDefinitionKey" [name]="taskFilter?.filter?.name" [assignment]="taskFilter?.filter?.assignment" @@ -146,6 +147,7 @@
- Show task filters icons + Show task filters icons +
- Show process filters icons + Show process filters icons +
- {{ 'PS-TAB.TASK-SHOW-HEADER'| translate }} + {{ 'PS-TAB.TASK-SHOW-HEADER'| translate }} +
- Multiselect Process List + Multiselect Process List +
- Multiselect Task List + Multiselect Task List +
+
+ + multiple + single + none +
diff --git a/demo-shell/src/app/components/process-service/process-service.component.ts b/demo-shell/src/app/components/process-service/process-service.component.ts index 92d937c6e1..6c0bcc214c 100644 --- a/demo-shell/src/app/components/process-service/process-service.component.ts +++ b/demo-shell/src/app/components/process-service/process-service.component.ts @@ -120,6 +120,7 @@ export class ProcessServiceComponent implements AfterViewInit, OnDestroy, OnInit selectFirstReport = false; multiSelectTask = false; multiSelectProcess = false; + selectionMode = 'single'; private tabs = { tasks: 0, processes: 1, reports: 2 }; @@ -504,19 +505,4 @@ export class ProcessServiceComponent implements AfterViewInit, OnDestroy, OnInit this.currentTaskId = null; } - changeTaskFilterIcon() { - this.showTaskFilterIcon = !this.showTaskFilterIcon; - } - - changeProcessFilterIcon() { - this.showProcessFilterIcon = !this.showProcessFilterIcon; - } - - toggleTasProcesssMultiselect() { - this.multiSelectProcess = !this.multiSelectProcess; - } - - toggleTaskMultiselect() { - this.multiSelectTask = !this.multiSelectTask; - } } diff --git a/lib/core/form/components/widgets/container/container.widget.scss b/lib/core/form/components/widgets/container/container.widget.scss index 58466f7096..284d3aa666 100644 --- a/lib/core/form/components/widgets/container/container.widget.scss +++ b/lib/core/form/components/widgets/container/container.widget.scss @@ -63,7 +63,7 @@ } .mat-form-field-label-wrapper { - top: 22px !important; + top: 22px; } .mat-input-placeholder { diff --git a/lib/core/form/components/widgets/people/people.widget.scss b/lib/core/form/components/widgets/people/people.widget.scss index 3d8946e6a3..9f23320597 100644 --- a/lib/core/form/components/widgets/people/people.widget.scss +++ b/lib/core/form/components/widgets/people/people.widget.scss @@ -7,6 +7,10 @@ &-people-widget { width: 100%; + + .mat-form-field-label-wrapper { + top: 10px; + } } &-people-widget-list { diff --git a/lib/process-services/task-list/components/start-task.component.scss b/lib/process-services/task-list/components/start-task.component.scss index 7c6d0281f8..c62a5ea745 100644 --- a/lib/process-services/task-list/components/start-task.component.scss +++ b/lib/process-services/task-list/components/start-task.component.scss @@ -16,6 +16,7 @@ } .adf-new-task-layout-card { + width: 66%; margin: 10px auto; @@ -74,6 +75,14 @@ } adf-start-task { + + people-widget { + width: 100%; + .mat-form-field-label-wrapper { + top: -14px !important; + } + } + .adf { &-new-task-footer {