@netgrif/components-core 6.3.1 → 6.3.2
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/esm2020/lib/data-fields/date-field/abstract-date-field.component.mjs +14 -5
- package/esm2020/lib/data-fields/date-time-field/abstract-date-time-field.component.mjs +14 -5
- package/esm2020/lib/data-fields/time-instance-abstract-field/abstract-time-instance-field.component.mjs +29 -4
- package/esm2020/lib/data-fields/time-instance-abstract-field/models/abstract-time-instance-field.mjs +5 -5
- package/esm2020/lib/data-fields/user-field/abstract-user-field.component.mjs +4 -1
- package/esm2020/lib/task/services/task-data.service.mjs +20 -20
- package/esm2020/lib/task-content/services/field-converter.service.mjs +2 -2
- package/fesm2015/netgrif-components-core.mjs +132 -93
- package/fesm2015/netgrif-components-core.mjs.map +1 -1
- package/fesm2020/netgrif-components-core.mjs +132 -93
- package/fesm2020/netgrif-components-core.mjs.map +1 -1
- package/lib/data-fields/date-field/abstract-date-field.component.d.ts +7 -2
- package/lib/data-fields/date-time-field/abstract-date-time-field.component.d.ts +7 -2
- package/lib/data-fields/time-instance-abstract-field/abstract-time-instance-field.component.d.ts +13 -3
- package/lib/data-fields/user-field/abstract-user-field.component.d.ts +1 -0
- package/lib/task/services/task-data.service.d.ts +6 -6
- package/package.json +1 -1
|
@@ -39,7 +39,8 @@ import { MatPaginatorModule } from '@angular/material/paginator';
|
|
|
39
39
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
40
40
|
import { MatProgressSpinnerModule, MatSpinner } from '@angular/material/progress-spinner';
|
|
41
41
|
import { MatRadioModule } from '@angular/material/radio';
|
|
42
|
-
import
|
|
42
|
+
import * as i2$3 from '@angular/material/core';
|
|
43
|
+
import { MatRippleModule, MatOptionModule, DateAdapter, MAT_DATE_LOCALE } from '@angular/material/core';
|
|
43
44
|
import { MatSliderModule } from '@angular/material/slider';
|
|
44
45
|
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
45
46
|
import { MatSelectModule } from '@angular/material/select';
|
|
@@ -63,6 +64,7 @@ import { of, BehaviorSubject, interval, ReplaySubject, throwError, Subject, Obse
|
|
|
63
64
|
import * as i1 from '@angular/common/http';
|
|
64
65
|
import { HttpHeaders, HttpErrorResponse, HttpParams, HttpEventType, HTTP_INTERCEPTORS, HttpClient, HttpClientModule, HttpResponse } from '@angular/common/http';
|
|
65
66
|
import { AngularResizeEventModule } from 'angular-resize-event';
|
|
67
|
+
import * as i2$4 from '@angular-material-components/datetime-picker';
|
|
66
68
|
import { NgxMatDatetimePickerModule } from '@angular-material-components/datetime-picker';
|
|
67
69
|
import { NgxMatMomentModule } from '@angular-material-components/moment-adapter';
|
|
68
70
|
import * as i1$2 from '@ngx-translate/core';
|
|
@@ -74,7 +76,7 @@ import * as i2$1 from '@angular/platform-browser';
|
|
|
74
76
|
import moment from 'moment';
|
|
75
77
|
import * as Buffer from 'buffer';
|
|
76
78
|
import { ENTER, COMMA } from '@angular/cdk/keycodes';
|
|
77
|
-
import * as i2$
|
|
79
|
+
import * as i2$5 from '@angular/router';
|
|
78
80
|
import { NavigationEnd, Router, ActivatedRoute } from '@angular/router';
|
|
79
81
|
import * as i1$6 from '@angular/cdk/overlay';
|
|
80
82
|
import { OverlayModule } from '@angular/cdk/overlay';
|
|
@@ -4955,19 +4957,38 @@ class AbstractTimeInstanceField extends DataField {
|
|
|
4955
4957
|
return (fc) => fc.value < first || fc.value > second ? { validBetween: true } : null;
|
|
4956
4958
|
}
|
|
4957
4959
|
validWorkday(fc) {
|
|
4958
|
-
const dayOfWeek = !!fc.value ? fc.value.
|
|
4959
|
-
return dayOfWeek === 6 || dayOfWeek ===
|
|
4960
|
+
const dayOfWeek = !!fc.value ? fc.value.isoWeekday() : null;
|
|
4961
|
+
return dayOfWeek === 6 || dayOfWeek === 7 ? { validWorkday: true } : null;
|
|
4960
4962
|
}
|
|
4961
4963
|
validWeekend(fc) {
|
|
4962
|
-
const dayOfWeek = !!fc.value ? fc.value.
|
|
4963
|
-
return dayOfWeek >= 1 && dayOfWeek <= 5
|
|
4964
|
+
const dayOfWeek = !!fc.value ? fc.value.isoWeekday() : null;
|
|
4965
|
+
return dayOfWeek >= 1 && dayOfWeek <= 5 ? { validWeekend: true } : null;
|
|
4964
4966
|
}
|
|
4965
4967
|
}
|
|
4966
4968
|
|
|
4967
4969
|
class AbstractTimeInstanceFieldComponent extends AbstractDataFieldComponent {
|
|
4968
|
-
constructor(_translate, informAboutInvalidData) {
|
|
4970
|
+
constructor(_translate, _adapter, _locale, _languageService, informAboutInvalidData) {
|
|
4969
4971
|
super(informAboutInvalidData);
|
|
4970
4972
|
this._translate = _translate;
|
|
4973
|
+
this._adapter = _adapter;
|
|
4974
|
+
this._locale = _locale;
|
|
4975
|
+
this._languageService = _languageService;
|
|
4976
|
+
if (this._locale !== this._languageService.getLanguage()) {
|
|
4977
|
+
this.setLangToAdapter(this._languageService.getLanguage());
|
|
4978
|
+
}
|
|
4979
|
+
this._subLang = this._languageService.getLangChange$().subscribe(lang => {
|
|
4980
|
+
if (this._locale !== lang) {
|
|
4981
|
+
this.setLangToAdapter(lang);
|
|
4982
|
+
}
|
|
4983
|
+
});
|
|
4984
|
+
}
|
|
4985
|
+
ngOnDestroy() {
|
|
4986
|
+
super.ngOnDestroy();
|
|
4987
|
+
this._subLang.unsubscribe();
|
|
4988
|
+
}
|
|
4989
|
+
setLangToAdapter(lang) {
|
|
4990
|
+
this._locale = lang;
|
|
4991
|
+
this._adapter.setLocale(this._locale);
|
|
4971
4992
|
}
|
|
4972
4993
|
buildErrorMessage(dataField) {
|
|
4973
4994
|
if (this.formControl.hasError(AbstractTimeInstanceFieldValidation.REQUIRED)) {
|
|
@@ -5004,7 +5025,7 @@ class AbstractTimeInstanceFieldComponent extends AbstractDataFieldComponent {
|
|
|
5004
5025
|
return generalMessage;
|
|
5005
5026
|
}
|
|
5006
5027
|
}
|
|
5007
|
-
AbstractTimeInstanceFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTimeInstanceFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5028
|
+
AbstractTimeInstanceFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTimeInstanceFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: i2$3.DateAdapter }, { token: MAT_DATE_LOCALE }, { token: LanguageService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5008
5029
|
AbstractTimeInstanceFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTimeInstanceFieldComponent, selector: "ncc-abstract-time-instance-field", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
5009
5030
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTimeInstanceFieldComponent, decorators: [{
|
|
5010
5031
|
type: Component,
|
|
@@ -5013,7 +5034,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5013
5034
|
template: ''
|
|
5014
5035
|
}]
|
|
5015
5036
|
}], ctorParameters: function () {
|
|
5016
|
-
return [{ type: i1$2.TranslateService }, { type: undefined, decorators: [{
|
|
5037
|
+
return [{ type: i1$2.TranslateService }, { type: i2$3.DateAdapter }, { type: undefined, decorators: [{
|
|
5038
|
+
type: Inject,
|
|
5039
|
+
args: [MAT_DATE_LOCALE]
|
|
5040
|
+
}] }, { type: LanguageService }, { type: undefined, decorators: [{
|
|
5017
5041
|
type: Optional
|
|
5018
5042
|
}, {
|
|
5019
5043
|
type: Inject,
|
|
@@ -5022,15 +5046,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5022
5046
|
} });
|
|
5023
5047
|
|
|
5024
5048
|
class AbstractDateFieldComponent extends AbstractTimeInstanceFieldComponent {
|
|
5025
|
-
constructor(_translate, informAboutInvalidData) {
|
|
5026
|
-
super(_translate, informAboutInvalidData);
|
|
5049
|
+
constructor(_translate, _adapter, _locale, _languageService, informAboutInvalidData) {
|
|
5050
|
+
super(_translate, _adapter, _locale, _languageService, informAboutInvalidData);
|
|
5027
5051
|
this._translate = _translate;
|
|
5052
|
+
this._adapter = _adapter;
|
|
5053
|
+
this._locale = _locale;
|
|
5054
|
+
this._languageService = _languageService;
|
|
5028
5055
|
}
|
|
5029
5056
|
getErrorMessage() {
|
|
5030
5057
|
return this.buildErrorMessage(this.dataField);
|
|
5031
5058
|
}
|
|
5032
5059
|
}
|
|
5033
|
-
AbstractDateFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5060
|
+
AbstractDateFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: i2$3.DateAdapter }, { token: MAT_DATE_LOCALE }, { token: LanguageService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5034
5061
|
AbstractDateFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractDateFieldComponent, selector: "ncc-abstract-date-field", inputs: { dataField: "dataField" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
5035
5062
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateFieldComponent, decorators: [{
|
|
5036
5063
|
type: Component,
|
|
@@ -5039,7 +5066,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5039
5066
|
template: ''
|
|
5040
5067
|
}]
|
|
5041
5068
|
}], ctorParameters: function () {
|
|
5042
|
-
return [{ type: i1$2.TranslateService }, { type: undefined, decorators: [{
|
|
5069
|
+
return [{ type: i1$2.TranslateService }, { type: i2$3.DateAdapter }, { type: undefined, decorators: [{
|
|
5070
|
+
type: Inject,
|
|
5071
|
+
args: [MAT_DATE_LOCALE]
|
|
5072
|
+
}] }, { type: LanguageService }, { type: undefined, decorators: [{
|
|
5043
5073
|
type: Optional
|
|
5044
5074
|
}, {
|
|
5045
5075
|
type: Inject,
|
|
@@ -5050,15 +5080,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5050
5080
|
}] } });
|
|
5051
5081
|
|
|
5052
5082
|
class AbstractDateTimeFieldComponent extends AbstractTimeInstanceFieldComponent {
|
|
5053
|
-
constructor(_translate, informAboutInvalidData) {
|
|
5054
|
-
super(_translate, informAboutInvalidData);
|
|
5083
|
+
constructor(_translate, _adapter, _locale, _languageService, informAboutInvalidData) {
|
|
5084
|
+
super(_translate, _adapter, _locale, _languageService, informAboutInvalidData);
|
|
5055
5085
|
this._translate = _translate;
|
|
5086
|
+
this._adapter = _adapter;
|
|
5087
|
+
this._locale = _locale;
|
|
5088
|
+
this._languageService = _languageService;
|
|
5056
5089
|
}
|
|
5057
5090
|
getErrorMessage() {
|
|
5058
5091
|
return this.buildErrorMessage(this.dataField);
|
|
5059
5092
|
}
|
|
5060
5093
|
}
|
|
5061
|
-
AbstractDateTimeFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateTimeFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5094
|
+
AbstractDateTimeFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateTimeFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: i2$4.NgxMatDateAdapter }, { token: MAT_DATE_LOCALE }, { token: LanguageService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5062
5095
|
AbstractDateTimeFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractDateTimeFieldComponent, selector: "ncc-abstract-date-time-field", inputs: { dataField: "dataField" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
5063
5096
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateTimeFieldComponent, decorators: [{
|
|
5064
5097
|
type: Component,
|
|
@@ -5067,7 +5100,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5067
5100
|
template: ''
|
|
5068
5101
|
}]
|
|
5069
5102
|
}], ctorParameters: function () {
|
|
5070
|
-
return [{ type: i1$2.TranslateService }, { type: undefined, decorators: [{
|
|
5103
|
+
return [{ type: i1$2.TranslateService }, { type: i2$4.NgxMatDateAdapter }, { type: undefined, decorators: [{
|
|
5104
|
+
type: Inject,
|
|
5105
|
+
args: [MAT_DATE_LOCALE]
|
|
5106
|
+
}] }, { type: LanguageService }, { type: undefined, decorators: [{
|
|
5071
5107
|
type: Optional
|
|
5072
5108
|
}, {
|
|
5073
5109
|
type: Inject,
|
|
@@ -6195,7 +6231,7 @@ function decodeBase64(encoded) {
|
|
|
6195
6231
|
|
|
6196
6232
|
class FieldConverterService {
|
|
6197
6233
|
constructor() {
|
|
6198
|
-
this.textFieldNames = ['
|
|
6234
|
+
this.textFieldNames = ['richtextarea', 'htmltextarea', 'editor', 'htmlEditor'];
|
|
6199
6235
|
}
|
|
6200
6236
|
toClass(item) {
|
|
6201
6237
|
var _a, _b, _c;
|
|
@@ -8483,6 +8519,9 @@ class AbstractUserFieldComponent extends AbstractDataFieldComponent {
|
|
|
8483
8519
|
}
|
|
8484
8520
|
});
|
|
8485
8521
|
}
|
|
8522
|
+
deleteUser() {
|
|
8523
|
+
this.dataField.value = undefined;
|
|
8524
|
+
}
|
|
8486
8525
|
}
|
|
8487
8526
|
AbstractUserFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractUserFieldComponent, deps: [{ token: SideMenuService }, { token: SnackBarService }, { token: i1$2.TranslateService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
8488
8527
|
AbstractUserFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractUserFieldComponent, selector: "ncc-abstract-user-field", inputs: { dataField: "dataField" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
@@ -15581,7 +15620,7 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15581
15620
|
}
|
|
15582
15621
|
const requestContext = this.createUpdateRequestContext();
|
|
15583
15622
|
this._eventQueue.scheduleEvent(new QueuedEvent(() => this.isSetDataRequestStillValid(requestContext.body), nextEvent => {
|
|
15584
|
-
this.performSetDataRequest(setTaskId, requestContext
|
|
15623
|
+
this.performSetDataRequest(setTaskId, requestContext, afterAction, nextEvent);
|
|
15585
15624
|
}, nextEvent => {
|
|
15586
15625
|
this.revertSetDataRequest(requestContext);
|
|
15587
15626
|
nextEvent.resolve(false);
|
|
@@ -15672,12 +15711,12 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15672
15711
|
/**
|
|
15673
15712
|
* Performs a `setData` request on the task currently stored in the `taskContent` service
|
|
15674
15713
|
* @param setTaskId ID of the task
|
|
15675
|
-
* @param
|
|
15714
|
+
* @param context context of the `setData` request
|
|
15676
15715
|
* @param afterAction the action that should be performed after the request is processed
|
|
15677
15716
|
* @param nextEvent indicates to the event queue that the next event can be processed
|
|
15678
15717
|
*/
|
|
15679
|
-
performSetDataRequest(setTaskId,
|
|
15680
|
-
if (Object.keys(body).length === 0) {
|
|
15718
|
+
performSetDataRequest(setTaskId, context, afterAction, nextEvent) {
|
|
15719
|
+
if (Object.keys(context.body).length === 0) {
|
|
15681
15720
|
this.sendNotification(TaskEvent.SET_DATA, true);
|
|
15682
15721
|
afterAction.resolve(true);
|
|
15683
15722
|
nextEvent.resolve(true);
|
|
@@ -15685,7 +15724,7 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15685
15724
|
}
|
|
15686
15725
|
this._taskState.startLoading(setTaskId);
|
|
15687
15726
|
this._taskState.startUpdating(setTaskId);
|
|
15688
|
-
this._taskResourceService.setData(this._safeTask.stringId, body).pipe(take(1))
|
|
15727
|
+
this._taskResourceService.setData(this._safeTask.stringId, context.body).pipe(take(1))
|
|
15689
15728
|
.subscribe((response) => {
|
|
15690
15729
|
if (!this.isTaskRelevant(setTaskId)) {
|
|
15691
15730
|
this._log.debug('current task changed before the set data response could be received, discarding...');
|
|
@@ -15696,13 +15735,13 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15696
15735
|
return;
|
|
15697
15736
|
}
|
|
15698
15737
|
if (response.success) {
|
|
15699
|
-
this.processSuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent,
|
|
15738
|
+
this.processSuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent, context);
|
|
15700
15739
|
}
|
|
15701
15740
|
else if (response.error !== undefined) {
|
|
15702
|
-
this.processUnsuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent,
|
|
15741
|
+
this.processUnsuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent, context);
|
|
15703
15742
|
}
|
|
15704
15743
|
}, error => {
|
|
15705
|
-
this.processErroneousSetDataRequest(setTaskId, error, afterAction, nextEvent,
|
|
15744
|
+
this.processErroneousSetDataRequest(setTaskId, error, afterAction, nextEvent, context);
|
|
15706
15745
|
});
|
|
15707
15746
|
}
|
|
15708
15747
|
/**
|
|
@@ -15713,7 +15752,7 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15713
15752
|
* @param nextEvent indicates to the event queue that the next event can be processed
|
|
15714
15753
|
* @param body hold the data that was sent in request
|
|
15715
15754
|
*/
|
|
15716
|
-
processUnsuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent,
|
|
15755
|
+
processUnsuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent, context) {
|
|
15717
15756
|
if (response.error !== '') {
|
|
15718
15757
|
this._snackBar.openErrorSnackBar(this._translate.instant(response.error));
|
|
15719
15758
|
}
|
|
@@ -15727,8 +15766,8 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15727
15766
|
this._changedFieldsService.emitChangedFields(changedFieldsMap);
|
|
15728
15767
|
}
|
|
15729
15768
|
}
|
|
15730
|
-
this.revertToPreviousValue();
|
|
15731
|
-
this.clearWaitingForResponseFlag(body);
|
|
15769
|
+
this.revertToPreviousValue(context);
|
|
15770
|
+
this.clearWaitingForResponseFlag(context.body);
|
|
15732
15771
|
this.updateStateInfo(afterAction, false, setTaskId);
|
|
15733
15772
|
nextEvent.resolve(false);
|
|
15734
15773
|
this._taskOperations.reload();
|
|
@@ -15739,15 +15778,15 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15739
15778
|
* @param response the resulting Event outcome of the set data request
|
|
15740
15779
|
* @param afterAction the action that should be performed after the request is processed
|
|
15741
15780
|
* @param nextEvent indicates to the event queue that the next event can be processed
|
|
15742
|
-
* @param
|
|
15781
|
+
* @param context hold the data that was sent in request
|
|
15743
15782
|
*/
|
|
15744
|
-
processSuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent,
|
|
15783
|
+
processSuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent, context) {
|
|
15745
15784
|
const outcome = response.outcome;
|
|
15746
15785
|
const changedFieldsMap = this._eventService.parseChangedFieldsFromOutcomeTree(outcome);
|
|
15747
15786
|
if (Object.keys(changedFieldsMap).length > 0) {
|
|
15748
15787
|
this._changedFieldsService.emitChangedFields(changedFieldsMap);
|
|
15749
15788
|
}
|
|
15750
|
-
this.clearWaitingForResponseFlag(body);
|
|
15789
|
+
this.clearWaitingForResponseFlag(context.body);
|
|
15751
15790
|
this._snackBar.openSuccessSnackBar(!!outcome.message ? outcome.message : this._translate.instant('tasks.snackbar.dataSaved'));
|
|
15752
15791
|
this.updateStateInfo(afterAction, true, setTaskId);
|
|
15753
15792
|
nextEvent.resolve(true);
|
|
@@ -15760,7 +15799,7 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15760
15799
|
* @param nextEvent indicates to the event queue that the next event can be processed
|
|
15761
15800
|
* @param body hold the data that was sent in request
|
|
15762
15801
|
*/
|
|
15763
|
-
processErroneousSetDataRequest(setTaskId, error, afterAction, nextEvent,
|
|
15802
|
+
processErroneousSetDataRequest(setTaskId, error, afterAction, nextEvent, context) {
|
|
15764
15803
|
this._log.debug('setting task data failed', error);
|
|
15765
15804
|
if (!this.isTaskRelevant(setTaskId)) {
|
|
15766
15805
|
this._log.debug('current task changed before the get data error could be received');
|
|
@@ -15770,8 +15809,8 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15770
15809
|
nextEvent.resolve(false);
|
|
15771
15810
|
return;
|
|
15772
15811
|
}
|
|
15773
|
-
this.revertToPreviousValue();
|
|
15774
|
-
this.clearWaitingForResponseFlag(body);
|
|
15812
|
+
this.revertToPreviousValue(context);
|
|
15813
|
+
this.clearWaitingForResponseFlag(context.body);
|
|
15775
15814
|
this._snackBar.openErrorSnackBar(this._translate.instant('tasks.snackbar.failedSave'));
|
|
15776
15815
|
this.updateStateInfo(afterAction, false, setTaskId);
|
|
15777
15816
|
nextEvent.resolve(false);
|
|
@@ -15847,10 +15886,10 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15847
15886
|
sendNotification(event, success) {
|
|
15848
15887
|
this._taskEvent.publishTaskEvent(createTaskEventNotification(this._safeTask, event, success));
|
|
15849
15888
|
}
|
|
15850
|
-
revertToPreviousValue() {
|
|
15889
|
+
revertToPreviousValue(context) {
|
|
15851
15890
|
this._safeTask.dataGroups.forEach(dataGroup => {
|
|
15852
15891
|
dataGroup.fields.forEach(field => {
|
|
15853
|
-
if (field.initialized && field.valid && field.
|
|
15892
|
+
if (field.initialized && field.valid && Object.keys(context.previousValues).includes(field.stringId)) {
|
|
15854
15893
|
field.revertToPreviousValue();
|
|
15855
15894
|
}
|
|
15856
15895
|
});
|
|
@@ -16107,14 +16146,14 @@ class RedirectService {
|
|
|
16107
16146
|
}
|
|
16108
16147
|
}
|
|
16109
16148
|
RedirectService.LOGIN_COMPONENT = 'login';
|
|
16110
|
-
RedirectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RedirectService, deps: [{ token: i2$
|
|
16149
|
+
RedirectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RedirectService, deps: [{ token: i2$5.Router }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16111
16150
|
RedirectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RedirectService, providedIn: 'root' });
|
|
16112
16151
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RedirectService, decorators: [{
|
|
16113
16152
|
type: Injectable,
|
|
16114
16153
|
args: [{
|
|
16115
16154
|
providedIn: 'root'
|
|
16116
16155
|
}]
|
|
16117
|
-
}], ctorParameters: function () { return [{ type: i2$
|
|
16156
|
+
}], ctorParameters: function () { return [{ type: i2$5.Router }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$5.ActivatedRoute }]; } });
|
|
16118
16157
|
|
|
16119
16158
|
class AuthenticationInterceptor {
|
|
16120
16159
|
constructor(_session, _redirect, _anonymousService, idleTimerService) {
|
|
@@ -16314,14 +16353,14 @@ class AuthenticationGuardService {
|
|
|
16314
16353
|
return this._session.sessionToken && this._session.verified ? true : this._router.parseUrl(this._loginUrl);
|
|
16315
16354
|
}
|
|
16316
16355
|
}
|
|
16317
|
-
AuthenticationGuardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthenticationGuardService, deps: [{ token: SessionService }, { token: RedirectService }, { token: i2$
|
|
16356
|
+
AuthenticationGuardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthenticationGuardService, deps: [{ token: SessionService }, { token: RedirectService }, { token: i2$5.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16318
16357
|
AuthenticationGuardService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthenticationGuardService, providedIn: AuthenticationModule });
|
|
16319
16358
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthenticationGuardService, decorators: [{
|
|
16320
16359
|
type: Injectable,
|
|
16321
16360
|
args: [{
|
|
16322
16361
|
providedIn: AuthenticationModule
|
|
16323
16362
|
}]
|
|
16324
|
-
}], ctorParameters: function () { return [{ type: SessionService }, { type: RedirectService }, { type: i2$
|
|
16363
|
+
}], ctorParameters: function () { return [{ type: SessionService }, { type: RedirectService }, { type: i2$5.Router }]; } });
|
|
16325
16364
|
|
|
16326
16365
|
/* SERVICES */
|
|
16327
16366
|
|
|
@@ -16561,7 +16600,7 @@ class AbstractAuthenticationOverlayComponent {
|
|
|
16561
16600
|
}
|
|
16562
16601
|
}
|
|
16563
16602
|
}
|
|
16564
|
-
AbstractAuthenticationOverlayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractAuthenticationOverlayComponent, deps: [{ token: SessionService }, { token: SpinnerOverlayService }, { token: i2$
|
|
16603
|
+
AbstractAuthenticationOverlayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractAuthenticationOverlayComponent, deps: [{ token: SessionService }, { token: SpinnerOverlayService }, { token: i2$5.Router }, { token: RedirectService }, { token: UserService }], target: i0.ɵɵFactoryTarget.Component });
|
|
16565
16604
|
AbstractAuthenticationOverlayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractAuthenticationOverlayComponent, selector: "ncc-abstract-auth-overlay", ngImport: i0, template: '', isInline: true });
|
|
16566
16605
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractAuthenticationOverlayComponent, decorators: [{
|
|
16567
16606
|
type: Component,
|
|
@@ -16569,7 +16608,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16569
16608
|
selector: 'ncc-abstract-auth-overlay',
|
|
16570
16609
|
template: ''
|
|
16571
16610
|
}]
|
|
16572
|
-
}], ctorParameters: function () { return [{ type: SessionService }, { type: SpinnerOverlayService }, { type: i2$
|
|
16611
|
+
}], ctorParameters: function () { return [{ type: SessionService }, { type: SpinnerOverlayService }, { type: i2$5.Router }, { type: RedirectService }, { type: UserService }]; } });
|
|
16573
16612
|
|
|
16574
16613
|
class AbstractSessionIdleComponent {
|
|
16575
16614
|
constructor(sessionTimer, _user, _log, _config, _router) {
|
|
@@ -16623,7 +16662,7 @@ class AbstractSessionIdleComponent {
|
|
|
16623
16662
|
}
|
|
16624
16663
|
}
|
|
16625
16664
|
}
|
|
16626
|
-
AbstractSessionIdleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSessionIdleComponent, deps: [{ token: SessionIdleTimerService }, { token: UserService }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$
|
|
16665
|
+
AbstractSessionIdleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSessionIdleComponent, deps: [{ token: SessionIdleTimerService }, { token: UserService }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$5.Router }], target: i0.ɵɵFactoryTarget.Component });
|
|
16627
16666
|
AbstractSessionIdleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSessionIdleComponent, selector: "ncc-abstract-session-idle", inputs: { alertAtSeconds: "alertAtSeconds" }, ngImport: i0, template: '', isInline: true });
|
|
16628
16667
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSessionIdleComponent, decorators: [{
|
|
16629
16668
|
type: Component,
|
|
@@ -16631,7 +16670,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16631
16670
|
selector: 'ncc-abstract-session-idle',
|
|
16632
16671
|
template: ''
|
|
16633
16672
|
}]
|
|
16634
|
-
}], ctorParameters: function () { return [{ type: SessionIdleTimerService }, { type: UserService }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$
|
|
16673
|
+
}], ctorParameters: function () { return [{ type: SessionIdleTimerService }, { type: UserService }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$5.Router }]; }, propDecorators: { alertAtSeconds: [{
|
|
16635
16674
|
type: Input
|
|
16636
16675
|
}] } });
|
|
16637
16676
|
|
|
@@ -17010,7 +17049,7 @@ class AbstractPanelComponent {
|
|
|
17010
17049
|
return this._caseListFontColorService.computeCaseFontColor(this.caseColor);
|
|
17011
17050
|
}
|
|
17012
17051
|
}
|
|
17013
|
-
AbstractPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractPanelComponent, deps: [{ token: CaseListFontColorService }, { token: i2$
|
|
17052
|
+
AbstractPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractPanelComponent, deps: [{ token: CaseListFontColorService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
17014
17053
|
AbstractPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractPanelComponent, selector: "ncc-abstract-panel", inputs: { expansionDisabled: "expansionDisabled", preventExpand: "preventExpand", preventCollapse: "preventCollapse", hidePanelHeader: "hidePanelHeader", panelHeader: "panelHeader", panelContent: "panelContent", first: "first", last: "last", caseColor: "caseColor" }, outputs: { stopLoading: "stopLoading", getExpansionPanelRef: "getExpansionPanelRef" }, viewQueries: [{ propertyName: "matExpansionPanel", first: true, predicate: ["matExpansionPanel"], descendants: true }], ngImport: i0, template: '', isInline: true });
|
|
17015
17054
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractPanelComponent, decorators: [{
|
|
17016
17055
|
type: Component,
|
|
@@ -17018,7 +17057,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17018
17057
|
selector: 'ncc-abstract-panel',
|
|
17019
17058
|
template: ''
|
|
17020
17059
|
}]
|
|
17021
|
-
}], ctorParameters: function () { return [{ type: CaseListFontColorService }, { type: i2$
|
|
17060
|
+
}], ctorParameters: function () { return [{ type: CaseListFontColorService }, { type: i2$5.ActivatedRoute }]; }, propDecorators: { expansionDisabled: [{
|
|
17022
17061
|
type: Input
|
|
17023
17062
|
}], preventExpand: [{
|
|
17024
17063
|
type: Input
|
|
@@ -19706,7 +19745,7 @@ class AbstractDefaultTaskListComponent extends TabbedVirtualScrollComponent {
|
|
|
19706
19745
|
});
|
|
19707
19746
|
}
|
|
19708
19747
|
}
|
|
19709
|
-
AbstractDefaultTaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultTaskListComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
19748
|
+
AbstractDefaultTaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultTaskListComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
19710
19749
|
AbstractDefaultTaskListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractDefaultTaskListComponent, selector: "ncc-abstract-default-task-list", inputs: { loading$: "loading$", selectedHeaders$: "selectedHeaders$", responsiveBody: "responsiveBody", forceLoadDataOnOpen: "forceLoadDataOnOpen", textEllipsis: "textEllipsis", allowMultiOpen: "allowMultiOpen" }, outputs: { taskEvent: "taskEvent" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
19711
19750
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultTaskListComponent, decorators: [{
|
|
19712
19751
|
type: Component,
|
|
@@ -19720,7 +19759,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
19720
19759
|
}, {
|
|
19721
19760
|
type: Inject,
|
|
19722
19761
|
args: [NAE_TAB_DATA]
|
|
19723
|
-
}] }, { type: i2$
|
|
19762
|
+
}] }, { type: i2$5.ActivatedRoute }];
|
|
19724
19763
|
}, propDecorators: { loading$: [{
|
|
19725
19764
|
type: Input
|
|
19726
19765
|
}], selectedHeaders$: [{
|
|
@@ -19757,7 +19796,7 @@ class AbstractTaskListComponent extends AbstractDefaultTaskListComponent {
|
|
|
19757
19796
|
this._taskViewService.nextPage(this.viewport.getRenderedRange(), this.viewport.getDataLength());
|
|
19758
19797
|
}
|
|
19759
19798
|
}
|
|
19760
|
-
AbstractTaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
19799
|
+
AbstractTaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
19761
19800
|
AbstractTaskListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTaskListComponent, selector: "ncc-abstract-task-list", inputs: { tasks$: "tasks$" }, viewQueries: [{ propertyName: "viewport", first: true, predicate: CdkVirtualScrollViewport, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
19762
19801
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListComponent, decorators: [{
|
|
19763
19802
|
type: Component,
|
|
@@ -19771,7 +19810,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
19771
19810
|
}, {
|
|
19772
19811
|
type: Inject,
|
|
19773
19812
|
args: [NAE_TAB_DATA]
|
|
19774
|
-
}] }, { type: i2$
|
|
19813
|
+
}] }, { type: i2$5.ActivatedRoute }];
|
|
19775
19814
|
}, propDecorators: { tasks$: [{
|
|
19776
19815
|
type: Input
|
|
19777
19816
|
}], viewport: [{
|
|
@@ -19804,7 +19843,7 @@ class AbstractTaskListPaginationComponent extends AbstractDefaultTaskListCompone
|
|
|
19804
19843
|
this._taskViewService.nextPagePagination(this.pageSize, this.pageIndex);
|
|
19805
19844
|
}
|
|
19806
19845
|
}
|
|
19807
|
-
AbstractTaskListPaginationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListPaginationComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
19846
|
+
AbstractTaskListPaginationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListPaginationComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
19808
19847
|
AbstractTaskListPaginationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTaskListPaginationComponent, selector: "ncc-abstract-task-list-pagination-component", inputs: { tasks$: "tasks$" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
19809
19848
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListPaginationComponent, decorators: [{
|
|
19810
19849
|
type: Component,
|
|
@@ -19818,7 +19857,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
19818
19857
|
}, {
|
|
19819
19858
|
type: Inject,
|
|
19820
19859
|
args: [NAE_TAB_DATA]
|
|
19821
|
-
}] }, { type: i2$
|
|
19860
|
+
}] }, { type: i2$5.ActivatedRoute }];
|
|
19822
19861
|
}, propDecorators: { tasks$: [{
|
|
19823
19862
|
type: Input
|
|
19824
19863
|
}] } });
|
|
@@ -20290,7 +20329,7 @@ class AbstractSingleTaskComponent {
|
|
|
20290
20329
|
this.taskEvent.emit(event);
|
|
20291
20330
|
}
|
|
20292
20331
|
}
|
|
20293
|
-
AbstractSingleTaskComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskComponent, deps: [{ token: LoggerService }, { token: i2$
|
|
20332
|
+
AbstractSingleTaskComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskComponent, deps: [{ token: LoggerService }, { token: i2$5.ActivatedRoute }, { token: NAE_TAB_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
20294
20333
|
AbstractSingleTaskComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSingleTaskComponent, selector: "ncc-abstract-single-task", inputs: { task$: "task$", loading$: "loading$", selectedHeaders$: "selectedHeaders$", responsiveBody: "responsiveBody", forceLoadDataOnOpen: "forceLoadDataOnOpen", textEllipsis: "textEllipsis", preventCollapse: "preventCollapse", hidePanelHeader: "hidePanelHeader", noTaskSection: "noTaskSection", pageHeader: "pageHeader", pageFooter: "pageFooter", headerTitle: "headerTitle", footerText: "footerText", actionButtonTemplates: "actionButtonTemplates", actionRowJustifyContent: "actionRowJustifyContent" }, outputs: { taskEvent: "taskEvent" }, ngImport: i0, template: '', isInline: true });
|
|
20295
20334
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskComponent, decorators: [{
|
|
20296
20335
|
type: Component,
|
|
@@ -20299,7 +20338,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
20299
20338
|
template: ''
|
|
20300
20339
|
}]
|
|
20301
20340
|
}], ctorParameters: function () {
|
|
20302
|
-
return [{ type: LoggerService }, { type: i2$
|
|
20341
|
+
return [{ type: LoggerService }, { type: i2$5.ActivatedRoute }, { type: undefined, decorators: [{
|
|
20303
20342
|
type: Optional
|
|
20304
20343
|
}, {
|
|
20305
20344
|
type: Inject,
|
|
@@ -22438,7 +22477,7 @@ class AbstractViewWithHeadersComponent {
|
|
|
22438
22477
|
return !(((_a = this.config) === null || _a === void 0 ? void 0 : _a[ConfigParams.PANEL_HEADER]) === 'false');
|
|
22439
22478
|
}
|
|
22440
22479
|
}
|
|
22441
|
-
AbstractViewWithHeadersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractViewWithHeadersComponent, deps: [{ token: AbstractSortableViewComponent }, { token: i2$
|
|
22480
|
+
AbstractViewWithHeadersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractViewWithHeadersComponent, deps: [{ token: AbstractSortableViewComponent }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
22442
22481
|
AbstractViewWithHeadersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractViewWithHeadersComponent, selector: "ncc-abstract-view-with-headers", ngImport: i0, template: '', isInline: true });
|
|
22443
22482
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractViewWithHeadersComponent, decorators: [{
|
|
22444
22483
|
type: Component,
|
|
@@ -22446,7 +22485,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
22446
22485
|
selector: 'ncc-abstract-view-with-headers',
|
|
22447
22486
|
template: ''
|
|
22448
22487
|
}]
|
|
22449
|
-
}], ctorParameters: function () { return [{ type: AbstractSortableViewComponent }, { type: i2$
|
|
22488
|
+
}], ctorParameters: function () { return [{ type: AbstractSortableViewComponent }, { type: i2$5.ActivatedRoute }]; } });
|
|
22450
22489
|
|
|
22451
22490
|
class AbstractTaskViewComponent extends AbstractViewWithHeadersComponent {
|
|
22452
22491
|
constructor(taskViewService, _activatedRoute) {
|
|
@@ -22459,7 +22498,7 @@ class AbstractTaskViewComponent extends AbstractViewWithHeadersComponent {
|
|
|
22459
22498
|
super.ngOnDestroy();
|
|
22460
22499
|
}
|
|
22461
22500
|
}
|
|
22462
|
-
AbstractTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$
|
|
22501
|
+
AbstractTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
22463
22502
|
AbstractTaskViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTaskViewComponent, selector: "ncc-abstract-task-view", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
22464
22503
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskViewComponent, decorators: [{
|
|
22465
22504
|
type: Component,
|
|
@@ -22467,7 +22506,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
22467
22506
|
selector: 'ncc-abstract-task-view',
|
|
22468
22507
|
template: ''
|
|
22469
22508
|
}]
|
|
22470
|
-
}], ctorParameters: function () { return [{ type: TaskViewService }, { type: i2$
|
|
22509
|
+
}], ctorParameters: function () { return [{ type: TaskViewService }, { type: i2$5.ActivatedRoute }]; } });
|
|
22471
22510
|
|
|
22472
22511
|
/**
|
|
22473
22512
|
* Holds all identifiers of the Filter process in an accessible manner
|
|
@@ -22886,7 +22925,7 @@ class AbstractSaveFilterComponent extends AbstractTaskViewComponent {
|
|
|
22886
22925
|
}
|
|
22887
22926
|
}
|
|
22888
22927
|
}
|
|
22889
|
-
AbstractSaveFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSaveFilterComponent, deps: [{ token: NAE_SIDE_MENU_CONTROL }, { token: UserFiltersService }, { token: LoggerService }, { token: TaskViewService }, { token: i2$
|
|
22928
|
+
AbstractSaveFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSaveFilterComponent, deps: [{ token: NAE_SIDE_MENU_CONTROL }, { token: UserFiltersService }, { token: LoggerService }, { token: TaskViewService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
22890
22929
|
AbstractSaveFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSaveFilterComponent, selector: "ncc-abstract-save-filter", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
22891
22930
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSaveFilterComponent, decorators: [{
|
|
22892
22931
|
type: Component,
|
|
@@ -22898,7 +22937,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
22898
22937
|
return [{ type: SideMenuControl, decorators: [{
|
|
22899
22938
|
type: Inject,
|
|
22900
22939
|
args: [NAE_SIDE_MENU_CONTROL]
|
|
22901
|
-
}] }, { type: UserFiltersService }, { type: LoggerService }, { type: TaskViewService }, { type: i2$
|
|
22940
|
+
}] }, { type: UserFiltersService }, { type: LoggerService }, { type: TaskViewService }, { type: i2$5.ActivatedRoute }];
|
|
22902
22941
|
} });
|
|
22903
22942
|
|
|
22904
22943
|
var HeaderType;
|
|
@@ -22952,7 +22991,7 @@ class AbstractCaseViewComponent extends AbstractViewWithHeadersComponent {
|
|
|
22952
22991
|
}
|
|
22953
22992
|
}
|
|
22954
22993
|
}
|
|
22955
|
-
AbstractCaseViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseViewComponent, deps: [{ token: CaseViewService }, { token: OverflowService }, { token: Array }, { token: NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, optional: true }, { token: i2$
|
|
22994
|
+
AbstractCaseViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseViewComponent, deps: [{ token: CaseViewService }, { token: OverflowService }, { token: Array }, { token: NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
22956
22995
|
AbstractCaseViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractCaseViewComponent, selector: "ncc-abstract-case-view", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
22957
22996
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseViewComponent, decorators: [{
|
|
22958
22997
|
type: Component,
|
|
@@ -22966,7 +23005,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
22966
23005
|
}, {
|
|
22967
23006
|
type: Inject,
|
|
22968
23007
|
args: [NAE_NEW_CASE_CREATION_CONFIGURATION_DATA]
|
|
22969
|
-
}] }, { type: i2$
|
|
23008
|
+
}] }, { type: i2$5.ActivatedRoute }];
|
|
22970
23009
|
} });
|
|
22971
23010
|
|
|
22972
23011
|
class AbstractLoadFilterComponent extends AbstractCaseViewComponent {
|
|
@@ -24889,7 +24928,7 @@ class AbstractLogoutShortcutComponent {
|
|
|
24889
24928
|
});
|
|
24890
24929
|
}
|
|
24891
24930
|
}
|
|
24892
|
-
AbstractLogoutShortcutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractLogoutShortcutComponent, deps: [{ token: UserService }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$
|
|
24931
|
+
AbstractLogoutShortcutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractLogoutShortcutComponent, deps: [{ token: UserService }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$5.Router }], target: i0.ɵɵFactoryTarget.Component });
|
|
24893
24932
|
AbstractLogoutShortcutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractLogoutShortcutComponent, selector: "ncc-abstract-logout-shortcut", ngImport: i0, template: '', isInline: true });
|
|
24894
24933
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractLogoutShortcutComponent, decorators: [{
|
|
24895
24934
|
type: Component,
|
|
@@ -24897,7 +24936,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
24897
24936
|
selector: 'ncc-abstract-logout-shortcut',
|
|
24898
24937
|
template: ''
|
|
24899
24938
|
}]
|
|
24900
|
-
}], ctorParameters: function () { return [{ type: UserService }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$
|
|
24939
|
+
}], ctorParameters: function () { return [{ type: UserService }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$5.Router }]; } });
|
|
24901
24940
|
|
|
24902
24941
|
class AbstractLanguageSelectorComponent {
|
|
24903
24942
|
constructor(_select) {
|
|
@@ -25226,14 +25265,14 @@ class AuthorityGuardService {
|
|
|
25226
25265
|
}
|
|
25227
25266
|
}
|
|
25228
25267
|
}
|
|
25229
|
-
AuthorityGuardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthorityGuardService, deps: [{ token: RedirectService }, { token: UserService }, { token: ConfigurationService }, { token: i2$
|
|
25268
|
+
AuthorityGuardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthorityGuardService, deps: [{ token: RedirectService }, { token: UserService }, { token: ConfigurationService }, { token: i2$5.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
25230
25269
|
AuthorityGuardService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthorityGuardService, providedIn: AuthenticationModule });
|
|
25231
25270
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthorityGuardService, decorators: [{
|
|
25232
25271
|
type: Injectable,
|
|
25233
25272
|
args: [{
|
|
25234
25273
|
providedIn: AuthenticationModule
|
|
25235
25274
|
}]
|
|
25236
|
-
}], ctorParameters: function () { return [{ type: RedirectService }, { type: UserService }, { type: ConfigurationService }, { type: i2$
|
|
25275
|
+
}], ctorParameters: function () { return [{ type: RedirectService }, { type: UserService }, { type: ConfigurationService }, { type: i2$5.Router }]; } });
|
|
25237
25276
|
|
|
25238
25277
|
/**
|
|
25239
25278
|
* This service allows access to information about the groups of the currently logged user.
|
|
@@ -25845,7 +25884,7 @@ class AbstractNavigationTreeComponent extends AbstractNavigationResizableDrawerC
|
|
|
25845
25884
|
return split;
|
|
25846
25885
|
}
|
|
25847
25886
|
}
|
|
25848
|
-
AbstractNavigationTreeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationTreeComponent, deps: [{ token: ConfigurationService }, { token: i2$
|
|
25887
|
+
AbstractNavigationTreeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationTreeComponent, deps: [{ token: ConfigurationService }, { token: i2$5.Router }, { token: LoggerService }, { token: UserService }, { token: AccessService }, { token: ActiveGroupService }, { token: TaskResourceService }, { token: LanguageService }, { token: DynamicNavigationRouteProviderService }], target: i0.ɵɵFactoryTarget.Component });
|
|
25849
25888
|
AbstractNavigationTreeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractNavigationTreeComponent, selector: "ncc-abstract-navigation-tree", inputs: { viewPath: "viewPath", parentUrl: "parentUrl", routerChange: "routerChange" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
25850
25889
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationTreeComponent, decorators: [{
|
|
25851
25890
|
type: Component,
|
|
@@ -25853,7 +25892,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
25853
25892
|
selector: 'ncc-abstract-navigation-tree',
|
|
25854
25893
|
template: ''
|
|
25855
25894
|
}]
|
|
25856
|
-
}], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i2$
|
|
25895
|
+
}], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i2$5.Router }, { type: LoggerService }, { type: UserService }, { type: AccessService }, { type: ActiveGroupService }, { type: TaskResourceService }, { type: LanguageService }, { type: DynamicNavigationRouteProviderService }]; }, propDecorators: { viewPath: [{
|
|
25857
25896
|
type: Input
|
|
25858
25897
|
}], parentUrl: [{
|
|
25859
25898
|
type: Input
|
|
@@ -26382,7 +26421,7 @@ class RoutingBuilderService {
|
|
|
26382
26421
|
return result;
|
|
26383
26422
|
}
|
|
26384
26423
|
}
|
|
26385
|
-
RoutingBuilderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RoutingBuilderService, deps: [{ token: i2$
|
|
26424
|
+
RoutingBuilderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RoutingBuilderService, deps: [{ token: i2$5.Router }, { token: ConfigurationService }, { token: ViewService }, { token: LoggerService }, { token: DynamicNavigationRouteProviderService }, { token: NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
26386
26425
|
RoutingBuilderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RoutingBuilderService, providedIn: 'root' });
|
|
26387
26426
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RoutingBuilderService, decorators: [{
|
|
26388
26427
|
type: Injectable,
|
|
@@ -26390,7 +26429,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
26390
26429
|
providedIn: 'root'
|
|
26391
26430
|
}]
|
|
26392
26431
|
}], ctorParameters: function () {
|
|
26393
|
-
return [{ type: i2$
|
|
26432
|
+
return [{ type: i2$5.Router }, { type: ConfigurationService }, { type: ViewService }, { type: LoggerService }, { type: DynamicNavigationRouteProviderService }, { type: i0.Type, decorators: [{
|
|
26394
26433
|
type: Optional
|
|
26395
26434
|
}, {
|
|
26396
26435
|
type: Inject,
|
|
@@ -26719,14 +26758,14 @@ class ImpersonationService extends AbstractResourceService {
|
|
|
26719
26758
|
}
|
|
26720
26759
|
}
|
|
26721
26760
|
}
|
|
26722
|
-
ImpersonationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ImpersonationService, deps: [{ token: ResourceProvider }, { token: i2$
|
|
26761
|
+
ImpersonationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ImpersonationService, deps: [{ token: ResourceProvider }, { token: i2$5.Router }, { token: ConfigurationService }, { token: UserService }, { token: SnackBarService }, { token: FilterRepository }, { token: LoggerService }, { token: i1$2.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
26723
26762
|
ImpersonationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ImpersonationService, providedIn: 'root' });
|
|
26724
26763
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ImpersonationService, decorators: [{
|
|
26725
26764
|
type: Injectable,
|
|
26726
26765
|
args: [{
|
|
26727
26766
|
providedIn: 'root'
|
|
26728
26767
|
}]
|
|
26729
|
-
}], ctorParameters: function () { return [{ type: ResourceProvider }, { type: i2$
|
|
26768
|
+
}], ctorParameters: function () { return [{ type: ResourceProvider }, { type: i2$5.Router }, { type: ConfigurationService }, { type: UserService }, { type: SnackBarService }, { type: FilterRepository }, { type: LoggerService }, { type: i1$2.TranslateService }]; } });
|
|
26730
26769
|
|
|
26731
26770
|
class ImpersonationUserSelectService {
|
|
26732
26771
|
constructor(_log, _sideMenuService, _snackBar, _impersonation, _user, _userImpersonateComponent, _adminImpersonateComponent) {
|
|
@@ -27183,7 +27222,7 @@ class AbstractNavigationDoubleDrawerComponent {
|
|
|
27183
27222
|
// this.contentWidth.next(this.width);
|
|
27184
27223
|
}
|
|
27185
27224
|
}
|
|
27186
|
-
AbstractNavigationDoubleDrawerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationDoubleDrawerComponent, deps: [{ token: i2$
|
|
27225
|
+
AbstractNavigationDoubleDrawerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationDoubleDrawerComponent, deps: [{ token: i2$5.Router }, { token: i2$5.ActivatedRoute }, { token: i1$7.BreakpointObserver }, { token: LanguageService }, { token: UserService }, { token: AccessService }, { token: LoggerService }, { token: ConfigurationService }, { token: UriService }, { token: ImpersonationUserSelectService }, { token: ImpersonationService }, { token: DynamicNavigationRouteProviderService }], target: i0.ɵɵFactoryTarget.Component });
|
|
27187
27226
|
AbstractNavigationDoubleDrawerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractNavigationDoubleDrawerComponent, selector: "ncc-abstract-navigation-double-drawer", inputs: { portalLeftMenu: "portalLeftMenu", portalRightMenu: "portalRightMenu", imageRouterLink: "imageRouterLink", imageAlt: "imageAlt", image: "image", profileRouterLink: "profileRouterLink", includeUser: "includeUser", includeLanguage: "includeLanguage", includeMoreMenu: "includeMoreMenu", includeImpersonation: "includeImpersonation", allClosable: "allClosable", folderIcon: "folderIcon", openedFolderIcon: "openedFolderIcon", filterIcon: "filterIcon", foldersCategoryName: "foldersCategoryName", viewsCategoryName: "viewsCategoryName" }, ngImport: i0, template: '', isInline: true });
|
|
27188
27227
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationDoubleDrawerComponent, decorators: [{
|
|
27189
27228
|
type: Component,
|
|
@@ -27191,7 +27230,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
27191
27230
|
selector: 'ncc-abstract-navigation-double-drawer',
|
|
27192
27231
|
template: '',
|
|
27193
27232
|
}]
|
|
27194
|
-
}], ctorParameters: function () { return [{ type: i2$
|
|
27233
|
+
}], ctorParameters: function () { return [{ type: i2$5.Router }, { type: i2$5.ActivatedRoute }, { type: i1$7.BreakpointObserver }, { type: LanguageService }, { type: UserService }, { type: AccessService }, { type: LoggerService }, { type: ConfigurationService }, { type: UriService }, { type: ImpersonationUserSelectService }, { type: ImpersonationService }, { type: DynamicNavigationRouteProviderService }]; }, propDecorators: { portalLeftMenu: [{
|
|
27195
27234
|
type: Input
|
|
27196
27235
|
}], portalRightMenu: [{
|
|
27197
27236
|
type: Input
|
|
@@ -27352,7 +27391,7 @@ class AbstractGroupNavigationComponentResolverComponent {
|
|
|
27352
27391
|
});
|
|
27353
27392
|
}
|
|
27354
27393
|
}
|
|
27355
|
-
AbstractGroupNavigationComponentResolverComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractGroupNavigationComponentResolverComponent, deps: [{ token: GroupNavigationComponentResolverService }, { token: i0.Injector }, { token: i2$
|
|
27394
|
+
AbstractGroupNavigationComponentResolverComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractGroupNavigationComponentResolverComponent, deps: [{ token: GroupNavigationComponentResolverService }, { token: i0.Injector }, { token: i2$5.ActivatedRoute }, { token: i2$5.Router }, { token: LoggerService }], target: i0.ɵɵFactoryTarget.Component });
|
|
27356
27395
|
AbstractGroupNavigationComponentResolverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractGroupNavigationComponentResolverComponent, selector: "ncc-abstract-group-nagiation-resolver", ngImport: i0, template: '', isInline: true });
|
|
27357
27396
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractGroupNavigationComponentResolverComponent, decorators: [{
|
|
27358
27397
|
type: Component,
|
|
@@ -27360,7 +27399,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
27360
27399
|
selector: 'ncc-abstract-group-nagiation-resolver',
|
|
27361
27400
|
template: ''
|
|
27362
27401
|
}]
|
|
27363
|
-
}], ctorParameters: function () { return [{ type: GroupNavigationComponentResolverService }, { type: i0.Injector }, { type: i2$
|
|
27402
|
+
}], ctorParameters: function () { return [{ type: GroupNavigationComponentResolverService }, { type: i0.Injector }, { type: i2$5.ActivatedRoute }, { type: i2$5.Router }, { type: LoggerService }]; } });
|
|
27364
27403
|
|
|
27365
27404
|
class AbstractBreadcrumbsComponent {
|
|
27366
27405
|
constructor(_uriService) {
|
|
@@ -27697,7 +27736,7 @@ class AbstractTabbedCaseViewComponent extends AbstractCaseViewComponent {
|
|
|
27697
27736
|
}, this._autoswitchToTaskTab, this._openExistingTab);
|
|
27698
27737
|
}
|
|
27699
27738
|
}
|
|
27700
|
-
AbstractTabbedCaseViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedCaseViewComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA }, { token: OverflowService }, { token: NAE_AUTOSWITCH_TAB_TOKEN, optional: true }, { token: NAE_OPEN_EXISTING_TAB, optional: true }, { token: NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, optional: true }, { token: i2$
|
|
27739
|
+
AbstractTabbedCaseViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedCaseViewComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA }, { token: OverflowService }, { token: NAE_AUTOSWITCH_TAB_TOKEN, optional: true }, { token: NAE_OPEN_EXISTING_TAB, optional: true }, { token: NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
27701
27740
|
AbstractTabbedCaseViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTabbedCaseViewComponent, selector: "ncc-abstract-tabbed-case-view", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
27702
27741
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedCaseViewComponent, decorators: [{
|
|
27703
27742
|
type: Component,
|
|
@@ -27724,7 +27763,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
27724
27763
|
}, {
|
|
27725
27764
|
type: Inject,
|
|
27726
27765
|
args: [NAE_NEW_CASE_CREATION_CONFIGURATION_DATA]
|
|
27727
|
-
}] }, { type: i2$
|
|
27766
|
+
}] }, { type: i2$5.ActivatedRoute }];
|
|
27728
27767
|
} });
|
|
27729
27768
|
|
|
27730
27769
|
class AbstractTabbedTaskViewComponent extends AbstractTaskViewComponent {
|
|
@@ -27740,7 +27779,7 @@ class AbstractTabbedTaskViewComponent extends AbstractTaskViewComponent {
|
|
|
27740
27779
|
this.subTaskView.unsubscribe();
|
|
27741
27780
|
}
|
|
27742
27781
|
}
|
|
27743
|
-
AbstractTabbedTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedTaskViewComponent, deps: [{ token: TaskViewService }, { token: NAE_TAB_DATA }, { token: i2$
|
|
27782
|
+
AbstractTabbedTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedTaskViewComponent, deps: [{ token: TaskViewService }, { token: NAE_TAB_DATA }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
27744
27783
|
AbstractTabbedTaskViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTabbedTaskViewComponent, selector: "ncc-abstract-tabbed-task-view", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
27745
27784
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedTaskViewComponent, decorators: [{
|
|
27746
27785
|
type: Component,
|
|
@@ -27752,7 +27791,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
27752
27791
|
return [{ type: TaskViewService }, { type: undefined, decorators: [{
|
|
27753
27792
|
type: Inject,
|
|
27754
27793
|
args: [NAE_TAB_DATA]
|
|
27755
|
-
}] }, { type: i2$
|
|
27794
|
+
}] }, { type: i2$5.ActivatedRoute }];
|
|
27756
27795
|
} });
|
|
27757
27796
|
|
|
27758
27797
|
const NAE_TREE_CASE_VIEW_CONFIGURATION = new InjectionToken('NaeTreeCaseViewConfiguration');
|
|
@@ -28936,7 +28975,7 @@ class AbstractWorkflowViewComponent extends AbstractViewWithHeadersComponent {
|
|
|
28936
28975
|
}
|
|
28937
28976
|
}
|
|
28938
28977
|
}
|
|
28939
|
-
AbstractWorkflowViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractWorkflowViewComponent, deps: [{ token: SideMenuService }, { token: WorkflowViewService }, { token: LoggerService }, { token: ProcessService }, { token: i2$
|
|
28978
|
+
AbstractWorkflowViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractWorkflowViewComponent, deps: [{ token: SideMenuService }, { token: WorkflowViewService }, { token: LoggerService }, { token: ProcessService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
28940
28979
|
AbstractWorkflowViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractWorkflowViewComponent, selector: "ncc-abstract-workflow-view", inputs: { footerSize: "footerSize", showDeleteMenu: "showDeleteMenu" }, viewQueries: [{ propertyName: "workflowHeader", first: true, predicate: ["header"], descendants: true }, { propertyName: "viewport", first: true, predicate: CdkVirtualScrollViewport, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
28941
28980
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractWorkflowViewComponent, decorators: [{
|
|
28942
28981
|
type: Component,
|
|
@@ -28944,7 +28983,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
28944
28983
|
selector: 'ncc-abstract-workflow-view',
|
|
28945
28984
|
template: ''
|
|
28946
28985
|
}]
|
|
28947
|
-
}], ctorParameters: function () { return [{ type: SideMenuService }, { type: WorkflowViewService }, { type: LoggerService }, { type: ProcessService }, { type: i2$
|
|
28986
|
+
}], ctorParameters: function () { return [{ type: SideMenuService }, { type: WorkflowViewService }, { type: LoggerService }, { type: ProcessService }, { type: i2$5.ActivatedRoute }]; }, propDecorators: { footerSize: [{
|
|
28948
28987
|
type: Input
|
|
28949
28988
|
}], showDeleteMenu: [{
|
|
28950
28989
|
type: Input
|
|
@@ -28997,7 +29036,7 @@ class AbstractDefaultCaseListComponent extends TabbedVirtualScrollComponent {
|
|
|
28997
29036
|
});
|
|
28998
29037
|
}
|
|
28999
29038
|
}
|
|
29000
|
-
AbstractDefaultCaseListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultCaseListComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
29039
|
+
AbstractDefaultCaseListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultCaseListComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
29001
29040
|
AbstractDefaultCaseListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractDefaultCaseListComponent, selector: "ncc-abstract-default-case-list", inputs: { selectedHeaders$: "selectedHeaders$", responsiveBody: "responsiveBody", showCasePanelIcon: "showCasePanelIcon", showDeleteMenu: "showDeleteMenu", textEllipsis: "textEllipsis", width: "width", redirectEnabled: "redirectEnabled" }, outputs: { caseClick: "caseClick" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
29002
29041
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultCaseListComponent, decorators: [{
|
|
29003
29042
|
type: Component,
|
|
@@ -29011,7 +29050,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
29011
29050
|
}, {
|
|
29012
29051
|
type: Inject,
|
|
29013
29052
|
args: [NAE_TAB_DATA]
|
|
29014
|
-
}] }, { type: i2$
|
|
29053
|
+
}] }, { type: i2$5.ActivatedRoute }];
|
|
29015
29054
|
}, propDecorators: { selectedHeaders$: [{
|
|
29016
29055
|
type: Input
|
|
29017
29056
|
}], responsiveBody: [{
|
|
@@ -29052,7 +29091,7 @@ class AbstractCaseListComponent extends AbstractDefaultCaseListComponent {
|
|
|
29052
29091
|
this._caseViewService.nextPage(this.viewport.getRenderedRange(), this.viewport.getDataLength());
|
|
29053
29092
|
}
|
|
29054
29093
|
}
|
|
29055
|
-
AbstractCaseListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
29094
|
+
AbstractCaseListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
29056
29095
|
AbstractCaseListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractCaseListComponent, selector: "ncc-abstract-case-list", viewQueries: [{ propertyName: "viewport", first: true, predicate: CdkVirtualScrollViewport, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
29057
29096
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListComponent, decorators: [{
|
|
29058
29097
|
type: Component,
|
|
@@ -29066,7 +29105,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
29066
29105
|
}, {
|
|
29067
29106
|
type: Inject,
|
|
29068
29107
|
args: [NAE_TAB_DATA]
|
|
29069
|
-
}] }, { type: i2$
|
|
29108
|
+
}] }, { type: i2$5.ActivatedRoute }];
|
|
29070
29109
|
}, propDecorators: { viewport: [{
|
|
29071
29110
|
type: ViewChild,
|
|
29072
29111
|
args: [CdkVirtualScrollViewport]
|
|
@@ -29096,7 +29135,7 @@ class AbstractCaseListPaginatorComponent extends AbstractDefaultCaseListComponen
|
|
|
29096
29135
|
return caze.stringId;
|
|
29097
29136
|
}
|
|
29098
29137
|
}
|
|
29099
|
-
AbstractCaseListPaginatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListPaginatorComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
29138
|
+
AbstractCaseListPaginatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListPaginatorComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
29100
29139
|
AbstractCaseListPaginatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractCaseListPaginatorComponent, selector: "ncc-abstract-case-list-paginator", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
29101
29140
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListPaginatorComponent, decorators: [{
|
|
29102
29141
|
type: Component,
|
|
@@ -29110,7 +29149,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
29110
29149
|
}, {
|
|
29111
29150
|
type: Inject,
|
|
29112
29151
|
args: [NAE_TAB_DATA]
|
|
29113
|
-
}] }, { type: i2$
|
|
29152
|
+
}] }, { type: i2$5.ActivatedRoute }];
|
|
29114
29153
|
} });
|
|
29115
29154
|
|
|
29116
29155
|
class AbstractTreeComponent {
|
|
@@ -29422,7 +29461,7 @@ class AbstractSingleTaskViewComponent extends AbstractViewWithHeadersComponent {
|
|
|
29422
29461
|
return transitionTask;
|
|
29423
29462
|
}
|
|
29424
29463
|
}
|
|
29425
|
-
AbstractSingleTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$
|
|
29464
|
+
AbstractSingleTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$5.ActivatedRoute }, { token: i5.AsyncPipe }], target: i0.ɵɵFactoryTarget.Component });
|
|
29426
29465
|
AbstractSingleTaskViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSingleTaskViewComponent, selector: "ncc-abstract-single-task-view", inputs: { initiallyExpanded: "initiallyExpanded", preventCollapse: "preventCollapse" }, outputs: { noTaskPresent: "noTaskPresent" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
29427
29466
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskViewComponent, decorators: [{
|
|
29428
29467
|
type: Component,
|
|
@@ -29430,7 +29469,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
29430
29469
|
selector: 'ncc-abstract-single-task-view',
|
|
29431
29470
|
template: ''
|
|
29432
29471
|
}]
|
|
29433
|
-
}], ctorParameters: function () { return [{ type: TaskViewService }, { type: i2$
|
|
29472
|
+
}], ctorParameters: function () { return [{ type: TaskViewService }, { type: i2$5.ActivatedRoute }, { type: i5.AsyncPipe }]; }, propDecorators: { initiallyExpanded: [{
|
|
29434
29473
|
type: Input
|
|
29435
29474
|
}], preventCollapse: [{
|
|
29436
29475
|
type: Input
|
|
@@ -32656,11 +32695,11 @@ class TestViewService extends ViewService {
|
|
|
32656
32695
|
super([], config, router, logger);
|
|
32657
32696
|
}
|
|
32658
32697
|
}
|
|
32659
|
-
TestViewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TestViewService, deps: [{ token: ConfigurationService }, { token: i2$
|
|
32698
|
+
TestViewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TestViewService, deps: [{ token: ConfigurationService }, { token: i2$5.Router }, { token: LoggerService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
32660
32699
|
TestViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TestViewService });
|
|
32661
32700
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TestViewService, decorators: [{
|
|
32662
32701
|
type: Injectable
|
|
32663
|
-
}], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i2$
|
|
32702
|
+
}], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i2$5.Router }, { type: LoggerService }]; } });
|
|
32664
32703
|
|
|
32665
32704
|
/**
|
|
32666
32705
|
* A utility class that mock any pageable endpoint that takes one parameter
|