[ADF-4445] Add showRefreshButton to TaskFormCloud component doc (#4666)

This commit is contained in:
davidcanonieto
2019-04-29 14:55:45 +01:00
committed by Eugenio Romano
parent 1658eb97e3
commit 2bc2f09525
7 changed files with 12 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
@mixin adf-process-filters-cloud-theme($theme) {
@mixin adf-cloud-process-filters-theme($theme) {
.adf {

View File

@@ -16,9 +16,9 @@
@include adf-cloud-task-filters-theme($theme);
@include adf-cloud-edit-task-filters-theme($theme);
@include adf-cloud-edit-process-filter-theme($theme);
@include adf-process-filters-cloud-theme($theme);
@include adf-start-task-cloud-theme($theme);
@include adf-cloud-process-filters-theme($theme);
@include adf-cloud-start-task-theme($theme);
@include adf-cloud-people-theme($theme);
@include adf-cloud-group-theme($theme);
@include adf-task-form-cloud-theme($theme);
@include adf-cloud-task-form-theme($theme);
}

View File

@@ -1,4 +1,4 @@
@mixin adf-start-task-cloud-theme($theme) {
@mixin adf-cloud-start-task-theme($theme) {
$primary: map-get($theme, primary);
$accent: map-get($theme, accent);
$warn: map-get($theme, warn);

View File

@@ -1,4 +1,4 @@
@mixin adf-task-form-cloud-theme($theme) {
@mixin adf-cloud-task-form-theme($theme) {
$config: mat-typography-config();

View File

@@ -25,7 +25,7 @@ import { TaskCloudService } from '../../services/task-cloud.service';
import { IdentityUserService, FormOutcomeModel } from '@alfresco/adf-core';
@Component({
selector: 'adf-task-form-cloud',
selector: 'adf-cloud-task-form',
templateUrl: './task-form-cloud.component.html',
styleUrls: ['./task-form-cloud.component.scss']
})