@netgrif/components-core 6.2.2 → 6.2.4
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/assets/i18n/de.json +2 -1
- package/esm2020/assets/i18n/en.json +2 -1
- package/esm2020/assets/i18n/sk.json +2 -1
- package/esm2020/lib/authentication/components/abstract-authentication-overlay.mjs +4 -1
- package/esm2020/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/abstract-enumeration-autocomplete-select-field.component.mjs +49 -7
- package/esm2020/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/enumeration-autocomplete-filter-property.mjs +6 -0
- package/esm2020/lib/data-fields/file-field/abstract-file-field.component.mjs +2 -1
- package/esm2020/lib/data-fields/i18n-field/i18n-divider-field/abstract-i18n-divider-field.component.mjs +7 -1
- package/esm2020/lib/data-fields/i18n-field/models/i18n-field.mjs +5 -5
- package/esm2020/lib/data-fields/models/abstract-data-field.mjs +4 -1
- package/esm2020/lib/data-fields/multichoice-field/multichoice-autocomplete-field/abstract-multichoice-autocomplete-field-component.component.mjs +32 -2
- package/esm2020/lib/data-fields/multichoice-field/multichoice-autocomplete-field/multichoice-autocomplete-filter-property.mjs +6 -0
- package/esm2020/lib/data-fields/public-api.mjs +3 -1
- package/esm2020/lib/resources/engine-endpoint/public/public-task-resource.service.mjs +3 -3
- package/esm2020/lib/side-menu/content-components/new-case/abstract-new-case.component.mjs +13 -2
- package/fesm2015/netgrif-components-core.mjs +130 -18
- package/fesm2015/netgrif-components-core.mjs.map +1 -1
- package/fesm2020/netgrif-components-core.mjs +126 -18
- package/fesm2020/netgrif-components-core.mjs.map +1 -1
- package/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/abstract-enumeration-autocomplete-select-field.component.d.ts +13 -5
- package/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/enumeration-autocomplete-filter-property.d.ts +4 -0
- package/lib/data-fields/i18n-field/i18n-divider-field/abstract-i18n-divider-field.component.d.ts +1 -0
- package/lib/data-fields/models/abstract-data-field.d.ts +2 -1
- package/lib/data-fields/multichoice-field/multichoice-autocomplete-field/abstract-multichoice-autocomplete-field-component.component.d.ts +6 -1
- package/lib/data-fields/multichoice-field/multichoice-autocomplete-field/multichoice-autocomplete-filter-property.d.ts +4 -0
- package/lib/data-fields/public-api.d.ts +2 -0
- package/lib/resources/engine-endpoint/public/public-task-resource.service.d.ts +2 -1
- package/lib/side-menu/content-components/new-case/abstract-new-case.component.d.ts +2 -0
- package/package.json +1 -1
- package/src/assets/i18n/de.json +2 -1
- package/src/assets/i18n/en.json +3 -1
- package/src/assets/i18n/sk.json +2 -1
|
@@ -1081,7 +1081,8 @@ var admin$2 = {
|
|
|
1081
1081
|
},
|
|
1082
1082
|
"ldapGroup-list": {
|
|
1083
1083
|
noLdapGroupsWereFound: "No LDAP group was found",
|
|
1084
|
-
listTitle: "
|
|
1084
|
+
listTitle: "LDAP groups",
|
|
1085
|
+
count: "Number of groups"
|
|
1085
1086
|
},
|
|
1086
1087
|
"process-list": {
|
|
1087
1088
|
newestVersion: "Newest version",
|
|
@@ -1560,7 +1561,8 @@ var admin$1 = {
|
|
|
1560
1561
|
},
|
|
1561
1562
|
"ldapGroup-list": {
|
|
1562
1563
|
noLdapGroupsWereFound: "Žiadna LDAP skupina nebola najdená",
|
|
1563
|
-
listTitle: "
|
|
1564
|
+
listTitle: "LDAP Skupiny",
|
|
1565
|
+
count: "Počet skupín"
|
|
1564
1566
|
},
|
|
1565
1567
|
"process-list": {
|
|
1566
1568
|
newestVersion: "Najnovšia verzia",
|
|
@@ -2039,7 +2041,8 @@ var admin = {
|
|
|
2039
2041
|
},
|
|
2040
2042
|
"ldapGroup-list": {
|
|
2041
2043
|
noLdapGroupsWereFound: "Keine LDAP Gruppe wurde gefunden",
|
|
2042
|
-
listTitle: "LDAP Gruppen"
|
|
2044
|
+
listTitle: "LDAP Gruppen",
|
|
2045
|
+
count: "Anzahl der Gruppen"
|
|
2043
2046
|
},
|
|
2044
2047
|
"process-list": {
|
|
2045
2048
|
newestVersion: "Neuste Version",
|
|
@@ -3767,6 +3770,9 @@ class DataField {
|
|
|
3767
3770
|
set touch(set) {
|
|
3768
3771
|
this._touch.next(set);
|
|
3769
3772
|
}
|
|
3773
|
+
get touch$() {
|
|
3774
|
+
return this._touch.asObservable();
|
|
3775
|
+
}
|
|
3770
3776
|
get component() {
|
|
3771
3777
|
return this._component;
|
|
3772
3778
|
}
|
|
@@ -4904,6 +4910,12 @@ class EnumerationField extends DataField {
|
|
|
4904
4910
|
}
|
|
4905
4911
|
}
|
|
4906
4912
|
|
|
4913
|
+
var EnumerationAutocompleteFilterProperty;
|
|
4914
|
+
(function (EnumerationAutocompleteFilterProperty) {
|
|
4915
|
+
EnumerationAutocompleteFilterProperty["PREFIX"] = "prefix";
|
|
4916
|
+
EnumerationAutocompleteFilterProperty["SUBSTRING"] = "substring";
|
|
4917
|
+
})(EnumerationAutocompleteFilterProperty || (EnumerationAutocompleteFilterProperty = {}));
|
|
4918
|
+
|
|
4907
4919
|
class AbstractEnumerationAutocompleteSelectFieldComponent {
|
|
4908
4920
|
constructor(_translate) {
|
|
4909
4921
|
this._translate = _translate;
|
|
@@ -4917,26 +4929,67 @@ class AbstractEnumerationAutocompleteSelectFieldComponent {
|
|
|
4917
4929
|
};
|
|
4918
4930
|
}
|
|
4919
4931
|
ngOnInit() {
|
|
4932
|
+
this.tmpValue = this.formControlRef.value ?? '';
|
|
4920
4933
|
this.filteredOptions = this.formControlRef.valueChanges.pipe(startWith(''), map(value => this._filter(value)));
|
|
4934
|
+
this.enumerationField.touch$.subscribe(touch => {
|
|
4935
|
+
if (touch) {
|
|
4936
|
+
this.text.control.markAsTouched();
|
|
4937
|
+
}
|
|
4938
|
+
});
|
|
4939
|
+
this.formControlRef.valueChanges.subscribe(it => {
|
|
4940
|
+
this.tmpValue = it ?? '';
|
|
4941
|
+
});
|
|
4921
4942
|
}
|
|
4922
4943
|
ngOnDestroy() {
|
|
4923
4944
|
this.filteredOptions = undefined;
|
|
4924
4945
|
}
|
|
4946
|
+
change() {
|
|
4947
|
+
if (this.text.value !== undefined) {
|
|
4948
|
+
this.filteredOptions = of(this._filter(this.text.value));
|
|
4949
|
+
}
|
|
4950
|
+
}
|
|
4951
|
+
select(event) {
|
|
4952
|
+
this.formControlRef.setValue(event.option.value);
|
|
4953
|
+
}
|
|
4954
|
+
isInvalid() {
|
|
4955
|
+
return !this.formControlRef.disabled && !this.formControlRef.valid && this.text.control.touched;
|
|
4956
|
+
}
|
|
4957
|
+
checkPropertyInComponent(property) {
|
|
4958
|
+
return !!this.enumerationField.component && !!this.enumerationField.component.properties && property in this.enumerationField.component.properties;
|
|
4959
|
+
}
|
|
4960
|
+
filterType() {
|
|
4961
|
+
if (this.checkPropertyInComponent('filter')) {
|
|
4962
|
+
return this.enumerationField.component.properties.filter;
|
|
4963
|
+
}
|
|
4964
|
+
}
|
|
4965
|
+
_filter(value) {
|
|
4966
|
+
let filterType = this.filterType()?.toLowerCase();
|
|
4967
|
+
switch (filterType) {
|
|
4968
|
+
case EnumerationAutocompleteFilterProperty.SUBSTRING:
|
|
4969
|
+
return this._filterInclude(value);
|
|
4970
|
+
case EnumerationAutocompleteFilterProperty.PREFIX:
|
|
4971
|
+
return this._filterIndexOf(value);
|
|
4972
|
+
default:
|
|
4973
|
+
return this._filterIndexOf(value);
|
|
4974
|
+
}
|
|
4975
|
+
}
|
|
4976
|
+
_filterInclude(value) {
|
|
4977
|
+
const filterValue = value?.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
|
|
4978
|
+
return this.enumerationField.choices.filter(option => option.value.toLowerCase()
|
|
4979
|
+
.normalize('NFD')
|
|
4980
|
+
.replace(/[\u0300-\u036f]/g, '')
|
|
4981
|
+
.includes(filterValue));
|
|
4982
|
+
}
|
|
4925
4983
|
/**
|
|
4926
4984
|
* Function to filter out matchless options without accent and case-sensitive differences
|
|
4927
4985
|
* @param value to compare matching options
|
|
4928
4986
|
* @return return matched options
|
|
4929
4987
|
*/
|
|
4930
|
-
|
|
4988
|
+
_filterIndexOf(value) {
|
|
4931
4989
|
const filterValue = value?.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
|
|
4932
4990
|
return this.enumerationField.choices.filter(option => option.value.toLowerCase().normalize('NFD')
|
|
4933
4991
|
.replace(/[\u0300-\u036f]/g, '').indexOf(filterValue) === 0);
|
|
4934
4992
|
}
|
|
4935
|
-
change() {
|
|
4936
|
-
if (this.text.nativeElement.value !== undefined) {
|
|
4937
|
-
this.filteredOptions = of(this._filter(this.text.nativeElement.value));
|
|
4938
|
-
}
|
|
4939
|
-
}
|
|
4940
4993
|
buildErrorMessage() {
|
|
4941
4994
|
if (this.formControlRef.hasError(EnumerationFieldValidation.REQUIRED)) {
|
|
4942
4995
|
return this._translate.instant('dataField.validations.required');
|
|
@@ -5593,8 +5646,8 @@ class I18nField extends DataField {
|
|
|
5593
5646
|
&& ((!a.translations && !!b.translations) || (!b.translations && !!a.translations)));
|
|
5594
5647
|
}
|
|
5595
5648
|
static translationsEquality(a, b) {
|
|
5596
|
-
const aKeys = Object.keys(a.translations).sort();
|
|
5597
|
-
const bKeys = Object.keys(b.translations).sort();
|
|
5649
|
+
const aKeys = !!a.translations ? Object.keys(a.translations).sort() : [];
|
|
5650
|
+
const bKeys = !!b.translations ? Object.keys(b.translations).sort() : [];
|
|
5598
5651
|
if (aKeys.length !== bKeys.length
|
|
5599
5652
|
|| !aKeys.every((element, index) => {
|
|
5600
5653
|
return element === bKeys[index];
|
|
@@ -5710,13 +5763,13 @@ class I18nField extends DataField {
|
|
|
5710
5763
|
validTranslationRequired(countries) {
|
|
5711
5764
|
return (fc) => {
|
|
5712
5765
|
return countries.every(languageCode => languageCode in fc.value.translations)
|
|
5713
|
-
?
|
|
5766
|
+
? null : ({ translationRequired: true });
|
|
5714
5767
|
};
|
|
5715
5768
|
}
|
|
5716
5769
|
validTranslationOnly(countries) {
|
|
5717
5770
|
return (fc) => {
|
|
5718
5771
|
return Object.keys(fc.value.translations).every(translation => countries.includes(translation))
|
|
5719
|
-
?
|
|
5772
|
+
? null : ({ translationOnly: true });
|
|
5720
5773
|
};
|
|
5721
5774
|
}
|
|
5722
5775
|
validRequiredI18n(fc) {
|
|
@@ -6443,6 +6496,7 @@ class AbstractFileFieldComponent extends AbstractDataFieldComponent {
|
|
|
6443
6496
|
}
|
|
6444
6497
|
}
|
|
6445
6498
|
this.updatedFieldSubscription = this.dataField.updated.subscribe(() => {
|
|
6499
|
+
this.previewSource = undefined;
|
|
6446
6500
|
if (!!this.filePreview
|
|
6447
6501
|
&& !!this.dataField.value
|
|
6448
6502
|
&& !!this.dataField.value.name) {
|
|
@@ -7115,6 +7169,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
7115
7169
|
type: Input
|
|
7116
7170
|
}] } });
|
|
7117
7171
|
|
|
7172
|
+
var MultichoiceAutocompleteFilterProperty;
|
|
7173
|
+
(function (MultichoiceAutocompleteFilterProperty) {
|
|
7174
|
+
MultichoiceAutocompleteFilterProperty["PREFIX"] = "prefix";
|
|
7175
|
+
MultichoiceAutocompleteFilterProperty["SUBSTRING"] = "substring";
|
|
7176
|
+
})(MultichoiceAutocompleteFilterProperty || (MultichoiceAutocompleteFilterProperty = {}));
|
|
7177
|
+
|
|
7118
7178
|
class AbstractMultichoiceAutocompleteFieldComponentComponent {
|
|
7119
7179
|
constructor() {
|
|
7120
7180
|
this.separatorKeysCodes = [ENTER, COMMA];
|
|
@@ -7134,7 +7194,7 @@ class AbstractMultichoiceAutocompleteFieldComponentComponent {
|
|
|
7134
7194
|
this.filteredOptions = undefined;
|
|
7135
7195
|
}
|
|
7136
7196
|
add(event) {
|
|
7137
|
-
const value = (event
|
|
7197
|
+
const value = (event['key'] || '').trim();
|
|
7138
7198
|
if (value) {
|
|
7139
7199
|
const choiceArray = [...this.multichoiceField.value];
|
|
7140
7200
|
choiceArray.push(value);
|
|
@@ -7161,7 +7221,33 @@ class AbstractMultichoiceAutocompleteFieldComponentComponent {
|
|
|
7161
7221
|
this.filteredOptions = of(this._filter(this.input.nativeElement.value).filter((option) => !this.multichoiceField.value.includes(option.key)));
|
|
7162
7222
|
}
|
|
7163
7223
|
}
|
|
7224
|
+
checkPropertyInComponent(property) {
|
|
7225
|
+
return !!this.multichoiceField.component && !!this.multichoiceField.component.properties && property in this.multichoiceField.component.properties;
|
|
7226
|
+
}
|
|
7227
|
+
filterType() {
|
|
7228
|
+
if (this.checkPropertyInComponent('filter')) {
|
|
7229
|
+
return this.multichoiceField.component.properties.filter;
|
|
7230
|
+
}
|
|
7231
|
+
}
|
|
7164
7232
|
_filter(value) {
|
|
7233
|
+
let filterType = this.filterType()?.toLowerCase();
|
|
7234
|
+
switch (filterType) {
|
|
7235
|
+
case MultichoiceAutocompleteFilterProperty.SUBSTRING:
|
|
7236
|
+
return this._filterInclude(value);
|
|
7237
|
+
case MultichoiceAutocompleteFilterProperty.PREFIX:
|
|
7238
|
+
return this._filterIndexOf(value);
|
|
7239
|
+
default:
|
|
7240
|
+
return this._filterIndexOf(value);
|
|
7241
|
+
}
|
|
7242
|
+
}
|
|
7243
|
+
_filterInclude(value) {
|
|
7244
|
+
if (Array.isArray(value)) {
|
|
7245
|
+
value = '';
|
|
7246
|
+
}
|
|
7247
|
+
const filterValue = value?.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
|
|
7248
|
+
return this.multichoiceField.choices.filter(option => option.value.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '').includes(filterValue));
|
|
7249
|
+
}
|
|
7250
|
+
_filterIndexOf(value) {
|
|
7165
7251
|
if (Array.isArray(value)) {
|
|
7166
7252
|
value = '';
|
|
7167
7253
|
}
|
|
@@ -7169,6 +7255,9 @@ class AbstractMultichoiceAutocompleteFieldComponentComponent {
|
|
|
7169
7255
|
return this.multichoiceField.choices.filter(option => option.value.toLowerCase().normalize('NFD')
|
|
7170
7256
|
.replace(/[\u0300-\u036f]/g, '').indexOf(filterValue) === 0);
|
|
7171
7257
|
}
|
|
7258
|
+
getValueFromKey(key) {
|
|
7259
|
+
return this.multichoiceField.choices.find(choice => choice.key === key)?.value;
|
|
7260
|
+
}
|
|
7172
7261
|
}
|
|
7173
7262
|
AbstractMultichoiceAutocompleteFieldComponentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractMultichoiceAutocompleteFieldComponentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7174
7263
|
AbstractMultichoiceAutocompleteFieldComponentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AbstractMultichoiceAutocompleteFieldComponentComponent, selector: "ncc-abstract-multichoice-autocomplete-field", inputs: { multichoiceField: "multichoiceField", formControlRef: "formControlRef", showLargeLayout: "showLargeLayout" }, viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true }], ngImport: i0, template: '', isInline: true });
|
|
@@ -13383,6 +13472,12 @@ class AbstractI18nDividerFieldComponent {
|
|
|
13383
13472
|
return this.dividerI18nField.component.properties.dividerColor;
|
|
13384
13473
|
}
|
|
13385
13474
|
}
|
|
13475
|
+
isDividerLGBTQ() {
|
|
13476
|
+
if (this.dividerPropertyEnabled('dividerLGBTQ')) {
|
|
13477
|
+
return this.dividerI18nField.component.properties.dividerLGBTQ === 'true';
|
|
13478
|
+
}
|
|
13479
|
+
return false;
|
|
13480
|
+
}
|
|
13386
13481
|
getDividerFontSize() {
|
|
13387
13482
|
if (this.dividerPropertyEnabled('fontSize')) {
|
|
13388
13483
|
return this.dividerI18nField.component.properties.fontSize + 'px';
|
|
@@ -13953,6 +14048,9 @@ class AbstractAuthenticationOverlayComponent {
|
|
|
13953
14048
|
if (!!user && !!user.id && user.id.length > 0) {
|
|
13954
14049
|
this.redirect(!active);
|
|
13955
14050
|
}
|
|
14051
|
+
else if (!active) {
|
|
14052
|
+
this._spinnerOverlay.spin$.next(false);
|
|
14053
|
+
}
|
|
13956
14054
|
});
|
|
13957
14055
|
});
|
|
13958
14056
|
}
|
|
@@ -19995,6 +20093,7 @@ class AbstractNewCaseComponent {
|
|
|
19995
20093
|
this._hasMultipleNets$ = new ReplaySubject(1);
|
|
19996
20094
|
this._notInitialized$ = new BehaviorSubject(true);
|
|
19997
20095
|
this._options$ = new ReplaySubject(1);
|
|
20096
|
+
this.loadingSubmit = new LoadingEmitter(false);
|
|
19998
20097
|
this._allowedNetsSubscription = this._injectedData.allowedNets$.pipe(map(nets => nets.map(petriNet => ({
|
|
19999
20098
|
value: petriNet.stringId,
|
|
20000
20099
|
viewValue: petriNet.title,
|
|
@@ -20031,6 +20130,7 @@ class AbstractNewCaseComponent {
|
|
|
20031
20130
|
}
|
|
20032
20131
|
ngOnDestroy() {
|
|
20033
20132
|
this._hasMultipleNets$.complete();
|
|
20133
|
+
this.loadingSubmit.complete();
|
|
20034
20134
|
this._allowedNetsSubscription.unsubscribe();
|
|
20035
20135
|
}
|
|
20036
20136
|
get hasMultipleNets$() {
|
|
@@ -20050,14 +20150,19 @@ class AbstractNewCaseComponent {
|
|
|
20050
20150
|
return process && process.viewValue ? process.viewValue : '';
|
|
20051
20151
|
}
|
|
20052
20152
|
createNewCase() {
|
|
20153
|
+
if (this.loadingSubmit.value) {
|
|
20154
|
+
return;
|
|
20155
|
+
}
|
|
20053
20156
|
if (this.titleFormControl.valid || !this.isCaseTitleRequired()) {
|
|
20054
20157
|
const newCase = {
|
|
20055
20158
|
title: this.titleFormControl.value === '' ? null : this.titleFormControl.value,
|
|
20056
20159
|
color: 'panel-primary-icon',
|
|
20057
20160
|
netId: this.options.length === 1 ? this.options[0].value : this.processFormControl.value.value
|
|
20058
20161
|
};
|
|
20162
|
+
this.loadingSubmit.on();
|
|
20059
20163
|
this._caseResourceService.createCase(newCase)
|
|
20060
20164
|
.subscribe((response) => {
|
|
20165
|
+
this.loadingSubmit.off();
|
|
20061
20166
|
if (!!response.outcome) {
|
|
20062
20167
|
this._snackBarService.openSuccessSnackBar(response.outcome.message === undefined
|
|
20063
20168
|
? this._translate.instant('side-menu.new-case.createCase') + ' ' + newCase.title
|
|
@@ -20079,7 +20184,10 @@ class AbstractNewCaseComponent {
|
|
|
20079
20184
|
: response.error
|
|
20080
20185
|
});
|
|
20081
20186
|
}
|
|
20082
|
-
}, error =>
|
|
20187
|
+
}, error => {
|
|
20188
|
+
this.loadingSubmit.off();
|
|
20189
|
+
this._snackBarService.openErrorSnackBar(error.message ? error.message : error);
|
|
20190
|
+
});
|
|
20083
20191
|
}
|
|
20084
20192
|
}
|
|
20085
20193
|
/**
|
|
@@ -23078,9 +23186,9 @@ class PublicTaskResourceService extends TaskResourceService {
|
|
|
23078
23186
|
* Delete file from the task
|
|
23079
23187
|
* DELETE
|
|
23080
23188
|
*/
|
|
23081
|
-
deleteFile(taskId, fieldId, name) {
|
|
23189
|
+
deleteFile(taskId, fieldId, name, param) {
|
|
23082
23190
|
const url = !!name ? `public/task/${taskId}/file/${fieldId}/${name}` : `public/task/${taskId}/file/${fieldId}`;
|
|
23083
|
-
return this._resourceProvider.delete$(url, this.SERVER_URL).pipe(map(r => this.changeType(r, undefined)));
|
|
23191
|
+
return this._resourceProvider.delete$(url, this.SERVER_URL, param).pipe(map(r => this.changeType(r, undefined)));
|
|
23084
23192
|
}
|
|
23085
23193
|
/**
|
|
23086
23194
|
* Download task file preview for field value
|
|
@@ -31932,5 +32040,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
31932
32040
|
* Generated bundle index. Do not edit.
|
|
31933
32041
|
*/
|
|
31934
32042
|
|
|
31935
|
-
export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseViewComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardContentComponent, AbstractDataFieldTemplateComponent, AbstractDateFieldComponent, AbstractDateTimeFieldComponent, AbstractDefaultNumberFieldComponent, AbstractEditModeComponent, AbstractEmailSubmissionFormComponent, AbstractEnumerationAutocompleteDynamicFieldComponent, AbstractEnumerationAutocompleteSelectFieldComponent, AbstractEnumerationFieldComponent, AbstractEnumerationIconFieldComponent, AbstractEnumerationListFieldComponent, AbstractEnumerationSelectFieldComponent, AbstractEnumerationStepperFieldComponent, AbstractFieldComponentResolverComponent, AbstractFileFieldComponent, AbstractFileListFieldComponent, AbstractFilterFieldComponent, AbstractFilterFieldContentComponent, AbstractFilterSelectorComponent, AbstractFilterSelectorListItemComponent, AbstractForgottenPasswordComponent, AbstractFulltextSearchComponent, AbstractGroupNavigationComponentResolverComponent, AbstractHeaderComponent, AbstractHeaderService, AbstractHtmlTextareaFieldComponent, AbstractI18nDividerFieldComponent, AbstractI18nErrorsComponent, AbstractI18nFieldComponent, AbstractI18nTextFieldComponent, AbstractIframeCardComponent, AbstractImmediateFilterTextComponent, AbstractImmediateFilterTextContentComponent, AbstractImportNetComponent, AbstractInternalLinkComponent, AbstractLanguageSelectorComponent, AbstractLdapGroupRoleAssignmentComponent, AbstractLegalNoticeComponent, AbstractLoadFilterComponent, AbstractLoadingModeComponent, AbstractLoggerService, AbstractLoginFormComponent, AbstractLogoutShortcutComponent, AbstractMultichoiceAutocompleteFieldComponentComponent, AbstractMultichoiceFieldComponent, AbstractMultichoiceListFieldComponent, AbstractMultichoiceSelectFieldComponent, AbstractNavigationDoubleDrawerComponent, AbstractNavigationDrawerComponent, AbstractNavigationRailComponent, AbstractNavigationTreeComponent, AbstractNewCaseComponent, AbstractNumberErrorsComponent, AbstractNumberFieldComponent, AbstractOptionSelectorComponent, AbstractPanelComponent, AbstractPanelItemComponent, AbstractPasswordTextFieldComponent, AbstractProfileComponent, AbstractQuickPanelComponent, AbstractRegistrationComponent, AbstractRegistrationFormComponent, AbstractRemoveNodeComponent, AbstractResourceProvider, AbstractResourceService, AbstractRichTextareaFieldComponent, AbstractRoleAssignmentComponent, AbstractSaveFilterComponent, AbstractSearchClauseComponent, AbstractSearchComponent, AbstractSearchConfigurationInputComponent, AbstractSearchModeComponent, AbstractSearchOperandInputComponent, AbstractSearchPredicateComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSingleTaskComponent, AbstractSingleTaskViewComponent, AbstractSortModeComponent, AbstractSortableViewComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTabbedCaseViewComponent, AbstractTabbedTaskViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskListPaginationComponent, AbstractTaskPanelComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserFieldComponent, AbstractUserInviteComponent, AbstractUserListFieldComponent, AbstractViewWithHeadersComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, AccessService, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AlertDialogModule, AllowedNetsService, AllowedNetsServiceFactory, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BasicAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, CallChainService, CancelTaskService, CaseAuthor, CaseCreationDate, CaseCreationDateTime, CaseDataset, CaseHeaderService, CaseListFontColorService, CaseMetaField, CaseNetAttributeAutocompleteCategory, CaseProcess, CaseResourceService, CaseRole, CaseSearch, CaseSimpleDataset, CaseStringId, CaseTask, CaseTitle, CaseTreeNode, CaseTreeService, CaseViewService, CaseVisualId, Categories, Category, CategoryFactory, CategoryResolverService, ChangedFieldsService, ClausePredicate, ConfigParams, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConfirmDialogModule, ConsoleLogPublisher, CovalentModule, CurrencyModule, CustomDateAdapter, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DEFAULT_LANGUAGE_CODE, DashboardCardTypes, DashboardMultiData, DashboardResourceService, DashboardSingleData, DataField, DataFieldsModule, DataFocusPolicy, DataFocusPolicyService, DataGroupAlignment, DatafieldMapKey, DateField, DateTimeField, DefaultSearchCategoriesModule, DelegateTaskService, DialogModule, DialogService, DynamicEnumerationField, DynamicNavigationRouteProviderService, EditableClausePredicate, EditableClausePredicateWithGenerators, EditableElementaryPredicate, EditablePredicate, EditablePredicateWithGenerator, ElementaryPredicate, EnumerationField, EnumerationFieldValidation, Equals, EqualsDate, ErrorSnackBarComponent, EventConstants, EventQueueService, EventService, FILTER_IDENTIFIERS, FILTER_VIEW_TASK_TRANSITION_ID, FieldAlignment, FieldConverterService, FieldTypeResource, FileField, FileListField, FileListFieldValidation, FilePreviewType, FileUploadMIMEType, FileUploadModel, Filter, FilterExtractionService, FilterField, FilterRepository, FilterType, FinishPolicy, FinishPolicyService, FinishTaskService, GenericSnackBarComponent, GroupGuardService, GroupNavigationComponentResolverService, GroupNavigationConstants, HeaderColumn, HeaderColumnType, HeaderMode, HeaderSearchService, HeaderType, HttpLoaderFactory, I18nField, I18nFieldValidation, InRange, InRangeDate, IncrementingCounter, IsNull, LanguageIconsService, LanguageService, LdapGroupListService, LdapGroupResourceService, LessThan, LessThanDate, LessThanDateTime, Like, LoadingEmitter, LoadingWithFilterEmitter, LocalStorageLogPublisher, LogEntry, LogLevel, LogPublisher, LogPublisherService, LoggerService, MaterialAppearance, MaterialModule, MergeOperator, MergedFilter, MockAuthenticationMethodService, MockAuthenticationService, MockEndpoint, MockSignUpService, MockUserPreferenceService, MockUserResourceService, MoreThan, MoreThanDate, MoreThanDateTime, MultichoiceField, NAE_ASYNC_RENDERING_CONFIGURATION, NAE_AUTOSWITCH_TAB_TOKEN, NAE_BASE_FILTER, NAE_DEFAULT_CASE_SEARCH_CATEGORIES, NAE_DEFAULT_HEADERS, NAE_DEFAULT_TASK_SEARCH_CATEGORIES, NAE_FILES_UPLOAD_COMPONENT, NAE_FILTERS_FILTER, NAE_FILTER_FIELD, NAE_FILTER_TEXT, NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT, NAE_INFORM_ABOUT_INVALID_DATA, NAE_LOAD_FILTER_COMPONENT, NAE_NAVIGATION_ITEM_TASK_DATA, NAE_NET_ALL_VERSIONS, NAE_NET_VERSION_VISIBLE, NAE_NEW_CASE_COMPONENT, NAE_NEW_CASE_CONFIGURATION, NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, NAE_OPEN_EXISTING_TAB, NAE_OPTION_SELECTOR_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_ROUTING_CONFIGURATION_PATH, NAE_SAVE_FILTER_COMPONENT, NAE_SEARCH_CATEGORIES, NAE_SEARCH_COMPONENT_CONFIGURATION, NAE_SIDE_MENU_CONTROL, NAE_SNACKBAR_HORIZONTAL_POSITION, NAE_SNACKBAR_VERTICAL_POSITION, NAE_TAB_DATA, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_USER_ASSIGN_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, OpenedTab, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PermissionType, PetriNetResourceService, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProgressType, PromptDialogComponent, PromptDialogModule, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskLoadingService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentLdapGroupService, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBarComponent, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SpinnerOverlayService, Subgrid, SubjectTaskOperations, Substring, SuccessSnackBarComponent, TabLabelStream, TabView, TabbedVirtualScrollComponent, TaskAssignee, TaskConst, TaskContentService, TaskDataService, TaskElementType, TaskEndpoint, TaskEvent, TaskEventService, TaskHandlingService, TaskHeaderService, TaskMetaField, TaskNetAttributeAutocompleteCategory, TaskProcess, TaskRefField, TaskRequestStateService, TaskResourceService, TaskRole, TaskTask, TaskViewService, TemplateAppearance, TestCaseBaseFilterProvider, TestCaseViewAllowedNetsFactory, TestConfigurationService, TestMockDependenciesModule, TestNoAllowedNetsFactory, TestTaskBaseFilterProvider, TestTaskViewAllowedNetsFactory, TestViewService, TextAreaField, TextAreaHeight, TextField, TextFieldValidation, TranslateLibModule, TreeCaseViewService, TreePetriflowIdentifiers, TreeTaskContentService, UnlimitedTaskContentService, UriContentType, UriResourceService, UriService, User, UserAutocomplete, UserComparatorService, UserField, UserFilterConstants, UserFiltersService, UserInviteService, UserListField, UserListService, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, ViewIdService, ViewService, WarningSnackBarComponent, WorkflowHeaderService, WorkflowMetaField, WorkflowViewService, WrappedBoolean, arrayToObservable, authenticationServiceFactory, clearTimeInformation, configureCategory, createMockCase, createMockCaseOutcome, createMockDataGroup, createMockDependencies, createMockField, createMockGetDataOutcome, createMockImmediateData, createMockNet, createMockPage, createMockPetriNetOutcome, createMockSetDataOutcome, createMockTask, createMockTaskOutcome, createSortParam, createTaskEventNotification, defaultCaseSearchCategoriesFactory, defaultTaskSearchCategoriesFactory, destroySubscription, extractFilterFieldFromData, extractFilterFromData, extractFilterFromFilterField, extractIconAndTitle, extractRoles, getField, getFieldFromDataGroups, getFieldIndex, getFieldIndexFromDataGroups, getImmediateData, getNetAndCreateCase, groupNavigationViewIdSegmentFactory, hasContent, loadAllPages, mockUserAutocompleteValue, navigationItemTaskAllowedNetsServiceFactory, navigationItemTaskCategoryFactory, navigationItemTaskFilterFactory, ofVoid, processMessageResponse, publicBaseFilterFactory, publicFactoryResolver, refreshTree, tabbedAllowedNetsServiceFactory, tabbedTaskViewConfigurationFactory, toMoment };
|
|
32043
|
+
export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseViewComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardContentComponent, AbstractDataFieldTemplateComponent, AbstractDateFieldComponent, AbstractDateTimeFieldComponent, AbstractDefaultNumberFieldComponent, AbstractEditModeComponent, AbstractEmailSubmissionFormComponent, AbstractEnumerationAutocompleteDynamicFieldComponent, AbstractEnumerationAutocompleteSelectFieldComponent, AbstractEnumerationFieldComponent, AbstractEnumerationIconFieldComponent, AbstractEnumerationListFieldComponent, AbstractEnumerationSelectFieldComponent, AbstractEnumerationStepperFieldComponent, AbstractFieldComponentResolverComponent, AbstractFileFieldComponent, AbstractFileListFieldComponent, AbstractFilterFieldComponent, AbstractFilterFieldContentComponent, AbstractFilterSelectorComponent, AbstractFilterSelectorListItemComponent, AbstractForgottenPasswordComponent, AbstractFulltextSearchComponent, AbstractGroupNavigationComponentResolverComponent, AbstractHeaderComponent, AbstractHeaderService, AbstractHtmlTextareaFieldComponent, AbstractI18nDividerFieldComponent, AbstractI18nErrorsComponent, AbstractI18nFieldComponent, AbstractI18nTextFieldComponent, AbstractIframeCardComponent, AbstractImmediateFilterTextComponent, AbstractImmediateFilterTextContentComponent, AbstractImportNetComponent, AbstractInternalLinkComponent, AbstractLanguageSelectorComponent, AbstractLdapGroupRoleAssignmentComponent, AbstractLegalNoticeComponent, AbstractLoadFilterComponent, AbstractLoadingModeComponent, AbstractLoggerService, AbstractLoginFormComponent, AbstractLogoutShortcutComponent, AbstractMultichoiceAutocompleteFieldComponentComponent, AbstractMultichoiceFieldComponent, AbstractMultichoiceListFieldComponent, AbstractMultichoiceSelectFieldComponent, AbstractNavigationDoubleDrawerComponent, AbstractNavigationDrawerComponent, AbstractNavigationRailComponent, AbstractNavigationTreeComponent, AbstractNewCaseComponent, AbstractNumberErrorsComponent, AbstractNumberFieldComponent, AbstractOptionSelectorComponent, AbstractPanelComponent, AbstractPanelItemComponent, AbstractPasswordTextFieldComponent, AbstractProfileComponent, AbstractQuickPanelComponent, AbstractRegistrationComponent, AbstractRegistrationFormComponent, AbstractRemoveNodeComponent, AbstractResourceProvider, AbstractResourceService, AbstractRichTextareaFieldComponent, AbstractRoleAssignmentComponent, AbstractSaveFilterComponent, AbstractSearchClauseComponent, AbstractSearchComponent, AbstractSearchConfigurationInputComponent, AbstractSearchModeComponent, AbstractSearchOperandInputComponent, AbstractSearchPredicateComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSingleTaskComponent, AbstractSingleTaskViewComponent, AbstractSortModeComponent, AbstractSortableViewComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTabbedCaseViewComponent, AbstractTabbedTaskViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskListPaginationComponent, AbstractTaskPanelComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserFieldComponent, AbstractUserInviteComponent, AbstractUserListFieldComponent, AbstractViewWithHeadersComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, AccessService, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AlertDialogModule, AllowedNetsService, AllowedNetsServiceFactory, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BasicAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, CallChainService, CancelTaskService, CaseAuthor, CaseCreationDate, CaseCreationDateTime, CaseDataset, CaseHeaderService, CaseListFontColorService, CaseMetaField, CaseNetAttributeAutocompleteCategory, CaseProcess, CaseResourceService, CaseRole, CaseSearch, CaseSimpleDataset, CaseStringId, CaseTask, CaseTitle, CaseTreeNode, CaseTreeService, CaseViewService, CaseVisualId, Categories, Category, CategoryFactory, CategoryResolverService, ChangedFieldsService, ClausePredicate, ConfigParams, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConfirmDialogModule, ConsoleLogPublisher, CovalentModule, CurrencyModule, CustomDateAdapter, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DEFAULT_LANGUAGE_CODE, DashboardCardTypes, DashboardMultiData, DashboardResourceService, DashboardSingleData, DataField, DataFieldsModule, DataFocusPolicy, DataFocusPolicyService, DataGroupAlignment, DatafieldMapKey, DateField, DateTimeField, DefaultSearchCategoriesModule, DelegateTaskService, DialogModule, DialogService, DynamicEnumerationField, DynamicNavigationRouteProviderService, EditableClausePredicate, EditableClausePredicateWithGenerators, EditableElementaryPredicate, EditablePredicate, EditablePredicateWithGenerator, ElementaryPredicate, EnumerationAutocompleteFilterProperty, EnumerationField, EnumerationFieldValidation, Equals, EqualsDate, ErrorSnackBarComponent, EventConstants, EventQueueService, EventService, FILTER_IDENTIFIERS, FILTER_VIEW_TASK_TRANSITION_ID, FieldAlignment, FieldConverterService, FieldTypeResource, FileField, FileListField, FileListFieldValidation, FilePreviewType, FileUploadMIMEType, FileUploadModel, Filter, FilterExtractionService, FilterField, FilterRepository, FilterType, FinishPolicy, FinishPolicyService, FinishTaskService, GenericSnackBarComponent, GroupGuardService, GroupNavigationComponentResolverService, GroupNavigationConstants, HeaderColumn, HeaderColumnType, HeaderMode, HeaderSearchService, HeaderType, HttpLoaderFactory, I18nField, I18nFieldValidation, InRange, InRangeDate, IncrementingCounter, IsNull, LanguageIconsService, LanguageService, LdapGroupListService, LdapGroupResourceService, LessThan, LessThanDate, LessThanDateTime, Like, LoadingEmitter, LoadingWithFilterEmitter, LocalStorageLogPublisher, LogEntry, LogLevel, LogPublisher, LogPublisherService, LoggerService, MaterialAppearance, MaterialModule, MergeOperator, MergedFilter, MockAuthenticationMethodService, MockAuthenticationService, MockEndpoint, MockSignUpService, MockUserPreferenceService, MockUserResourceService, MoreThan, MoreThanDate, MoreThanDateTime, MultichoiceAutocompleteFilterProperty, MultichoiceField, NAE_ASYNC_RENDERING_CONFIGURATION, NAE_AUTOSWITCH_TAB_TOKEN, NAE_BASE_FILTER, NAE_DEFAULT_CASE_SEARCH_CATEGORIES, NAE_DEFAULT_HEADERS, NAE_DEFAULT_TASK_SEARCH_CATEGORIES, NAE_FILES_UPLOAD_COMPONENT, NAE_FILTERS_FILTER, NAE_FILTER_FIELD, NAE_FILTER_TEXT, NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT, NAE_INFORM_ABOUT_INVALID_DATA, NAE_LOAD_FILTER_COMPONENT, NAE_NAVIGATION_ITEM_TASK_DATA, NAE_NET_ALL_VERSIONS, NAE_NET_VERSION_VISIBLE, NAE_NEW_CASE_COMPONENT, NAE_NEW_CASE_CONFIGURATION, NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, NAE_OPEN_EXISTING_TAB, NAE_OPTION_SELECTOR_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_ROUTING_CONFIGURATION_PATH, NAE_SAVE_FILTER_COMPONENT, NAE_SEARCH_CATEGORIES, NAE_SEARCH_COMPONENT_CONFIGURATION, NAE_SIDE_MENU_CONTROL, NAE_SNACKBAR_HORIZONTAL_POSITION, NAE_SNACKBAR_VERTICAL_POSITION, NAE_TAB_DATA, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_USER_ASSIGN_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, OpenedTab, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PermissionType, PetriNetResourceService, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProgressType, PromptDialogComponent, PromptDialogModule, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskLoadingService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentLdapGroupService, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBarComponent, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SpinnerOverlayService, Subgrid, SubjectTaskOperations, Substring, SuccessSnackBarComponent, TabLabelStream, TabView, TabbedVirtualScrollComponent, TaskAssignee, TaskConst, TaskContentService, TaskDataService, TaskElementType, TaskEndpoint, TaskEvent, TaskEventService, TaskHandlingService, TaskHeaderService, TaskMetaField, TaskNetAttributeAutocompleteCategory, TaskProcess, TaskRefField, TaskRequestStateService, TaskResourceService, TaskRole, TaskTask, TaskViewService, TemplateAppearance, TestCaseBaseFilterProvider, TestCaseViewAllowedNetsFactory, TestConfigurationService, TestMockDependenciesModule, TestNoAllowedNetsFactory, TestTaskBaseFilterProvider, TestTaskViewAllowedNetsFactory, TestViewService, TextAreaField, TextAreaHeight, TextField, TextFieldValidation, TranslateLibModule, TreeCaseViewService, TreePetriflowIdentifiers, TreeTaskContentService, UnlimitedTaskContentService, UriContentType, UriResourceService, UriService, User, UserAutocomplete, UserComparatorService, UserField, UserFilterConstants, UserFiltersService, UserInviteService, UserListField, UserListService, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, ViewIdService, ViewService, WarningSnackBarComponent, WorkflowHeaderService, WorkflowMetaField, WorkflowViewService, WrappedBoolean, arrayToObservable, authenticationServiceFactory, clearTimeInformation, configureCategory, createMockCase, createMockCaseOutcome, createMockDataGroup, createMockDependencies, createMockField, createMockGetDataOutcome, createMockImmediateData, createMockNet, createMockPage, createMockPetriNetOutcome, createMockSetDataOutcome, createMockTask, createMockTaskOutcome, createSortParam, createTaskEventNotification, defaultCaseSearchCategoriesFactory, defaultTaskSearchCategoriesFactory, destroySubscription, extractFilterFieldFromData, extractFilterFromData, extractFilterFromFilterField, extractIconAndTitle, extractRoles, getField, getFieldFromDataGroups, getFieldIndex, getFieldIndexFromDataGroups, getImmediateData, getNetAndCreateCase, groupNavigationViewIdSegmentFactory, hasContent, loadAllPages, mockUserAutocompleteValue, navigationItemTaskAllowedNetsServiceFactory, navigationItemTaskCategoryFactory, navigationItemTaskFilterFactory, ofVoid, processMessageResponse, publicBaseFilterFactory, publicFactoryResolver, refreshTree, tabbedAllowedNetsServiceFactory, tabbedTaskViewConfigurationFactory, toMoment };
|
|
31936
32044
|
//# sourceMappingURL=netgrif-components-core.mjs.map
|