@alfresco/adf-insights 8.3.0 → 8.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/adf-insights.mjs +354 -350
- package/fesm2022/adf-insights.mjs.map +1 -1
- package/lib/analytics-process/components/analytics-generator.component.d.ts +1 -1
- package/lib/analytics-process/components/analytics-report-heat-map.component.d.ts +3 -5
- package/lib/analytics-process/components/analytics-report-list.component.d.ts +2 -3
- package/lib/analytics-process/components/analytics-report-parameters.component.d.ts +6 -26
- package/lib/analytics-process/components/widgets/date-range/date-range.widget.d.ts +1 -3
- package/lib/analytics-process/services/analytics.service.d.ts +1 -19
- package/lib/diagram/components/diagram.component.d.ts +3 -7
- package/lib/diagram/components/raphael/raphael-base.d.ts +2 -2
- package/lib/diagram/services/diagrams.service.d.ts +1 -19
- package/package.json +3 -3
|
@@ -1,43 +1,41 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Output, Input, Directive, ViewEncapsulation, Component,
|
|
2
|
+
import { EventEmitter, Output, Input, Directive, ViewEncapsulation, Component, inject, Injectable, ViewChild, ElementRef, ContentChildren, DestroyRef, NgModule } from '@angular/core';
|
|
3
3
|
import * as i2 from '@angular/forms';
|
|
4
|
-
import { ReactiveFormsModule, FormGroup, FormControl, Validators, UntypedFormControl, FormsModule, UntypedFormGroup } from '@angular/forms';
|
|
5
|
-
import * as i1
|
|
4
|
+
import { ReactiveFormsModule, FormGroup, FormControl, Validators, UntypedFormControl, FormsModule, UntypedFormBuilder, UntypedFormGroup, FormBuilder } from '@angular/forms';
|
|
5
|
+
import * as i1 from '@angular/common';
|
|
6
6
|
import { CommonModule, NgIf, NgForOf } from '@angular/common';
|
|
7
7
|
import { TranslatePipe } from '@ngx-translate/core';
|
|
8
8
|
import * as i2$1 from '@angular/material/checkbox';
|
|
9
9
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
10
|
-
import
|
|
11
|
-
import { AdfDateFnsAdapter, ADF_DATE_FORMATS, ToolbarComponent, ToolbarTitleComponent, provideTranslations } from '@alfresco/adf-core';
|
|
12
|
-
import * as i1 from '@angular/material/core';
|
|
10
|
+
import { AdfDateFnsAdapter, ADF_DATE_FORMATS, DownloadService, ToolbarComponent, ToolbarTitleComponent, provideTranslations } from '@alfresco/adf-core';
|
|
13
11
|
import { DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core';
|
|
14
12
|
import { isAfter, format } from 'date-fns';
|
|
15
|
-
import * as
|
|
13
|
+
import * as i3 from '@angular/material/grid-list';
|
|
16
14
|
import { MatGridListModule } from '@angular/material/grid-list';
|
|
17
|
-
import * as
|
|
15
|
+
import * as i4 from '@angular/material/form-field';
|
|
18
16
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
19
|
-
import * as i3 from '@angular/material/input';
|
|
17
|
+
import * as i3$1 from '@angular/material/input';
|
|
20
18
|
import { MatInputModule } from '@angular/material/input';
|
|
21
|
-
import * as
|
|
19
|
+
import * as i6 from '@angular/material/datepicker';
|
|
22
20
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
23
|
-
import
|
|
21
|
+
import { AlfrescoApiService } from '@alfresco/adf-content-services';
|
|
24
22
|
import { from, of, Observable } from 'rxjs';
|
|
25
23
|
import { map, share } from 'rxjs/operators';
|
|
26
24
|
import { ReportApi, ProcessDefinitionsApi, ModelJsonBpmnApi } from '@alfresco/js-api';
|
|
27
25
|
import * as i2$2 from '@angular/material/button';
|
|
28
26
|
import { MatButtonModule } from '@angular/material/button';
|
|
29
|
-
import * as
|
|
27
|
+
import * as i3$2 from '@angular/material/icon';
|
|
30
28
|
import { MatIconModule } from '@angular/material/icon';
|
|
31
|
-
import * as i4$
|
|
29
|
+
import * as i4$1 from 'ng2-charts';
|
|
32
30
|
import { NgChartsModule } from 'ng2-charts';
|
|
33
|
-
import * as
|
|
34
|
-
import { MatDialogModule } from '@angular/material/dialog';
|
|
35
|
-
import * as i3$
|
|
31
|
+
import * as i12 from '@angular/material/dialog';
|
|
32
|
+
import { MatDialog, MatDialogModule } from '@angular/material/dialog';
|
|
33
|
+
import * as i3$3 from '@angular/material/menu';
|
|
36
34
|
import { MatMenuModule, MatMenuItem } from '@angular/material/menu';
|
|
37
35
|
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
38
|
-
import * as
|
|
36
|
+
import * as i2$3 from '@angular/material/list';
|
|
39
37
|
import { MatListModule } from '@angular/material/list';
|
|
40
|
-
import * as
|
|
38
|
+
import * as i4$2 from '@angular/material/card';
|
|
41
39
|
import { MatCardModule } from '@angular/material/card';
|
|
42
40
|
|
|
43
41
|
/*!
|
|
@@ -78,10 +76,10 @@ class WidgetComponent {
|
|
|
78
76
|
changeValue(field) {
|
|
79
77
|
this.fieldChanged.emit(field);
|
|
80
78
|
}
|
|
81
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
82
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
79
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: WidgetComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
80
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: WidgetComponent, isStandalone: true, inputs: { field: "field" }, outputs: { fieldChanged: "fieldChanged" }, usesOnChanges: true, ngImport: i0 }); }
|
|
83
81
|
}
|
|
84
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
82
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: WidgetComponent, decorators: [{
|
|
85
83
|
type: Directive
|
|
86
84
|
}], propDecorators: { field: [{
|
|
87
85
|
type: Input
|
|
@@ -107,12 +105,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
107
105
|
*/
|
|
108
106
|
/* eslint-disable @angular-eslint/component-selector, @angular-eslint/no-input-rename */
|
|
109
107
|
class CheckboxWidgetAnalyticsComponent extends WidgetComponent {
|
|
110
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
111
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
108
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: CheckboxWidgetAnalyticsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
109
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: CheckboxWidgetAnalyticsComponent, isStandalone: true, selector: "analytics-checkbox-widget", inputs: { formGroup: ["group", "formGroup"], controllerName: "controllerName" }, host: { listeners: { "click": "event($event)" } }, usesInheritance: true, ngImport: i0, template: "<div [formGroup]=\"formGroup\">\n <mat-checkbox\n color=\"primary\"\n formControlName=\"{{controllerName}}\"\n [id]=\"field.id\"\n [checked]=\"field.value\"\n [(ngModel)]=\"field.value\"\n (ngModelChange)=\"changeValue(field)\"\n >{{field.nameKey | translate}}</mat-checkbox\n >\n</div>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
112
110
|
}
|
|
113
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: CheckboxWidgetAnalyticsComponent, decorators: [{
|
|
114
112
|
type: Component,
|
|
115
|
-
args: [{ selector: 'analytics-checkbox-widget', imports: [CommonModule, TranslatePipe, ReactiveFormsModule, MatCheckboxModule],
|
|
113
|
+
args: [{ selector: 'analytics-checkbox-widget', imports: [CommonModule, TranslatePipe, ReactiveFormsModule, MatCheckboxModule], host: {
|
|
114
|
+
'(click)': 'event($event)'
|
|
115
|
+
}, encapsulation: ViewEncapsulation.None, template: "<div [formGroup]=\"formGroup\">\n <mat-checkbox\n color=\"primary\"\n formControlName=\"{{controllerName}}\"\n [id]=\"field.id\"\n [checked]=\"field.value\"\n [(ngModel)]=\"field.value\"\n (ngModelChange)=\"changeValue(field)\"\n >{{field.nameKey | translate}}</mat-checkbox\n >\n</div>\n" }]
|
|
116
116
|
}], propDecorators: { formGroup: [{
|
|
117
117
|
type: Input,
|
|
118
118
|
args: ['group']
|
|
@@ -169,8 +169,8 @@ class ReportParameterDetailsModel {
|
|
|
169
169
|
const FORMAT_DATE_ACTIVITI$1 = 'yyyy-MM-dd';
|
|
170
170
|
const DISPLAY_FORMAT = 'dd/MM/yyyy';
|
|
171
171
|
class DateRangeWidgetComponent {
|
|
172
|
-
constructor(
|
|
173
|
-
this.dateAdapter =
|
|
172
|
+
constructor() {
|
|
173
|
+
this.dateAdapter = inject(DateAdapter);
|
|
174
174
|
this.dateRangeChanged = new EventEmitter();
|
|
175
175
|
this.startDateValue = new Date();
|
|
176
176
|
this.endDateValue = new Date();
|
|
@@ -221,19 +221,19 @@ class DateRangeWidgetComponent {
|
|
|
221
221
|
isStartDateEmpty() {
|
|
222
222
|
return this.dateRange?.controls.startDate && !this.dateRange.controls.startDate.valid;
|
|
223
223
|
}
|
|
224
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
225
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
224
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DateRangeWidgetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
225
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DateRangeWidgetComponent, isStandalone: true, selector: "adf-date-range-widget", inputs: { dateRange: ["group", "dateRange"], field: "field" }, outputs: { dateRangeChanged: "dateRangeChanged" }, providers: [
|
|
226
226
|
{ provide: DateAdapter, useClass: AdfDateFnsAdapter },
|
|
227
227
|
{ provide: MAT_DATE_FORMATS, useValue: ADF_DATE_FORMATS }
|
|
228
|
-
], ngImport: i0, template: "<label for=\"adf-dateRange\">{{field.nameKey | translate}}</label><br />\n<div id=\"adf-dateRange\" [formGroup]=\"dateRange\">\n <small *ngIf=\"isStartDateGreaterThanEndDate()\" class=\"adf-date-range-analytics-text-danger\">\n {{'DATE-WIDGET.MESSAGES.START-LESS-THAN-END-DATE' | translate}}\n </small>\n <small *ngIf=\"isStartDateEmpty()\" class=\"adf-date-range-analytics-text-danger\">\n {{'DATE-WIDGET.MESSAGES.START-DATE-REQUIRED' | translate}}\n </small>\n\n <mat-grid-list cols=\"2\" rowHeight=\"80px\">\n <mat-grid-tile>\n <mat-form-field>\n <input\n matInput\n [min]=\"minDate\"\n [max]=\"maxDate\"\n formControlName=\"startDate\"\n [matDatepicker]=\"startDate\"\n [value]=\"startDateValue\"\n (keydown)=\"true\"\n (dateChange)=\"onGroupValueChanged()\"\n placeholder=\"{{'DATE-WIDGET.START-DATE' | translate}}\"\n id=\"startDate_id\"\n required\n />\n <mat-datepicker-toggle matSuffix [for]=\"startDate\" />\n </mat-form-field>\n <mat-datepicker #startDate [touchUi]=\"true\" />\n </mat-grid-tile>\n <mat-grid-tile>\n <mat-form-field>\n <input\n matInput\n [min]=\"minDate\"\n [max]=\"maxDate\"\n formControlName=\"endDate\"\n [matDatepicker]=\"endDate\"\n [value]=\"endDateValue\"\n (keydown)=\"true\"\n (dateChange)=\"onGroupValueChanged()\"\n placeholder=\"{{'DATE-WIDGET.END-DATE' | translate}}\"\n id=\"endDate_id\"\n required\n />\n <mat-datepicker-toggle matSuffix [for]=\"endDate\" />\n </mat-form-field>\n <mat-datepicker #endDate [touchUi]=\"true\" />\n </mat-grid-tile>\n </mat-grid-list>\n</div>\n", styles: [".adf-date-range-analytics-text-danger{color:var(--theme-warn-color)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1
|
|
228
|
+
], ngImport: i0, template: "<label for=\"adf-dateRange\">{{field.nameKey | translate}}</label><br />\n<div id=\"adf-dateRange\" [formGroup]=\"dateRange\">\n <small *ngIf=\"isStartDateGreaterThanEndDate()\" class=\"adf-date-range-analytics-text-danger\">\n {{'DATE-WIDGET.MESSAGES.START-LESS-THAN-END-DATE' | translate}}\n </small>\n <small *ngIf=\"isStartDateEmpty()\" class=\"adf-date-range-analytics-text-danger\">\n {{'DATE-WIDGET.MESSAGES.START-DATE-REQUIRED' | translate}}\n </small>\n\n <mat-grid-list cols=\"2\" rowHeight=\"80px\">\n <mat-grid-tile>\n <mat-form-field>\n <input\n matInput\n [min]=\"minDate\"\n [max]=\"maxDate\"\n formControlName=\"startDate\"\n [matDatepicker]=\"startDate\"\n [value]=\"startDateValue\"\n (keydown)=\"true\"\n (dateChange)=\"onGroupValueChanged()\"\n placeholder=\"{{'DATE-WIDGET.START-DATE' | translate}}\"\n id=\"startDate_id\"\n required\n />\n <mat-datepicker-toggle matSuffix [for]=\"startDate\" />\n </mat-form-field>\n <mat-datepicker #startDate [touchUi]=\"true\" />\n </mat-grid-tile>\n <mat-grid-tile>\n <mat-form-field>\n <input\n matInput\n [min]=\"minDate\"\n [max]=\"maxDate\"\n formControlName=\"endDate\"\n [matDatepicker]=\"endDate\"\n [value]=\"endDateValue\"\n (keydown)=\"true\"\n (dateChange)=\"onGroupValueChanged()\"\n placeholder=\"{{'DATE-WIDGET.END-DATE' | translate}}\"\n id=\"endDate_id\"\n required\n />\n <mat-datepicker-toggle matSuffix [for]=\"endDate\" />\n </mat-form-field>\n <mat-datepicker #endDate [touchUi]=\"true\" />\n </mat-grid-tile>\n </mat-grid-list>\n</div>\n", styles: [".adf-date-range-analytics-text-danger{color:var(--theme-warn-color)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatGridListModule }, { kind: "component", type: i3.MatGridList, selector: "mat-grid-list", inputs: ["cols", "gutterSize", "rowHeight"], exportAs: ["matGridList"] }, { kind: "component", type: i3.MatGridTile, selector: "mat-grid-tile", inputs: ["rowspan", "colspan"], exportAs: ["matGridTile"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i6.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i6.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i6.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
229
229
|
}
|
|
230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DateRangeWidgetComponent, decorators: [{
|
|
231
231
|
type: Component,
|
|
232
232
|
args: [{ selector: 'adf-date-range-widget', imports: [CommonModule, TranslatePipe, ReactiveFormsModule, MatGridListModule, MatFormFieldModule, MatInputModule, MatDatepickerModule], providers: [
|
|
233
233
|
{ provide: DateAdapter, useClass: AdfDateFnsAdapter },
|
|
234
234
|
{ provide: MAT_DATE_FORMATS, useValue: ADF_DATE_FORMATS }
|
|
235
235
|
], encapsulation: ViewEncapsulation.None, template: "<label for=\"adf-dateRange\">{{field.nameKey | translate}}</label><br />\n<div id=\"adf-dateRange\" [formGroup]=\"dateRange\">\n <small *ngIf=\"isStartDateGreaterThanEndDate()\" class=\"adf-date-range-analytics-text-danger\">\n {{'DATE-WIDGET.MESSAGES.START-LESS-THAN-END-DATE' | translate}}\n </small>\n <small *ngIf=\"isStartDateEmpty()\" class=\"adf-date-range-analytics-text-danger\">\n {{'DATE-WIDGET.MESSAGES.START-DATE-REQUIRED' | translate}}\n </small>\n\n <mat-grid-list cols=\"2\" rowHeight=\"80px\">\n <mat-grid-tile>\n <mat-form-field>\n <input\n matInput\n [min]=\"minDate\"\n [max]=\"maxDate\"\n formControlName=\"startDate\"\n [matDatepicker]=\"startDate\"\n [value]=\"startDateValue\"\n (keydown)=\"true\"\n (dateChange)=\"onGroupValueChanged()\"\n placeholder=\"{{'DATE-WIDGET.START-DATE' | translate}}\"\n id=\"startDate_id\"\n required\n />\n <mat-datepicker-toggle matSuffix [for]=\"startDate\" />\n </mat-form-field>\n <mat-datepicker #startDate [touchUi]=\"true\" />\n </mat-grid-tile>\n <mat-grid-tile>\n <mat-form-field>\n <input\n matInput\n [min]=\"minDate\"\n [max]=\"maxDate\"\n formControlName=\"endDate\"\n [matDatepicker]=\"endDate\"\n [value]=\"endDateValue\"\n (keydown)=\"true\"\n (dateChange)=\"onGroupValueChanged()\"\n placeholder=\"{{'DATE-WIDGET.END-DATE' | translate}}\"\n id=\"endDate_id\"\n required\n />\n <mat-datepicker-toggle matSuffix [for]=\"endDate\" />\n </mat-form-field>\n <mat-datepicker #endDate [touchUi]=\"true\" />\n </mat-grid-tile>\n </mat-grid-list>\n</div>\n", styles: [".adf-date-range-analytics-text-danger{color:var(--theme-warn-color)}\n"] }]
|
|
236
|
-
}],
|
|
236
|
+
}], propDecorators: { dateRange: [{
|
|
237
237
|
type: Input,
|
|
238
238
|
args: ['group']
|
|
239
239
|
}], field: [{
|
|
@@ -282,12 +282,14 @@ class DropdownWidgetAnalyticsComponent extends WidgetComponent {
|
|
|
282
282
|
}
|
|
283
283
|
return validatorList;
|
|
284
284
|
}
|
|
285
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
286
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
285
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DropdownWidgetAnalyticsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
286
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DropdownWidgetAnalyticsComponent, isStandalone: true, selector: "analytics-dropdown-widget", inputs: { formGroup: ["group", "formGroup"], controllerName: "controllerName", showDefaultOption: "showDefaultOption", required: "required", defaultOptionText: "defaultOptionText" }, host: { listeners: { "click": "event($event)" } }, usesInheritance: true, ngImport: i0, template: "<div class=\"adf-dropdown-widget\" [formGroup]=\"formGroup\">\n <label class=\"adf-dropdown-widget__label\" [attr.for]=\"field.id\">{{field.nameKey | translate}}</label>\n <select\n [formControlName]=\"controllerName\"\n [attr.id]=\"'select-' + field.id\"\n class=\"adf-dropdown-widget__select\"\n [(ngModel)]=\"field.value\"\n (ngModelChange)=\"changeValue($event)\"\n >\n <option *ngIf=\"showDefaultOption\" value=\"null\">{{defaultOptionText}}</option>\n <option *ngFor=\"let opt of field.options\" [value]=\"opt.id\">{{opt.label}}</option>\n </select>\n</div>\n", styles: [".adf-dropdown-widget,.adf-dropdown-widget__select{width:100%}.adf-dropdown-widget__invalid .adf-dropdown-widget__select{border-color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label{color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label:after{background-color:var(--theme-warn-color)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
287
287
|
}
|
|
288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DropdownWidgetAnalyticsComponent, decorators: [{
|
|
289
289
|
type: Component,
|
|
290
|
-
args: [{ selector: 'analytics-dropdown-widget', imports: [CommonModule, TranslatePipe, ReactiveFormsModule],
|
|
290
|
+
args: [{ selector: 'analytics-dropdown-widget', imports: [CommonModule, TranslatePipe, ReactiveFormsModule], host: {
|
|
291
|
+
'(click)': 'event($event)'
|
|
292
|
+
}, encapsulation: ViewEncapsulation.None, template: "<div class=\"adf-dropdown-widget\" [formGroup]=\"formGroup\">\n <label class=\"adf-dropdown-widget__label\" [attr.for]=\"field.id\">{{field.nameKey | translate}}</label>\n <select\n [formControlName]=\"controllerName\"\n [attr.id]=\"'select-' + field.id\"\n class=\"adf-dropdown-widget__select\"\n [(ngModel)]=\"field.value\"\n (ngModelChange)=\"changeValue($event)\"\n >\n <option *ngIf=\"showDefaultOption\" value=\"null\">{{defaultOptionText}}</option>\n <option *ngFor=\"let opt of field.options\" [value]=\"opt.id\">{{opt.label}}</option>\n </select>\n</div>\n", styles: [".adf-dropdown-widget,.adf-dropdown-widget__select{width:100%}.adf-dropdown-widget__invalid .adf-dropdown-widget__select{border-color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label{color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label:after{background-color:var(--theme-warn-color)}\n"] }]
|
|
291
293
|
}], propDecorators: { formGroup: [{
|
|
292
294
|
type: Input,
|
|
293
295
|
args: ['group']
|
|
@@ -357,12 +359,14 @@ class NumberWidgetAnalyticsComponent extends WidgetComponent {
|
|
|
357
359
|
this.formGroup.get(this.controllerName).setValidators(Validators.required);
|
|
358
360
|
}
|
|
359
361
|
}
|
|
360
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
361
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
362
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: NumberWidgetAnalyticsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
363
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: NumberWidgetAnalyticsComponent, isStandalone: true, selector: "analytics-number-widget", inputs: { formGroup: ["group", "formGroup"], controllerName: "controllerName", required: "required" }, host: { listeners: { "click": "event($event)" } }, usesInheritance: true, ngImport: i0, template: "<div class=\"adf-number-widget\" [formGroup]=\"formGroup\">\n <mat-form-field class=\"adf-full-width\">\n <input matInput\n placeholder=\"{{field.nameKey | translate}}\"\n formControlName=\"{{controllerName}}\"\n type=\"text\"\n pattern=\"-?[0-9]*(\\.[0-9]+)?\"\n [id]=\"field.id\"\n [value]=\"field.value\"\n [(ngModel)]=\"field.value\"\n (ngModelChange)=\"changeValue(field)\">\n </mat-form-field>\n</div>\n", styles: [".adf-number-widget,.adf-number-widget .adf-full-width{width:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: ["pattern"] }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
362
364
|
}
|
|
363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: NumberWidgetAnalyticsComponent, decorators: [{
|
|
364
366
|
type: Component,
|
|
365
|
-
args: [{ selector: 'analytics-number-widget', imports: [CommonModule, TranslatePipe, ReactiveFormsModule, MatFormFieldModule, MatInputModule],
|
|
367
|
+
args: [{ selector: 'analytics-number-widget', imports: [CommonModule, TranslatePipe, ReactiveFormsModule, MatFormFieldModule, MatInputModule], host: {
|
|
368
|
+
'(click)': 'event($event)'
|
|
369
|
+
}, encapsulation: ViewEncapsulation.None, template: "<div class=\"adf-number-widget\" [formGroup]=\"formGroup\">\n <mat-form-field class=\"adf-full-width\">\n <input matInput\n placeholder=\"{{field.nameKey | translate}}\"\n formControlName=\"{{controllerName}}\"\n type=\"text\"\n pattern=\"-?[0-9]*(\\.[0-9]+)?\"\n [id]=\"field.id\"\n [value]=\"field.value\"\n [(ngModel)]=\"field.value\"\n (ngModelChange)=\"changeValue(field)\">\n </mat-form-field>\n</div>\n", styles: [".adf-number-widget,.adf-number-widget .adf-full-width{width:100%}\n"] }]
|
|
366
370
|
}], propDecorators: { formGroup: [{
|
|
367
371
|
type: Input,
|
|
368
372
|
args: ['group']
|
|
@@ -419,12 +423,12 @@ class DurationWidgetComponent extends NumberWidgetAnalyticsComponent {
|
|
|
419
423
|
this.fieldChanged.emit({ value: this.currentValue });
|
|
420
424
|
}
|
|
421
425
|
}
|
|
422
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
423
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
426
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DurationWidgetComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
427
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DurationWidgetComponent, isStandalone: true, selector: "duration-widget", inputs: { formGroup: ["group", "formGroup"], controllerName: "controllerName", required: "required" }, usesInheritance: true, ngImport: i0, template: "<div class=\"adf-duration-widget-grid\">\n <div class=\"adf-duration-widget-cell\">\n <div class=\"adf-number-widget\">\n <mat-form-field class=\"adf-example-full-width\">\n <input\n matInput\n placeholder=\"{{field.nameKey | translate}}\"\n type=\"text\"\n pattern=\"-?[0-9]*(\\.[0-9]+)?\"\n [id]=\"field.id\"\n [value]=\"field.value\"\n [(ngModel)]=\"field.value\"\n (ngModelChange)=\"calculateDuration()\"\n />\n </mat-form-field>\n </div>\n </div>\n <div class=\"adf-duration-widget-cell\">\n <div class=\"adf-dropdown-container\">\n <analytics-dropdown-widget\n [field]=\"duration\"\n [group]=\"formGroup\"\n [controllerName]=\"'timeType'\"\n [showDefaultOption]=\"false\"\n (fieldChanged)=\"calculateDuration()\"\n />\n </div>\n </div>\n</div>\n", styles: [".adf-duration-widget-grid{display:flex;justify-content:space-between}.adf-duration-widget-cell{width:49%}.adf-number-widget,.adf-number-widget .adf-example-full-width{width:100%}.adf-dropdown-container{margin-top:30px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: ["pattern"] }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: DropdownWidgetAnalyticsComponent, selector: "analytics-dropdown-widget", inputs: ["group", "controllerName", "showDefaultOption", "required", "defaultOptionText"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
424
428
|
}
|
|
425
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
429
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DurationWidgetComponent, decorators: [{
|
|
426
430
|
type: Component,
|
|
427
|
-
args: [{ selector: 'duration-widget', imports: [CommonModule, MatFormFieldModule, TranslatePipe, FormsModule, DropdownWidgetAnalyticsComponent, MatInputModule], encapsulation: ViewEncapsulation.None, template: "<div class=\"adf-duration-widget-grid\">\n <div class=\"adf-duration-widget-cell\">\n <div class=\"adf-number-widget\">\n <mat-form-field class=\"adf-example-full-width\"
|
|
431
|
+
args: [{ selector: 'duration-widget', imports: [CommonModule, MatFormFieldModule, TranslatePipe, FormsModule, DropdownWidgetAnalyticsComponent, MatInputModule], encapsulation: ViewEncapsulation.None, template: "<div class=\"adf-duration-widget-grid\">\n <div class=\"adf-duration-widget-cell\">\n <div class=\"adf-number-widget\">\n <mat-form-field class=\"adf-example-full-width\">\n <input\n matInput\n placeholder=\"{{field.nameKey | translate}}\"\n type=\"text\"\n pattern=\"-?[0-9]*(\\.[0-9]+)?\"\n [id]=\"field.id\"\n [value]=\"field.value\"\n [(ngModel)]=\"field.value\"\n (ngModelChange)=\"calculateDuration()\"\n />\n </mat-form-field>\n </div>\n </div>\n <div class=\"adf-duration-widget-cell\">\n <div class=\"adf-dropdown-container\">\n <analytics-dropdown-widget\n [field]=\"duration\"\n [group]=\"formGroup\"\n [controllerName]=\"'timeType'\"\n [showDefaultOption]=\"false\"\n (fieldChanged)=\"calculateDuration()\"\n />\n </div>\n </div>\n</div>\n", styles: [".adf-duration-widget-grid{display:flex;justify-content:space-between}.adf-duration-widget-cell{width:49%}.adf-number-widget,.adf-number-widget .adf-example-full-width{width:100%}.adf-dropdown-container{margin-top:30px}\n"] }]
|
|
428
432
|
}], propDecorators: { formGroup: [{
|
|
429
433
|
type: Input,
|
|
430
434
|
args: ['group']
|
|
@@ -961,6 +965,9 @@ class LineChart extends Chart {
|
|
|
961
965
|
* limitations under the License.
|
|
962
966
|
*/
|
|
963
967
|
class AnalyticsService {
|
|
968
|
+
constructor() {
|
|
969
|
+
this.apiService = inject(AlfrescoApiService);
|
|
970
|
+
}
|
|
964
971
|
get reportApi() {
|
|
965
972
|
this._reportApi = this._reportApi ?? new ReportApi(this.apiService.getInstance());
|
|
966
973
|
return this._reportApi;
|
|
@@ -969,9 +976,6 @@ class AnalyticsService {
|
|
|
969
976
|
this._processDefinitionsApi = this._processDefinitionsApi ?? new ProcessDefinitionsApi(this.apiService.getInstance());
|
|
970
977
|
return this._processDefinitionsApi;
|
|
971
978
|
}
|
|
972
|
-
constructor(apiService) {
|
|
973
|
-
this.apiService = apiService;
|
|
974
|
-
}
|
|
975
979
|
/**
|
|
976
980
|
* Retrieve all the Deployed app
|
|
977
981
|
* @param appId application id
|
|
@@ -1124,13 +1128,13 @@ class AnalyticsService {
|
|
|
1124
1128
|
}
|
|
1125
1129
|
return isValid;
|
|
1126
1130
|
}
|
|
1127
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1128
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1131
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1132
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsService, providedIn: 'root' }); }
|
|
1129
1133
|
}
|
|
1130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsService, decorators: [{
|
|
1131
1135
|
type: Injectable,
|
|
1132
1136
|
args: [{ providedIn: 'root' }]
|
|
1133
|
-
}]
|
|
1137
|
+
}] });
|
|
1134
1138
|
|
|
1135
1139
|
/*!
|
|
1136
1140
|
* @license
|
|
@@ -1480,10 +1484,10 @@ class DiagramColorService {
|
|
|
1480
1484
|
const hue = (120.0 - colorPercentage * 1.2) / 360.0;
|
|
1481
1485
|
return 'hsb(' + hue + ', 1, 1)';
|
|
1482
1486
|
}
|
|
1483
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1484
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1487
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramColorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1488
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramColorService, providedIn: 'root' }); }
|
|
1485
1489
|
}
|
|
1486
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramColorService, decorators: [{
|
|
1487
1491
|
type: Injectable,
|
|
1488
1492
|
args: [{ providedIn: 'root' }]
|
|
1489
1493
|
}] });
|
|
@@ -1505,26 +1509,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
1505
1509
|
* limitations under the License.
|
|
1506
1510
|
*/
|
|
1507
1511
|
class DiagramsService {
|
|
1512
|
+
constructor() {
|
|
1513
|
+
this.apiService = inject(AlfrescoApiService);
|
|
1514
|
+
}
|
|
1508
1515
|
get modelJsonBpmnApi() {
|
|
1509
1516
|
this._modelJsonBpmnApi = this._modelJsonBpmnApi ?? new ModelJsonBpmnApi(this.apiService.getInstance());
|
|
1510
1517
|
return this._modelJsonBpmnApi;
|
|
1511
1518
|
}
|
|
1512
|
-
constructor(apiService) {
|
|
1513
|
-
this.apiService = apiService;
|
|
1514
|
-
}
|
|
1515
1519
|
getProcessDefinitionModel(processDefinitionId) {
|
|
1516
1520
|
return from(this.modelJsonBpmnApi.getModelJSON(processDefinitionId));
|
|
1517
1521
|
}
|
|
1518
1522
|
getRunningProcessDefinitionModel(processInstanceId) {
|
|
1519
1523
|
return from(this.modelJsonBpmnApi.getModelJSONForProcessDefinition(processInstanceId));
|
|
1520
1524
|
}
|
|
1521
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1522
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1525
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1526
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramsService, providedIn: 'root' }); }
|
|
1523
1527
|
}
|
|
1524
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramsService, decorators: [{
|
|
1525
1529
|
type: Injectable,
|
|
1526
1530
|
args: [{ providedIn: 'root' }]
|
|
1527
|
-
}]
|
|
1531
|
+
}] });
|
|
1528
1532
|
|
|
1529
1533
|
/*!
|
|
1530
1534
|
* @license
|
|
@@ -1577,10 +1581,10 @@ class RaphaelService {
|
|
|
1577
1581
|
this.ngOnDestroy();
|
|
1578
1582
|
this.paper = this.getPaperBuilder(this.ctx);
|
|
1579
1583
|
}
|
|
1580
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1581
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1584
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1585
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelService, providedIn: 'root' }); }
|
|
1582
1586
|
}
|
|
1583
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1587
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelService, decorators: [{
|
|
1584
1588
|
type: Injectable,
|
|
1585
1589
|
args: [{ providedIn: 'root' }]
|
|
1586
1590
|
}] });
|
|
@@ -1606,10 +1610,10 @@ class DiagramElement {
|
|
|
1606
1610
|
this.diagramColorService = inject(DiagramColorService);
|
|
1607
1611
|
this.error = new EventEmitter();
|
|
1608
1612
|
}
|
|
1609
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1610
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1613
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramElement, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1614
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: DiagramElement, isStandalone: true, inputs: { data: "data" }, outputs: { error: "error" }, ngImport: i0 }); }
|
|
1611
1615
|
}
|
|
1612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramElement, decorators: [{
|
|
1613
1617
|
type: Directive
|
|
1614
1618
|
}], propDecorators: { data: [{
|
|
1615
1619
|
type: Input
|
|
@@ -1733,10 +1737,10 @@ class DiagramTooltipComponent {
|
|
|
1733
1737
|
}
|
|
1734
1738
|
this.showTooltip();
|
|
1735
1739
|
}
|
|
1736
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1737
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1740
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1741
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramTooltipComponent, isStandalone: true, selector: "diagram-tooltip", inputs: { data: "data", position: "position", strategy: "strategy" }, viewQueries: [{ propertyName: "tooltipContent", first: true, predicate: ["tooltipContent"], descendants: true, static: true }], ngImport: i0, template: "<div #tooltipContent class=\"adf-diagram-tooltip\">\n <div class=\"adf-diagram-tooltip-header\">{{ data.type }} {{ data.name || data.id }}</div>\n <div class=\"adf-diagram-tooltip-body\">\n <div *ngIf=\"data.value\" class=\"adf-diagram-heat-value\">\n <span class=\"adf-diagram-value\">{{ data.value }}</span>\n <span class=\"adf-diagram-valuetype\"> {{ data.dataType }}</span>\n </div>\n <div *ngIf=\"data.name\" class=\"adf-diagram-name-property\">\n <span class=\"adf-diagram-propertyName\">Name:</span>\n <span class=\"adf-diagram-propertyValue\">{{ data.name }}</span>\n </div>\n <div *ngFor=\"let property of data.properties\" class=\"adf-diagram-general-property\">\n <span class=\"adf-diagram-propertyName\">{{ property.name }}:</span>\n <span class=\"adf-diagram-propertyValue\">{{ property.value }}</span>\n </div>\n </div>\n</div>\n", styles: [".adf-diagram-tooltip{transform:scale(0);transform-origin:top center;z-index:999;display:inline-block;font-weight:500;line-height:14px;font-size:var(--theme-body-1-font-size);max-width:300px;position:fixed;top:-500px;left:-500px;text-align:left;will-change:unset;border:1px solid #c5c5c5;word-wrap:break-word}.adf-diagram-tooltip.adf-is-active{animation:tooltip-animation .2s cubic-bezier(0,0,.2,1) forwards}.adf-diagram-tooltip-header{background-color:#2b414ff2;color:#fff;padding:8px;font-weight:700;min-width:200px;line-height:20px}.adf-diagram-tooltip-body{color:#4a4a4a;background-color:#fffffff2}.adf-diagram-tooltip-body>div{padding:4px 8px}.adf-diagram-tooltip-body>div:first-child{padding-top:8px}.adf-diagram-tooltip-body>div:last-child{padding-bottom:8px}.adf-diagram-propertyName{font-weight:700;margin-right:5px}.adf-diagram-propertyValue{font-style:italic}@keyframes tooltip-animation{0%{transform:scale(0);opacity:0}50%{transform:scale(.99)}to{transform:scale(1);opacity:1;visibility:visible}}\n"], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] }); }
|
|
1738
1742
|
}
|
|
1739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramTooltipComponent, decorators: [{
|
|
1740
1744
|
type: Component,
|
|
1741
1745
|
args: [{ selector: 'diagram-tooltip', imports: [NgIf, NgForOf], template: "<div #tooltipContent class=\"adf-diagram-tooltip\">\n <div class=\"adf-diagram-tooltip-header\">{{ data.type }} {{ data.name || data.id }}</div>\n <div class=\"adf-diagram-tooltip-body\">\n <div *ngIf=\"data.value\" class=\"adf-diagram-heat-value\">\n <span class=\"adf-diagram-value\">{{ data.value }}</span>\n <span class=\"adf-diagram-valuetype\"> {{ data.dataType }}</span>\n </div>\n <div *ngIf=\"data.name\" class=\"adf-diagram-name-property\">\n <span class=\"adf-diagram-propertyName\">Name:</span>\n <span class=\"adf-diagram-propertyValue\">{{ data.name }}</span>\n </div>\n <div *ngFor=\"let property of data.properties\" class=\"adf-diagram-general-property\">\n <span class=\"adf-diagram-propertyName\">{{ property.name }}:</span>\n <span class=\"adf-diagram-propertyValue\">{{ property.value }}</span>\n </div>\n </div>\n</div>\n", styles: [".adf-diagram-tooltip{transform:scale(0);transform-origin:top center;z-index:999;display:inline-block;font-weight:500;line-height:14px;font-size:var(--theme-body-1-font-size);max-width:300px;position:fixed;top:-500px;left:-500px;text-align:left;will-change:unset;border:1px solid #c5c5c5;word-wrap:break-word}.adf-diagram-tooltip.adf-is-active{animation:tooltip-animation .2s cubic-bezier(0,0,.2,1) forwards}.adf-diagram-tooltip-header{background-color:#2b414ff2;color:#fff;padding:8px;font-weight:700;min-width:200px;line-height:20px}.adf-diagram-tooltip-body{color:#4a4a4a;background-color:#fffffff2}.adf-diagram-tooltip-body>div{padding:4px 8px}.adf-diagram-tooltip-body>div:first-child{padding-top:8px}.adf-diagram-tooltip-body>div:last-child{padding-bottom:8px}.adf-diagram-propertyName{font-weight:700;margin-right:5px}.adf-diagram-propertyValue{font-style:italic}@keyframes tooltip-animation{0%{transform:scale(0);opacity:0}50%{transform:scale(.99)}to{transform:scale(1);opacity:1;visibility:visible}}\n"] }]
|
|
1742
1746
|
}], propDecorators: { tooltipContent: [{
|
|
@@ -1795,10 +1799,10 @@ class RaphaelBase {
|
|
|
1795
1799
|
this.element = inject(ElementRef);
|
|
1796
1800
|
this.paper = this.raphaelService.getInstance(this.element);
|
|
1797
1801
|
}
|
|
1798
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1799
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1802
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1803
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelBase, isStandalone: true, ngImport: i0 }); }
|
|
1800
1804
|
}
|
|
1801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelBase, decorators: [{
|
|
1802
1806
|
type: Directive
|
|
1803
1807
|
}], ctorParameters: () => [] });
|
|
1804
1808
|
|
|
@@ -1839,10 +1843,10 @@ class RaphaelCircleDirective extends RaphaelBase {
|
|
|
1839
1843
|
draw(center, radius, opts) {
|
|
1840
1844
|
return this.paper.circle(center.x, center.y, radius).attr(opts);
|
|
1841
1845
|
}
|
|
1842
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1843
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1846
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelCircleDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1847
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelCircleDirective, isStandalone: true, selector: "adf-raphael-circle, raphael-circle", inputs: { paper: "paper", center: "center", radius: "radius", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity", elementId: "elementId" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
1844
1848
|
}
|
|
1845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelCircleDirective, decorators: [{
|
|
1846
1850
|
type: Directive,
|
|
1847
1851
|
args: [{
|
|
1848
1852
|
selector: 'adf-raphael-circle, raphael-circle'
|
|
@@ -1909,10 +1913,10 @@ class RaphaelIconTimerDirective extends RaphaelBase {
|
|
|
1909
1913
|
});
|
|
1910
1914
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
1911
1915
|
}
|
|
1912
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1913
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1916
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconTimerDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1917
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconTimerDirective, isStandalone: true, selector: "adf-raphael-icon-timer, raphael-icon-timer", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
1914
1918
|
}
|
|
1915
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconTimerDirective, decorators: [{
|
|
1916
1920
|
type: Directive,
|
|
1917
1921
|
args: [{
|
|
1918
1922
|
selector: 'adf-raphael-icon-timer, raphael-icon-timer'
|
|
@@ -1969,10 +1973,10 @@ class DiagramIconTimerComponent extends DiagramElement {
|
|
|
1969
1973
|
this.timerOptions.stroke = 'none';
|
|
1970
1974
|
this.timerOptions.fillColors = '#585858';
|
|
1971
1975
|
}
|
|
1972
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1973
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1976
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconTimerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1977
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconTimerComponent, isStandalone: true, selector: "diagram-icon-timer", usesInheritance: true, ngImport: i0, template: "<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadius\"\n [strokeWidth]=\"circleOptions.strokeWidth\"\n [stroke]=\"circleOptions.stroke\"\n [fillColors]=\"circleOptions.fillColors\"\n [fillOpacity]=\"circleOptions.fillOpacity\"\n/>\n<raphael-icon-timer\n [position]=\"position\"\n [stroke]=\"timerOptions.stroke\"\n [strokeWidth]=\"timerOptions.strokeWidth\"\n [fillColors]=\"timerOptions.fillColors\"\n [fillOpacity]=\"timerOptions.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "directive", type: RaphaelCircleDirective, selector: "adf-raphael-circle, raphael-circle", inputs: ["paper", "center", "radius", "strokeWidth", "fillColors", "stroke", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "directive", type: RaphaelIconTimerDirective, selector: "adf-raphael-icon-timer, raphael-icon-timer", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }, { kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }] }); }
|
|
1974
1978
|
}
|
|
1975
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconTimerComponent, decorators: [{
|
|
1976
1980
|
type: Component,
|
|
1977
1981
|
args: [{ selector: 'diagram-icon-timer', imports: [RaphaelCircleDirective, RaphaelIconTimerDirective, DiagramTooltipComponent], template: "<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadius\"\n [strokeWidth]=\"circleOptions.strokeWidth\"\n [stroke]=\"circleOptions.stroke\"\n [fillColors]=\"circleOptions.fillColors\"\n [fillOpacity]=\"circleOptions.fillOpacity\"\n/>\n<raphael-icon-timer\n [position]=\"position\"\n [stroke]=\"timerOptions.stroke\"\n [strokeWidth]=\"timerOptions.strokeWidth\"\n [fillColors]=\"timerOptions.fillColors\"\n [fillOpacity]=\"timerOptions.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
1978
1982
|
}] });
|
|
@@ -2015,10 +2019,10 @@ class RaphaelIconErrorDirective extends RaphaelBase {
|
|
|
2015
2019
|
});
|
|
2016
2020
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
2017
2021
|
}
|
|
2018
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2019
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2022
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconErrorDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2023
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconErrorDirective, isStandalone: true, selector: "adf-raphael-icon-error, raphael-icon-error", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
2020
2024
|
}
|
|
2021
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconErrorDirective, decorators: [{
|
|
2022
2026
|
type: Directive,
|
|
2023
2027
|
args: [{
|
|
2024
2028
|
selector: 'adf-raphael-icon-error, raphael-icon-error'
|
|
@@ -2069,10 +2073,10 @@ class DiagramIconErrorComponent extends DiagramElement {
|
|
|
2069
2073
|
this.options.fillColors = this.fillColor;
|
|
2070
2074
|
this.options.strokeWidth = 1;
|
|
2071
2075
|
}
|
|
2072
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2073
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2076
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconErrorComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2077
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconErrorComponent, isStandalone: true, selector: "diagram-icon-error", inputs: { fillColor: "fillColor" }, usesInheritance: true, ngImport: i0, template: "<raphael-icon-error\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconErrorDirective, selector: "adf-raphael-icon-error, raphael-icon-error", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
2074
2078
|
}
|
|
2075
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconErrorComponent, decorators: [{
|
|
2076
2080
|
type: Component,
|
|
2077
2081
|
args: [{ selector: 'diagram-icon-error', imports: [RaphaelIconErrorDirective], template: "<raphael-icon-error\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
2078
2082
|
}], propDecorators: { fillColor: [{
|
|
@@ -2115,10 +2119,10 @@ class RaphaelIconSignalDirective extends RaphaelBase {
|
|
|
2115
2119
|
});
|
|
2116
2120
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
2117
2121
|
}
|
|
2118
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2119
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconSignalDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2123
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconSignalDirective, isStandalone: true, selector: "adf-raphael-icon-signal, raphael-icon-signal", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
2120
2124
|
}
|
|
2121
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconSignalDirective, decorators: [{
|
|
2122
2126
|
type: Directive,
|
|
2123
2127
|
args: [{
|
|
2124
2128
|
selector: 'adf-raphael-icon-signal, raphael-icon-signal'
|
|
@@ -2169,10 +2173,10 @@ class DiagramIconSignalComponent extends DiagramElement {
|
|
|
2169
2173
|
this.options.fillColors = this.fillColor;
|
|
2170
2174
|
this.options.strokeWidth = 1;
|
|
2171
2175
|
}
|
|
2172
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2173
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2176
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconSignalComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2177
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconSignalComponent, isStandalone: true, selector: "diagram-icon-signal", inputs: { fillColor: "fillColor" }, usesInheritance: true, ngImport: i0, template: "<raphael-icon-signal\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconSignalDirective, selector: "adf-raphael-icon-signal, raphael-icon-signal", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
2174
2178
|
}
|
|
2175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconSignalComponent, decorators: [{
|
|
2176
2180
|
type: Component,
|
|
2177
2181
|
args: [{ selector: 'diagram-icon-signal', imports: [RaphaelIconSignalDirective], template: "<raphael-icon-signal\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
2178
2182
|
}], propDecorators: { fillColor: [{
|
|
@@ -2218,10 +2222,10 @@ class RaphaelIconMessageDirective extends RaphaelBase {
|
|
|
2218
2222
|
});
|
|
2219
2223
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
2220
2224
|
}
|
|
2221
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2222
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2225
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconMessageDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2226
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconMessageDirective, isStandalone: true, selector: "adf-raphael-icon-message, raphael-icon-message", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
2223
2227
|
}
|
|
2224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconMessageDirective, decorators: [{
|
|
2225
2229
|
type: Directive,
|
|
2226
2230
|
args: [{
|
|
2227
2231
|
selector: 'adf-raphael-icon-message, raphael-icon-message'
|
|
@@ -2272,10 +2276,10 @@ class DiagramIconMessageComponent extends DiagramElement {
|
|
|
2272
2276
|
this.options.fillColors = '#585858';
|
|
2273
2277
|
this.options.strokeWidth = 1;
|
|
2274
2278
|
}
|
|
2275
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2276
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2279
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconMessageComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2280
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconMessageComponent, isStandalone: true, selector: "diagram-icon-message", usesInheritance: true, ngImport: i0, template: "<raphael-icon-message\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconMessageDirective, selector: "adf-raphael-icon-message, raphael-icon-message", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
2277
2281
|
}
|
|
2278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2282
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconMessageComponent, decorators: [{
|
|
2279
2283
|
type: Component,
|
|
2280
2284
|
args: [{ selector: 'diagram-icon-message', imports: [RaphaelIconMessageDirective], template: "<raphael-icon-message\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
2281
2285
|
}] });
|
|
@@ -2298,10 +2302,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
2298
2302
|
*/
|
|
2299
2303
|
/* eslint-disable @angular-eslint/component-selector */
|
|
2300
2304
|
class DiagramContainerIconEventTaskComponent extends DiagramElement {
|
|
2301
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2302
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2305
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramContainerIconEventTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2306
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramContainerIconEventTaskComponent, isStandalone: true, selector: "diagram-container-icon-event", inputs: { type: "type", fillColor: "fillColor" }, usesInheritance: true, ngImport: i0, template: "<div [ngSwitch]=\"type\">\n <div *ngSwitchCase=\"'timer'\">\n <diagram-icon-timer [data]=\"data\" />\n </div>\n <div *ngSwitchCase=\"'error'\">\n <diagram-icon-error [data]=\"data\" [fillColor]=\"fillColor\" />\n </div>\n <div *ngSwitchCase=\"'signal'\">\n <diagram-icon-signal [data]=\"data\" [fillColor]=\"fillColor\" />\n </div>\n <div *ngSwitchCase=\"'message'\">\n <diagram-icon-message [data]=\"data\" />\n </div>\n</div>", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: DiagramIconTimerComponent, selector: "diagram-icon-timer" }, { kind: "component", type: DiagramIconErrorComponent, selector: "diagram-icon-error", inputs: ["fillColor"] }, { kind: "component", type: DiagramIconSignalComponent, selector: "diagram-icon-signal", inputs: ["fillColor"] }, { kind: "component", type: DiagramIconMessageComponent, selector: "diagram-icon-message" }] }); }
|
|
2303
2307
|
}
|
|
2304
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramContainerIconEventTaskComponent, decorators: [{
|
|
2305
2309
|
type: Component,
|
|
2306
2310
|
args: [{ selector: 'diagram-container-icon-event', imports: [CommonModule, DiagramIconTimerComponent, DiagramIconErrorComponent, DiagramIconSignalComponent, DiagramIconMessageComponent], template: "<div [ngSwitch]=\"type\">\n <div *ngSwitchCase=\"'timer'\">\n <diagram-icon-timer [data]=\"data\" />\n </div>\n <div *ngSwitchCase=\"'error'\">\n <diagram-icon-error [data]=\"data\" [fillColor]=\"fillColor\" />\n </div>\n <div *ngSwitchCase=\"'signal'\">\n <diagram-icon-signal [data]=\"data\" [fillColor]=\"fillColor\" />\n </div>\n <div *ngSwitchCase=\"'message'\">\n <diagram-icon-message [data]=\"data\" />\n </div>\n</div>" }]
|
|
2307
2311
|
}], propDecorators: { type: [{
|
|
@@ -2337,10 +2341,10 @@ class DiagramEventComponent extends DiagramElement {
|
|
|
2337
2341
|
this.center.x = this.data.x + this.data.width / 2;
|
|
2338
2342
|
this.center.y = this.data.y + this.data.height / 2;
|
|
2339
2343
|
}
|
|
2340
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2341
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2344
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramEventComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2345
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramEventComponent, isStandalone: true, selector: "diagram-event", inputs: { options: "options", iconFillColor: "iconFillColor" }, usesInheritance: true, ngImport: i0, template: "<raphael-circle\n [elementId]=\"data.id\"\n [center]=\"center\"\n [radius]=\"options.radius\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-container-icon-event\n [data]=\"data\"\n [type]=\"data.eventDefinition && data.eventDefinition.type\"\n [fillColor]=\"iconFillColor\"\n/>\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }, { kind: "component", type: DiagramContainerIconEventTaskComponent, selector: "diagram-container-icon-event", inputs: ["type", "fillColor"] }, { kind: "directive", type: RaphaelCircleDirective, selector: "adf-raphael-circle, raphael-circle", inputs: ["paper", "center", "radius", "strokeWidth", "fillColors", "stroke", "fillOpacity", "elementId"], outputs: ["error"] }] }); }
|
|
2342
2346
|
}
|
|
2343
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2347
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramEventComponent, decorators: [{
|
|
2344
2348
|
type: Component,
|
|
2345
2349
|
args: [{ selector: 'diagram-event', imports: [DiagramTooltipComponent, DiagramContainerIconEventTaskComponent, RaphaelCircleDirective], template: "<raphael-circle\n [elementId]=\"data.id\"\n [center]=\"center\"\n [radius]=\"options.radius\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-container-icon-event\n [data]=\"data\"\n [type]=\"data.eventDefinition && data.eventDefinition.type\"\n [fillColor]=\"iconFillColor\"\n/>\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
2346
2350
|
}], propDecorators: { options: [{
|
|
@@ -2379,10 +2383,10 @@ class DiagramStartEventComponent extends DiagramElement {
|
|
|
2379
2383
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
2380
2384
|
this.iconFillColor = 'none';
|
|
2381
2385
|
}
|
|
2382
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2383
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2386
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramStartEventComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2387
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramStartEventComponent, isStandalone: true, selector: "diagram-start-event", usesInheritance: true, ngImport: i0, template: "<diagram-event [data]=\"data\" [options]=\"options\" [iconFillColor]=\"iconFillColor\" />", dependencies: [{ kind: "component", type: DiagramEventComponent, selector: "diagram-event", inputs: ["options", "iconFillColor"] }] }); }
|
|
2384
2388
|
}
|
|
2385
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramStartEventComponent, decorators: [{
|
|
2386
2390
|
type: Component,
|
|
2387
2391
|
args: [{ selector: 'diagram-start-event', imports: [DiagramEventComponent], template: "<diagram-event [data]=\"data\" [options]=\"options\" [iconFillColor]=\"iconFillColor\" />" }]
|
|
2388
2392
|
}] });
|
|
@@ -2442,10 +2446,10 @@ class RaphaelRhombusDirective extends RaphaelBase {
|
|
|
2442
2446
|
'z')
|
|
2443
2447
|
.attr(opts);
|
|
2444
2448
|
}
|
|
2445
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2446
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2449
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelRhombusDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2450
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelRhombusDirective, isStandalone: true, selector: "adf-raphael-rhombus, raphael-rhombus", inputs: { center: "center", width: "width", height: "height", fillColors: "fillColors", stroke: "stroke", strokeWidth: "strokeWidth", fillOpacity: "fillOpacity", elementId: "elementId" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
2447
2451
|
}
|
|
2448
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelRhombusDirective, decorators: [{
|
|
2449
2453
|
type: Directive,
|
|
2450
2454
|
args: [{
|
|
2451
2455
|
selector: 'adf-raphael-rhombus, raphael-rhombus'
|
|
@@ -2502,10 +2506,10 @@ class DiagramGatewayComponent extends DiagramElement {
|
|
|
2502
2506
|
this.options.fillColors = this.diagramColorService.getFillColour(this.data.id);
|
|
2503
2507
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
2504
2508
|
}
|
|
2505
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2506
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2509
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramGatewayComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2510
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramGatewayComponent, isStandalone: true, selector: "diagram-gateway", usesInheritance: true, ngImport: i0, template: "<raphael-rhombus\n [elementId]=\"data.id\"\n [center]=\"center\"\n [width]=\"width\"\n [height]=\"height\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }, { kind: "directive", type: RaphaelRhombusDirective, selector: "adf-raphael-rhombus, raphael-rhombus", inputs: ["center", "width", "height", "fillColors", "stroke", "strokeWidth", "fillOpacity", "elementId"], outputs: ["error"] }] }); }
|
|
2507
2511
|
}
|
|
2508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramGatewayComponent, decorators: [{
|
|
2509
2513
|
type: Component,
|
|
2510
2514
|
args: [{ selector: 'diagram-gateway', imports: [DiagramTooltipComponent, RaphaelRhombusDirective], template: "<raphael-rhombus\n [elementId]=\"data.id\"\n [center]=\"center\"\n [width]=\"width\"\n [height]=\"height\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
2511
2515
|
}] });
|
|
@@ -2565,10 +2569,10 @@ class RaphaelCrossDirective extends RaphaelBase {
|
|
|
2565
2569
|
(center.y + quarterHeight + 3))
|
|
2566
2570
|
.attr(opts);
|
|
2567
2571
|
}
|
|
2568
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2569
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2572
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelCrossDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2573
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelCrossDirective, isStandalone: true, selector: "adf-raphael-cross, raphael-cross", inputs: { center: "center", width: "width", height: "height", fillColors: "fillColors", stroke: "stroke", strokeWidth: "strokeWidth", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
2570
2574
|
}
|
|
2571
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2575
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelCrossDirective, decorators: [{
|
|
2572
2576
|
type: Directive,
|
|
2573
2577
|
args: [{
|
|
2574
2578
|
selector: 'adf-raphael-cross, raphael-cross'
|
|
@@ -2623,10 +2627,10 @@ class DiagramExclusiveGatewayComponent extends DiagramElement {
|
|
|
2623
2627
|
this.options.fillColors = this.diagramColorService.getFillColour(this.data.id);
|
|
2624
2628
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
2625
2629
|
}
|
|
2626
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2627
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2630
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramExclusiveGatewayComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2631
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramExclusiveGatewayComponent, isStandalone: true, selector: "diagram-exclusive-gateway", usesInheritance: true, ngImport: i0, template: "<diagram-gateway [data]=\"data\" />\n<raphael-cross\n [center]=\"center\"\n [width]=\"width\"\n [height]=\"height\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "component", type: DiagramGatewayComponent, selector: "diagram-gateway" }, { kind: "directive", type: RaphaelCrossDirective, selector: "adf-raphael-cross, raphael-cross", inputs: ["center", "width", "height", "fillColors", "stroke", "strokeWidth", "fillOpacity"], outputs: ["error"] }] }); }
|
|
2628
2632
|
}
|
|
2629
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramExclusiveGatewayComponent, decorators: [{
|
|
2630
2634
|
type: Component,
|
|
2631
2635
|
args: [{ selector: 'diagram-exclusive-gateway', imports: [DiagramGatewayComponent, RaphaelCrossDirective], template: "<diagram-gateway [data]=\"data\" />\n<raphael-cross\n [center]=\"center\"\n [width]=\"width\"\n [height]=\"height\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
2632
2636
|
}] });
|
|
@@ -2661,10 +2665,10 @@ class DiagramInclusiveGatewayComponent extends DiagramElement {
|
|
|
2661
2665
|
this.options.fillColors = this.diagramColorService.getFillColour(this.data.id);
|
|
2662
2666
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
2663
2667
|
}
|
|
2664
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2665
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2668
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramInclusiveGatewayComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2669
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramInclusiveGatewayComponent, isStandalone: true, selector: "diagram-inclusive-gateway", usesInheritance: true, ngImport: i0, template: "<diagram-gateway [data]=\"data\" />\n<raphael-circle\n [center]=\"center\"\n [radius]=\"options.radius\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "component", type: DiagramGatewayComponent, selector: "diagram-gateway" }, { kind: "directive", type: RaphaelCircleDirective, selector: "adf-raphael-circle, raphael-circle", inputs: ["paper", "center", "radius", "strokeWidth", "fillColors", "stroke", "fillOpacity", "elementId"], outputs: ["error"] }] }); }
|
|
2666
2670
|
}
|
|
2667
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramInclusiveGatewayComponent, decorators: [{
|
|
2668
2672
|
type: Component,
|
|
2669
2673
|
args: [{ selector: 'diagram-inclusive-gateway', imports: [DiagramGatewayComponent, RaphaelCircleDirective], template: "<diagram-gateway [data]=\"data\" />\n<raphael-circle\n [center]=\"center\"\n [radius]=\"options.radius\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
2670
2674
|
}] });
|
|
@@ -2710,10 +2714,10 @@ class RaphaelPentagonDirective extends RaphaelBase {
|
|
|
2710
2714
|
.attr(opts);
|
|
2711
2715
|
shape.transform('T' + (center.x + 4) + ',' + (center.y + 4));
|
|
2712
2716
|
}
|
|
2713
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2714
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2717
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelPentagonDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2718
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelPentagonDirective, isStandalone: true, selector: "adf-raphael-pentagon, raphael-pentagon", inputs: { center: "center", fillColors: "fillColors", stroke: "stroke", strokeWidth: "strokeWidth", fillOpacity: "fillOpacity", strokeLinejoin: "strokeLinejoin" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
2715
2719
|
}
|
|
2716
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2720
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelPentagonDirective, decorators: [{
|
|
2717
2721
|
type: Directive,
|
|
2718
2722
|
args: [{
|
|
2719
2723
|
selector: 'adf-raphael-pentagon, raphael-pentagon'
|
|
@@ -2770,10 +2774,10 @@ class DiagramEventGatewayComponent extends DiagramElement {
|
|
|
2770
2774
|
this.options.fillColors = this.diagramColorService.getFillColour(this.data.id);
|
|
2771
2775
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
2772
2776
|
}
|
|
2773
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2774
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2777
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramEventGatewayComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2778
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramEventGatewayComponent, isStandalone: true, selector: "diagram-event-gateway", usesInheritance: true, ngImport: i0, template: "<diagram-gateway [data]=\"data\" />\n<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadiusInner\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadiusOuter\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-pentagon\n [center]=\"centerPentagon\"\n [strokeWidth]=\"pentaStrokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "component", type: DiagramGatewayComponent, selector: "diagram-gateway" }, { kind: "directive", type: RaphaelCircleDirective, selector: "adf-raphael-circle, raphael-circle", inputs: ["paper", "center", "radius", "strokeWidth", "fillColors", "stroke", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "directive", type: RaphaelPentagonDirective, selector: "adf-raphael-pentagon, raphael-pentagon", inputs: ["center", "fillColors", "stroke", "strokeWidth", "fillOpacity", "strokeLinejoin"], outputs: ["error"] }] }); }
|
|
2775
2779
|
}
|
|
2776
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramEventGatewayComponent, decorators: [{
|
|
2777
2781
|
type: Component,
|
|
2778
2782
|
args: [{ selector: 'diagram-event-gateway', imports: [DiagramGatewayComponent, RaphaelCircleDirective, RaphaelPentagonDirective], template: "<diagram-gateway [data]=\"data\" />\n<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadiusInner\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadiusOuter\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-pentagon\n [center]=\"centerPentagon\"\n [strokeWidth]=\"pentaStrokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
2779
2783
|
}] });
|
|
@@ -2815,10 +2819,10 @@ class RaphaelPlusDirective extends RaphaelBase {
|
|
|
2815
2819
|
const path = this.paper.path('M 6.75,16 L 25.75,16 M 16,6.75 L 16,25.75').attr(opts);
|
|
2816
2820
|
return path.transform('T' + (center.x + 4) + ',' + (center.y + 4));
|
|
2817
2821
|
}
|
|
2818
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2819
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2822
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelPlusDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2823
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelPlusDirective, isStandalone: true, selector: "adf-raphael-plus, raphael-plus", inputs: { center: "center", fillColors: "fillColors", stroke: "stroke", strokeWidth: "strokeWidth", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
2820
2824
|
}
|
|
2821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelPlusDirective, decorators: [{
|
|
2822
2826
|
type: Directive,
|
|
2823
2827
|
args: [{
|
|
2824
2828
|
selector: 'adf-raphael-plus, raphael-plus'
|
|
@@ -2869,10 +2873,10 @@ class DiagramParallelGatewayComponent extends DiagramElement {
|
|
|
2869
2873
|
this.options.fillColors = this.diagramColorService.getFillColour(this.data.id);
|
|
2870
2874
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
2871
2875
|
}
|
|
2872
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2873
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2876
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramParallelGatewayComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2877
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramParallelGatewayComponent, isStandalone: true, selector: "diagram-parallel-gateway", usesInheritance: true, ngImport: i0, template: "<diagram-gateway [data]=\"data\" />\n<raphael-plus\n [center]=\"center\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "component", type: DiagramGatewayComponent, selector: "diagram-gateway" }, { kind: "directive", type: RaphaelPlusDirective, selector: "adf-raphael-plus, raphael-plus", inputs: ["center", "fillColors", "stroke", "strokeWidth", "fillOpacity"], outputs: ["error"] }] }); }
|
|
2874
2878
|
}
|
|
2875
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramParallelGatewayComponent, decorators: [{
|
|
2876
2880
|
type: Component,
|
|
2877
2881
|
args: [{ selector: 'diagram-parallel-gateway', imports: [DiagramGatewayComponent, RaphaelPlusDirective], template: "<diagram-gateway [data]=\"data\" />\n<raphael-plus\n [center]=\"center\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
2878
2882
|
}] });
|
|
@@ -2907,10 +2911,10 @@ class DiagramEndEventComponent extends DiagramElement {
|
|
|
2907
2911
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
2908
2912
|
this.iconFillColor = 'black';
|
|
2909
2913
|
}
|
|
2910
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2911
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
2914
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramEndEventComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2915
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramEndEventComponent, isStandalone: true, selector: "diagram-end-event", usesInheritance: true, ngImport: i0, template: "<diagram-event [data]=\"data\" [options]=\"options\" [iconFillColor]=\"iconFillColor\" />", dependencies: [{ kind: "component", type: DiagramEventComponent, selector: "diagram-event", inputs: ["options", "iconFillColor"] }] }); }
|
|
2912
2916
|
}
|
|
2913
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2917
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramEndEventComponent, decorators: [{
|
|
2914
2918
|
type: Component,
|
|
2915
2919
|
args: [{ selector: 'diagram-end-event', imports: [DiagramEventComponent], template: "<diagram-event [data]=\"data\" [options]=\"options\" [iconFillColor]=\"iconFillColor\" />" }]
|
|
2916
2920
|
}] });
|
|
@@ -2953,10 +2957,10 @@ class RaphaelRectDirective extends RaphaelBase {
|
|
|
2953
2957
|
draw(leftCorner, width, height, radius, opts) {
|
|
2954
2958
|
return this.paper.rect(leftCorner.x, leftCorner.y, width, height, radius).attr(opts);
|
|
2955
2959
|
}
|
|
2956
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2957
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2960
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelRectDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2961
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelRectDirective, isStandalone: true, selector: "adf-raphael-rect, raphael-rect", inputs: { paper: "paper", leftCorner: "leftCorner", width: "width", height: "height", radius: "radius", fillColors: "fillColors", stroke: "stroke", strokeWidth: "strokeWidth", fillOpacity: "fillOpacity", elementId: "elementId" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
2958
2962
|
}
|
|
2959
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelRectDirective, decorators: [{
|
|
2960
2964
|
type: Directive,
|
|
2961
2965
|
args: [{
|
|
2962
2966
|
selector: 'adf-raphael-rect, raphael-rect'
|
|
@@ -3055,10 +3059,10 @@ class RaphaelMultilineTextDirective extends RaphaelBase {
|
|
|
3055
3059
|
});
|
|
3056
3060
|
return formattedText.join('');
|
|
3057
3061
|
}
|
|
3058
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3059
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
3062
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelMultilineTextDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3063
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelMultilineTextDirective, isStandalone: true, selector: "adf-raphael-multiline-text, raphael-multiline-text", inputs: { paper: "paper", position: "position", transform: "transform", text: "text", elementWidth: "elementWidth" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
3060
3064
|
}
|
|
3061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3065
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelMultilineTextDirective, decorators: [{
|
|
3062
3066
|
type: Directive,
|
|
3063
3067
|
args: [{
|
|
3064
3068
|
selector: 'adf-raphael-multiline-text, raphael-multiline-text'
|
|
@@ -3107,10 +3111,10 @@ class DiagramTaskComponent extends DiagramElement {
|
|
|
3107
3111
|
this.options.strokeWidth = this.diagramColorService.getBpmnStrokeWidth(this.data);
|
|
3108
3112
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
3109
3113
|
}
|
|
3110
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3111
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3114
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3115
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramTaskComponent, isStandalone: true, selector: "diagram-task", usesInheritance: true, ngImport: i0, template: "<raphael-rect\n [elementId]=\"data.id\"\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"data.width\"\n [height]=\"data.height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-multiline-text [text]=\"data.name\" [position]=\"textPosition\" [elementWidth]=\"data.width\" />\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "directive", type: RaphaelRectDirective, selector: "adf-raphael-rect, raphael-rect", inputs: ["paper", "leftCorner", "width", "height", "radius", "fillColors", "stroke", "strokeWidth", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "directive", type: RaphaelMultilineTextDirective, selector: "adf-raphael-multiline-text, raphael-multiline-text", inputs: ["paper", "position", "transform", "text", "elementWidth"], outputs: ["error"] }, { kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }] }); }
|
|
3112
3116
|
}
|
|
3113
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramTaskComponent, decorators: [{
|
|
3114
3118
|
type: Component,
|
|
3115
3119
|
args: [{ selector: 'diagram-task', imports: [RaphaelRectDirective, RaphaelMultilineTextDirective, DiagramTooltipComponent], template: "<raphael-rect\n [elementId]=\"data.id\"\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"data.width\"\n [height]=\"data.height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-multiline-text [text]=\"data.name\" [position]=\"textPosition\" [elementWidth]=\"data.width\" />\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
3116
3120
|
}] });
|
|
@@ -3154,10 +3158,10 @@ class RaphaelIconUserDirective extends RaphaelBase {
|
|
|
3154
3158
|
});
|
|
3155
3159
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
3156
3160
|
}
|
|
3157
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3158
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
3161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconUserDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3162
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconUserDirective, isStandalone: true, selector: "adf-raphael-icon-user, raphael-icon-user", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
3159
3163
|
}
|
|
3160
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconUserDirective, decorators: [{
|
|
3161
3165
|
type: Directive,
|
|
3162
3166
|
args: [{
|
|
3163
3167
|
selector: 'adf-raphael-icon-user, raphael-icon-user'
|
|
@@ -3207,10 +3211,10 @@ class DiagramIconUserTaskComponent extends DiagramElement {
|
|
|
3207
3211
|
this.options.stroke = 'none';
|
|
3208
3212
|
this.options.fillColors = '#d1b575';
|
|
3209
3213
|
}
|
|
3210
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3211
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3214
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconUserTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3215
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconUserTaskComponent, isStandalone: true, selector: "diagram-icon-user-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-user\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconUserDirective, selector: "adf-raphael-icon-user, raphael-icon-user", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
3212
3216
|
}
|
|
3213
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3217
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconUserTaskComponent, decorators: [{
|
|
3214
3218
|
type: Component,
|
|
3215
3219
|
args: [{ selector: 'diagram-icon-user-task', imports: [RaphaelIconUserDirective], template: "<raphael-icon-user\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
3216
3220
|
}] });
|
|
@@ -3233,10 +3237,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3233
3237
|
*/
|
|
3234
3238
|
/* eslint-disable @angular-eslint/component-selector */
|
|
3235
3239
|
class DiagramUserTaskComponent extends DiagramElement {
|
|
3236
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3237
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3240
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramUserTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3241
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramUserTaskComponent, isStandalone: true, selector: "diagram-user-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-user-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconUserTaskComponent, selector: "diagram-icon-user-task" }] }); }
|
|
3238
3242
|
}
|
|
3239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramUserTaskComponent, decorators: [{
|
|
3240
3244
|
type: Component,
|
|
3241
3245
|
args: [{ selector: 'diagram-user-task', imports: [DiagramTaskComponent, DiagramIconUserTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-user-task [data]=\"data\" />" }]
|
|
3242
3246
|
}] });
|
|
@@ -3287,10 +3291,10 @@ class RaphaelIconManualDirective extends RaphaelBase {
|
|
|
3287
3291
|
});
|
|
3288
3292
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
3289
3293
|
}
|
|
3290
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3291
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
3294
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconManualDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3295
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconManualDirective, isStandalone: true, selector: "adf-raphael-icon-manual, raphael-icon-manual", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
3292
3296
|
}
|
|
3293
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconManualDirective, decorators: [{
|
|
3294
3298
|
type: Directive,
|
|
3295
3299
|
args: [{
|
|
3296
3300
|
selector: 'adf-raphael-icon-manual, raphael-icon-manual'
|
|
@@ -3340,10 +3344,10 @@ class DiagramIconManualTaskComponent extends DiagramElement {
|
|
|
3340
3344
|
this.options.stroke = 'none';
|
|
3341
3345
|
this.options.fillColors = '#d1b575';
|
|
3342
3346
|
}
|
|
3343
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3344
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3347
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconManualTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3348
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconManualTaskComponent, isStandalone: true, selector: "diagram-icon-manual-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-manual\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconManualDirective, selector: "adf-raphael-icon-manual, raphael-icon-manual", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
3345
3349
|
}
|
|
3346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconManualTaskComponent, decorators: [{
|
|
3347
3351
|
type: Component,
|
|
3348
3352
|
args: [{ selector: 'diagram-icon-manual-task', imports: [RaphaelIconManualDirective], template: "<raphael-icon-manual\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
3349
3353
|
}] });
|
|
@@ -3366,10 +3370,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3366
3370
|
*/
|
|
3367
3371
|
/* eslint-disable @angular-eslint/component-selector */
|
|
3368
3372
|
class DiagramManualTaskComponent extends DiagramElement {
|
|
3369
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3370
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3373
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramManualTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3374
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramManualTaskComponent, isStandalone: true, selector: "diagram-manual-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-manual-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconManualTaskComponent, selector: "diagram-icon-manual-task" }] }); }
|
|
3371
3375
|
}
|
|
3372
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramManualTaskComponent, decorators: [{
|
|
3373
3377
|
type: Component,
|
|
3374
3378
|
args: [{ selector: 'diagram-manual-task', imports: [DiagramTaskComponent, DiagramIconManualTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-manual-task [data]=\"data\" />" }]
|
|
3375
3379
|
}] });
|
|
@@ -3411,10 +3415,10 @@ class RaphaelIconSendDirective extends RaphaelBase {
|
|
|
3411
3415
|
});
|
|
3412
3416
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
3413
3417
|
}
|
|
3414
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3415
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
3418
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconSendDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3419
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconSendDirective, isStandalone: true, selector: "adf-raphael-icon-send, raphael-icon-send", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
3416
3420
|
}
|
|
3417
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconSendDirective, decorators: [{
|
|
3418
3422
|
type: Directive,
|
|
3419
3423
|
args: [{
|
|
3420
3424
|
selector: 'adf-raphael-icon-send, raphael-icon-send'
|
|
@@ -3464,10 +3468,10 @@ class DiagramIconSendTaskComponent extends DiagramElement {
|
|
|
3464
3468
|
this.options.stroke = 'none';
|
|
3465
3469
|
this.options.fillColors = '#16964d';
|
|
3466
3470
|
}
|
|
3467
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3468
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3471
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconSendTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3472
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconSendTaskComponent, isStandalone: true, selector: "diagram-icon-send-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-send\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "directive", type: RaphaelIconSendDirective, selector: "adf-raphael-icon-send, raphael-icon-send", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }, { kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }] }); }
|
|
3469
3473
|
}
|
|
3470
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconSendTaskComponent, decorators: [{
|
|
3471
3475
|
type: Component,
|
|
3472
3476
|
args: [{ selector: 'diagram-icon-send-task', imports: [RaphaelIconSendDirective, DiagramTooltipComponent], template: "<raphael-icon-send\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
3473
3477
|
}] });
|
|
@@ -3490,10 +3494,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3490
3494
|
*/
|
|
3491
3495
|
/* eslint-disable @angular-eslint/component-selector */
|
|
3492
3496
|
class DiagramSendTaskComponent extends DiagramElement {
|
|
3493
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3494
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3497
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramSendTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3498
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramSendTaskComponent, isStandalone: true, selector: "diagram-send-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-send-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconSendTaskComponent, selector: "diagram-icon-send-task" }] }); }
|
|
3495
3499
|
}
|
|
3496
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3500
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramSendTaskComponent, decorators: [{
|
|
3497
3501
|
type: Component,
|
|
3498
3502
|
args: [{ selector: 'diagram-send-task', imports: [DiagramTaskComponent, DiagramIconSendTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-send-task [data]=\"data\" />" }]
|
|
3499
3503
|
}] });
|
|
@@ -3553,10 +3557,10 @@ class RaphaelIconCamelDirective extends RaphaelBase {
|
|
|
3553
3557
|
});
|
|
3554
3558
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
3555
3559
|
}
|
|
3556
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3557
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
3560
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconCamelDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3561
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconCamelDirective, isStandalone: true, selector: "adf-raphael-icon-camel, raphael-icon-camel", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
3558
3562
|
}
|
|
3559
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3563
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconCamelDirective, decorators: [{
|
|
3560
3564
|
type: Directive,
|
|
3561
3565
|
args: [{
|
|
3562
3566
|
selector: 'adf-raphael-icon-camel, raphael-icon-camel'
|
|
@@ -3606,10 +3610,10 @@ class DiagramIconCamelTaskComponent extends DiagramElement {
|
|
|
3606
3610
|
this.options.stroke = 'none';
|
|
3607
3611
|
this.options.fillColors = '#bd4848';
|
|
3608
3612
|
}
|
|
3609
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3610
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3613
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconCamelTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3614
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconCamelTaskComponent, isStandalone: true, selector: "diagram-icon-camel-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-camel\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconCamelDirective, selector: "adf-raphael-icon-camel, raphael-icon-camel", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
3611
3615
|
}
|
|
3612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconCamelTaskComponent, decorators: [{
|
|
3613
3617
|
type: Component,
|
|
3614
3618
|
args: [{ selector: 'diagram-icon-camel-task', imports: [RaphaelIconCamelDirective], template: "<raphael-icon-camel\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
3615
3619
|
}] });
|
|
@@ -3632,10 +3636,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3632
3636
|
*/
|
|
3633
3637
|
/* eslint-disable @angular-eslint/component-selector */
|
|
3634
3638
|
class DiagramCamelTaskComponent extends DiagramElement {
|
|
3635
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3636
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3639
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramCamelTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3640
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramCamelTaskComponent, isStandalone: true, selector: "diagram-camel-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-camel-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconCamelTaskComponent, selector: "diagram-icon-camel-task" }] }); }
|
|
3637
3641
|
}
|
|
3638
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramCamelTaskComponent, decorators: [{
|
|
3639
3643
|
type: Component,
|
|
3640
3644
|
args: [{ selector: 'diagram-camel-task', imports: [DiagramTaskComponent, DiagramIconCamelTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-camel-task [data]=\"data\" />" }]
|
|
3641
3645
|
}] });
|
|
@@ -3681,10 +3685,10 @@ class RaphaelIconMuleDirective extends RaphaelBase {
|
|
|
3681
3685
|
});
|
|
3682
3686
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
3683
3687
|
}
|
|
3684
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3685
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
3688
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconMuleDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3689
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconMuleDirective, isStandalone: true, selector: "adf-raphael-icon-mule, raphael-icon-mule", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
3686
3690
|
}
|
|
3687
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconMuleDirective, decorators: [{
|
|
3688
3692
|
type: Directive,
|
|
3689
3693
|
args: [{
|
|
3690
3694
|
selector: 'adf-raphael-icon-mule, raphael-icon-mule'
|
|
@@ -3734,10 +3738,10 @@ class DiagramIconMuleTaskComponent extends DiagramElement {
|
|
|
3734
3738
|
this.options.stroke = 'none';
|
|
3735
3739
|
this.options.fillColors = '#bd4848';
|
|
3736
3740
|
}
|
|
3737
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3738
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3741
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconMuleTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3742
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconMuleTaskComponent, isStandalone: true, selector: "diagram-icon-mule-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-mule\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconMuleDirective, selector: "adf-raphael-icon-mule, raphael-icon-mule", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
3739
3743
|
}
|
|
3740
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconMuleTaskComponent, decorators: [{
|
|
3741
3745
|
type: Component,
|
|
3742
3746
|
args: [{ selector: 'diagram-icon-mule-task', imports: [RaphaelIconMuleDirective], template: "<raphael-icon-mule\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
3743
3747
|
}] });
|
|
@@ -3760,10 +3764,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3760
3764
|
*/
|
|
3761
3765
|
/* eslint-disable @angular-eslint/component-selector */
|
|
3762
3766
|
class DiagramMuleTaskComponent extends DiagramElement {
|
|
3763
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3764
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3767
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramMuleTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3768
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramMuleTaskComponent, isStandalone: true, selector: "diagram-mule-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-mule-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconMuleTaskComponent, selector: "diagram-icon-mule-task" }] }); }
|
|
3765
3769
|
}
|
|
3766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3770
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramMuleTaskComponent, decorators: [{
|
|
3767
3771
|
type: Component,
|
|
3768
3772
|
args: [{ selector: 'diagram-mule-task', imports: [DiagramTaskComponent, DiagramIconMuleTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-mule-task [data]=\"data\" />" }]
|
|
3769
3773
|
}] });
|
|
@@ -3923,10 +3927,10 @@ class RaphaelIconAlfrescoPublishDirective extends RaphaelBase {
|
|
|
3923
3927
|
});
|
|
3924
3928
|
path1.transform('T' + startX + ',' + startY);
|
|
3925
3929
|
}
|
|
3926
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3927
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
3930
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconAlfrescoPublishDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3931
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconAlfrescoPublishDirective, isStandalone: true, selector: "adf-raphael-icon-alfresco-publish, raphael-icon-alfresco-publish", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
3928
3932
|
}
|
|
3929
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3933
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconAlfrescoPublishDirective, decorators: [{
|
|
3930
3934
|
type: Directive,
|
|
3931
3935
|
args: [{
|
|
3932
3936
|
selector: 'adf-raphael-icon-alfresco-publish, raphael-icon-alfresco-publish'
|
|
@@ -3976,10 +3980,10 @@ class DiagramIconAlfrescoPublishTaskComponent extends DiagramElement {
|
|
|
3976
3980
|
this.options.stroke = 'none';
|
|
3977
3981
|
this.options.fillColors = '#87C040';
|
|
3978
3982
|
}
|
|
3979
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3980
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
3983
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconAlfrescoPublishTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3984
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconAlfrescoPublishTaskComponent, isStandalone: true, selector: "diagram-icon-alfresco-publish-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-alfresco-publish\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconAlfrescoPublishDirective, selector: "adf-raphael-icon-alfresco-publish, raphael-icon-alfresco-publish", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
3981
3985
|
}
|
|
3982
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconAlfrescoPublishTaskComponent, decorators: [{
|
|
3983
3987
|
type: Component,
|
|
3984
3988
|
args: [{ selector: 'diagram-icon-alfresco-publish-task', imports: [RaphaelIconAlfrescoPublishDirective], template: "<raphael-icon-alfresco-publish\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
3985
3989
|
}] });
|
|
@@ -4001,10 +4005,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4001
4005
|
* limitations under the License.
|
|
4002
4006
|
*/
|
|
4003
4007
|
class DiagramAlfrescoPublishTaskComponent extends DiagramElement {
|
|
4004
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4005
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4008
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramAlfrescoPublishTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4009
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramAlfrescoPublishTaskComponent, isStandalone: true, selector: "adf-diagram-publish-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-alfresco-publish-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconAlfrescoPublishTaskComponent, selector: "diagram-icon-alfresco-publish-task" }] }); }
|
|
4006
4010
|
}
|
|
4007
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4011
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramAlfrescoPublishTaskComponent, decorators: [{
|
|
4008
4012
|
type: Component,
|
|
4009
4013
|
args: [{ selector: 'adf-diagram-publish-task', imports: [DiagramTaskComponent, DiagramIconAlfrescoPublishTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-alfresco-publish-task [data]=\"data\" />" }]
|
|
4010
4014
|
}] });
|
|
@@ -4054,10 +4058,10 @@ class RaphaelIconRestCallDirective extends RaphaelBase {
|
|
|
4054
4058
|
});
|
|
4055
4059
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
4056
4060
|
}
|
|
4057
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4058
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
4061
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconRestCallDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4062
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconRestCallDirective, isStandalone: true, selector: "adf-raphael-icon-rest-call, raphael-icon-rest-call", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
4059
4063
|
}
|
|
4060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4064
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconRestCallDirective, decorators: [{
|
|
4061
4065
|
type: Directive,
|
|
4062
4066
|
args: [{
|
|
4063
4067
|
selector: 'adf-raphael-icon-rest-call, raphael-icon-rest-call'
|
|
@@ -4107,10 +4111,10 @@ class DiagramIconRestCallTaskComponent extends DiagramElement {
|
|
|
4107
4111
|
this.options.stroke = 'none';
|
|
4108
4112
|
this.options.fillColors = '#bd4848';
|
|
4109
4113
|
}
|
|
4110
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4111
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4114
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconRestCallTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4115
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconRestCallTaskComponent, isStandalone: true, selector: "diagram-icon-rest-call-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-rest-call\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconRestCallDirective, selector: "adf-raphael-icon-rest-call, raphael-icon-rest-call", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
4112
4116
|
}
|
|
4113
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconRestCallTaskComponent, decorators: [{
|
|
4114
4118
|
type: Component,
|
|
4115
4119
|
args: [{ selector: 'diagram-icon-rest-call-task', imports: [RaphaelIconRestCallDirective], template: "<raphael-icon-rest-call\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
4116
4120
|
}] });
|
|
@@ -4133,10 +4137,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4133
4137
|
*/
|
|
4134
4138
|
/* eslint-disable @angular-eslint/component-selector */
|
|
4135
4139
|
class DiagramRestCallTaskComponent extends DiagramElement {
|
|
4136
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4137
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4140
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramRestCallTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4141
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramRestCallTaskComponent, isStandalone: true, selector: "diagram-rest-call-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-rest-call-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconRestCallTaskComponent, selector: "diagram-icon-rest-call-task" }] }); }
|
|
4138
4142
|
}
|
|
4139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramRestCallTaskComponent, decorators: [{
|
|
4140
4144
|
type: Component,
|
|
4141
4145
|
args: [{ selector: 'diagram-rest-call-task', imports: [DiagramTaskComponent, DiagramIconRestCallTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-rest-call-task [data]=\"data\" />" }]
|
|
4142
4146
|
}] });
|
|
@@ -4186,10 +4190,10 @@ class RaphaelIconGoogleDrivePublishDirective extends RaphaelBase {
|
|
|
4186
4190
|
ZCVeClnhIwqC5Pb08Kp3CgBUxT4PINc4u+u54uY8FLfXLQa+sx0dRNV2eXSi6OzryK2c7Wkl0msB5OuG0JVsOvnqL03+DT8BxkC5RkIpSlIAAAAASUVORK5CYII=`
|
|
4187
4191
|
});
|
|
4188
4192
|
}
|
|
4189
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4190
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
4193
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconGoogleDrivePublishDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4194
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconGoogleDrivePublishDirective, isStandalone: true, selector: "adf-raphael-icon-google-drive-publish, raphael-icon-google-drive-publish", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
4191
4195
|
}
|
|
4192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4196
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconGoogleDrivePublishDirective, decorators: [{
|
|
4193
4197
|
type: Directive,
|
|
4194
4198
|
args: [{
|
|
4195
4199
|
selector: 'adf-raphael-icon-google-drive-publish, raphael-icon-google-drive-publish'
|
|
@@ -4237,10 +4241,10 @@ class DiagramIconGoogleDrivePublishTaskComponent extends DiagramElement {
|
|
|
4237
4241
|
ngOnInit() {
|
|
4238
4242
|
this.position = { x: this.data.x + 6, y: this.data.y + 6 };
|
|
4239
4243
|
}
|
|
4240
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4241
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4244
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconGoogleDrivePublishTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4245
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconGoogleDrivePublishTaskComponent, isStandalone: true, selector: "diagram-icon-google-drive-publish-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-google-drive-publish\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconGoogleDrivePublishDirective, selector: "adf-raphael-icon-google-drive-publish, raphael-icon-google-drive-publish", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
4242
4246
|
}
|
|
4243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconGoogleDrivePublishTaskComponent, decorators: [{
|
|
4244
4248
|
type: Component,
|
|
4245
4249
|
args: [{ selector: 'diagram-icon-google-drive-publish-task', imports: [RaphaelIconGoogleDrivePublishDirective], template: "<raphael-icon-google-drive-publish\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
4246
4250
|
}] });
|
|
@@ -4263,10 +4267,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4263
4267
|
*/
|
|
4264
4268
|
/* eslint-disable @angular-eslint/component-selector */
|
|
4265
4269
|
class DiagramGoogleDrivePublishTaskComponent extends DiagramElement {
|
|
4266
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4267
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4270
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramGoogleDrivePublishTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4271
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramGoogleDrivePublishTaskComponent, isStandalone: true, selector: "diagram-google-drive-publish-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-google-drive-publish-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconGoogleDrivePublishTaskComponent, selector: "diagram-icon-google-drive-publish-task" }] }); }
|
|
4268
4272
|
}
|
|
4269
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4273
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramGoogleDrivePublishTaskComponent, decorators: [{
|
|
4270
4274
|
type: Component,
|
|
4271
4275
|
args: [{ selector: 'diagram-google-drive-publish-task', imports: [DiagramTaskComponent, DiagramIconGoogleDrivePublishTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-google-drive-publish-task [data]=\"data\" />" }]
|
|
4272
4276
|
}] });
|
|
@@ -4340,10 +4344,10 @@ class RaphaelIconBoxPublishDirective extends RaphaelBase {
|
|
|
4340
4344
|
F7753O8D8NHHR9rO nL+wZ2pqYl0cxyoIoqsm0LK49ehKKLNGp3gE1JRF+9qoU3JBIDVVuZGvffWLZ2oa7rgCcPLMBe7f 0c3/APbD8KaWhlC3AAAAAElFTkSuQmCC`
|
|
4341
4345
|
});
|
|
4342
4346
|
}
|
|
4343
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4344
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
4347
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconBoxPublishDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4348
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconBoxPublishDirective, isStandalone: true, selector: "adf-raphael-icon-box-publish, raphael-icon-box-publish", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
4345
4349
|
}
|
|
4346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconBoxPublishDirective, decorators: [{
|
|
4347
4351
|
type: Directive,
|
|
4348
4352
|
args: [{
|
|
4349
4353
|
selector: 'adf-raphael-icon-box-publish, raphael-icon-box-publish'
|
|
@@ -4391,10 +4395,10 @@ class DiagramIconBoxPublishTaskComponent extends DiagramElement {
|
|
|
4391
4395
|
ngOnInit() {
|
|
4392
4396
|
this.position = { x: this.data.x + 6, y: this.data.y + 6 };
|
|
4393
4397
|
}
|
|
4394
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4395
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4398
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconBoxPublishTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4399
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconBoxPublishTaskComponent, isStandalone: true, selector: "diagram-icon-box-publish-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-box-publish\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconBoxPublishDirective, selector: "adf-raphael-icon-box-publish, raphael-icon-box-publish", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
4396
4400
|
}
|
|
4397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconBoxPublishTaskComponent, decorators: [{
|
|
4398
4402
|
type: Component,
|
|
4399
4403
|
args: [{ selector: 'diagram-icon-box-publish-task', imports: [RaphaelIconBoxPublishDirective], template: "<raphael-icon-box-publish\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
4400
4404
|
}] });
|
|
@@ -4417,10 +4421,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4417
4421
|
*/
|
|
4418
4422
|
/* eslint-disable @angular-eslint/component-selector */
|
|
4419
4423
|
class DiagramBoxPublishTaskComponent extends DiagramElement {
|
|
4420
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4421
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4424
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramBoxPublishTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4425
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramBoxPublishTaskComponent, isStandalone: true, selector: "diagram-box-publish-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-box-publish-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconBoxPublishTaskComponent, selector: "diagram-icon-box-publish-task" }] }); }
|
|
4422
4426
|
}
|
|
4423
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramBoxPublishTaskComponent, decorators: [{
|
|
4424
4428
|
type: Component,
|
|
4425
4429
|
args: [{ selector: 'diagram-box-publish-task', imports: [DiagramTaskComponent, DiagramIconBoxPublishTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-box-publish-task [data]=\"data\" />" }]
|
|
4426
4430
|
}] });
|
|
@@ -4479,10 +4483,10 @@ class RaphaelIconServiceDirective extends RaphaelBase {
|
|
|
4479
4483
|
});
|
|
4480
4484
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
4481
4485
|
}
|
|
4482
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4483
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
4486
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconServiceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4487
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconServiceDirective, isStandalone: true, selector: "adf-raphael-icon-service, raphael-icon-service", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
4484
4488
|
}
|
|
4485
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconServiceDirective, decorators: [{
|
|
4486
4490
|
type: Directive,
|
|
4487
4491
|
args: [{
|
|
4488
4492
|
selector: 'adf-raphael-icon-service, raphael-icon-service'
|
|
@@ -4532,10 +4536,10 @@ class DiagramIconServiceTaskComponent extends DiagramElement {
|
|
|
4532
4536
|
this.options.stroke = 'none';
|
|
4533
4537
|
this.options.fillColors = '#72a7d0';
|
|
4534
4538
|
}
|
|
4535
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4536
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4539
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconServiceTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4540
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconServiceTaskComponent, isStandalone: true, selector: "diagram-icon-service-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-service\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconServiceDirective, selector: "adf-raphael-icon-service, raphael-icon-service", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
4537
4541
|
}
|
|
4538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconServiceTaskComponent, decorators: [{
|
|
4539
4543
|
type: Component,
|
|
4540
4544
|
args: [{ selector: 'diagram-icon-service-task', imports: [RaphaelIconServiceDirective], template: "<raphael-icon-service\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
4541
4545
|
}] });
|
|
@@ -4558,10 +4562,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4558
4562
|
*/
|
|
4559
4563
|
/* eslint-disable @angular-eslint/component-selector */
|
|
4560
4564
|
class DiagramServiceTaskComponent extends DiagramElement {
|
|
4561
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4562
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4565
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramServiceTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4566
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramServiceTaskComponent, isStandalone: true, selector: "diagram-service-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-service-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconServiceTaskComponent, selector: "diagram-icon-service-task" }] }); }
|
|
4563
4567
|
}
|
|
4564
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramServiceTaskComponent, decorators: [{
|
|
4565
4569
|
type: Component,
|
|
4566
4570
|
args: [{ selector: 'diagram-service-task', imports: [DiagramTaskComponent, DiagramIconServiceTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-service-task [data]=\"data\" />" }]
|
|
4567
4571
|
}] });
|
|
@@ -4584,10 +4588,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4584
4588
|
*/
|
|
4585
4589
|
/* eslint-disable @angular-eslint/component-selector */
|
|
4586
4590
|
class DiagramContainerServiceTaskComponent extends DiagramElement {
|
|
4587
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4588
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4591
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramContainerServiceTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4592
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramContainerServiceTaskComponent, isStandalone: true, selector: "diagram-container-service-task", usesInheritance: true, ngImport: i0, template: "<div [ngSwitch]=\"data.taskType\">\n <div *ngSwitchCase=\"'mail'\">\n <diagram-send-task [data]=\"data\" />\n </div>\n <div *ngSwitchCase=\"'camel'\">\n <diagram-camel-task [data]=\"data\" />\n </div>\n <div *ngSwitchCase=\"'mule'\">\n <diagram-mule-task [data]=\"data\" />\n </div>\n <div *ngSwitchCase=\"'alfresco_publish'\">\n <adf-diagram-publish-task [data]=\"data\" />\n </div>\n <div *ngSwitchCase=\"'rest_call'\">\n <diagram-rest-call-task [data]=\"data\" />\n </div>\n <div *ngSwitchCase=\"'google_drive_publish'\">\n <diagram-google-drive-publish-task [data]=\"data\" />\n </div>\n <div *ngSwitchCase=\"'box_publish'\">\n <diagram-box-publish-task [data]=\"data\" />\n </div>\n <div *ngSwitchDefault>\n <diagram-service-task [data]=\"data\" />\n </div>\n</div>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "component", type: DiagramSendTaskComponent, selector: "diagram-send-task" }, { kind: "component", type: DiagramCamelTaskComponent, selector: "diagram-camel-task" }, { kind: "component", type: DiagramMuleTaskComponent, selector: "diagram-mule-task" }, { kind: "component", type: DiagramAlfrescoPublishTaskComponent, selector: "adf-diagram-publish-task" }, { kind: "component", type: DiagramRestCallTaskComponent, selector: "diagram-rest-call-task" }, { kind: "component", type: DiagramGoogleDrivePublishTaskComponent, selector: "diagram-google-drive-publish-task" }, { kind: "component", type: DiagramBoxPublishTaskComponent, selector: "diagram-box-publish-task" }, { kind: "component", type: DiagramServiceTaskComponent, selector: "diagram-service-task" }] }); }
|
|
4589
4593
|
}
|
|
4590
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramContainerServiceTaskComponent, decorators: [{
|
|
4591
4595
|
type: Component,
|
|
4592
4596
|
args: [{ selector: 'diagram-container-service-task', imports: [
|
|
4593
4597
|
CommonModule,
|
|
@@ -4639,10 +4643,10 @@ class RaphaelIconReceiveDirective extends RaphaelBase {
|
|
|
4639
4643
|
});
|
|
4640
4644
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
4641
4645
|
}
|
|
4642
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4643
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
4646
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconReceiveDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4647
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconReceiveDirective, isStandalone: true, selector: "adf-raphael-icon-receive, raphael-icon-receive", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
4644
4648
|
}
|
|
4645
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconReceiveDirective, decorators: [{
|
|
4646
4650
|
type: Directive,
|
|
4647
4651
|
args: [{
|
|
4648
4652
|
selector: 'adf-raphael-icon-receive, raphael-icon-receive'
|
|
@@ -4692,10 +4696,10 @@ class DiagramIconReceiveTaskComponent extends DiagramElement {
|
|
|
4692
4696
|
this.options.stroke = 'none';
|
|
4693
4697
|
this.options.fillColors = '#16964d';
|
|
4694
4698
|
}
|
|
4695
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4696
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4699
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconReceiveTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4700
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconReceiveTaskComponent, isStandalone: true, selector: "diagram-icon-receive-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-receive\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconReceiveDirective, selector: "adf-raphael-icon-receive, raphael-icon-receive", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
4697
4701
|
}
|
|
4698
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4702
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconReceiveTaskComponent, decorators: [{
|
|
4699
4703
|
type: Component,
|
|
4700
4704
|
args: [{ selector: 'diagram-icon-receive-task', imports: [RaphaelIconReceiveDirective], template: "<raphael-icon-receive\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
4701
4705
|
}] });
|
|
@@ -4718,10 +4722,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4718
4722
|
*/
|
|
4719
4723
|
/* eslint-disable @angular-eslint/component-selector */
|
|
4720
4724
|
class DiagramReceiveTaskComponent extends DiagramElement {
|
|
4721
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4722
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4725
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramReceiveTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4726
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramReceiveTaskComponent, isStandalone: true, selector: "diagram-receive-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-receive-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconReceiveTaskComponent, selector: "diagram-icon-receive-task" }] }); }
|
|
4723
4727
|
}
|
|
4724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4728
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramReceiveTaskComponent, decorators: [{
|
|
4725
4729
|
type: Component,
|
|
4726
4730
|
args: [{ selector: 'diagram-receive-task', imports: [DiagramTaskComponent, DiagramIconReceiveTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-receive-task [data]=\"data\" />" }]
|
|
4727
4731
|
}] });
|
|
@@ -4764,10 +4768,10 @@ class RaphaelIconScriptDirective extends RaphaelBase {
|
|
|
4764
4768
|
});
|
|
4765
4769
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
4766
4770
|
}
|
|
4767
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4768
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
4771
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconScriptDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4772
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconScriptDirective, isStandalone: true, selector: "adf-raphael-icon-script, raphael-icon-script", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
4769
4773
|
}
|
|
4770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4774
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconScriptDirective, decorators: [{
|
|
4771
4775
|
type: Directive,
|
|
4772
4776
|
args: [{
|
|
4773
4777
|
selector: 'adf-raphael-icon-script, raphael-icon-script'
|
|
@@ -4817,10 +4821,10 @@ class DiagramIconScriptTaskComponent extends DiagramElement {
|
|
|
4817
4821
|
this.options.stroke = 'none';
|
|
4818
4822
|
this.options.fillColors = '#72a7d0';
|
|
4819
4823
|
}
|
|
4820
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4821
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4824
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconScriptTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4825
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconScriptTaskComponent, isStandalone: true, selector: "diagram-icon-script-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-script\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconScriptDirective, selector: "adf-raphael-icon-script, raphael-icon-script", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
4822
4826
|
}
|
|
4823
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4827
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconScriptTaskComponent, decorators: [{
|
|
4824
4828
|
type: Component,
|
|
4825
4829
|
args: [{ selector: 'diagram-icon-script-task', imports: [RaphaelIconScriptDirective], template: "<raphael-icon-script\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
4826
4830
|
}] });
|
|
@@ -4843,10 +4847,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4843
4847
|
*/
|
|
4844
4848
|
/* eslint-disable @angular-eslint/component-selector */
|
|
4845
4849
|
class DiagramScriptTaskComponent extends DiagramElement {
|
|
4846
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4847
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4850
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramScriptTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4851
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramScriptTaskComponent, isStandalone: true, selector: "diagram-script-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-script-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconScriptTaskComponent, selector: "diagram-icon-script-task" }] }); }
|
|
4848
4852
|
}
|
|
4849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramScriptTaskComponent, decorators: [{
|
|
4850
4854
|
type: Component,
|
|
4851
4855
|
args: [{ selector: 'diagram-script-task', imports: [DiagramTaskComponent, DiagramIconScriptTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-script-task [data]=\"data\" />" }]
|
|
4852
4856
|
}] });
|
|
@@ -4889,10 +4893,10 @@ class RaphaelIconBusinessRuleDirective extends RaphaelBase {
|
|
|
4889
4893
|
});
|
|
4890
4894
|
return path1.transform('T' + position.x + ',' + position.y);
|
|
4891
4895
|
}
|
|
4892
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4893
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
4896
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconBusinessRuleDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4897
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelIconBusinessRuleDirective, isStandalone: true, selector: "adf-raphael-icon-business-rule, raphael-icon-business-rule", inputs: { paper: "paper", position: "position", text: "text", strokeWidth: "strokeWidth", fillColors: "fillColors", stroke: "stroke", fillOpacity: "fillOpacity" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
4894
4898
|
}
|
|
4895
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelIconBusinessRuleDirective, decorators: [{
|
|
4896
4900
|
type: Directive,
|
|
4897
4901
|
args: [{
|
|
4898
4902
|
selector: 'adf-raphael-icon-business-rule, raphael-icon-business-rule'
|
|
@@ -4942,10 +4946,10 @@ class DiagramIconBusinessRuleTaskComponent extends DiagramElement {
|
|
|
4942
4946
|
this.options.stroke = 'none';
|
|
4943
4947
|
this.options.fillColors = '#72a7d0';
|
|
4944
4948
|
}
|
|
4945
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4946
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4949
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconBusinessRuleTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4950
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIconBusinessRuleTaskComponent, isStandalone: true, selector: "diagram-icon-business-rule-task", usesInheritance: true, ngImport: i0, template: "<raphael-icon-business-rule\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n", dependencies: [{ kind: "directive", type: RaphaelIconBusinessRuleDirective, selector: "adf-raphael-icon-business-rule, raphael-icon-business-rule", inputs: ["paper", "position", "text", "strokeWidth", "fillColors", "stroke", "fillOpacity"], outputs: ["error"] }] }); }
|
|
4947
4951
|
}
|
|
4948
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4952
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIconBusinessRuleTaskComponent, decorators: [{
|
|
4949
4953
|
type: Component,
|
|
4950
4954
|
args: [{ selector: 'diagram-icon-business-rule-task', imports: [RaphaelIconBusinessRuleDirective], template: "<raphael-icon-business-rule\n [position]=\"position\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n" }]
|
|
4951
4955
|
}] });
|
|
@@ -4968,10 +4972,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4968
4972
|
*/
|
|
4969
4973
|
/* eslint-disable @angular-eslint/component-selector */
|
|
4970
4974
|
class DiagramBusinessRuleTaskComponent extends DiagramElement {
|
|
4971
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4972
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
4975
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramBusinessRuleTaskComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4976
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramBusinessRuleTaskComponent, isStandalone: true, selector: "diagram-business-rule-task", usesInheritance: true, ngImport: i0, template: "<diagram-task [data]=\"data\" />\n<diagram-icon-business-rule-task [data]=\"data\" />", dependencies: [{ kind: "component", type: DiagramTaskComponent, selector: "diagram-task" }, { kind: "component", type: DiagramIconBusinessRuleTaskComponent, selector: "diagram-icon-business-rule-task" }] }); }
|
|
4973
4977
|
}
|
|
4974
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4978
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramBusinessRuleTaskComponent, decorators: [{
|
|
4975
4979
|
type: Component,
|
|
4976
4980
|
args: [{ selector: 'diagram-business-rule-task', imports: [DiagramTaskComponent, DiagramIconBusinessRuleTaskComponent], template: "<diagram-task [data]=\"data\" />\n<diagram-icon-business-rule-task [data]=\"data\" />" }]
|
|
4977
4981
|
}] });
|
|
@@ -5009,10 +5013,10 @@ class DiagramBoundaryEventComponent extends DiagramElement {
|
|
|
5009
5013
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
5010
5014
|
this.signalFillColor = 'none';
|
|
5011
5015
|
}
|
|
5012
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5013
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5016
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramBoundaryEventComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5017
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramBoundaryEventComponent, isStandalone: true, selector: "diagram-boundary-event", usesInheritance: true, ngImport: i0, template: "<raphael-circle [center]=\"center\" [radius]=\"circleRadiusInner\" [strokeWidth]=\"options.strokeWidth\" [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\" [fillOpacity]=\"options.fillOpacity\" />\n<raphael-circle [elementId]=\"data.id\" [center]=\"center\" [radius]=\"circleRadiusOuter\" [strokeWidth]=\"options.strokeWidth\" [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\" [fillOpacity]=\"options.fillOpacity\" />\n<diagram-container-icon-event [data]=\"data\" [type]=\"data.eventDefinition.type\" [fillColor]=\"signalFillColor\" />\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "directive", type: RaphaelCircleDirective, selector: "adf-raphael-circle, raphael-circle", inputs: ["paper", "center", "radius", "strokeWidth", "fillColors", "stroke", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "component", type: DiagramContainerIconEventTaskComponent, selector: "diagram-container-icon-event", inputs: ["type", "fillColor"] }, { kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }] }); }
|
|
5014
5018
|
}
|
|
5015
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramBoundaryEventComponent, decorators: [{
|
|
5016
5020
|
type: Component,
|
|
5017
5021
|
args: [{ selector: 'diagram-boundary-event', imports: [RaphaelCircleDirective, DiagramContainerIconEventTaskComponent, DiagramTooltipComponent], template: "<raphael-circle [center]=\"center\" [radius]=\"circleRadiusInner\" [strokeWidth]=\"options.strokeWidth\" [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\" [fillOpacity]=\"options.fillOpacity\" />\n<raphael-circle [elementId]=\"data.id\" [center]=\"center\" [radius]=\"circleRadiusOuter\" [strokeWidth]=\"options.strokeWidth\" [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\" [fillOpacity]=\"options.fillOpacity\" />\n<diagram-container-icon-event [data]=\"data\" [type]=\"data.eventDefinition.type\" [fillColor]=\"signalFillColor\" />\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
5018
5022
|
}] });
|
|
@@ -5050,10 +5054,10 @@ class DiagramThrowEventComponent extends DiagramElement {
|
|
|
5050
5054
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
5051
5055
|
this.signalFillColor = 'black';
|
|
5052
5056
|
}
|
|
5053
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5054
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5057
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramThrowEventComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5058
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramThrowEventComponent, isStandalone: true, selector: "diagram-throw-event", usesInheritance: true, ngImport: i0, template: "<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadiusInner\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-circle\n [elementId]=\"data.id\"\n [center]=\"center\"\n [radius]=\"circleRadiusOuter\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-container-icon-event\n [data]=\"data\"\n [type]=\"data.eventDefinition && data.eventDefinition.type\"\n [fillColor]=\"signalFillColor\"\n/>\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "directive", type: RaphaelCircleDirective, selector: "adf-raphael-circle, raphael-circle", inputs: ["paper", "center", "radius", "strokeWidth", "fillColors", "stroke", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "component", type: DiagramContainerIconEventTaskComponent, selector: "diagram-container-icon-event", inputs: ["type", "fillColor"] }, { kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }] }); }
|
|
5055
5059
|
}
|
|
5056
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramThrowEventComponent, decorators: [{
|
|
5057
5061
|
type: Component,
|
|
5058
5062
|
args: [{ selector: 'diagram-throw-event', imports: [RaphaelCircleDirective, DiagramContainerIconEventTaskComponent, DiagramTooltipComponent], template: "<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadiusInner\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-circle\n [elementId]=\"data.id\"\n [center]=\"center\"\n [radius]=\"circleRadiusOuter\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-container-icon-event\n [data]=\"data\"\n [type]=\"data.eventDefinition && data.eventDefinition.type\"\n [fillColor]=\"signalFillColor\"\n/>\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
5059
5063
|
}] });
|
|
@@ -5090,10 +5094,10 @@ class DiagramIntermediateCatchingEventComponent extends DiagramElement {
|
|
|
5090
5094
|
this.options.fillColors = this.diagramColorService.getFillColour(this.data.id);
|
|
5091
5095
|
this.options.fillOpacity = this.diagramColorService.getFillOpacity();
|
|
5092
5096
|
}
|
|
5093
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5094
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5097
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIntermediateCatchingEventComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5098
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramIntermediateCatchingEventComponent, isStandalone: true, selector: "diagram-intermediate-catching-event", usesInheritance: true, ngImport: i0, template: "<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadiusInner\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-circle\n [elementId]=\"data.id\"\n [center]=\"center\"\n [radius]=\"circleRadiusOuter\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-container-icon-event [data]=\"data\" [type]=\"data.eventDefinition.type\" />\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "directive", type: RaphaelCircleDirective, selector: "adf-raphael-circle, raphael-circle", inputs: ["paper", "center", "radius", "strokeWidth", "fillColors", "stroke", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "component", type: DiagramContainerIconEventTaskComponent, selector: "diagram-container-icon-event", inputs: ["type", "fillColor"] }, { kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }] }); }
|
|
5095
5099
|
}
|
|
5096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramIntermediateCatchingEventComponent, decorators: [{
|
|
5097
5101
|
type: Component,
|
|
5098
5102
|
args: [{ selector: 'diagram-intermediate-catching-event', imports: [RaphaelCircleDirective, DiagramContainerIconEventTaskComponent, DiagramTooltipComponent], template: "<raphael-circle\n [center]=\"center\"\n [radius]=\"circleRadiusInner\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-circle\n [elementId]=\"data.id\"\n [center]=\"center\"\n [radius]=\"circleRadiusOuter\"\n [strokeWidth]=\"options.strokeWidth\"\n [stroke]=\"options.stroke\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-container-icon-event [data]=\"data\" [type]=\"data.eventDefinition.type\" />\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
5099
5103
|
}] });
|
|
@@ -5128,10 +5132,10 @@ class DiagramSubprocessComponent extends DiagramElement {
|
|
|
5128
5132
|
this.options.stroke = this.diagramColorService.getBpmnColor(this.data, MAIN_STROKE_COLOR);
|
|
5129
5133
|
this.options.strokeWidth = 1;
|
|
5130
5134
|
}
|
|
5131
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5132
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5135
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramSubprocessComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5136
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramSubprocessComponent, isStandalone: true, selector: "diagram-subprocess", usesInheritance: true, ngImport: i0, template: "<raphael-rect\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"width\"\n [height]=\"height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "directive", type: RaphaelRectDirective, selector: "adf-raphael-rect, raphael-rect", inputs: ["paper", "leftCorner", "width", "height", "radius", "fillColors", "stroke", "strokeWidth", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }] }); }
|
|
5133
5137
|
}
|
|
5134
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramSubprocessComponent, decorators: [{
|
|
5135
5139
|
type: Component,
|
|
5136
5140
|
args: [{ selector: 'diagram-subprocess', imports: [RaphaelRectDirective, DiagramTooltipComponent], template: "<raphael-rect\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"width\"\n [height]=\"height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
5137
5141
|
}] });
|
|
@@ -5166,10 +5170,10 @@ class DiagramEventSubprocessComponent extends DiagramElement {
|
|
|
5166
5170
|
this.options.stroke = this.diagramColorService.getBpmnColor(this.data, MAIN_STROKE_COLOR);
|
|
5167
5171
|
this.options.strokeWidth = 1;
|
|
5168
5172
|
}
|
|
5169
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5170
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramEventSubprocessComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5174
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramEventSubprocessComponent, isStandalone: true, selector: "diagram-event-subprocess", usesInheritance: true, ngImport: i0, template: "<raphael-rect\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"width\"\n [height]=\"height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n", dependencies: [{ kind: "directive", type: RaphaelRectDirective, selector: "adf-raphael-rect, raphael-rect", inputs: ["paper", "leftCorner", "width", "height", "radius", "fillColors", "stroke", "strokeWidth", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }] }); }
|
|
5171
5175
|
}
|
|
5172
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramEventSubprocessComponent, decorators: [{
|
|
5173
5177
|
type: Component,
|
|
5174
5178
|
args: [{ selector: 'diagram-event-subprocess', imports: [RaphaelRectDirective, DiagramTooltipComponent], template: "<raphael-rect\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"width\"\n [height]=\"height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<diagram-tooltip [data]=\"data\" />\n" }]
|
|
5175
5179
|
}] });
|
|
@@ -5518,10 +5522,10 @@ class RaphaelFlowArrowDirective extends RaphaelBase {
|
|
|
5518
5522
|
arrowHead.attr('stroke-width', SEQUENCE_FLOW_STROKE);
|
|
5519
5523
|
arrowHead.attr('stroke', '#585858');
|
|
5520
5524
|
}
|
|
5521
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5522
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
5525
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelFlowArrowDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5526
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelFlowArrowDirective, isStandalone: true, selector: "adf-raphael-flow-arrow, raphael-flow-arrow", inputs: { paper: "paper", flow: "flow" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
5523
5527
|
}
|
|
5524
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelFlowArrowDirective, decorators: [{
|
|
5525
5529
|
type: Directive,
|
|
5526
5530
|
args: [{
|
|
5527
5531
|
selector: 'adf-raphael-flow-arrow, raphael-flow-arrow'
|
|
@@ -5554,10 +5558,10 @@ class DiagramSequenceFlowComponent {
|
|
|
5554
5558
|
constructor() {
|
|
5555
5559
|
this.error = new EventEmitter();
|
|
5556
5560
|
}
|
|
5557
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5558
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5561
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramSequenceFlowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5562
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramSequenceFlowComponent, isStandalone: true, selector: "adf-diagram-sequence-flow", inputs: { flow: "flow" }, outputs: { error: "error" }, ngImport: i0, template: "<raphael-flow-arrow [flow]=\"flow\" />\n<diagram-tooltip [data]=\"flow\" />\n", dependencies: [{ kind: "directive", type: RaphaelFlowArrowDirective, selector: "adf-raphael-flow-arrow, raphael-flow-arrow", inputs: ["paper", "flow"], outputs: ["error"] }, { kind: "component", type: DiagramTooltipComponent, selector: "diagram-tooltip", inputs: ["data", "position", "strategy"] }] }); }
|
|
5559
5563
|
}
|
|
5560
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5564
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramSequenceFlowComponent, decorators: [{
|
|
5561
5565
|
type: Component,
|
|
5562
5566
|
args: [{ selector: 'adf-diagram-sequence-flow', imports: [RaphaelFlowArrowDirective, DiagramTooltipComponent], template: "<raphael-flow-arrow [flow]=\"flow\" />\n<diagram-tooltip [data]=\"flow\" />\n" }]
|
|
5563
5567
|
}], propDecorators: { flow: [{
|
|
@@ -5606,10 +5610,10 @@ class RaphaelTextDirective extends RaphaelBase {
|
|
|
5606
5610
|
textPaper.transform(this.transform);
|
|
5607
5611
|
return textPaper;
|
|
5608
5612
|
}
|
|
5609
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5610
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
5613
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelTextDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5614
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: RaphaelTextDirective, isStandalone: true, selector: "adf-raphael-text, raphael-text", inputs: { paper: "paper", position: "position", transform: "transform", text: "text" }, outputs: { error: "error" }, usesInheritance: true, ngImport: i0 }); }
|
|
5611
5615
|
}
|
|
5612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: RaphaelTextDirective, decorators: [{
|
|
5613
5617
|
type: Directive,
|
|
5614
5618
|
args: [{
|
|
5615
5619
|
selector: 'adf-raphael-text, raphael-text'
|
|
@@ -5656,10 +5660,10 @@ class DiagramPoolComponent {
|
|
|
5656
5660
|
this.text = this.pool.name;
|
|
5657
5661
|
this.textTransform = 'r270';
|
|
5658
5662
|
}
|
|
5659
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5660
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5663
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramPoolComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5664
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramPoolComponent, isStandalone: true, selector: "diagram-pool", inputs: { pool: "pool" }, outputs: { error: "error" }, ngImport: i0, template: "<raphael-rect\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"width\"\n [height]=\"height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-text [text]=\"text\" [position]=\"textPosition\" [transform]=\"textTransform\" />\n", dependencies: [{ kind: "directive", type: RaphaelRectDirective, selector: "adf-raphael-rect, raphael-rect", inputs: ["paper", "leftCorner", "width", "height", "radius", "fillColors", "stroke", "strokeWidth", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "directive", type: RaphaelTextDirective, selector: "adf-raphael-text, raphael-text", inputs: ["paper", "position", "transform", "text"], outputs: ["error"] }] }); }
|
|
5661
5665
|
}
|
|
5662
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramPoolComponent, decorators: [{
|
|
5663
5667
|
type: Component,
|
|
5664
5668
|
args: [{ selector: 'diagram-pool', imports: [RaphaelRectDirective, RaphaelTextDirective], template: "<raphael-rect\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"width\"\n [height]=\"height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-text [text]=\"text\" [position]=\"textPosition\" [transform]=\"textTransform\" />\n" }]
|
|
5665
5669
|
}], propDecorators: { pool: [{
|
|
@@ -5698,10 +5702,10 @@ class DiagramLaneComponent {
|
|
|
5698
5702
|
this.text = this.lane.name;
|
|
5699
5703
|
this.textTransform = 'r270';
|
|
5700
5704
|
}
|
|
5701
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5702
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5705
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramLaneComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5706
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramLaneComponent, isStandalone: true, selector: "diagram-lane", inputs: { lane: "lane" }, outputs: { error: "error" }, ngImport: i0, template: "<raphael-rect\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"width\"\n [height]=\"height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-text [text]=\"text\" [position]=\"textPosition\" [transform]=\"textTransform\" />\n", dependencies: [{ kind: "directive", type: RaphaelRectDirective, selector: "adf-raphael-rect, raphael-rect", inputs: ["paper", "leftCorner", "width", "height", "radius", "fillColors", "stroke", "strokeWidth", "fillOpacity", "elementId"], outputs: ["error"] }, { kind: "directive", type: RaphaelTextDirective, selector: "adf-raphael-text, raphael-text", inputs: ["paper", "position", "transform", "text"], outputs: ["error"] }] }); }
|
|
5703
5707
|
}
|
|
5704
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5708
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramLaneComponent, decorators: [{
|
|
5705
5709
|
type: Component,
|
|
5706
5710
|
args: [{ selector: 'diagram-lane', imports: [RaphaelRectDirective, RaphaelTextDirective], template: "<raphael-rect\n [leftCorner]=\"rectLeftCorner\"\n [width]=\"width\"\n [height]=\"height\"\n [radius]=\"options.radius\"\n [stroke]=\"options.stroke\"\n [strokeWidth]=\"options.strokeWidth\"\n [fillColors]=\"options.fillColors\"\n [fillOpacity]=\"options.fillOpacity\"\n/>\n<raphael-text [text]=\"text\" [position]=\"textPosition\" [transform]=\"textTransform\" />\n" }]
|
|
5707
5711
|
}], propDecorators: { lane: [{
|
|
@@ -5731,10 +5735,10 @@ class DiagramLanesComponent {
|
|
|
5731
5735
|
constructor() {
|
|
5732
5736
|
this.error = new EventEmitter();
|
|
5733
5737
|
}
|
|
5734
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5735
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5738
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramLanesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5739
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramLanesComponent, isStandalone: true, selector: "diagram-lanes", inputs: { lanes: "lanes" }, outputs: { error: "error" }, ngImport: i0, template: "<div *ngIf=\"lanes\">\n <div *ngFor=\"let lane of lanes\">\n <diagram-lane [lane]=\"lane\" />\n </div>\n</div>\n", dependencies: [{ kind: "component", type: DiagramLaneComponent, selector: "diagram-lane", inputs: ["lane"], outputs: ["error"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] }); }
|
|
5736
5740
|
}
|
|
5737
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5741
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramLanesComponent, decorators: [{
|
|
5738
5742
|
type: Component,
|
|
5739
5743
|
args: [{ selector: 'diagram-lanes', imports: [DiagramLaneComponent, NgIf, NgForOf], template: "<div *ngIf=\"lanes\">\n <div *ngFor=\"let lane of lanes\">\n <diagram-lane [lane]=\"lane\" />\n </div>\n</div>\n" }]
|
|
5740
5744
|
}], propDecorators: { lanes: [{
|
|
@@ -5764,10 +5768,10 @@ class DiagramPoolsComponent {
|
|
|
5764
5768
|
constructor() {
|
|
5765
5769
|
this.error = new EventEmitter();
|
|
5766
5770
|
}
|
|
5767
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5768
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5771
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramPoolsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5772
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramPoolsComponent, isStandalone: true, selector: "diagram-pools", inputs: { pools: "pools" }, outputs: { error: "error" }, ngImport: i0, template: "<div *ngIf=\"pools\">\n <div *ngFor=\"let pool of pools\">\n <diagram-pool [pool]=\"pool\" />\n <diagram-lanes [lanes]=\"pool.lanes\" />\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: DiagramPoolComponent, selector: "diagram-pool", inputs: ["pool"], outputs: ["error"] }, { kind: "component", type: DiagramLanesComponent, selector: "diagram-lanes", inputs: ["lanes"], outputs: ["error"] }] }); }
|
|
5769
5773
|
}
|
|
5770
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5774
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramPoolsComponent, decorators: [{
|
|
5771
5775
|
type: Component,
|
|
5772
5776
|
args: [{ selector: 'diagram-pools', imports: [NgIf, NgForOf, DiagramPoolComponent, DiagramLanesComponent], template: "<div *ngIf=\"pools\">\n <div *ngFor=\"let pool of pools\">\n <diagram-pool [pool]=\"pool\" />\n <diagram-lanes [lanes]=\"pool.lanes\" />\n </div>\n</div>\n" }]
|
|
5773
5777
|
}], propDecorators: { pools: [{
|
|
@@ -5795,10 +5799,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
5795
5799
|
const PADDING_WIDTH = 60;
|
|
5796
5800
|
const PADDING_HEIGHT = 60;
|
|
5797
5801
|
class DiagramComponent {
|
|
5798
|
-
constructor(
|
|
5799
|
-
this.diagramColorService =
|
|
5800
|
-
this.raphaelService =
|
|
5801
|
-
this.diagramsService =
|
|
5802
|
+
constructor() {
|
|
5803
|
+
this.diagramColorService = inject(DiagramColorService);
|
|
5804
|
+
this.raphaelService = inject(RaphaelService);
|
|
5805
|
+
this.diagramsService = inject(DiagramsService);
|
|
5802
5806
|
/** metricType. */
|
|
5803
5807
|
this.metricType = '';
|
|
5804
5808
|
/** width. */
|
|
@@ -5854,10 +5858,10 @@ class DiagramComponent {
|
|
|
5854
5858
|
reset() {
|
|
5855
5859
|
this.raphaelService.reset();
|
|
5856
5860
|
}
|
|
5857
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5858
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5861
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5862
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: DiagramComponent, isStandalone: true, selector: "adf-diagram", inputs: { processDefinitionId: "processDefinitionId", processInstanceId: "processInstanceId", metricPercentages: "metricPercentages", metricColor: "metricColor", metricType: "metricType", width: "width", height: "height" }, outputs: { success: "success", error: "error" }, usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"diagram\" class=\"diagram\">\n <div *ngFor=\"let element of diagram.elements\">\n <div [ngSwitch]=\"element.type\">\n <div *ngSwitchCase=\"'StartEvent'\">\n <diagram-start-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ExclusiveGateway'\">\n <diagram-exclusive-gateway [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'InclusiveGateway'\">\n <diagram-inclusive-gateway [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'EventGateway'\">\n <diagram-event-gateway [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ParallelGateway'\">\n <diagram-parallel-gateway [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'EndEvent'\">\n <diagram-end-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'UserTask'\">\n <diagram-user-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ManualTask'\">\n <diagram-manual-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ServiceTask'\">\n <diagram-container-service-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ReceiveTask'\">\n <diagram-receive-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ScriptTask'\">\n <diagram-script-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'BusinessRuleTask'\">\n <diagram-business-rule-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'BoundaryEvent'\">\n <diagram-boundary-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ThrowEvent'\">\n <diagram-throw-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'IntermediateCatchEvent'\">\n <diagram-intermediate-catching-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'SubProcess'\">\n <diagram-subprocess [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'EventSubProcess'\">\n <diagram-event-subprocess [data]=\"element\" />\n </div>\n </div>\n </div>\n <div *ngFor=\"let flow of diagram.flows\">\n <div [ngSwitch]=\"flow.type\">\n <div *ngSwitchCase=\"'sequenceFlow'\">\n <adf-diagram-sequence-flow [flow]=\"flow\" />\n </div>\n </div>\n </div>\n <div *ngIf=\"diagram.pools\">\n <diagram-pools [pools]=\"diagram.pools\" />\n </div>\n</div>\n", styles: [".diagram{border:1px solid lightgray;overflow:auto}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: DiagramStartEventComponent, selector: "diagram-start-event" }, { kind: "component", type: DiagramExclusiveGatewayComponent, selector: "diagram-exclusive-gateway" }, { kind: "component", type: DiagramInclusiveGatewayComponent, selector: "diagram-inclusive-gateway" }, { kind: "component", type: DiagramEventGatewayComponent, selector: "diagram-event-gateway" }, { kind: "component", type: DiagramParallelGatewayComponent, selector: "diagram-parallel-gateway" }, { kind: "component", type: DiagramEndEventComponent, selector: "diagram-end-event" }, { kind: "component", type: DiagramUserTaskComponent, selector: "diagram-user-task" }, { kind: "component", type: DiagramManualTaskComponent, selector: "diagram-manual-task" }, { kind: "component", type: DiagramContainerServiceTaskComponent, selector: "diagram-container-service-task" }, { kind: "component", type: DiagramReceiveTaskComponent, selector: "diagram-receive-task" }, { kind: "component", type: DiagramScriptTaskComponent, selector: "diagram-script-task" }, { kind: "component", type: DiagramBusinessRuleTaskComponent, selector: "diagram-business-rule-task" }, { kind: "component", type: DiagramBoundaryEventComponent, selector: "diagram-boundary-event" }, { kind: "component", type: DiagramThrowEventComponent, selector: "diagram-throw-event" }, { kind: "component", type: DiagramIntermediateCatchingEventComponent, selector: "diagram-intermediate-catching-event" }, { kind: "component", type: DiagramSubprocessComponent, selector: "diagram-subprocess" }, { kind: "component", type: DiagramEventSubprocessComponent, selector: "diagram-event-subprocess" }, { kind: "component", type: DiagramSequenceFlowComponent, selector: "adf-diagram-sequence-flow", inputs: ["flow"], outputs: ["error"] }, { kind: "component", type: DiagramPoolsComponent, selector: "diagram-pools", inputs: ["pools"], outputs: ["error"] }] }); }
|
|
5859
5863
|
}
|
|
5860
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5864
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: DiagramComponent, decorators: [{
|
|
5861
5865
|
type: Component,
|
|
5862
5866
|
args: [{ selector: 'adf-diagram', imports: [
|
|
5863
5867
|
CommonModule,
|
|
@@ -5881,7 +5885,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
5881
5885
|
DiagramSequenceFlowComponent,
|
|
5882
5886
|
DiagramPoolsComponent
|
|
5883
5887
|
], template: "<div *ngIf=\"diagram\" class=\"diagram\">\n <div *ngFor=\"let element of diagram.elements\">\n <div [ngSwitch]=\"element.type\">\n <div *ngSwitchCase=\"'StartEvent'\">\n <diagram-start-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ExclusiveGateway'\">\n <diagram-exclusive-gateway [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'InclusiveGateway'\">\n <diagram-inclusive-gateway [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'EventGateway'\">\n <diagram-event-gateway [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ParallelGateway'\">\n <diagram-parallel-gateway [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'EndEvent'\">\n <diagram-end-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'UserTask'\">\n <diagram-user-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ManualTask'\">\n <diagram-manual-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ServiceTask'\">\n <diagram-container-service-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ReceiveTask'\">\n <diagram-receive-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ScriptTask'\">\n <diagram-script-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'BusinessRuleTask'\">\n <diagram-business-rule-task [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'BoundaryEvent'\">\n <diagram-boundary-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'ThrowEvent'\">\n <diagram-throw-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'IntermediateCatchEvent'\">\n <diagram-intermediate-catching-event [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'SubProcess'\">\n <diagram-subprocess [data]=\"element\" />\n </div>\n <div *ngSwitchCase=\"'EventSubProcess'\">\n <diagram-event-subprocess [data]=\"element\" />\n </div>\n </div>\n </div>\n <div *ngFor=\"let flow of diagram.flows\">\n <div [ngSwitch]=\"flow.type\">\n <div *ngSwitchCase=\"'sequenceFlow'\">\n <adf-diagram-sequence-flow [flow]=\"flow\" />\n </div>\n </div>\n </div>\n <div *ngIf=\"diagram.pools\">\n <diagram-pools [pools]=\"diagram.pools\" />\n </div>\n</div>\n", styles: [".diagram{border:1px solid lightgray;overflow:auto}\n"] }]
|
|
5884
|
-
}],
|
|
5888
|
+
}], propDecorators: { processDefinitionId: [{
|
|
5885
5889
|
type: Input
|
|
5886
5890
|
}], processInstanceId: [{
|
|
5887
5891
|
type: Input
|
|
@@ -5918,9 +5922,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
5918
5922
|
* limitations under the License.
|
|
5919
5923
|
*/
|
|
5920
5924
|
class AnalyticsReportHeatMapComponent {
|
|
5921
|
-
constructor(
|
|
5922
|
-
this.analyticsService =
|
|
5923
|
-
this.formBuilder =
|
|
5925
|
+
constructor() {
|
|
5926
|
+
this.analyticsService = inject(AnalyticsService);
|
|
5927
|
+
this.formBuilder = inject(UntypedFormBuilder);
|
|
5924
5928
|
/** success. */
|
|
5925
5929
|
this.success = new EventEmitter();
|
|
5926
5930
|
/** error. */
|
|
@@ -5966,13 +5970,13 @@ class AnalyticsReportHeatMapComponent {
|
|
|
5966
5970
|
get metricGroup() {
|
|
5967
5971
|
return this.metricForm.controls.metricGroup;
|
|
5968
5972
|
}
|
|
5969
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5970
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
5973
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsReportHeatMapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5974
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: AnalyticsReportHeatMapComponent, isStandalone: true, selector: "adf-analytics-report-heat-map, analytics-report-heat-map", inputs: { report: "report" }, outputs: { success: "success", error: "error" }, ngImport: i0, template: "<h4>Process Heat map</h4>\n<div *ngIf=\"hasMetric()\">\n <form [formGroup]=\"metricForm\" novalidate>\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"metricGroup\"\n [controllerName]=\"'metric'\"\n (fieldChanged)=\"onMetricChanges(field)\"\n [showDefaultOption]=\"false\"\n />\n </form>\n <adf-diagram\n *ngIf=\"currentMetric\"\n [processDefinitionId]=\"report.processDefinitionId\"\n [metricPercentages]=\"currentMetric\"\n [metricColor]=\"currentMetricColors\"\n [metricType]=\"metricType\"\n />\n</div>\n<div *ngIf=\"!hasMetric()\">No metric found</div>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: DropdownWidgetAnalyticsComponent, selector: "analytics-dropdown-widget", inputs: ["group", "controllerName", "showDefaultOption", "required", "defaultOptionText"] }, { kind: "component", type: DiagramComponent, selector: "adf-diagram", inputs: ["processDefinitionId", "processInstanceId", "metricPercentages", "metricColor", "metricType", "width", "height"], outputs: ["success", "error"] }] }); }
|
|
5971
5975
|
}
|
|
5972
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsReportHeatMapComponent, decorators: [{
|
|
5973
5977
|
type: Component,
|
|
5974
5978
|
args: [{ selector: 'adf-analytics-report-heat-map, analytics-report-heat-map', imports: [CommonModule, ReactiveFormsModule, DropdownWidgetAnalyticsComponent, DiagramComponent], template: "<h4>Process Heat map</h4>\n<div *ngIf=\"hasMetric()\">\n <form [formGroup]=\"metricForm\" novalidate>\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"metricGroup\"\n [controllerName]=\"'metric'\"\n (fieldChanged)=\"onMetricChanges(field)\"\n [showDefaultOption]=\"false\"\n />\n </form>\n <adf-diagram\n *ngIf=\"currentMetric\"\n [processDefinitionId]=\"report.processDefinitionId\"\n [metricPercentages]=\"currentMetric\"\n [metricColor]=\"currentMetricColors\"\n [metricType]=\"metricType\"\n />\n</div>\n<div *ngIf=\"!hasMetric()\">No metric found</div>\n" }]
|
|
5975
|
-
}],
|
|
5979
|
+
}], propDecorators: { report: [{
|
|
5976
5980
|
type: Input
|
|
5977
5981
|
}], success: [{
|
|
5978
5982
|
type: Output
|
|
@@ -6081,10 +6085,10 @@ class AnalyticsGeneratorComponent {
|
|
|
6081
6085
|
selectFirstReport() {
|
|
6082
6086
|
this.selectCurrent(0);
|
|
6083
6087
|
}
|
|
6084
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6085
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
6088
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsGeneratorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6089
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: AnalyticsGeneratorComponent, isStandalone: true, selector: "adf-analytics-generator", inputs: { reportId: "reportId", reportParamQuery: "reportParamQuery" }, outputs: { success: "success", error: "error" }, usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"reports\">\n <div class=\"adf-report-icons\">\n <button\n mat-icon-button\n *ngFor=\"let report of reports; let idx = index\"\n [title]=\"report.title\"\n [color]=\"isCurrent(idx) ? 'primary' : null\"\n (click)=\"selectCurrent(idx)\"\n >\n <mat-icon>{{ report.icon }}</mat-icon>\n </button>\n </div>\n <div class=\"adf-clear-both\"></div>\n <div *ngFor=\"let report of reports; let idx = index\">\n <div [ngSwitch]=\"report.type\">\n <div *ngSwitchCase=\"'pie'\">\n <div *ngIf=\"isCurrent(idx)\">\n <h4>{{ report.title }}</h4>\n <div *ngIf=\"!report.hasData()\">{{ 'ANALYTICS.MESSAGES.NO-DATA-FOUND' | translate }}</div>\n <div *ngIf=\"report.hasData()\">\n <div *ngIf=\"report.hasZeroValues()\">{{ 'ANALYTICS.MESSAGES.ZERO-DATA-FOUND' | translate }}</div>\n <canvas\n baseChart\n *ngIf=\"!report.hasZeroValues()\"\n class=\"adf-chart\"\n [datasets]=\"report.datasets\"\n [labels]=\"report.labels\"\n [type]=\"'pie'\"\n [options]=\"report.options\"\n >\n </canvas>\n </div>\n </div>\n </div>\n <div *ngSwitchCase=\"'table'\">\n <div *ngIf=\"isCurrent(idx)\">\n <h4>{{ report.title }}</h4>\n <div *ngIf=\"!report.hasDatasets()\">{{ 'ANALYTICS.MESSAGES.NO-DATA-FOUND' | translate }}</div>\n <div [attr.id]=\"'chart-table-' + report.id\" *ngIf=\"report.hasDatasets()\">\n <table class=\"adf-table adf-table-responsive adf-table-condensed adf-partial-width\">\n <tr>\n <th *ngFor=\"let label of report.labels\">{{ label | translate }}</th>\n </tr>\n <tr *ngFor=\"let rows of report.datasets\">\n <td *ngFor=\"let row of rows\">{{ row | translate }}</td>\n </tr>\n </table>\n </div>\n </div>\n </div>\n <div *ngSwitchCase=\"'masterDetailTable'\">\n <div *ngIf=\"isCurrent(idx)\">\n <h4>{{ report.title }}</h4>\n <div *ngIf=\"!report.hasDatasets()\">{{ 'ANALYTICS.MESSAGES.NO-DATA-FOUND' | translate }}</div>\n <div [attr.id]=\"'chart-master-detail-table-' + report.id\" *ngIf=\"report.hasDatasets()\">\n <table class=\"adf-table adf-table-responsive adf-table-condensed adf-full-width\">\n <tr>\n <th *ngFor=\"let label of report.labels\">{{ label | translate }}</th>\n </tr>\n <tr *ngFor=\"let rows of report.datasets\" class=\"adf-analytics-row__entry\">\n <td\n *ngFor=\"let row of rows\"\n (click)=\"toggleDetailsTable()\"\n role=\"button\"\n tabindex=\"0\"\n (keyup.enter)=\"toggleDetailsTable()\"\n >\n {{ row | translate }}\n </td>\n </tr>\n </table>\n </div>\n <div [attr.id]=\"'chart-master-detail-' + report.id\" *ngIf=\"isShowDetails()\">\n <table class=\"adf-table adf-table-responsive adf-table-condensed adf-full-width\">\n <tr>\n <th *ngFor=\"let label of report.detailsTable.labels\">{{ label | translate }}</th>\n </tr>\n <tr *ngFor=\"let rows of report.detailsTable.datasets\">\n <td *ngFor=\"let row of rows\">{{ row | translate }}</td>\n </tr>\n </table>\n </div>\n </div>\n </div>\n <div *ngSwitchCase=\"'bar'\">\n <div *ngIf=\"isCurrent(idx)\">\n <h4>{{ report.title }}</h4>\n <div *ngIf=\"!report.hasDatasets()\">{{ 'ANALYTICS.MESSAGES.NO-DATA-FOUND' | translate }}</div>\n <canvas\n baseChart\n *ngIf=\"report.hasDatasets()\"\n class=\"adf-chart\"\n [datasets]=\"report.datasets\"\n [labels]=\"report.labels\"\n [options]=\"report.options\"\n [type]=\"'bar'\"\n >\n </canvas>\n </div>\n </div>\n <div *ngSwitchCase=\"'multiBar'\">\n <div *ngIf=\"isCurrent(idx)\">\n <h4>{{ report.title }}</h4>\n <div *ngIf=\"!report.hasDatasets()\">{{ 'ANALYTICS.MESSAGES.NO-DATA-FOUND' | translate }}</div>\n <div *ngIf=\"report.hasDatasets()\">\n <mat-checkbox\n color=\"primary\"\n [id]=\"'stacked-id'\"\n [checked]=\"report.options.scales.xAxes[0].stacked\"\n [(ngModel)]=\"report.options.scales.xAxes[0].stacked\"\n (change)=\"refresh(report)\"\n >Stacked</mat-checkbox\n >\n\n <canvas\n baseChart\n class=\"adf-chart\"\n [datasets]=\"report.datasets\"\n [labels]=\"report.labels\"\n [options]=\"report.options\"\n [type]=\"'bar'\"\n >\n </canvas>\n </div>\n </div>\n </div>\n <div *ngSwitchCase=\"'HeatMap'\">\n <div *ngIf=\"isCurrent(idx)\">\n <h4>{{ report.title }}</h4>\n <analytics-report-heat-map [report]=\"report\" />\n </div>\n </div>\n <div *ngSwitchDefault>\n <span>{{ 'ANALYTICS.MESSAGES.UNKNOWN-WIDGET-TYPE' | translate }}: {{ report.type }}</span>\n </div>\n </div>\n </div>\n</div>\n<br /><br /><br />\n<div *ngIf=\"!reports\">{{ 'ANALYTICS.MESSAGES.FILL-PARAMETER' | translate }}</div>\n", styles: [".adf-chart{display:block;width:100%}.adf-analytics-row__entry{cursor:pointer}.adf-report-icons{margin:20px 0;float:left}.adf-full-width{width:100%}.adf-partial-width{width:80%;margin-left:20px}.adf-clear-both{clear:both}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2$2.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: NgChartsModule }, { kind: "directive", type: i4$1.BaseChartDirective, selector: "canvas[baseChart]", inputs: ["type", "legend", "data", "options", "plugins", "labels", "datasets"], outputs: ["chartClick", "chartHover"], exportAs: ["base-chart"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: AnalyticsReportHeatMapComponent, selector: "adf-analytics-report-heat-map, analytics-report-heat-map", inputs: ["report"], outputs: ["success", "error"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
6086
6090
|
}
|
|
6087
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6091
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsGeneratorComponent, decorators: [{
|
|
6088
6092
|
type: Component,
|
|
6089
6093
|
args: [{ selector: 'adf-analytics-generator', imports: [
|
|
6090
6094
|
CommonModule,
|
|
@@ -6129,10 +6133,10 @@ class ButtonsMenuComponent {
|
|
|
6129
6133
|
isMobile() {
|
|
6130
6134
|
return !!/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
|
|
6131
6135
|
}
|
|
6132
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6133
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
6136
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: ButtonsMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6137
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: ButtonsMenuComponent, isStandalone: true, selector: "adf-buttons-action-menu", queries: [{ propertyName: "buttons", predicate: MatMenuItem }], ngImport: i0, template: "<div id=\"adf-buttons-menu\" class=\"adf-buttons-menu\" *ngIf=\"!isMenuEmpty\">\n <div *ngIf=\"isMobile()\">\n <button mat-icon-button [matMenuTriggerFor]=\"editReportMenu\">\n <mat-icon>more_vert</mat-icon>\n </button>\n <mat-menu #editReportMenu=\"matMenu\" class=\"adf-buttons-menu-mobile\">\n <ng-content *ngTemplateOutlet=\"desktop\" />\n </mat-menu>\n </div>\n\n <div *ngIf=\"!isMobile()\" class=\"adf-buttons-menu-desktop\">\n <ng-content *ngTemplateOutlet=\"desktop\" />\n </div>\n</div>\n\n<ng-template #desktop>\n <ng-content />\n</ng-template>\n", styles: [".adf-buttons-menu{margin-right:10px}.adf-buttons-menu div{display:flex}.adf-buttons-menu-mobile{margin-right:10px}.adf-buttons-menu-desktop{display:flex}.adf-buttons-menu-desktop button{color:#000;padding:0}.adf-buttons-menu-desktop button>span{display:none}.adf-buttons-menu-desktop button>.material-icons{color:#000;margin:0 10px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2$2.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i3$3.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "directive", type: i3$3.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
6134
6138
|
}
|
|
6135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: ButtonsMenuComponent, decorators: [{
|
|
6136
6140
|
type: Component,
|
|
6137
6141
|
args: [{ selector: 'adf-buttons-action-menu', imports: [CommonModule, MatButtonModule, MatMenuModule, MatIconModule], encapsulation: ViewEncapsulation.None, template: "<div id=\"adf-buttons-menu\" class=\"adf-buttons-menu\" *ngIf=\"!isMenuEmpty\">\n <div *ngIf=\"isMobile()\">\n <button mat-icon-button [matMenuTriggerFor]=\"editReportMenu\">\n <mat-icon>more_vert</mat-icon>\n </button>\n <mat-menu #editReportMenu=\"matMenu\" class=\"adf-buttons-menu-mobile\">\n <ng-content *ngTemplateOutlet=\"desktop\" />\n </mat-menu>\n </div>\n\n <div *ngIf=\"!isMobile()\" class=\"adf-buttons-menu-desktop\">\n <ng-content *ngTemplateOutlet=\"desktop\" />\n </div>\n</div>\n\n<ng-template #desktop>\n <ng-content />\n</ng-template>\n", styles: [".adf-buttons-menu{margin-right:10px}.adf-buttons-menu div{display:flex}.adf-buttons-menu-mobile{margin-right:10px}.adf-buttons-menu-desktop{display:flex}.adf-buttons-menu-desktop button{color:#000;padding:0}.adf-buttons-menu-desktop button>span{display:none}.adf-buttons-menu-desktop button>.material-icons{color:#000;margin:0 10px}\n"] }]
|
|
6138
6142
|
}], propDecorators: { buttons: [{
|
|
@@ -6158,12 +6162,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
6158
6162
|
*/
|
|
6159
6163
|
const FORMAT_DATE_ACTIVITI = 'YYYY-MM-DD';
|
|
6160
6164
|
class AnalyticsReportParametersComponent {
|
|
6161
|
-
constructor(
|
|
6162
|
-
this.analyticsService =
|
|
6163
|
-
this.formBuilder =
|
|
6164
|
-
this.downloadService =
|
|
6165
|
-
this.dialog =
|
|
6166
|
-
this.dateAdapter =
|
|
6165
|
+
constructor() {
|
|
6166
|
+
this.analyticsService = inject(AnalyticsService);
|
|
6167
|
+
this.formBuilder = inject(FormBuilder);
|
|
6168
|
+
this.downloadService = inject(DownloadService);
|
|
6169
|
+
this.dialog = inject(MatDialog);
|
|
6170
|
+
this.dateAdapter = inject(AdfDateFnsAdapter);
|
|
6167
6171
|
/** hideComponent. */
|
|
6168
6172
|
this.hideComponent = false;
|
|
6169
6173
|
/** success. */
|
|
@@ -6440,13 +6444,13 @@ class AnalyticsReportParametersComponent {
|
|
|
6440
6444
|
});
|
|
6441
6445
|
});
|
|
6442
6446
|
}
|
|
6443
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6444
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
6447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsReportParametersComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6448
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: AnalyticsReportParametersComponent, isStandalone: true, selector: "adf-analytics-report-parameters", inputs: { appId: "appId", reportId: "reportId", hideComponent: "hideComponent" }, outputs: { success: "success", error: "error", edit: "edit", formValueChanged: "formValueChanged", saveReportSuccess: "saveReportSuccess", deleteReportSuccess: "deleteReportSuccess" }, providers: [
|
|
6445
6449
|
{ provide: MAT_DATE_FORMATS, useValue: ADF_DATE_FORMATS },
|
|
6446
6450
|
{ provide: DateAdapter, useClass: AdfDateFnsAdapter }
|
|
6447
|
-
], viewQueries: [{ propertyName: "reportNameDialog", first: true, predicate: ["reportNameDialog"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div [class.adf-hide]=\"hideComponent\">\n <div class=\"adf-report-report-container\">\n <div *ngIf=\"reportParameters\">\n <form [formGroup]=\"reportForm\" novalidate>\n <adf-toolbar>\n <adf-toolbar-title class=\"adf-report-title-container\">\n <div *ngIf=\"isEditable\">\n <mat-form-field class=\"adf-full-width-input\">\n <input\n matInput\n type=\"text\"\n class=\"adf-edit-report-title\"\n id=\"reportName\"\n data-automation-id=\"reportName\"\n [value]=\"reportParameters.name\"\n (input)=\"reportParameters.name = $any($event).target.value\"\n (blur)=\"editTitle()\"\n (keyup.enter)=\"editTitle()\"\n />\n </mat-form-field>\n </div>\n <div\n class=\"adf-report-title\"\n *ngIf=\"!isEditable\"\n (click)=\"editEnable()\"\n role=\"button\"\n tabindex=\"0\"\n (keyup.enter)=\"editEnable()\"\n >\n <mat-icon class=\"adf-report-icon\">mode_edit</mat-icon>\n <h4>{{ reportParameters.name }}</h4>\n </div>\n </adf-toolbar-title>\n <adf-buttons-action-menu *ngIf=\"!isEditable\">\n <button mat-menu-item (click)=\"toggleParameters()\" id=\"\">\n <mat-icon>settings</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-SETTING' | translate }}</span>\n </button>\n <button mat-menu-item (click)=\"deleteReport(reportId)\" id=\"delete-button\">\n <mat-icon>delete</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-DELETE' | translate }}</span>\n </button>\n <div *ngIf=\"isFormValid()\">\n <button mat-menu-item (click)=\"showDialog('Export')\" id=\"export-button\">\n <mat-icon>file_download</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-EXPORT-CSV' | translate }}</span>\n </button>\n <button mat-menu-item (click)=\"showDialog('Save')\" id=\"save-button\">\n <mat-icon>save</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-SAVE' | translate }}</span>\n </button>\n </div>\n </adf-buttons-action-menu>\n </adf-toolbar>\n <div *ngFor=\"let field of reportParameters.definition.parameters\" [class.adf-is-hide]=\"isParametersHide()\">\n <div [ngSwitch]=\"field.type\">\n <div *ngSwitchCase=\"'integer'\">\n <br />\n <analytics-number-widget\n [field]=\"field\"\n [group]=\"processInstanceGroup\"\n [controllerName]=\"'slowProcessInstanceInteger'\"\n [required]=\"true\"\n />\n </div>\n <div *ngSwitchCase=\"'duration'\">\n <br />\n <duration-widget [field]=\"field\" [group]=\"durationGroup\" [controllerName]=\"'duration'\" />\n </div>\n <div *ngSwitchCase=\"'boolean'\">\n <br />\n <analytics-checkbox-widget [field]=\"field\" [group]=\"typeFilteringGroup\" [controllerName]=\"'typeFiltering'\" />\n </div>\n <div *ngSwitchCase=\"'status'\">\n <br />\n <analytics-dropdown-widget [field]=\"field\" [group]=\"statusGroup\" [controllerName]=\"'status'\" [required]=\"true\" />\n </div>\n <div *ngSwitchCase=\"'processDefinition'\">\n <br />\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"processDefGroup\"\n [controllerName]=\"'processDefinitionId'\"\n [required]=\"true\"\n (fieldChanged)=\"onProcessDefinitionChanges(field)\"\n />\n </div>\n <div *ngSwitchCase=\"'task'\">\n <br />\n <analytics-dropdown-widget [field]=\"field\" [group]=\"taskGroup\" [controllerName]=\"'taskName'\" [required]=\"true\" />\n </div>\n <div *ngSwitchCase=\"'dateRange'\">\n <br />\n <adf-date-range-widget [field]=\"field\" [group]=\"dateRange\" />\n </div>\n <div *ngSwitchCase=\"'dateInterval'\">\n <br />\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"dateIntervalGroup\"\n [controllerName]=\"'dateRangeInterval'\"\n [required]=\"true\"\n [showDefaultOption]=\"false\"\n />\n </div>\n <div *ngSwitchDefault>\n <span>{{ 'ANALYTICS.MESSAGES.UNKNOWN-WIDGET-TYPE' | translate }}: {{ field.type }}</span>\n </div>\n </div>\n </div>\n <ng-template #reportNameDialog>\n <div id=\"report-dialog\" class=\"adf-report-dialog\">\n <h5 matDialogTitle id=\"report-dialog-title\">{{ action }} report</h5>\n <div mat-dialog-content>\n <div *ngIf=\"isSaveAction()\" id=\"save-title-submessage\" class=\"adf-export-message\">\n {{ 'DIALOG.SAVE_MESSAGE' | translate }}\n </div>\n <div class=\"adf-save-export-input\">\n <mat-form-field class=\"adf-example-full-width\" [floatLabel]=\"'always'\">\n <input\n matInput\n type=\"text\"\n id=\"repName\"\n placeholder=\"Report Name\"\n [value]=\"reportName\"\n [(ngModel)]=\"reportName\"\n [ngModelOptions]=\"{ standalone: true }\"\n />\n </mat-form-field>\n </div>\n </div>\n <div class=\"adf-report-dialog-actions\" mat-dialog-actions>\n <button mat-button color=\"accent\" type=\"button\" id=\"close-dialog-button\" (click)=\"closeDialog()\">Close</button>\n <button\n mat-button\n color=\"primary\"\n type=\"button\"\n id=\"action-dialog-button\"\n (click)=\"performAction(action, reportParamQuery)\"\n >\n {{ action }}\n </button>\n </div>\n </div>\n </ng-template>\n </form>\n </div>\n </div>\n</div>\n", styles: [".adf-dropdown-widget,.adf-dropdown-widget__select{width:100%}.adf-dropdown-widget__invalid .adf-dropdown-widget__select{border-color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label{color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label:after{background-color:var(--theme-warn-color)}.adf-full-width-input{width:100%}.adf-full-width-input .adf-edit-report-title[type=text]{float:left;font-size:var(--theme-title-font-size);padding-top:19px}.adf-report-icon{float:left;padding:5px 5px 0 0;visibility:hidden}.adf-report-title-container{cursor:pointer;width:100%;margin-bottom:12px}.adf-report-title-container :hover .adf-report-icon{color:var(--theme-primary-color);visibility:visible}.adf-report-title{padding-top:10px}.adf-is-hide{height:0;overflow:hidden;transition:height .5s}.adf-report-report-container{border-bottom:solid 1px var(--adf-theme-foreground-divider-color);padding-top:10px}.adf-report-report-container .adf-toolbar-container.adf-toolbar-container-row{border:0;padding:0}.adf-report-container-setting{padding-left:10px}.adf-option_button_details{padding-top:20px}.adf-export-message{background-color:var(--theme-background-color)}.adf-save-export-input{width:100%}.adf-delete-parameter{position:absolute;margin-left:60%;padding-top:5px}.adf-hide{display:none}.adf-report-dialog .adf-example-full-width{width:100%}.adf-report-dialog .adf-report-dialog-actions{justify-content:flex-end}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1$1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1$1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: ToolbarComponent, selector: "adf-toolbar", inputs: ["title", "color"] }, { kind: "component", type: ToolbarTitleComponent, selector: "adf-toolbar-title" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i3$1.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "component", type: CheckboxWidgetAnalyticsComponent, selector: "analytics-checkbox-widget", inputs: ["group", "controllerName"] }, { kind: "component", type: DateRangeWidgetComponent, selector: "adf-date-range-widget", inputs: ["group", "field"], outputs: ["dateRangeChanged"] }, { kind: "component", type: DropdownWidgetAnalyticsComponent, selector: "analytics-dropdown-widget", inputs: ["group", "controllerName", "showDefaultOption", "required", "defaultOptionText"] }, { kind: "component", type: DurationWidgetComponent, selector: "duration-widget", inputs: ["group", "controllerName", "required"] }, { kind: "component", type: NumberWidgetAnalyticsComponent, selector: "analytics-number-widget", inputs: ["group", "controllerName", "required"] }, { kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i4$3.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i4$3.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: i4$3.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2$2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: ButtonsMenuComponent, selector: "adf-buttons-action-menu" }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
6451
|
+
], viewQueries: [{ propertyName: "reportNameDialog", first: true, predicate: ["reportNameDialog"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div [class.adf-hide]=\"hideComponent\">\n <div class=\"adf-report-report-container\">\n <div *ngIf=\"reportParameters\">\n <form [formGroup]=\"reportForm\" novalidate>\n <adf-toolbar>\n <adf-toolbar-title class=\"adf-report-title-container\">\n <div *ngIf=\"isEditable\">\n <mat-form-field class=\"adf-full-width-input\">\n <input\n matInput\n type=\"text\"\n class=\"adf-edit-report-title\"\n id=\"reportName\"\n data-automation-id=\"reportName\"\n [value]=\"reportParameters.name\"\n (input)=\"reportParameters.name = $any($event).target.value\"\n (blur)=\"editTitle()\"\n (keyup.enter)=\"editTitle()\"\n />\n </mat-form-field>\n </div>\n <div\n class=\"adf-report-title\"\n *ngIf=\"!isEditable\"\n (click)=\"editEnable()\"\n role=\"button\"\n tabindex=\"0\"\n (keyup.enter)=\"editEnable()\"\n >\n <mat-icon class=\"adf-report-icon\">mode_edit</mat-icon>\n <h4>{{ reportParameters.name }}</h4>\n </div>\n </adf-toolbar-title>\n <adf-buttons-action-menu *ngIf=\"!isEditable\">\n <button mat-menu-item (click)=\"toggleParameters()\" id=\"\">\n <mat-icon>settings</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-SETTING' | translate }}</span>\n </button>\n <button mat-menu-item (click)=\"deleteReport(reportId)\" id=\"delete-button\">\n <mat-icon>delete</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-DELETE' | translate }}</span>\n </button>\n <div *ngIf=\"isFormValid()\">\n <button mat-menu-item (click)=\"showDialog('Export')\" id=\"export-button\">\n <mat-icon>file_download</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-EXPORT-CSV' | translate }}</span>\n </button>\n <button mat-menu-item (click)=\"showDialog('Save')\" id=\"save-button\">\n <mat-icon>save</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-SAVE' | translate }}</span>\n </button>\n </div>\n </adf-buttons-action-menu>\n </adf-toolbar>\n <div *ngFor=\"let field of reportParameters.definition.parameters\" [class.adf-is-hide]=\"isParametersHide()\">\n <div [ngSwitch]=\"field.type\">\n <div *ngSwitchCase=\"'integer'\">\n <br />\n <analytics-number-widget\n [field]=\"field\"\n [group]=\"processInstanceGroup\"\n [controllerName]=\"'slowProcessInstanceInteger'\"\n [required]=\"true\"\n />\n </div>\n <div *ngSwitchCase=\"'duration'\">\n <br />\n <duration-widget [field]=\"field\" [group]=\"durationGroup\" [controllerName]=\"'duration'\" />\n </div>\n <div *ngSwitchCase=\"'boolean'\">\n <br />\n <analytics-checkbox-widget [field]=\"field\" [group]=\"typeFilteringGroup\" [controllerName]=\"'typeFiltering'\" />\n </div>\n <div *ngSwitchCase=\"'status'\">\n <br />\n <analytics-dropdown-widget [field]=\"field\" [group]=\"statusGroup\" [controllerName]=\"'status'\" [required]=\"true\" />\n </div>\n <div *ngSwitchCase=\"'processDefinition'\">\n <br />\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"processDefGroup\"\n [controllerName]=\"'processDefinitionId'\"\n [required]=\"true\"\n (fieldChanged)=\"onProcessDefinitionChanges(field)\"\n />\n </div>\n <div *ngSwitchCase=\"'task'\">\n <br />\n <analytics-dropdown-widget [field]=\"field\" [group]=\"taskGroup\" [controllerName]=\"'taskName'\" [required]=\"true\" />\n </div>\n <div *ngSwitchCase=\"'dateRange'\">\n <br />\n <adf-date-range-widget [field]=\"field\" [group]=\"dateRange\" />\n </div>\n <div *ngSwitchCase=\"'dateInterval'\">\n <br />\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"dateIntervalGroup\"\n [controllerName]=\"'dateRangeInterval'\"\n [required]=\"true\"\n [showDefaultOption]=\"false\"\n />\n </div>\n <div *ngSwitchDefault>\n <span>{{ 'ANALYTICS.MESSAGES.UNKNOWN-WIDGET-TYPE' | translate }}: {{ field.type }}</span>\n </div>\n </div>\n </div>\n <ng-template #reportNameDialog>\n <div id=\"report-dialog\" class=\"adf-report-dialog\">\n <h5 matDialogTitle id=\"report-dialog-title\">{{ action }} report</h5>\n <div mat-dialog-content>\n <div *ngIf=\"isSaveAction()\" id=\"save-title-submessage\" class=\"adf-export-message\">\n {{ 'DIALOG.SAVE_MESSAGE' | translate }}\n </div>\n <div class=\"adf-save-export-input\">\n <mat-form-field class=\"adf-full-width\">\n <input\n matInput\n type=\"text\"\n id=\"repName\"\n placeholder=\"Report Name\"\n [value]=\"reportName\"\n [(ngModel)]=\"reportName\"\n [ngModelOptions]=\"{ standalone: true }\"\n />\n </mat-form-field>\n </div>\n </div>\n <div class=\"adf-report-dialog-actions\" mat-dialog-actions>\n <button mat-button color=\"accent\" type=\"button\" id=\"close-dialog-button\" (click)=\"closeDialog()\">Close</button>\n <button\n mat-button\n color=\"primary\"\n type=\"button\"\n id=\"action-dialog-button\"\n (click)=\"performAction(action, reportParamQuery)\"\n >\n {{ action }}\n </button>\n </div>\n </div>\n </ng-template>\n </form>\n </div>\n </div>\n</div>\n", styles: [".adf-dropdown-widget,.adf-dropdown-widget__select{width:100%}.adf-dropdown-widget__invalid .adf-dropdown-widget__select{border-color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label{color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label:after{background-color:var(--theme-warn-color)}.adf-full-width-input{width:100%}.adf-full-width-input .adf-edit-report-title[type=text]{float:left;font-size:var(--theme-title-font-size);padding-top:19px}.adf-report-icon{float:left;padding:5px 5px 0 0;visibility:hidden}.adf-report-title-container{cursor:pointer;width:100%;margin-bottom:12px}.adf-report-title-container :hover .adf-report-icon{color:var(--theme-primary-color);visibility:visible}.adf-report-title{padding-top:10px}.adf-is-hide{height:0;overflow:hidden;transition:height .5s}.adf-report-report-container{border-bottom:solid 1px var(--adf-theme-foreground-divider-color);padding-top:10px}.adf-report-report-container .adf-toolbar-container.adf-toolbar-container-row{border:0;padding:0}.adf-report-container-setting{padding-left:10px}.adf-option_button_details{padding-top:20px}.adf-export-message{background-color:var(--theme-background-color)}.adf-save-export-input{width:100%}.adf-delete-parameter{position:absolute;margin-left:60%;padding-top:5px}.adf-hide{display:none}.adf-report-dialog .adf-full-width{width:100%}.adf-report-dialog .adf-report-dialog-actions{justify-content:flex-end}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: ToolbarComponent, selector: "adf-toolbar", inputs: ["title", "color"] }, { kind: "component", type: ToolbarTitleComponent, selector: "adf-toolbar-title" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i3$3.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "component", type: CheckboxWidgetAnalyticsComponent, selector: "analytics-checkbox-widget", inputs: ["group", "controllerName"] }, { kind: "component", type: DateRangeWidgetComponent, selector: "adf-date-range-widget", inputs: ["group", "field"], outputs: ["dateRangeChanged"] }, { kind: "component", type: DropdownWidgetAnalyticsComponent, selector: "analytics-dropdown-widget", inputs: ["group", "controllerName", "showDefaultOption", "required", "defaultOptionText"] }, { kind: "component", type: DurationWidgetComponent, selector: "duration-widget", inputs: ["group", "controllerName", "required"] }, { kind: "component", type: NumberWidgetAnalyticsComponent, selector: "analytics-number-widget", inputs: ["group", "controllerName", "required"] }, { kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i12.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i12.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: i12.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2$2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: ButtonsMenuComponent, selector: "adf-buttons-action-menu" }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
6448
6452
|
}
|
|
6449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsReportParametersComponent, decorators: [{
|
|
6450
6454
|
type: Component,
|
|
6451
6455
|
args: [{ selector: 'adf-analytics-report-parameters', imports: [
|
|
6452
6456
|
CommonModule,
|
|
@@ -6466,8 +6470,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
6466
6470
|
], providers: [
|
|
6467
6471
|
{ provide: MAT_DATE_FORMATS, useValue: ADF_DATE_FORMATS },
|
|
6468
6472
|
{ provide: DateAdapter, useClass: AdfDateFnsAdapter }
|
|
6469
|
-
], encapsulation: ViewEncapsulation.None, template: "<div [class.adf-hide]=\"hideComponent\">\n <div class=\"adf-report-report-container\">\n <div *ngIf=\"reportParameters\">\n <form [formGroup]=\"reportForm\" novalidate>\n <adf-toolbar>\n <adf-toolbar-title class=\"adf-report-title-container\">\n <div *ngIf=\"isEditable\">\n <mat-form-field class=\"adf-full-width-input\">\n <input\n matInput\n type=\"text\"\n class=\"adf-edit-report-title\"\n id=\"reportName\"\n data-automation-id=\"reportName\"\n [value]=\"reportParameters.name\"\n (input)=\"reportParameters.name = $any($event).target.value\"\n (blur)=\"editTitle()\"\n (keyup.enter)=\"editTitle()\"\n />\n </mat-form-field>\n </div>\n <div\n class=\"adf-report-title\"\n *ngIf=\"!isEditable\"\n (click)=\"editEnable()\"\n role=\"button\"\n tabindex=\"0\"\n (keyup.enter)=\"editEnable()\"\n >\n <mat-icon class=\"adf-report-icon\">mode_edit</mat-icon>\n <h4>{{ reportParameters.name }}</h4>\n </div>\n </adf-toolbar-title>\n <adf-buttons-action-menu *ngIf=\"!isEditable\">\n <button mat-menu-item (click)=\"toggleParameters()\" id=\"\">\n <mat-icon>settings</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-SETTING' | translate }}</span>\n </button>\n <button mat-menu-item (click)=\"deleteReport(reportId)\" id=\"delete-button\">\n <mat-icon>delete</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-DELETE' | translate }}</span>\n </button>\n <div *ngIf=\"isFormValid()\">\n <button mat-menu-item (click)=\"showDialog('Export')\" id=\"export-button\">\n <mat-icon>file_download</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-EXPORT-CSV' | translate }}</span>\n </button>\n <button mat-menu-item (click)=\"showDialog('Save')\" id=\"save-button\">\n <mat-icon>save</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-SAVE' | translate }}</span>\n </button>\n </div>\n </adf-buttons-action-menu>\n </adf-toolbar>\n <div *ngFor=\"let field of reportParameters.definition.parameters\" [class.adf-is-hide]=\"isParametersHide()\">\n <div [ngSwitch]=\"field.type\">\n <div *ngSwitchCase=\"'integer'\">\n <br />\n <analytics-number-widget\n [field]=\"field\"\n [group]=\"processInstanceGroup\"\n [controllerName]=\"'slowProcessInstanceInteger'\"\n [required]=\"true\"\n />\n </div>\n <div *ngSwitchCase=\"'duration'\">\n <br />\n <duration-widget [field]=\"field\" [group]=\"durationGroup\" [controllerName]=\"'duration'\" />\n </div>\n <div *ngSwitchCase=\"'boolean'\">\n <br />\n <analytics-checkbox-widget [field]=\"field\" [group]=\"typeFilteringGroup\" [controllerName]=\"'typeFiltering'\" />\n </div>\n <div *ngSwitchCase=\"'status'\">\n <br />\n <analytics-dropdown-widget [field]=\"field\" [group]=\"statusGroup\" [controllerName]=\"'status'\" [required]=\"true\" />\n </div>\n <div *ngSwitchCase=\"'processDefinition'\">\n <br />\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"processDefGroup\"\n [controllerName]=\"'processDefinitionId'\"\n [required]=\"true\"\n (fieldChanged)=\"onProcessDefinitionChanges(field)\"\n />\n </div>\n <div *ngSwitchCase=\"'task'\">\n <br />\n <analytics-dropdown-widget [field]=\"field\" [group]=\"taskGroup\" [controllerName]=\"'taskName'\" [required]=\"true\" />\n </div>\n <div *ngSwitchCase=\"'dateRange'\">\n <br />\n <adf-date-range-widget [field]=\"field\" [group]=\"dateRange\" />\n </div>\n <div *ngSwitchCase=\"'dateInterval'\">\n <br />\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"dateIntervalGroup\"\n [controllerName]=\"'dateRangeInterval'\"\n [required]=\"true\"\n [showDefaultOption]=\"false\"\n />\n </div>\n <div *ngSwitchDefault>\n <span>{{ 'ANALYTICS.MESSAGES.UNKNOWN-WIDGET-TYPE' | translate }}: {{ field.type }}</span>\n </div>\n </div>\n </div>\n <ng-template #reportNameDialog>\n <div id=\"report-dialog\" class=\"adf-report-dialog\">\n <h5 matDialogTitle id=\"report-dialog-title\">{{ action }} report</h5>\n <div mat-dialog-content>\n <div *ngIf=\"isSaveAction()\" id=\"save-title-submessage\" class=\"adf-export-message\">\n {{ 'DIALOG.SAVE_MESSAGE' | translate }}\n </div>\n <div class=\"adf-save-export-input\">\n <mat-form-field class=\"adf-example-full-width\" [floatLabel]=\"'always'\">\n <input\n matInput\n type=\"text\"\n id=\"repName\"\n placeholder=\"Report Name\"\n [value]=\"reportName\"\n [(ngModel)]=\"reportName\"\n [ngModelOptions]=\"{ standalone: true }\"\n />\n </mat-form-field>\n </div>\n </div>\n <div class=\"adf-report-dialog-actions\" mat-dialog-actions>\n <button mat-button color=\"accent\" type=\"button\" id=\"close-dialog-button\" (click)=\"closeDialog()\">Close</button>\n <button\n mat-button\n color=\"primary\"\n type=\"button\"\n id=\"action-dialog-button\"\n (click)=\"performAction(action, reportParamQuery)\"\n >\n {{ action }}\n </button>\n </div>\n </div>\n </ng-template>\n </form>\n </div>\n </div>\n</div>\n", styles: [".adf-dropdown-widget,.adf-dropdown-widget__select{width:100%}.adf-dropdown-widget__invalid .adf-dropdown-widget__select{border-color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label{color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label:after{background-color:var(--theme-warn-color)}.adf-full-width-input{width:100%}.adf-full-width-input .adf-edit-report-title[type=text]{float:left;font-size:var(--theme-title-font-size);padding-top:19px}.adf-report-icon{float:left;padding:5px 5px 0 0;visibility:hidden}.adf-report-title-container{cursor:pointer;width:100%;margin-bottom:12px}.adf-report-title-container :hover .adf-report-icon{color:var(--theme-primary-color);visibility:visible}.adf-report-title{padding-top:10px}.adf-is-hide{height:0;overflow:hidden;transition:height .5s}.adf-report-report-container{border-bottom:solid 1px var(--adf-theme-foreground-divider-color);padding-top:10px}.adf-report-report-container .adf-toolbar-container.adf-toolbar-container-row{border:0;padding:0}.adf-report-container-setting{padding-left:10px}.adf-option_button_details{padding-top:20px}.adf-export-message{background-color:var(--theme-background-color)}.adf-save-export-input{width:100%}.adf-delete-parameter{position:absolute;margin-left:60%;padding-top:5px}.adf-hide{display:none}.adf-report-dialog .adf-example-full-width{width:100%}.adf-report-dialog .adf-report-dialog-actions{justify-content:flex-end}\n"] }]
|
|
6470
|
-
}],
|
|
6473
|
+
], encapsulation: ViewEncapsulation.None, template: "<div [class.adf-hide]=\"hideComponent\">\n <div class=\"adf-report-report-container\">\n <div *ngIf=\"reportParameters\">\n <form [formGroup]=\"reportForm\" novalidate>\n <adf-toolbar>\n <adf-toolbar-title class=\"adf-report-title-container\">\n <div *ngIf=\"isEditable\">\n <mat-form-field class=\"adf-full-width-input\">\n <input\n matInput\n type=\"text\"\n class=\"adf-edit-report-title\"\n id=\"reportName\"\n data-automation-id=\"reportName\"\n [value]=\"reportParameters.name\"\n (input)=\"reportParameters.name = $any($event).target.value\"\n (blur)=\"editTitle()\"\n (keyup.enter)=\"editTitle()\"\n />\n </mat-form-field>\n </div>\n <div\n class=\"adf-report-title\"\n *ngIf=\"!isEditable\"\n (click)=\"editEnable()\"\n role=\"button\"\n tabindex=\"0\"\n (keyup.enter)=\"editEnable()\"\n >\n <mat-icon class=\"adf-report-icon\">mode_edit</mat-icon>\n <h4>{{ reportParameters.name }}</h4>\n </div>\n </adf-toolbar-title>\n <adf-buttons-action-menu *ngIf=\"!isEditable\">\n <button mat-menu-item (click)=\"toggleParameters()\" id=\"\">\n <mat-icon>settings</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-SETTING' | translate }}</span>\n </button>\n <button mat-menu-item (click)=\"deleteReport(reportId)\" id=\"delete-button\">\n <mat-icon>delete</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-DELETE' | translate }}</span>\n </button>\n <div *ngIf=\"isFormValid()\">\n <button mat-menu-item (click)=\"showDialog('Export')\" id=\"export-button\">\n <mat-icon>file_download</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-EXPORT-CSV' | translate }}</span>\n </button>\n <button mat-menu-item (click)=\"showDialog('Save')\" id=\"save-button\">\n <mat-icon>save</mat-icon>\n <span>{{ 'ANALYTICS.MESSAGES.ICON-SAVE' | translate }}</span>\n </button>\n </div>\n </adf-buttons-action-menu>\n </adf-toolbar>\n <div *ngFor=\"let field of reportParameters.definition.parameters\" [class.adf-is-hide]=\"isParametersHide()\">\n <div [ngSwitch]=\"field.type\">\n <div *ngSwitchCase=\"'integer'\">\n <br />\n <analytics-number-widget\n [field]=\"field\"\n [group]=\"processInstanceGroup\"\n [controllerName]=\"'slowProcessInstanceInteger'\"\n [required]=\"true\"\n />\n </div>\n <div *ngSwitchCase=\"'duration'\">\n <br />\n <duration-widget [field]=\"field\" [group]=\"durationGroup\" [controllerName]=\"'duration'\" />\n </div>\n <div *ngSwitchCase=\"'boolean'\">\n <br />\n <analytics-checkbox-widget [field]=\"field\" [group]=\"typeFilteringGroup\" [controllerName]=\"'typeFiltering'\" />\n </div>\n <div *ngSwitchCase=\"'status'\">\n <br />\n <analytics-dropdown-widget [field]=\"field\" [group]=\"statusGroup\" [controllerName]=\"'status'\" [required]=\"true\" />\n </div>\n <div *ngSwitchCase=\"'processDefinition'\">\n <br />\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"processDefGroup\"\n [controllerName]=\"'processDefinitionId'\"\n [required]=\"true\"\n (fieldChanged)=\"onProcessDefinitionChanges(field)\"\n />\n </div>\n <div *ngSwitchCase=\"'task'\">\n <br />\n <analytics-dropdown-widget [field]=\"field\" [group]=\"taskGroup\" [controllerName]=\"'taskName'\" [required]=\"true\" />\n </div>\n <div *ngSwitchCase=\"'dateRange'\">\n <br />\n <adf-date-range-widget [field]=\"field\" [group]=\"dateRange\" />\n </div>\n <div *ngSwitchCase=\"'dateInterval'\">\n <br />\n <analytics-dropdown-widget\n [field]=\"field\"\n [group]=\"dateIntervalGroup\"\n [controllerName]=\"'dateRangeInterval'\"\n [required]=\"true\"\n [showDefaultOption]=\"false\"\n />\n </div>\n <div *ngSwitchDefault>\n <span>{{ 'ANALYTICS.MESSAGES.UNKNOWN-WIDGET-TYPE' | translate }}: {{ field.type }}</span>\n </div>\n </div>\n </div>\n <ng-template #reportNameDialog>\n <div id=\"report-dialog\" class=\"adf-report-dialog\">\n <h5 matDialogTitle id=\"report-dialog-title\">{{ action }} report</h5>\n <div mat-dialog-content>\n <div *ngIf=\"isSaveAction()\" id=\"save-title-submessage\" class=\"adf-export-message\">\n {{ 'DIALOG.SAVE_MESSAGE' | translate }}\n </div>\n <div class=\"adf-save-export-input\">\n <mat-form-field class=\"adf-full-width\">\n <input\n matInput\n type=\"text\"\n id=\"repName\"\n placeholder=\"Report Name\"\n [value]=\"reportName\"\n [(ngModel)]=\"reportName\"\n [ngModelOptions]=\"{ standalone: true }\"\n />\n </mat-form-field>\n </div>\n </div>\n <div class=\"adf-report-dialog-actions\" mat-dialog-actions>\n <button mat-button color=\"accent\" type=\"button\" id=\"close-dialog-button\" (click)=\"closeDialog()\">Close</button>\n <button\n mat-button\n color=\"primary\"\n type=\"button\"\n id=\"action-dialog-button\"\n (click)=\"performAction(action, reportParamQuery)\"\n >\n {{ action }}\n </button>\n </div>\n </div>\n </ng-template>\n </form>\n </div>\n </div>\n</div>\n", styles: [".adf-dropdown-widget,.adf-dropdown-widget__select{width:100%}.adf-dropdown-widget__invalid .adf-dropdown-widget__select{border-color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label{color:var(--theme-warn-color)}.adf-dropdown-widget__invalid .adf-dropdown-widget__label:after{background-color:var(--theme-warn-color)}.adf-full-width-input{width:100%}.adf-full-width-input .adf-edit-report-title[type=text]{float:left;font-size:var(--theme-title-font-size);padding-top:19px}.adf-report-icon{float:left;padding:5px 5px 0 0;visibility:hidden}.adf-report-title-container{cursor:pointer;width:100%;margin-bottom:12px}.adf-report-title-container :hover .adf-report-icon{color:var(--theme-primary-color);visibility:visible}.adf-report-title{padding-top:10px}.adf-is-hide{height:0;overflow:hidden;transition:height .5s}.adf-report-report-container{border-bottom:solid 1px var(--adf-theme-foreground-divider-color);padding-top:10px}.adf-report-report-container .adf-toolbar-container.adf-toolbar-container-row{border:0;padding:0}.adf-report-container-setting{padding-left:10px}.adf-option_button_details{padding-top:20px}.adf-export-message{background-color:var(--theme-background-color)}.adf-save-export-input{width:100%}.adf-delete-parameter{position:absolute;margin-left:60%;padding-top:5px}.adf-hide{display:none}.adf-report-dialog .adf-full-width{width:100%}.adf-report-dialog .adf-report-dialog-actions{justify-content:flex-end}\n"] }]
|
|
6474
|
+
}], propDecorators: { appId: [{
|
|
6471
6475
|
type: Input
|
|
6472
6476
|
}], reportId: [{
|
|
6473
6477
|
type: Input
|
|
@@ -6535,10 +6539,10 @@ class AnalyticsComponent {
|
|
|
6535
6539
|
onDeleteReportSuccess(reportId) {
|
|
6536
6540
|
this.reportDeleted.emit(reportId);
|
|
6537
6541
|
}
|
|
6538
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6539
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
6542
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6543
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: AnalyticsComponent, isStandalone: true, selector: "adf-analytics", inputs: { appId: "appId", reportId: "reportId", hideParameters: "hideParameters" }, outputs: { editReport: "editReport", reportSaved: "reportSaved", reportDeleted: "reportDeleted" }, viewQueries: [{ propertyName: "analyticsGenerator", first: true, predicate: ["analyticsGenerator"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: "<div class=\"adf-analytics-container\">\n <adf-analytics-report-parameters\n [appId]=\"appId\"\n [reportId]=\"reportId\"\n [hideComponent]=\"hideParameters\"\n (formValueChanged)=\"reset()\"\n (success)=\"showReport($event)\"\n (saveReportSuccess)=\"onSaveReportSuccess($event)\"\n (deleteReportSuccess)=\"onDeleteReportSuccess($event)\"\n (edit)=\"onEditReport($event)\" />\n\n <adf-analytics-generator\n [reportId]=\"reportId\"\n [reportParamQuery]=\"reportParamQuery\"\n #analyticsGenerator />\n</div>\n", styles: [".adf-chart{display:block;width:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: AnalyticsGeneratorComponent, selector: "adf-analytics-generator", inputs: ["reportId", "reportParamQuery"], outputs: ["success", "error"] }, { kind: "component", type: AnalyticsReportParametersComponent, selector: "adf-analytics-report-parameters", inputs: ["appId", "reportId", "hideComponent"], outputs: ["success", "error", "edit", "formValueChanged", "saveReportSuccess", "deleteReportSuccess"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
6540
6544
|
}
|
|
6541
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsComponent, decorators: [{
|
|
6542
6546
|
type: Component,
|
|
6543
6547
|
args: [{ selector: 'adf-analytics', imports: [CommonModule, AnalyticsGeneratorComponent, AnalyticsReportParametersComponent], encapsulation: ViewEncapsulation.None, template: "<div class=\"adf-analytics-container\">\n <adf-analytics-report-parameters\n [appId]=\"appId\"\n [reportId]=\"reportId\"\n [hideComponent]=\"hideParameters\"\n (formValueChanged)=\"reset()\"\n (success)=\"showReport($event)\"\n (saveReportSuccess)=\"onSaveReportSuccess($event)\"\n (deleteReportSuccess)=\"onDeleteReportSuccess($event)\"\n (edit)=\"onEditReport($event)\" />\n\n <adf-analytics-generator\n [reportId]=\"reportId\"\n [reportParamQuery]=\"reportParamQuery\"\n #analyticsGenerator />\n</div>\n", styles: [".adf-chart{display:block;width:100%}\n"] }]
|
|
6544
6548
|
}], propDecorators: { appId: [{
|
|
@@ -6577,8 +6581,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
6577
6581
|
const LAYOUT_LIST = 'LIST';
|
|
6578
6582
|
const LAYOUT_GRID = 'GRID';
|
|
6579
6583
|
class AnalyticsReportListComponent {
|
|
6580
|
-
constructor(
|
|
6581
|
-
this.analyticsService =
|
|
6584
|
+
constructor() {
|
|
6585
|
+
this.analyticsService = inject(AnalyticsService);
|
|
6582
6586
|
/** layout Type LIST or GRID. */
|
|
6583
6587
|
this.layoutType = LAYOUT_LIST;
|
|
6584
6588
|
/** selectFirst. */
|
|
@@ -6691,13 +6695,13 @@ class AnalyticsReportListComponent {
|
|
|
6691
6695
|
this.reports = [];
|
|
6692
6696
|
}
|
|
6693
6697
|
}
|
|
6694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6695
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
6698
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsReportListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6699
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: AnalyticsReportListComponent, isStandalone: true, selector: "adf-analytics-report-list", inputs: { layoutType: "layoutType", appId: "appId", selectFirst: "selectFirst" }, outputs: { reportClick: "reportClick", success: "success", error: "error" }, ngImport: i0, template: "<div class=\"adf-analytics-report-list menu-container\">\n <mat-nav-list *ngIf=\"isList()\">\n <mat-list-item\n class=\"adf-activiti-filters__entry\"\n (click)=\"selectReport(report)\"\n *ngFor=\"let report of reports; let idx = index\"\n [class.adf-active]=\"currentReport === report\">\n <span [attr.id]=\"'report-list-' + idx\" class=\"adf-activiti-filters__label\">\n <mat-icon matListItemLine\n [attr.data-automation-id]=\"report.name + '_filter'\"\n class=\"adf-activiti-filters__entry-icon\">assignment</mat-icon>\n <span class=\"adf-text\">{{report.name}}</span>\n </span>\n </mat-list-item>\n </mat-nav-list>\n <div class=\"adf-report-card-grids\" *ngIf=\"isGrid()\">\n <mat-card appearance=\"outlined\" (click)=\"selectReport(report)\" class=\"adf-report-card\" *ngFor=\"let report of reports\">\n <div class=\"adf-report-card-logo logo\">\n <mat-icon class=\"adf-report-card-logo-icon\">equalizer</mat-icon>\n </div>\n <div mat-card-title class=\"adf-report-card-title\">\n <h1 class=\"adf-application-title\">{{report.name}}</h1>\n </div>\n <div mat-card-content class=\"adf-report-card-content\">\n <p>{{report.description}}</p>\n </div>\n <div mat-card-actions class=\"adf-report-card-actions\">\n <mat-icon class=\"adf-report-card-actions-icon\" *ngIf=\"isSelected(report)\">done</mat-icon>\n </div>\n </mat-card>\n </div>\n</div>\n", styles: [".adf-analytics-report-list .adf-activiti-filters__entry{cursor:pointer}.adf-analytics-report-list .adf-activiti-filters__entry .adf-active{color:var(--theme-primary-color)}.adf-analytics-report-list .adf-activiti-filters__entry-icon{color:var(--theme-primary-color);position:relative;top:5px}.adf-analytics-report-list .adf-activiti-filters__label{white-space:nowrap;overflow:hidden}.adf-analytics-report-list .adf-report-card-grids{display:flex;padding:8px;flex-flow:row wrap;margin:0 auto;align-items:stretch}.adf-analytics-report-list .adf-report-card{margin:8px;width:calc(33.3333% - 16px);position:relative;min-height:200px;overflow:hidden;background-color:var(--theme-background-color);display:flex;flex-direction:column;cursor:pointer}.adf-analytics-report-list .adf-report-card-logo{position:absolute;right:20px;top:35px;z-index:6}.adf-analytics-report-list .adf-report-card-logo-icon{font-size:70px;color:var(--theme-accent-color);width:1em;height:1em;display:inline-block}.adf-analytics-report-list .adf-report-card-title{padding:16px;z-index:7}.adf-analytics-report-list .adf-report-card-title .adf-application-title{font-size:var(--theme-headline-font-size);margin:0}.adf-analytics-report-list .adf-report-card-content{padding:16px;flex-grow:1}.adf-analytics-report-list .adf-report-card-actions{border-top:1px solid var(--adf-theme-foreground-divider-color);padding:8px;box-sizing:border-box;height:40px}.adf-analytics-report-list .adf-report-card-actions-icon{color:var(--adf-theme-foreground-text-color-054)}.adf-analytics-report-list .adf-report-card-actions-icon:hover{color:var(--adf-theme-foreground-text-color-087)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatListModule }, { kind: "component", type: i2$3.MatNavList, selector: "mat-nav-list", exportAs: ["matNavList"] }, { kind: "component", type: i2$3.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i2$3.MatListItemLine, selector: "[matListItemLine]" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i4$2.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i4$2.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
6696
6700
|
}
|
|
6697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6701
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: AnalyticsReportListComponent, decorators: [{
|
|
6698
6702
|
type: Component,
|
|
6699
6703
|
args: [{ selector: 'adf-analytics-report-list', imports: [CommonModule, MatListModule, MatIconModule, MatCardModule], encapsulation: ViewEncapsulation.None, template: "<div class=\"adf-analytics-report-list menu-container\">\n <mat-nav-list *ngIf=\"isList()\">\n <mat-list-item\n class=\"adf-activiti-filters__entry\"\n (click)=\"selectReport(report)\"\n *ngFor=\"let report of reports; let idx = index\"\n [class.adf-active]=\"currentReport === report\">\n <span [attr.id]=\"'report-list-' + idx\" class=\"adf-activiti-filters__label\">\n <mat-icon matListItemLine\n [attr.data-automation-id]=\"report.name + '_filter'\"\n class=\"adf-activiti-filters__entry-icon\">assignment</mat-icon>\n <span class=\"adf-text\">{{report.name}}</span>\n </span>\n </mat-list-item>\n </mat-nav-list>\n <div class=\"adf-report-card-grids\" *ngIf=\"isGrid()\">\n <mat-card appearance=\"outlined\" (click)=\"selectReport(report)\" class=\"adf-report-card\" *ngFor=\"let report of reports\">\n <div class=\"adf-report-card-logo logo\">\n <mat-icon class=\"adf-report-card-logo-icon\">equalizer</mat-icon>\n </div>\n <div mat-card-title class=\"adf-report-card-title\">\n <h1 class=\"adf-application-title\">{{report.name}}</h1>\n </div>\n <div mat-card-content class=\"adf-report-card-content\">\n <p>{{report.description}}</p>\n </div>\n <div mat-card-actions class=\"adf-report-card-actions\">\n <mat-icon class=\"adf-report-card-actions-icon\" *ngIf=\"isSelected(report)\">done</mat-icon>\n </div>\n </mat-card>\n </div>\n</div>\n", styles: [".adf-analytics-report-list .adf-activiti-filters__entry{cursor:pointer}.adf-analytics-report-list .adf-activiti-filters__entry .adf-active{color:var(--theme-primary-color)}.adf-analytics-report-list .adf-activiti-filters__entry-icon{color:var(--theme-primary-color);position:relative;top:5px}.adf-analytics-report-list .adf-activiti-filters__label{white-space:nowrap;overflow:hidden}.adf-analytics-report-list .adf-report-card-grids{display:flex;padding:8px;flex-flow:row wrap;margin:0 auto;align-items:stretch}.adf-analytics-report-list .adf-report-card{margin:8px;width:calc(33.3333% - 16px);position:relative;min-height:200px;overflow:hidden;background-color:var(--theme-background-color);display:flex;flex-direction:column;cursor:pointer}.adf-analytics-report-list .adf-report-card-logo{position:absolute;right:20px;top:35px;z-index:6}.adf-analytics-report-list .adf-report-card-logo-icon{font-size:70px;color:var(--theme-accent-color);width:1em;height:1em;display:inline-block}.adf-analytics-report-list .adf-report-card-title{padding:16px;z-index:7}.adf-analytics-report-list .adf-report-card-title .adf-application-title{font-size:var(--theme-headline-font-size);margin:0}.adf-analytics-report-list .adf-report-card-content{padding:16px;flex-grow:1}.adf-analytics-report-list .adf-report-card-actions{border-top:1px solid var(--adf-theme-foreground-divider-color);padding:8px;box-sizing:border-box;height:40px}.adf-analytics-report-list .adf-report-card-actions-icon{color:var(--adf-theme-foreground-text-color-054)}.adf-analytics-report-list .adf-report-card-actions-icon:hover{color:var(--adf-theme-foreground-text-color-087)}\n"] }]
|
|
6700
|
-
}], ctorParameters: () => [
|
|
6704
|
+
}], ctorParameters: () => [], propDecorators: { layoutType: [{
|
|
6701
6705
|
type: Input
|
|
6702
6706
|
}], appId: [{
|
|
6703
6707
|
type: Input
|
|
@@ -6901,11 +6905,11 @@ class InsightsModule {
|
|
|
6901
6905
|
providers: [provideTranslations('adf-insights', 'assets/adf-insights')]
|
|
6902
6906
|
};
|
|
6903
6907
|
}
|
|
6904
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6905
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
6906
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
6908
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: InsightsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6909
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.19", ngImport: i0, type: InsightsModule, imports: [CheckboxWidgetAnalyticsComponent, DateRangeWidgetComponent, DropdownWidgetAnalyticsComponent, DurationWidgetComponent, NumberWidgetAnalyticsComponent, ButtonsMenuComponent, AnalyticsComponent, AnalyticsReportListComponent, AnalyticsReportParametersComponent, AnalyticsGeneratorComponent, AnalyticsReportHeatMapComponent, DiagramAlfrescoPublishTaskComponent, DiagramBoxPublishTaskComponent, DiagramBusinessRuleTaskComponent, DiagramCamelTaskComponent, DiagramContainerServiceTaskComponent, DiagramGoogleDrivePublishTaskComponent, DiagramManualTaskComponent, DiagramMuleTaskComponent, DiagramReceiveTaskComponent, DiagramRestCallTaskComponent, DiagramScriptTaskComponent, DiagramSendTaskComponent, DiagramServiceTaskComponent, DiagramTaskComponent, DiagramUserTaskComponent, DiagramBoundaryEventComponent, DiagramThrowEventComponent, DiagramEndEventComponent, DiagramEventComponent, DiagramStartEventComponent, DiagramEventGatewayComponent, DiagramExclusiveGatewayComponent, DiagramGatewayComponent, DiagramInclusiveGatewayComponent, DiagramParallelGatewayComponent, DiagramContainerIconEventTaskComponent, DiagramIconAlfrescoPublishTaskComponent, DiagramIconBoxPublishTaskComponent, DiagramIconBusinessRuleTaskComponent, DiagramIconCamelTaskComponent, DiagramIconErrorComponent, DiagramIconGoogleDrivePublishTaskComponent, DiagramIconManualTaskComponent, DiagramIconMessageComponent, DiagramIconMuleTaskComponent, DiagramIconReceiveTaskComponent, DiagramIconRestCallTaskComponent, DiagramIconScriptTaskComponent, DiagramIconSendTaskComponent, DiagramIconServiceTaskComponent, DiagramIconSignalComponent, DiagramIconTimerComponent, DiagramIconUserTaskComponent, DiagramIntermediateCatchingEventComponent, DiagramEventSubprocessComponent, DiagramSubprocessComponent, DiagramLaneComponent, DiagramLanesComponent, DiagramPoolComponent, DiagramPoolsComponent, RaphaelIconAlfrescoPublishDirective, RaphaelIconBoxPublishDirective, RaphaelIconBusinessRuleDirective, RaphaelIconCamelDirective, RaphaelIconErrorDirective, RaphaelIconGoogleDrivePublishDirective, RaphaelIconManualDirective, RaphaelIconMessageDirective, RaphaelIconMuleDirective, RaphaelIconReceiveDirective, RaphaelIconRestCallDirective, RaphaelIconScriptDirective, RaphaelIconSendDirective, RaphaelIconServiceDirective, RaphaelIconSignalDirective, RaphaelIconTimerDirective, RaphaelIconUserDirective, RaphaelCircleDirective, RaphaelCrossDirective, RaphaelFlowArrowDirective, RaphaelMultilineTextDirective, RaphaelPentagonDirective, RaphaelPlusDirective, RaphaelRectDirective, RaphaelRhombusDirective, RaphaelTextDirective], exports: [CheckboxWidgetAnalyticsComponent, DateRangeWidgetComponent, DropdownWidgetAnalyticsComponent, DurationWidgetComponent, NumberWidgetAnalyticsComponent, ButtonsMenuComponent, AnalyticsComponent, AnalyticsReportListComponent, AnalyticsReportParametersComponent, AnalyticsGeneratorComponent, AnalyticsReportHeatMapComponent, DiagramAlfrescoPublishTaskComponent, DiagramBoxPublishTaskComponent, DiagramBusinessRuleTaskComponent, DiagramCamelTaskComponent, DiagramContainerServiceTaskComponent, DiagramGoogleDrivePublishTaskComponent, DiagramManualTaskComponent, DiagramMuleTaskComponent, DiagramReceiveTaskComponent, DiagramRestCallTaskComponent, DiagramScriptTaskComponent, DiagramSendTaskComponent, DiagramServiceTaskComponent, DiagramTaskComponent, DiagramUserTaskComponent, DiagramBoundaryEventComponent, DiagramThrowEventComponent, DiagramEndEventComponent, DiagramEventComponent, DiagramStartEventComponent, DiagramEventGatewayComponent, DiagramExclusiveGatewayComponent, DiagramGatewayComponent, DiagramInclusiveGatewayComponent, DiagramParallelGatewayComponent, DiagramContainerIconEventTaskComponent, DiagramIconAlfrescoPublishTaskComponent, DiagramIconBoxPublishTaskComponent, DiagramIconBusinessRuleTaskComponent, DiagramIconCamelTaskComponent, DiagramIconErrorComponent, DiagramIconGoogleDrivePublishTaskComponent, DiagramIconManualTaskComponent, DiagramIconMessageComponent, DiagramIconMuleTaskComponent, DiagramIconReceiveTaskComponent, DiagramIconRestCallTaskComponent, DiagramIconScriptTaskComponent, DiagramIconSendTaskComponent, DiagramIconServiceTaskComponent, DiagramIconSignalComponent, DiagramIconTimerComponent, DiagramIconUserTaskComponent, DiagramIntermediateCatchingEventComponent, DiagramEventSubprocessComponent, DiagramSubprocessComponent, DiagramLaneComponent, DiagramLanesComponent, DiagramPoolComponent, DiagramPoolsComponent, RaphaelIconAlfrescoPublishDirective, RaphaelIconBoxPublishDirective, RaphaelIconBusinessRuleDirective, RaphaelIconCamelDirective, RaphaelIconErrorDirective, RaphaelIconGoogleDrivePublishDirective, RaphaelIconManualDirective, RaphaelIconMessageDirective, RaphaelIconMuleDirective, RaphaelIconReceiveDirective, RaphaelIconRestCallDirective, RaphaelIconScriptDirective, RaphaelIconSendDirective, RaphaelIconServiceDirective, RaphaelIconSignalDirective, RaphaelIconTimerDirective, RaphaelIconUserDirective, RaphaelCircleDirective, RaphaelCrossDirective, RaphaelFlowArrowDirective, RaphaelMultilineTextDirective, RaphaelPentagonDirective, RaphaelPlusDirective, RaphaelRectDirective, RaphaelRhombusDirective, RaphaelTextDirective] }); }
|
|
6910
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: InsightsModule, imports: [ANALYTICS_PROCESS_DIRECTIVES, DiagramContainerServiceTaskComponent, DiagramBoundaryEventComponent, DiagramThrowEventComponent, DiagramEndEventComponent, DiagramEventComponent, DiagramStartEventComponent, DiagramContainerIconEventTaskComponent, DiagramIntermediateCatchingEventComponent] }); }
|
|
6907
6911
|
}
|
|
6908
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6912
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: InsightsModule, decorators: [{
|
|
6909
6913
|
type: NgModule,
|
|
6910
6914
|
args: [{
|
|
6911
6915
|
imports: [...ANALYTICS_PROCESS_DIRECTIVES, ...DIAGRAM_DIRECTIVES],
|