@netgrif/components-core 7.0.0-beta.2 → 7.0.0-rc.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/esm2022/lib/authentication/authentication.factory.mjs +5 -1
- package/esm2022/lib/authentication/models/credentials.mjs +1 -1
- package/esm2022/lib/authentication/models/user.transformer.mjs +2 -2
- package/esm2022/lib/authentication/services/methods/basic-authentication/basic-with-realm-authentication.service.mjs +43 -0
- package/esm2022/lib/authentication/services/public-api.mjs +2 -1
- package/esm2022/lib/navigation/breadcrumbs/abstract-breadcrumbs.component.mjs +4 -4
- package/esm2022/lib/navigation/model/uri-resource.mjs +1 -1
- package/esm2022/lib/navigation/navigation-double-drawer/abstract-navigation-double-drawer.mjs +11 -11
- package/esm2022/lib/navigation/service/uri.service.mjs +10 -10
- package/esm2022/lib/resources/abstract-endpoint/abstract-resource.service.mjs +28 -1
- package/esm2022/lib/resources/engine-endpoint/petri-net-resource.service.mjs +5 -3
- package/esm2022/lib/resources/engine-endpoint/public/public-petri-net-resource.service.mjs +3 -2
- package/esm2022/lib/resources/engine-endpoint/user-resource.service.mjs +36 -35
- package/esm2022/lib/side-menu/content-components/import-net/abstract-import-net.component.mjs +2 -2
- package/esm2022/lib/task-content/services/field-converter.service.mjs +4 -4
- package/esm2022/lib/user/models/iuser.mjs +1 -1
- package/esm2022/lib/user/models/user.mjs +6 -2
- package/esm2022/lib/user/services/user-list.service.mjs +2 -2
- package/esm2022/lib/user/services/user.service.mjs +2 -2
- package/esm2022/lib/utility/tests/mocks/mock-authentication-method-service.mjs +2 -2
- package/esm2022/lib/utility/tests/mocks/mock-authentication.service.mjs +2 -2
- package/esm2022/lib/utility/tests/mocks/mock-user-resource.service.mjs +2 -2
- package/fesm2022/netgrif-components-core.mjs +150 -75
- package/fesm2022/netgrif-components-core.mjs.map +1 -1
- package/lib/authentication/authentication.factory.d.ts +2 -1
- package/lib/authentication/models/credentials.d.ts +1 -0
- package/lib/authentication/services/methods/basic-authentication/basic-with-realm-authentication.service.d.ts +16 -0
- package/lib/authentication/services/public-api.d.ts +1 -0
- package/lib/navigation/model/uri-resource.d.ts +2 -1
- package/lib/resources/abstract-endpoint/abstract-resource.service.d.ts +6 -0
- package/lib/resources/engine-endpoint/user-resource.service.d.ts +17 -17
- package/lib/user/models/iuser.d.ts +18 -0
- package/lib/user/models/user.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { NgModule, Injectable,
|
|
2
|
+
import { NgModule, Injectable, Inject, Component, InjectionToken, Optional, Input, Injector, ViewChild, ViewChildren, SkipSelf, EventEmitter, Output, TemplateRef, Type, Pipe, Directive } from '@angular/core';
|
|
3
3
|
import * as i2 from '@angular/common';
|
|
4
4
|
import { CommonModule, registerLocaleData, CurrencyPipe, DecimalPipe, getCurrencySymbol } from '@angular/common';
|
|
5
5
|
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
@@ -11,7 +11,7 @@ import { PortalModule, ComponentPortal, TemplatePortal } from '@angular/cdk/port
|
|
|
11
11
|
import { ScrollingModule, CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
12
12
|
import * as i1$4 from '@angular/forms';
|
|
13
13
|
import { FormsModule, ReactiveFormsModule, FormControl, Validators } from '@angular/forms';
|
|
14
|
-
import {
|
|
14
|
+
import { FlexModule, FlexLayoutModule } from '@ngbracket/ngx-layout';
|
|
15
15
|
import { MatMomentDateModule, MomentDateAdapter } from '@angular/material-moment-adapter';
|
|
16
16
|
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
|
17
17
|
import { MatBadgeModule } from '@angular/material/badge';
|
|
@@ -62,13 +62,13 @@ import de$1 from '@angular/common/locales/de';
|
|
|
62
62
|
import * as i1$5 from 'rxjs';
|
|
63
63
|
import { of, BehaviorSubject, interval, ReplaySubject, throwError, Subject, Observable, forkJoin, combineLatest, timer, from, race } from 'rxjs';
|
|
64
64
|
import * as i1 from '@angular/common/http';
|
|
65
|
-
import { HttpHeaders, HttpErrorResponse, HttpParams, HttpEventType,
|
|
65
|
+
import { HttpHeaders, HttpErrorResponse, HttpParams, HttpEventType, HttpClient, HTTP_INTERCEPTORS, HttpClientModule, HttpResponse } from '@angular/common/http';
|
|
66
66
|
import { AngularResizeEventModule } from 'angular-resize-event';
|
|
67
67
|
import * as i2$3 from '@angular-material-components/datetime-picker';
|
|
68
68
|
import { NgxMatDatetimePickerModule } from '@angular-material-components/datetime-picker';
|
|
69
69
|
import { NgxMatMomentModule } from '@angular-material-components/moment-adapter';
|
|
70
70
|
import * as i1$2 from '@ngx-translate/core';
|
|
71
|
-
import { TranslateModule, TranslateService, TranslatePipe, TranslateStore
|
|
71
|
+
import { TranslateModule, TranslateLoader, TranslateService, TranslatePipe, TranslateStore } from '@ngx-translate/core';
|
|
72
72
|
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
|
|
73
73
|
import { catchError, map, tap, take, debounceTime, filter, distinctUntilChanged, startWith, defaultIfEmpty, switchMap, scan, mergeMap, reduce, concatMap, takeUntil } from 'rxjs/operators';
|
|
74
74
|
import * as i3 from '@ngbracket/ngx-layout/flex';
|
|
@@ -2435,7 +2435,9 @@ var de = {
|
|
|
2435
2435
|
*/
|
|
2436
2436
|
class User {
|
|
2437
2437
|
id;
|
|
2438
|
+
username;
|
|
2438
2439
|
email;
|
|
2440
|
+
realmId;
|
|
2439
2441
|
firstName;
|
|
2440
2442
|
lastName;
|
|
2441
2443
|
authorities;
|
|
@@ -2443,9 +2445,11 @@ class User {
|
|
|
2443
2445
|
groups;
|
|
2444
2446
|
nextGroups;
|
|
2445
2447
|
impersonated;
|
|
2446
|
-
constructor(id, email, firstName, lastName, authorities, roles, groups, nextGroups, impersonated) {
|
|
2448
|
+
constructor(id, username, email, realmId, firstName, lastName, authorities, roles, groups, nextGroups, impersonated) {
|
|
2447
2449
|
this.id = id;
|
|
2450
|
+
this.username = username;
|
|
2448
2451
|
this.email = email;
|
|
2452
|
+
this.realmId = realmId;
|
|
2449
2453
|
this.firstName = firstName;
|
|
2450
2454
|
this.lastName = lastName;
|
|
2451
2455
|
this.authorities = authorities;
|
|
@@ -2741,7 +2745,7 @@ class UserTransformer {
|
|
|
2741
2745
|
}
|
|
2742
2746
|
transform(user) {
|
|
2743
2747
|
const groups = []; // TODO groups parsing
|
|
2744
|
-
return new User(user.id, user.email, user.name, user.surname, this.transformAuthorities(user.authorities), user.processRoles, groups, user.nextGroups, user.impersonated ? this.transform(user.impersonated) : undefined);
|
|
2748
|
+
return new User(user.id, user.username, user.email, user.realmId, user.name, user.surname, this.transformAuthorities(user.authorities), user.processRoles, groups, user.nextGroups, user.impersonated ? this.transform(user.impersonated) : undefined);
|
|
2745
2749
|
}
|
|
2746
2750
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UserTransformer, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2747
2751
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UserTransformer, providedIn: 'root' });
|
|
@@ -2907,6 +2911,33 @@ class AbstractResourceService {
|
|
|
2907
2911
|
return r;
|
|
2908
2912
|
}
|
|
2909
2913
|
}
|
|
2914
|
+
/**
|
|
2915
|
+
* Converts a Spring-style paginated response into the application's Page<T> format.
|
|
2916
|
+
* @param response The raw response from backend (Spring `PageImpl` structure).
|
|
2917
|
+
* @returns Converted Page<T> object.
|
|
2918
|
+
*/
|
|
2919
|
+
mapToPage(response) {
|
|
2920
|
+
if (!response || !response.content) {
|
|
2921
|
+
return {
|
|
2922
|
+
content: [],
|
|
2923
|
+
pagination: {
|
|
2924
|
+
size: 0,
|
|
2925
|
+
totalElements: 0,
|
|
2926
|
+
totalPages: 0,
|
|
2927
|
+
number: 0
|
|
2928
|
+
}
|
|
2929
|
+
};
|
|
2930
|
+
}
|
|
2931
|
+
return {
|
|
2932
|
+
content: response.content,
|
|
2933
|
+
pagination: {
|
|
2934
|
+
size: response.size,
|
|
2935
|
+
totalElements: response.totalElements,
|
|
2936
|
+
totalPages: response.totalPages,
|
|
2937
|
+
number: response.number
|
|
2938
|
+
}
|
|
2939
|
+
};
|
|
2940
|
+
}
|
|
2910
2941
|
}
|
|
2911
2942
|
|
|
2912
2943
|
var ProgressType;
|
|
@@ -3081,10 +3112,11 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3081
3112
|
*
|
|
3082
3113
|
* **Request Type:** POST
|
|
3083
3114
|
*
|
|
3084
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3115
|
+
* **Request URL:** {{baseUrl}}/api/users/{id}/authority/assign
|
|
3085
3116
|
*/
|
|
3086
|
-
assignAuthority(userId, body, params) {
|
|
3087
|
-
return this._resourceProvider.post$('
|
|
3117
|
+
assignAuthority(userId, body, realmId = 'default', params) {
|
|
3118
|
+
return this._resourceProvider.post$('users/' + realmId + '/' + userId + '/authority', this.SERVER_URL, body, params, // TODO 2025-05-08 refactor this for exact realm id
|
|
3119
|
+
{ 'Content-Type': 'text/plain' })
|
|
3088
3120
|
.pipe(map(r => this.changeType(r, undefined)));
|
|
3089
3121
|
}
|
|
3090
3122
|
/**
|
|
@@ -3092,10 +3124,10 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3092
3124
|
*
|
|
3093
3125
|
* **Request Type:** POST
|
|
3094
3126
|
*
|
|
3095
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3127
|
+
* **Request URL:** {{baseUrl}}/api/users/{id}/role/assign
|
|
3096
3128
|
*/
|
|
3097
|
-
assignRoles(userId, body, params) {
|
|
3098
|
-
return this._resourceProvider.
|
|
3129
|
+
assignRoles(userId, realmId, body, params) {
|
|
3130
|
+
return this._resourceProvider.put$('users/' + realmId + '/' + userId + '/roles', this.SERVER_URL, body, params)
|
|
3099
3131
|
.pipe(map(r => this.changeType(r, undefined)));
|
|
3100
3132
|
}
|
|
3101
3133
|
/**
|
|
@@ -3103,10 +3135,10 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3103
3135
|
*
|
|
3104
3136
|
* **Request Type:** GET
|
|
3105
3137
|
*
|
|
3106
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3138
|
+
* **Request URL:** {{baseUrl}}/api/users/authority
|
|
3107
3139
|
*/
|
|
3108
3140
|
getAllAuthorities() {
|
|
3109
|
-
return this._resourceProvider.get$('
|
|
3141
|
+
return this._resourceProvider.get$('users/authority', this.SERVER_URL)
|
|
3110
3142
|
.pipe(map(r => this.changeType(r, 'authorities')));
|
|
3111
3143
|
}
|
|
3112
3144
|
/**
|
|
@@ -3117,18 +3149,18 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3117
3149
|
* **Request URL:** {{baseUrl}}/api/user
|
|
3118
3150
|
*/
|
|
3119
3151
|
getAll(params) {
|
|
3120
|
-
return this._resourceProvider.get$('
|
|
3121
|
-
.pipe(map(r => this.
|
|
3152
|
+
return this._resourceProvider.get$('users', this.SERVER_URL, params)
|
|
3153
|
+
.pipe(map(r => this.mapToPage(r)));
|
|
3122
3154
|
}
|
|
3123
3155
|
/**
|
|
3124
3156
|
* Get all users with specified roles
|
|
3125
3157
|
*
|
|
3126
3158
|
* **Request Type:** POST
|
|
3127
3159
|
*
|
|
3128
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3160
|
+
* **Request URL:** {{baseUrl}}/api/users/role
|
|
3129
3161
|
*/
|
|
3130
3162
|
getAllWithRole(body, params) {
|
|
3131
|
-
return this._resourceProvider.post$('
|
|
3163
|
+
return this._resourceProvider.post$('users/role', this.SERVER_URL, body, params)
|
|
3132
3164
|
.pipe(map(r => this.changeType(r, 'users')));
|
|
3133
3165
|
}
|
|
3134
3166
|
/**
|
|
@@ -3136,30 +3168,30 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3136
3168
|
*
|
|
3137
3169
|
* **Request Type:** GET
|
|
3138
3170
|
*
|
|
3139
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3171
|
+
* **Request URL:** {{baseUrl}}/api/users/me
|
|
3140
3172
|
*/
|
|
3141
3173
|
getLoggedUser(params) {
|
|
3142
|
-
return this._resourceProvider.get$('
|
|
3174
|
+
return this._resourceProvider.get$('users/me', this.SERVER_URL, params).pipe(map(r => this.changeType(r, undefined)));
|
|
3143
3175
|
}
|
|
3144
3176
|
/**
|
|
3145
3177
|
* Get logged user
|
|
3146
3178
|
*
|
|
3147
3179
|
* **Request Type:** GET
|
|
3148
3180
|
*
|
|
3149
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3181
|
+
* **Request URL:** {{baseUrl}}/api/users/me
|
|
3150
3182
|
*/
|
|
3151
3183
|
getPublicLoggedUser(params) {
|
|
3152
|
-
return this._resourceProvider.get$('public/
|
|
3184
|
+
return this._resourceProvider.get$('public/users/me', this.SERVER_URL, params).pipe(map(r => this.changeType(r, undefined)));
|
|
3153
3185
|
}
|
|
3154
3186
|
/**
|
|
3155
3187
|
* Get user by id
|
|
3156
3188
|
*
|
|
3157
3189
|
* **Request Type:** GET
|
|
3158
3190
|
*
|
|
3159
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3191
|
+
* **Request URL:** {{baseUrl}}/api/users/{id}
|
|
3160
3192
|
*/
|
|
3161
|
-
getUser(userId, params) {
|
|
3162
|
-
return this._resourceProvider.get$('
|
|
3193
|
+
getUser(userId, realmId = 'default', params) {
|
|
3194
|
+
return this._resourceProvider.get$('users/' + realmId + '/' + userId, this.SERVER_URL, params)
|
|
3163
3195
|
.pipe(map(r => this.changeType(r, undefined)));
|
|
3164
3196
|
}
|
|
3165
3197
|
/**
|
|
@@ -3167,10 +3199,10 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3167
3199
|
*
|
|
3168
3200
|
* **Request Type:** GET
|
|
3169
3201
|
*
|
|
3170
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3202
|
+
* **Request URL:** {{baseUrl}}/api/users/preferences
|
|
3171
3203
|
*/
|
|
3172
3204
|
getPreferences(params) {
|
|
3173
|
-
return this._resourceProvider.get$('
|
|
3205
|
+
return this._resourceProvider.get$('users/preferences', this.SERVER_URL, params)
|
|
3174
3206
|
.pipe(map(r => this.changeType(r, undefined)));
|
|
3175
3207
|
}
|
|
3176
3208
|
/**
|
|
@@ -3178,10 +3210,10 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3178
3210
|
*
|
|
3179
3211
|
* **Request Type:** POST
|
|
3180
3212
|
*
|
|
3181
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3213
|
+
* **Request URL:** {{baseUrl}}/api/users/preferences
|
|
3182
3214
|
*/
|
|
3183
3215
|
setPreferences(body, params) {
|
|
3184
|
-
return this._resourceProvider.post$('
|
|
3216
|
+
return this._resourceProvider.post$('users/preferences', this.SERVER_URL, body, params)
|
|
3185
3217
|
.pipe(map(r => this.changeType(r, undefined)));
|
|
3186
3218
|
}
|
|
3187
3219
|
/**
|
|
@@ -3189,10 +3221,10 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3189
3221
|
*
|
|
3190
3222
|
* **Request Type:** GET
|
|
3191
3223
|
*
|
|
3192
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3224
|
+
* **Request URL:** {{baseUrl}}/api/users/preferences
|
|
3193
3225
|
*/
|
|
3194
3226
|
getPublicPreferences(params) {
|
|
3195
|
-
return this._resourceProvider.get$('public/
|
|
3227
|
+
return this._resourceProvider.get$('public/users/preferences', this.SERVER_URL, params)
|
|
3196
3228
|
.pipe(map(r => this.changeType(r, undefined)));
|
|
3197
3229
|
}
|
|
3198
3230
|
/**
|
|
@@ -3200,10 +3232,10 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3200
3232
|
*
|
|
3201
3233
|
* **Request Type:** POST
|
|
3202
3234
|
*
|
|
3203
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3235
|
+
* **Request URL:** {{baseUrl}}/api/users/preferences
|
|
3204
3236
|
*/
|
|
3205
3237
|
setPublicPreferences(body, params) {
|
|
3206
|
-
return this._resourceProvider.post$('public/
|
|
3238
|
+
return this._resourceProvider.post$('public/users/preferences', this.SERVER_URL, body, params)
|
|
3207
3239
|
.pipe(map(r => this.changeType(r, undefined)));
|
|
3208
3240
|
}
|
|
3209
3241
|
/**
|
|
@@ -3211,21 +3243,21 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3211
3243
|
*
|
|
3212
3244
|
* **Request Type:** POST
|
|
3213
3245
|
*
|
|
3214
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3246
|
+
* **Request URL:** {{baseUrl}}/api/users/search
|
|
3215
3247
|
*/
|
|
3216
3248
|
search(body, params) {
|
|
3217
|
-
return this._resourceProvider.post$('
|
|
3218
|
-
.pipe(map(r => this.
|
|
3249
|
+
return this._resourceProvider.post$('users/search', this.SERVER_URL, body, params)
|
|
3250
|
+
.pipe(map(r => this.mapToPage(r)));
|
|
3219
3251
|
}
|
|
3220
3252
|
/**
|
|
3221
3253
|
* Update user
|
|
3222
3254
|
*
|
|
3223
3255
|
* **Request Type:** POST
|
|
3224
3256
|
*
|
|
3225
|
-
* **Request URL:** {{baseUrl}}/api/
|
|
3257
|
+
* **Request URL:** {{baseUrl}}/api/users/{id}
|
|
3226
3258
|
*/
|
|
3227
|
-
updateUser(userId, body, params) {
|
|
3228
|
-
return this._resourceProvider.post$('
|
|
3259
|
+
updateUser(userId, body, realmId = 'default', params) {
|
|
3260
|
+
return this._resourceProvider.post$('users/' + realmId + '/' + userId, this.SERVER_URL, body, params) // TODO 2025-05-08 refactor this for exact realm id
|
|
3229
3261
|
.pipe(map(r => this.changeType(r, undefined)));
|
|
3230
3262
|
}
|
|
3231
3263
|
/**
|
|
@@ -3245,7 +3277,7 @@ class UserResourceService extends AbstractResourceService {
|
|
|
3245
3277
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UserResourceService, decorators: [{
|
|
3246
3278
|
type: Injectable,
|
|
3247
3279
|
args: [{
|
|
3248
|
-
providedIn: 'root'
|
|
3280
|
+
providedIn: 'root',
|
|
3249
3281
|
}]
|
|
3250
3282
|
}], ctorParameters: () => [{ type: ResourceProvider }, { type: ConfigurationService }] });
|
|
3251
3283
|
|
|
@@ -3455,7 +3487,7 @@ class UserService {
|
|
|
3455
3487
|
this.loadUser();
|
|
3456
3488
|
}
|
|
3457
3489
|
emptyUser() {
|
|
3458
|
-
return new User('', '', '', '', [], [], [], []);
|
|
3490
|
+
return new User('', '', '', '', '', '', [], [], [], []);
|
|
3459
3491
|
}
|
|
3460
3492
|
loadUser() {
|
|
3461
3493
|
this._userResource.getLoggedUser().pipe(take(1)).subscribe((user) => {
|
|
@@ -7577,13 +7609,13 @@ class FieldConverterService {
|
|
|
7577
7609
|
case FieldTypeResource.USER:
|
|
7578
7610
|
let user;
|
|
7579
7611
|
if (item.value) {
|
|
7580
|
-
user = new UserValue(item.value.id, item.value.
|
|
7612
|
+
user = new UserValue(item.value.id, item.value.firstName, item.value.lastName, item.value.email);
|
|
7581
7613
|
}
|
|
7582
7614
|
return new UserField(item.stringId, item.name, item.behavior, user, item.roles, item.placeholder, item.description, item.layout, item.validations, item.component, item.parentTaskId);
|
|
7583
7615
|
case FieldTypeResource.USER_LIST:
|
|
7584
7616
|
let userListValue = new UserListValue(new Map());
|
|
7585
7617
|
if (item.value) {
|
|
7586
|
-
item.value.userValues.forEach(u => userListValue.addUserValue(new UserValue(u.id, u.
|
|
7618
|
+
item.value.userValues.forEach(u => userListValue.addUserValue(new UserValue(u.id, u.firstName, u.lastName, u.email)));
|
|
7587
7619
|
}
|
|
7588
7620
|
return new UserListField(item.stringId, item.name, item.behavior, userListValue, item.roles, item.placeholder, item.description, item.layout, item.validations, item.component, item.parentTaskId);
|
|
7589
7621
|
case FieldTypeResource.BUTTON:
|
|
@@ -7778,7 +7810,7 @@ class FieldConverterService {
|
|
|
7778
7810
|
return moment(new Date(value[0], value[1] - 1, value[2]));
|
|
7779
7811
|
}
|
|
7780
7812
|
if (this.resolveType(field) === FieldTypeResource.USER) {
|
|
7781
|
-
return new UserValue(value.id, value.
|
|
7813
|
+
return new UserValue(value.id, value.firstName, value.lastName, value.email);
|
|
7782
7814
|
}
|
|
7783
7815
|
if (this.resolveType(field) === FieldTypeResource.DATE_TIME) {
|
|
7784
7816
|
return moment(new Date(value[0], value[1] - 1, value[2], value[3], value[4]));
|
|
@@ -14147,7 +14179,8 @@ class PetriNetResourceService extends AbstractResourceService {
|
|
|
14147
14179
|
*/
|
|
14148
14180
|
getAll(params) {
|
|
14149
14181
|
return this._resourceProvider.get$('petrinet', this.SERVER_URL, params)
|
|
14150
|
-
.pipe(map(r => this.changeType(r, 'petriNetReferences')));
|
|
14182
|
+
// .pipe(map(r => this.changeType(r, 'petriNetReferences')));
|
|
14183
|
+
.pipe((map((response) => response.content)));
|
|
14151
14184
|
}
|
|
14152
14185
|
/**
|
|
14153
14186
|
* Get Data Field References Using
|
|
@@ -14262,7 +14295,8 @@ class PetriNetResourceService extends AbstractResourceService {
|
|
|
14262
14295
|
*/
|
|
14263
14296
|
searchPetriNets(body, params) {
|
|
14264
14297
|
return this._resourceProvider.post$('petrinet/search', this.SERVER_URL, body, params)
|
|
14265
|
-
.pipe(map(r => this.getResourcePage(r, 'petriNetReferences')));
|
|
14298
|
+
// .pipe(map(r => this.getResourcePage<PetriNetReference>(r, 'petriNetReferences')));
|
|
14299
|
+
.pipe(map(r => this.mapToPage(r)));
|
|
14266
14300
|
}
|
|
14267
14301
|
/**
|
|
14268
14302
|
* delete PetriNet
|
|
@@ -18014,6 +18048,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
18014
18048
|
type: Injectable
|
|
18015
18049
|
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: ConfigurationService }] });
|
|
18016
18050
|
|
|
18051
|
+
class BasicWithRealmAuthenticationService extends AuthenticationMethodService {
|
|
18052
|
+
_http;
|
|
18053
|
+
_config;
|
|
18054
|
+
constructor(_http, _config) {
|
|
18055
|
+
super();
|
|
18056
|
+
this._http = _http;
|
|
18057
|
+
this._config = _config;
|
|
18058
|
+
}
|
|
18059
|
+
login(credentials = { username: '', password: '' }) {
|
|
18060
|
+
const url = this._config.get().providers.auth.address + this._config.get().providers.auth.endpoints['login'];
|
|
18061
|
+
if (!url) {
|
|
18062
|
+
return throwError(new Error('Login URL is not defined in the config [nae.providers.auth.endpoints.login]'));
|
|
18063
|
+
}
|
|
18064
|
+
if (!credentials.username || !credentials.password) {
|
|
18065
|
+
return throwError(new Error('User\'s credentials are not defined!'));
|
|
18066
|
+
}
|
|
18067
|
+
credentials.username = credentials.username.trim();
|
|
18068
|
+
credentials.password = credentials.password.trim();
|
|
18069
|
+
if (credentials.username === '' || credentials.password === '') {
|
|
18070
|
+
return throwError(new Error('User\'s credentials are empty!'));
|
|
18071
|
+
}
|
|
18072
|
+
return this._http.post(url, credentials);
|
|
18073
|
+
}
|
|
18074
|
+
logout() {
|
|
18075
|
+
const url = this._config.get().providers.auth.address + this._config.get().providers.auth.endpoints['logout'];
|
|
18076
|
+
if (!url) {
|
|
18077
|
+
return throwError(new Error('Logout URL is not defined in the config [nae.providers.auth.endpoints.logout]'));
|
|
18078
|
+
}
|
|
18079
|
+
return this._http.post(url, {});
|
|
18080
|
+
}
|
|
18081
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BasicWithRealmAuthenticationService, deps: [{ token: i1.HttpClient }, { token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
18082
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BasicWithRealmAuthenticationService });
|
|
18083
|
+
}
|
|
18084
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BasicWithRealmAuthenticationService, decorators: [{
|
|
18085
|
+
type: Injectable
|
|
18086
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: ConfigurationService }] });
|
|
18087
|
+
|
|
18017
18088
|
function authenticationServiceFactory(config, http) {
|
|
18018
18089
|
const auth = config.get().providers.auth;
|
|
18019
18090
|
if (!auth || !auth.authentication) {
|
|
@@ -18023,6 +18094,9 @@ function authenticationServiceFactory(config, http) {
|
|
|
18023
18094
|
if (authType === 'basic') {
|
|
18024
18095
|
return new BasicAuthenticationService(http, config);
|
|
18025
18096
|
}
|
|
18097
|
+
else if (authType === 'basicwithrealm') {
|
|
18098
|
+
return new BasicWithRealmAuthenticationService(http, config);
|
|
18099
|
+
}
|
|
18026
18100
|
else {
|
|
18027
18101
|
return new NullAuthenticationService();
|
|
18028
18102
|
}
|
|
@@ -18644,7 +18718,7 @@ class UserListService {
|
|
|
18644
18718
|
return of([]);
|
|
18645
18719
|
}
|
|
18646
18720
|
this._updateProgress$.on();
|
|
18647
|
-
return forkJoin(selectedUsers.map(user => this._resources.assignRoles(user.id
|
|
18721
|
+
return forkJoin(selectedUsers.map(user => this._resources.assignRoles(user.id, user.realmId, selectedRoles))).pipe(tap(messages => {
|
|
18648
18722
|
messages.forEach((message, idx) => {
|
|
18649
18723
|
if (message.error) {
|
|
18650
18724
|
this._log.error(message.error, message);
|
|
@@ -24213,14 +24287,14 @@ class UriService {
|
|
|
24213
24287
|
return this._rootLoading$;
|
|
24214
24288
|
}
|
|
24215
24289
|
isRoot(node) {
|
|
24216
|
-
return node.
|
|
24290
|
+
return node.id === this._rootNode.id && node.uriPath === this._rootNode.uriPath;
|
|
24217
24291
|
}
|
|
24218
24292
|
get activeNode() {
|
|
24219
24293
|
return this._activeNode$.getValue();
|
|
24220
24294
|
}
|
|
24221
24295
|
set activeNode(node) {
|
|
24222
24296
|
if (node.parentId && !node.parent) {
|
|
24223
|
-
if (node.parentId === this._rootNode.
|
|
24297
|
+
if (node.parentId === this._rootNode.id) {
|
|
24224
24298
|
node.parent = this._rootNode;
|
|
24225
24299
|
}
|
|
24226
24300
|
else {
|
|
@@ -24279,7 +24353,7 @@ class UriService {
|
|
|
24279
24353
|
getChildNodes(node) {
|
|
24280
24354
|
if (!node)
|
|
24281
24355
|
node = this.activeNode;
|
|
24282
|
-
return this._resourceService.getNodesByParent(node.
|
|
24356
|
+
return this._resourceService.getNodesByParent(node.id).pipe(map(nodes => {
|
|
24283
24357
|
this.capitalizeNames(nodes);
|
|
24284
24358
|
return nodes;
|
|
24285
24359
|
}));
|
|
@@ -24295,7 +24369,7 @@ class UriService {
|
|
|
24295
24369
|
if (!node)
|
|
24296
24370
|
node = this.activeNode;
|
|
24297
24371
|
const searchBody = {
|
|
24298
|
-
uriNodeId: node.
|
|
24372
|
+
uriNodeId: node.id,
|
|
24299
24373
|
};
|
|
24300
24374
|
if (!!processIdentifiers) {
|
|
24301
24375
|
searchBody.process = processIdentifiers.map(id => ({ identifier: id }));
|
|
@@ -24321,7 +24395,7 @@ class UriService {
|
|
|
24321
24395
|
}
|
|
24322
24396
|
const searchBody = {
|
|
24323
24397
|
data: {
|
|
24324
|
-
[GroupNavigationConstants.ITEM_FIELD_ID_NODE_PATH]: node.
|
|
24398
|
+
[GroupNavigationConstants.ITEM_FIELD_ID_NODE_PATH]: node.uriPath
|
|
24325
24399
|
},
|
|
24326
24400
|
process: { identifier: "preference_item" }
|
|
24327
24401
|
};
|
|
@@ -24351,7 +24425,7 @@ class UriService {
|
|
|
24351
24425
|
if (level === 0)
|
|
24352
24426
|
return of([this.root]);
|
|
24353
24427
|
return this._resourceService.getByLevel(level).pipe(map(nodes => {
|
|
24354
|
-
const ns = !!parent?.
|
|
24428
|
+
const ns = !!parent?.id ? nodes.filter(n => n.parentId === parent.id) : nodes;
|
|
24355
24429
|
this.capitalizeNames(ns);
|
|
24356
24430
|
return ns;
|
|
24357
24431
|
}));
|
|
@@ -24359,13 +24433,13 @@ class UriService {
|
|
|
24359
24433
|
resolveParentPath(node) {
|
|
24360
24434
|
if (!node)
|
|
24361
24435
|
node = this.activeNode;
|
|
24362
|
-
const lastDelimiter = node.
|
|
24436
|
+
const lastDelimiter = node.uriPath.lastIndexOf('/');
|
|
24363
24437
|
if (lastDelimiter === 0)
|
|
24364
24438
|
return '/';
|
|
24365
|
-
return node.
|
|
24439
|
+
return node.uriPath.substring(0, lastDelimiter);
|
|
24366
24440
|
}
|
|
24367
24441
|
splitNodePath(node) {
|
|
24368
|
-
return node?.
|
|
24442
|
+
return node?.uriPath.split('/').filter(s => s !== UriService.ROOT);
|
|
24369
24443
|
}
|
|
24370
24444
|
capitalizeNames(nodes) {
|
|
24371
24445
|
if (!(nodes instanceof Array))
|
|
@@ -24502,7 +24576,7 @@ class AbstractImportNetComponent {
|
|
|
24502
24576
|
uploadFile(file) {
|
|
24503
24577
|
const fileFormData = new FormData();
|
|
24504
24578
|
fileFormData.append('file', file.data);
|
|
24505
|
-
fileFormData.append('uriNodeId', this._uriService.activeNode.
|
|
24579
|
+
fileFormData.append('uriNodeId', this._uriService.activeNode.id);
|
|
24506
24580
|
fileFormData.append('meta', this.releaseTypeControl.value.toString().toUpperCase());
|
|
24507
24581
|
file.inProgress = true;
|
|
24508
24582
|
file.completed = false;
|
|
@@ -27945,7 +28019,8 @@ class PublicPetriNetResourceService extends PetriNetResourceService {
|
|
|
27945
28019
|
*/
|
|
27946
28020
|
searchPetriNets(body, params) {
|
|
27947
28021
|
return this._resourceProvider.post$('public/petrinet/search', this.SERVER_URL, body, params)
|
|
27948
|
-
.pipe(map(r => this.getResourcePage(r, 'petriNetReferences')));
|
|
28022
|
+
// .pipe(map(r => this.getResourcePage<PetriNetReference>(r, 'petriNetReferences')));
|
|
28023
|
+
.pipe(map(r => this.mapToPage(r)));
|
|
27949
28024
|
}
|
|
27950
28025
|
/**
|
|
27951
28026
|
* Get Roles References Using
|
|
@@ -29723,7 +29798,7 @@ class AbstractNavigationDoubleDrawerComponent {
|
|
|
29723
29798
|
return;
|
|
29724
29799
|
}
|
|
29725
29800
|
if (node.parentId && !node.parent) {
|
|
29726
|
-
if (this._uriService.
|
|
29801
|
+
if (node.parentId === this._uriService.root.id) {
|
|
29727
29802
|
node.parent = this._uriService.root;
|
|
29728
29803
|
}
|
|
29729
29804
|
else {
|
|
@@ -29752,7 +29827,7 @@ class AbstractNavigationDoubleDrawerComponent {
|
|
|
29752
29827
|
this.loadRightSide();
|
|
29753
29828
|
}
|
|
29754
29829
|
else {
|
|
29755
|
-
if (!this.leftItems.find(item => item.resource?.immediateData.find(f => f.stringId === GroupNavigationConstants.ITEM_FIELD_ID_NODE_PATH)?.value === node.
|
|
29830
|
+
if (!this.leftItems.find(item => item.resource?.immediateData.find(f => f.stringId === GroupNavigationConstants.ITEM_FIELD_ID_NODE_PATH)?.value === node.uriPath)) {
|
|
29756
29831
|
this.loadLeftSide();
|
|
29757
29832
|
}
|
|
29758
29833
|
this.loadRightSide();
|
|
@@ -29857,7 +29932,7 @@ class AbstractNavigationDoubleDrawerComponent {
|
|
|
29857
29932
|
onItemClick(item) {
|
|
29858
29933
|
if (item.resource === undefined) {
|
|
29859
29934
|
// custom view represented only in nae.json
|
|
29860
|
-
if (item.processUri === this.currentNode.
|
|
29935
|
+
if (item.processUri === this.currentNode.uriPath) {
|
|
29861
29936
|
this._uriService.activeNode = this._currentNode;
|
|
29862
29937
|
}
|
|
29863
29938
|
else {
|
|
@@ -29873,7 +29948,7 @@ class AbstractNavigationDoubleDrawerComponent {
|
|
|
29873
29948
|
this._log.error(error);
|
|
29874
29949
|
});
|
|
29875
29950
|
}
|
|
29876
|
-
else if (!path.includes(this.currentNode.
|
|
29951
|
+
else if (!path.includes(this.currentNode.uriPath)) {
|
|
29877
29952
|
this._uriService.activeNode = this._currentNode.parent;
|
|
29878
29953
|
}
|
|
29879
29954
|
else {
|
|
@@ -29885,7 +29960,7 @@ class AbstractNavigationDoubleDrawerComponent {
|
|
|
29885
29960
|
return item.resource?.immediateData.find(f => f.stringId === GroupNavigationConstants.ITEM_FIELD_ID_HAS_CHILDREN)?.value;
|
|
29886
29961
|
}
|
|
29887
29962
|
isItemAndNodeEqual(item, node) {
|
|
29888
|
-
return item.resource?.immediateData.find(f => f.stringId === GroupNavigationConstants.ITEM_FIELD_ID_NODE_PATH)?.value === node.
|
|
29963
|
+
return item.resource?.immediateData.find(f => f.stringId === GroupNavigationConstants.ITEM_FIELD_ID_NODE_PATH)?.value === node.uriPath;
|
|
29889
29964
|
}
|
|
29890
29965
|
loadLeftSide() {
|
|
29891
29966
|
if (this._uriService.isRoot(this._currentNode)) {
|
|
@@ -30003,13 +30078,13 @@ class AbstractNavigationDoubleDrawerComponent {
|
|
|
30003
30078
|
this.leftItems.sort((a, b) => multiplier * a?.navigation?.title.localeCompare(b?.navigation?.title));
|
|
30004
30079
|
}
|
|
30005
30080
|
resolveCustomViewsInRightSide() {
|
|
30006
|
-
if (!!this._childCustomViews[this._currentNode.
|
|
30007
|
-
this.rightItems.push(...Object.values(this._childCustomViews[this._currentNode.
|
|
30081
|
+
if (!!this._childCustomViews[this._currentNode.uriPath]) {
|
|
30082
|
+
this.rightItems.push(...Object.values(this._childCustomViews[this._currentNode.uriPath]));
|
|
30008
30083
|
}
|
|
30009
30084
|
}
|
|
30010
30085
|
resolveCustomViewsInLeftSide() {
|
|
30011
|
-
if (!!this._childCustomViews[this._currentNode.parent.
|
|
30012
|
-
this.leftItems.push(...Object.values(this._childCustomViews[this._currentNode.parent.
|
|
30086
|
+
if (!!this._childCustomViews[this._currentNode.parent.uriPath]) {
|
|
30087
|
+
this.leftItems.push(...Object.values(this._childCustomViews[this._currentNode.parent.uriPath]));
|
|
30013
30088
|
}
|
|
30014
30089
|
}
|
|
30015
30090
|
resolveItemCaseToNavigationItem(itemCase) {
|
|
@@ -30079,7 +30154,7 @@ class AbstractNavigationDoubleDrawerComponent {
|
|
|
30079
30154
|
return this.rightItems === undefined || this.rightItems.length === 0;
|
|
30080
30155
|
}
|
|
30081
30156
|
uriNodeTrackBy(index, node) {
|
|
30082
|
-
return node.
|
|
30157
|
+
return node.id;
|
|
30083
30158
|
}
|
|
30084
30159
|
itemsTrackBy(index, item) {
|
|
30085
30160
|
return item.id;
|
|
@@ -30386,7 +30461,7 @@ class AbstractBreadcrumbsComponent {
|
|
|
30386
30461
|
this.nicePathSubscription = this.nicePath.subscribe(np => {
|
|
30387
30462
|
if (!!np) {
|
|
30388
30463
|
const path = np;
|
|
30389
|
-
if (path?.length > this.partsAfterDots + 1 && this._uriService.activeNode?.
|
|
30464
|
+
if (path?.length > this.partsAfterDots + 1 && this._uriService.activeNode?.uriPath.length > this.lengthOfPath && !this._showPaths) {
|
|
30390
30465
|
const newPath = [path[0], AbstractBreadcrumbsComponent.DOTS];
|
|
30391
30466
|
for (let i = path.length - this.partsAfterDots; i < path.length; i++) {
|
|
30392
30467
|
newPath.push(path[i]);
|
|
@@ -30402,7 +30477,7 @@ class AbstractBreadcrumbsComponent {
|
|
|
30402
30477
|
if (!this.redirectOnClick) {
|
|
30403
30478
|
return;
|
|
30404
30479
|
}
|
|
30405
|
-
this._router.navigate(this.redirectUrls.get(this._uriService.activeNode.
|
|
30480
|
+
this._router.navigate(this.redirectUrls.get(this._uriService.activeNode.uriPath)).then(r => { });
|
|
30406
30481
|
}
|
|
30407
30482
|
reset() {
|
|
30408
30483
|
this.filterName = undefined;
|
|
@@ -30433,7 +30508,7 @@ class AbstractBreadcrumbsComponent {
|
|
|
30433
30508
|
});
|
|
30434
30509
|
}
|
|
30435
30510
|
resultCounter(count, tmp) {
|
|
30436
|
-
if (tmp?.length > this.partsAfterDots + 1 && this._uriService.activeNode?.
|
|
30511
|
+
if (tmp?.length > this.partsAfterDots + 1 && this._uriService.activeNode?.uriPath.length > this.lengthOfPath && !this._showPaths) {
|
|
30437
30512
|
return tmp.length - this.partsAfterDots + (count - 2);
|
|
30438
30513
|
}
|
|
30439
30514
|
return count;
|
|
@@ -35376,7 +35451,7 @@ class MockAuthenticationService extends AuthenticationService {
|
|
|
35376
35451
|
this._userTransformer = _userTransformer;
|
|
35377
35452
|
}
|
|
35378
35453
|
login(credentials) {
|
|
35379
|
-
return of(new User('id', 'mail', 'name', 'surname', ['ADMIN'], [{ stringId: 'id', name: 'id', importId: 'id' }]));
|
|
35454
|
+
return of(new User('id', 'username', 'mail', 'realmId', 'name', 'surname', ['ADMIN'], [{ stringId: 'id', name: 'id', importId: 'id' }]));
|
|
35380
35455
|
}
|
|
35381
35456
|
logout() {
|
|
35382
35457
|
return of(undefined);
|
|
@@ -35447,7 +35522,7 @@ class MockUserResourceService {
|
|
|
35447
35522
|
return of({ success: '' });
|
|
35448
35523
|
}
|
|
35449
35524
|
getLoggedUser() {
|
|
35450
|
-
return of({ email: 'mail', id: 'id', name: 'name', surname: 'surname', fullName: 'name surname',
|
|
35525
|
+
return of({ email: 'mail', id: 'id', username: 'username', realmId: 'realmId', name: 'name', firstName: 'name', surname: 'surname', lastName: 'surname', fullName: 'name surname',
|
|
35451
35526
|
groups: [], authorities: [], nextGroups: [], processRoles: [] });
|
|
35452
35527
|
}
|
|
35453
35528
|
// methods not yet mocked by this mock
|
|
@@ -35527,7 +35602,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
35527
35602
|
|
|
35528
35603
|
class MockAuthenticationMethodService extends AuthenticationMethodService {
|
|
35529
35604
|
login(credentials) {
|
|
35530
|
-
return of({ email: 'mail', id: 'id', name: 'name', surname: 'surname', fullName: 'name surname',
|
|
35605
|
+
return of({ email: 'mail', id: 'id', username: 'username', realmId: 'realmId', name: 'name', firstName: 'name', surname: 'surname', lastName: 'surname', fullName: 'name surname',
|
|
35531
35606
|
groups: [], authorities: [], nextGroups: [], processRoles: [] });
|
|
35532
35607
|
}
|
|
35533
35608
|
logout() {
|
|
@@ -38113,5 +38188,5 @@ const BaseFilterFactoryProvider = {
|
|
|
38113
38188
|
* Generated bundle index. Do not edit.
|
|
38114
38189
|
*/
|
|
38115
38190
|
|
|
38116
|
-
export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBaseDataFieldComponent, AbstractBooleanDefaultFieldComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonDefaultFieldComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseRefDefaultComponent, AbstractCaseViewComponent, AbstractChangePasswordComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardBarChartTextFieldComponent, AbstractDashboardContentComponent, AbstractDashboardIframeTextFieldComponent, AbstractDashboardLineChartTextFieldComponent, AbstractDashboardPieChartTextFieldComponent, AbstractDashboardPortalTextFieldComponent, AbstractDashboardTextFieldComponent, AbstractDataFieldTemplateComponent, AbstractDateDefaultFieldComponent, AbstractDateFieldComponent, AbstractDateTimeDefaultFieldComponent, AbstractDateTimeFieldComponent, AbstractDefaultNumberFieldComponent, AbstractEditModeComponent, AbstractEmailSubmissionFormComponent, AbstractEnumerationAutocompleteDynamicFieldComponent, AbstractEnumerationAutocompleteSelectFieldComponent, AbstractEnumerationCaseRefComponent, AbstractEnumerationFieldComponent, AbstractEnumerationIconFieldComponent, AbstractEnumerationListFieldComponent, AbstractEnumerationSelectFieldComponent, AbstractEnumerationStepperFieldComponent, AbstractFieldComponentResolverComponent, AbstractFileDefaultFieldComponent, AbstractFileFieldComponent, AbstractFileListDefaultFieldComponent, AbstractFileListFieldComponent, AbstractFilterDefaultFieldComponent, AbstractFilterFieldComponent, AbstractFilterFieldContentComponent, AbstractFilterFieldTabViewComponent, AbstractFilterFieldTabViewContentComponent, 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, AbstractMultiUserAssignComponent, AbstractMultiUserAssignItemComponent, AbstractMultiUserAssignListComponent, AbstractMultichoiceAutocompleteFieldComponentComponent, AbstractMultichoiceCaseRefComponent, AbstractMultichoiceFieldComponent, AbstractMultichoiceListFieldComponent, AbstractMultichoiceSelectFieldComponent, AbstractNavigationDoubleDrawerComponent, AbstractNavigationDrawerComponent, AbstractNavigationRailComponent, AbstractNavigationTreeComponent, AbstractNewCaseComponent, AbstractNumberDecimalFieldComponent, AbstractNumberErrorsComponent, AbstractNumberFieldComponent, AbstractOptionSelectorComponent, AbstractPanelComponent, AbstractPanelItemComponent, AbstractPasswordTextFieldComponent, AbstractProfileComponent, AbstractQuickPanelComponent, AbstractRegistrationComponent, AbstractRegistrationFormComponent, AbstractRemoveNodeComponent, AbstractResourceProvider, AbstractResourceService, AbstractRichTextareaFieldComponent, AbstractRoleAssignmentComponent, AbstractSaveFilterComponent, AbstractSearchClauseComponent, AbstractSearchComponent, AbstractSearchConfigurationInputComponent, AbstractSearchModeComponent, AbstractSearchOperandInputComponent, AbstractSearchPredicateComponent, AbstractSessionIdleComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSingleTaskComponent, AbstractSingleTaskViewComponent, AbstractSortModeComponent, AbstractSortableViewComponent, AbstractStringCollectionDefaultFieldComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTabbedCaseViewComponent, AbstractTabbedTaskViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskListPaginationComponent, AbstractTaskPanelComponent, AbstractTaskRefDashboardFieldComponent, AbstractTaskRefDashboardTileComponent, AbstractTaskRefFieldComponent, AbstractTaskRefListFieldComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserDefaultFieldComponent, AbstractUserFieldComponent, AbstractUserImpersonateComponent, AbstractUserInviteComponent, AbstractUserListDefaultFieldComponent, AbstractUserListFieldComponent, AbstractViewWithHeadersComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, AccessService, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AlertDialogModule, AllowedNetsService, AllowedNetsServiceFactory, AnonymousAuthenticationInterceptor, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationInterceptor, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BaseFilterFactoryProvider, BasicAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, CASE_ID, CONFIRM_PASSWORD, CallChainService, CancelTaskService, CaseAuthor, CaseCreationDate, CaseCreationDateTime, CaseDataset, CaseHeaderService, CaseListFontColorService, CaseMetaField, CaseNetAttributeAutocompleteCategory, CaseProcess, CaseRefField, CaseResourceService, CaseResourceServiceProvider, CaseRole, CaseSearch, CaseSimpleDataset, CaseStringId, CaseTask, CaseTitle, CaseTreeNode, CaseTreeService, CaseViewService, CaseVisualId, Categories, Category, CategoryFactory, CategoryResolverService, ChangedFieldsService, ClausePredicate, ComponentPrefixes, ComponentRegistryService, ConfigParams, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConfirmDialogModule, ConsoleLogPublisher, ContainsPipe, CovalentModule, CurrencyModule, CustomDateAdapter, DATA_FIELD_PORTAL_DATA, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DEFAULT, DEFAULT_LANGUAGE_CODE, Dashboard, 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, FieldAlignment, FieldConverterService, FieldTypeResource, FileField, FileListField, FileListFieldValidation, FilePreviewType, FileUploadMIMEType, FileUploadModel, Filter, FilterExtractionService, FilterField, FilterRepository, FilterType, FilteredArray, FinishPolicy, FinishPolicyService, FinishTaskService, FrontActionModule, FrontActionRegistryService, FrontActionService, GenericSnackBarComponent, GroupGuardService, GroupNavigationComponentResolverService, GroupNavigationConstants, HeaderColumn, HeaderColumnType, HeaderMode, HeaderSearchService, HeaderType, HttpLoaderFactory, I18nField, I18nFieldValidation, IconType, ImpersonationService, ImpersonationUserListService, ImpersonationUserResourceService, ImpersonationUserSelectService, InRange, InRangeDate, IncrementingCounter, IsEmptyPipe, IsNonEmptyPipe, IsNull, LEFT_DRAWER_DEFAULT_WIDTH, LanguageIconsService, LanguageService, LdapGroupListService, LdapGroupResourceService, LessThan, LessThanDate, LessThanDateTime, LetContext, LetDirective, Like, LoadingEmitter, LoadingWithFilterEmitter, LocalStorageLogPublisher, LogEntry, LogLevel, LogPublisher, LogPublisherService, LoggerService, MENU_IDENTIFIERS, MaterialAppearance, MaterialModule, MenuOrder, MergeOperator, MergedFilter, MockAuthenticationMethodService, MockAuthenticationService, MockEndpoint, MockProfileService, MockSignUpService, MockUserPreferenceService, MockUserResourceService, MockUserService, MoreThan, MoreThanDate, MoreThanDateTime, MultichoiceAutocompleteFilterProperty, MultichoiceField, NAE_ADMIN_IMPERSONATE_COMPONENT, NAE_ADMIN_IMPERSONATE_DIALOG_COMPONENT, NAE_ASYNC_RENDERING_CONFIGURATION, NAE_AUTOSWITCH_TAB_TOKEN, NAE_BASE_FILTER, NAE_CASE_REF_CREATE_CASE, NAE_CASE_REF_DATAFIELD, NAE_CASE_REF_SEARCH, NAE_DEFAULT_CASE_SEARCH_CATEGORIES, NAE_DEFAULT_HEADERS, NAE_DEFAULT_LANGUAGE, NAE_DEFAULT_MIN_PASSWORD_LENGTH, NAE_DEFAULT_TASK_SEARCH_CATEGORIES, NAE_FILTERS_FILTER, NAE_FILTER_FIELD, NAE_FILTER_TEXT, NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT, NAE_IMPORT_NET_COMPONENT, NAE_IMPORT_NET_DIALOG_COMPONENT, NAE_INFORM_ABOUT_INVALID_DATA, NAE_LOAD_FILTER_COMPONENT, NAE_LOAD_FILTER_DIALOG_COMPONENT, NAE_MIN_PASSWORD_LENGTH, NAE_MULTI_USER_ASSIGN_COMPONENT, NAE_MULTI_USER_ASSIGN_DIALOG_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_NEW_CASE_DIALOG_COMPONENT, NAE_OPEN_EXISTING_TAB, NAE_OPTION_SELECTOR_COMPONENT, NAE_OPTION_SELECTOR_DIALOG_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_ROUTING_CONFIGURATION_PATH, NAE_SAVE_FILTER_COMPONENT, NAE_SAVE_FILTER_DIALOG_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_FORCE_OPEN, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_COMPONENT, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_URI_NODE_CASES_PAGE_SIZE, NAE_USER_ASSIGN_COMPONENT, NAE_USER_ASSIGN_DIALOG_COMPONENT, NAE_USER_IMPERSONATE_COMPONENT, NAE_USER_IMPERSONATE_DIALOG_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NetgrifPaginatorIntl, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, OLD_PASSWORD, OpenedTab, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PASSWORD, PETRI_NET_ID, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PermissionType, PetriNetResourceService, PetriNetResourceServiceProvider, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProcessServiceProvider, ProfileModule, ProfileService, ProgressType, PromptDialogComponent, PromptDialogModule, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskLoadingService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RIGHT_DRAWER_DEFAULT_MIN_WIDTH, RIGHT_DRAWER_DEFAULT_WIDTH, RIGHT_DRAWER_MAX_WIDTH, RIGHT_SIDE_INIT_PAGE_SIZE, RIGHT_SIDE_NEW_PAGE_SIZE, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentLdapGroupService, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SETTINGS_TRANSITION_ID, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionIdleTimerService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBarComponent, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SpinnerOverlayService, StringCollectionField, Subgrid, SubjectTaskOperations, Substring, SuccessSnackBarComponent, TRANSITION_ID, TabLabelStream, TabView, TabbedVirtualScrollComponent, TaskAssignee, TaskConst, TaskContentService, TaskDataService, TaskElementType, TaskEndpoint, TaskEvent, TaskEventService, TaskHandlingService, TaskHeaderService, TaskMetaField, TaskNetAttributeAutocompleteCategory, TaskProcess, TaskRefComponents, TaskRefDashboardConstants, TaskRefDashboardTileConstants, TaskRefField, TaskRequestStateService, TaskResourceService, TaskResourceServiceProvider, TaskRole, TaskTask, TaskViewService, TemplateAppearance, TestCaseBaseFilterProvider, TestCaseViewAllowedNetsFactory, TestConfigurationService, TestMockDependenciesModule, TestNoAllowedNetsFactory, TestTaskBaseFilterProvider, TestTaskViewAllowedNetsFactory, TestViewService, TextAreaField, TextAreaHeight, TextField, TextFieldComponent, TextFieldValidation, TextFieldView, TranslateLibModule, TreeCaseViewService, TreePetriflowIdentifiers, TreeTaskContentService, UnlimitedTaskContentService, UriContentType, UriResourceService, UriService, User, UserAutocomplete, UserComparatorService, UserField, UserFilterConstants, UserFiltersService, UserImpersonationConstants, UserInviteService, UserListField, UserListService, UserListValue, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, UtilityModule, 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, decodeBase64, defaultCaseSearchCategoriesFactory, defaultTaskSearchCategoriesFactory, destroySubscription, encodeBase64, extractFieldValueFromData, extractFilterFieldFromData, extractFilterFromData, extractFilterFromFilterField, extractIconAndTitle, extractRoles, extractSearchTypeFromData, getField, getFieldFromDataGroups, getFieldIndex, getFieldIndexFromDataGroups, getImmediateData, getNetAndCreateCase, groupNavigationViewIdSegmentFactory, hasContent, loadAllPages, mockUserAutocompleteValue, navigationItemCaseViewDefaultHeadersFactory, navigationItemTaskAllowedNetsServiceFactory, navigationItemTaskCategoryFactory, navigationItemTaskFilterFactory, navigationItemTaskViewDefaultHeadersFactory, ofVoid, processMessageResponse, publicBaseFilterFactory, publicFactoryResolver, redirectAction, refreshTree, reloadTaskAction, tabbedAllowedNetsServiceFactory, tabbedTaskViewConfigurationFactory, toMoment, validateTaskAction };
|
|
38191
|
+
export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBaseDataFieldComponent, AbstractBooleanDefaultFieldComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonDefaultFieldComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseRefDefaultComponent, AbstractCaseViewComponent, AbstractChangePasswordComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardBarChartTextFieldComponent, AbstractDashboardContentComponent, AbstractDashboardIframeTextFieldComponent, AbstractDashboardLineChartTextFieldComponent, AbstractDashboardPieChartTextFieldComponent, AbstractDashboardPortalTextFieldComponent, AbstractDashboardTextFieldComponent, AbstractDataFieldTemplateComponent, AbstractDateDefaultFieldComponent, AbstractDateFieldComponent, AbstractDateTimeDefaultFieldComponent, AbstractDateTimeFieldComponent, AbstractDefaultNumberFieldComponent, AbstractEditModeComponent, AbstractEmailSubmissionFormComponent, AbstractEnumerationAutocompleteDynamicFieldComponent, AbstractEnumerationAutocompleteSelectFieldComponent, AbstractEnumerationCaseRefComponent, AbstractEnumerationFieldComponent, AbstractEnumerationIconFieldComponent, AbstractEnumerationListFieldComponent, AbstractEnumerationSelectFieldComponent, AbstractEnumerationStepperFieldComponent, AbstractFieldComponentResolverComponent, AbstractFileDefaultFieldComponent, AbstractFileFieldComponent, AbstractFileListDefaultFieldComponent, AbstractFileListFieldComponent, AbstractFilterDefaultFieldComponent, AbstractFilterFieldComponent, AbstractFilterFieldContentComponent, AbstractFilterFieldTabViewComponent, AbstractFilterFieldTabViewContentComponent, 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, AbstractMultiUserAssignComponent, AbstractMultiUserAssignItemComponent, AbstractMultiUserAssignListComponent, AbstractMultichoiceAutocompleteFieldComponentComponent, AbstractMultichoiceCaseRefComponent, AbstractMultichoiceFieldComponent, AbstractMultichoiceListFieldComponent, AbstractMultichoiceSelectFieldComponent, AbstractNavigationDoubleDrawerComponent, AbstractNavigationDrawerComponent, AbstractNavigationRailComponent, AbstractNavigationTreeComponent, AbstractNewCaseComponent, AbstractNumberDecimalFieldComponent, AbstractNumberErrorsComponent, AbstractNumberFieldComponent, AbstractOptionSelectorComponent, AbstractPanelComponent, AbstractPanelItemComponent, AbstractPasswordTextFieldComponent, AbstractProfileComponent, AbstractQuickPanelComponent, AbstractRegistrationComponent, AbstractRegistrationFormComponent, AbstractRemoveNodeComponent, AbstractResourceProvider, AbstractResourceService, AbstractRichTextareaFieldComponent, AbstractRoleAssignmentComponent, AbstractSaveFilterComponent, AbstractSearchClauseComponent, AbstractSearchComponent, AbstractSearchConfigurationInputComponent, AbstractSearchModeComponent, AbstractSearchOperandInputComponent, AbstractSearchPredicateComponent, AbstractSessionIdleComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSingleTaskComponent, AbstractSingleTaskViewComponent, AbstractSortModeComponent, AbstractSortableViewComponent, AbstractStringCollectionDefaultFieldComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTabbedCaseViewComponent, AbstractTabbedTaskViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskListPaginationComponent, AbstractTaskPanelComponent, AbstractTaskRefDashboardFieldComponent, AbstractTaskRefDashboardTileComponent, AbstractTaskRefFieldComponent, AbstractTaskRefListFieldComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserDefaultFieldComponent, AbstractUserFieldComponent, AbstractUserImpersonateComponent, AbstractUserInviteComponent, AbstractUserListDefaultFieldComponent, AbstractUserListFieldComponent, AbstractViewWithHeadersComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, AccessService, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AlertDialogModule, AllowedNetsService, AllowedNetsServiceFactory, AnonymousAuthenticationInterceptor, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationInterceptor, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BaseFilterFactoryProvider, BasicAuthenticationService, BasicWithRealmAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, CASE_ID, CONFIRM_PASSWORD, CallChainService, CancelTaskService, CaseAuthor, CaseCreationDate, CaseCreationDateTime, CaseDataset, CaseHeaderService, CaseListFontColorService, CaseMetaField, CaseNetAttributeAutocompleteCategory, CaseProcess, CaseRefField, CaseResourceService, CaseResourceServiceProvider, CaseRole, CaseSearch, CaseSimpleDataset, CaseStringId, CaseTask, CaseTitle, CaseTreeNode, CaseTreeService, CaseViewService, CaseVisualId, Categories, Category, CategoryFactory, CategoryResolverService, ChangedFieldsService, ClausePredicate, ComponentPrefixes, ComponentRegistryService, ConfigParams, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConfirmDialogModule, ConsoleLogPublisher, ContainsPipe, CovalentModule, CurrencyModule, CustomDateAdapter, DATA_FIELD_PORTAL_DATA, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DEFAULT, DEFAULT_LANGUAGE_CODE, Dashboard, 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, FieldAlignment, FieldConverterService, FieldTypeResource, FileField, FileListField, FileListFieldValidation, FilePreviewType, FileUploadMIMEType, FileUploadModel, Filter, FilterExtractionService, FilterField, FilterRepository, FilterType, FilteredArray, FinishPolicy, FinishPolicyService, FinishTaskService, FrontActionModule, FrontActionRegistryService, FrontActionService, GenericSnackBarComponent, GroupGuardService, GroupNavigationComponentResolverService, GroupNavigationConstants, HeaderColumn, HeaderColumnType, HeaderMode, HeaderSearchService, HeaderType, HttpLoaderFactory, I18nField, I18nFieldValidation, IconType, ImpersonationService, ImpersonationUserListService, ImpersonationUserResourceService, ImpersonationUserSelectService, InRange, InRangeDate, IncrementingCounter, IsEmptyPipe, IsNonEmptyPipe, IsNull, LEFT_DRAWER_DEFAULT_WIDTH, LanguageIconsService, LanguageService, LdapGroupListService, LdapGroupResourceService, LessThan, LessThanDate, LessThanDateTime, LetContext, LetDirective, Like, LoadingEmitter, LoadingWithFilterEmitter, LocalStorageLogPublisher, LogEntry, LogLevel, LogPublisher, LogPublisherService, LoggerService, MENU_IDENTIFIERS, MaterialAppearance, MaterialModule, MenuOrder, MergeOperator, MergedFilter, MockAuthenticationMethodService, MockAuthenticationService, MockEndpoint, MockProfileService, MockSignUpService, MockUserPreferenceService, MockUserResourceService, MockUserService, MoreThan, MoreThanDate, MoreThanDateTime, MultichoiceAutocompleteFilterProperty, MultichoiceField, NAE_ADMIN_IMPERSONATE_COMPONENT, NAE_ADMIN_IMPERSONATE_DIALOG_COMPONENT, NAE_ASYNC_RENDERING_CONFIGURATION, NAE_AUTOSWITCH_TAB_TOKEN, NAE_BASE_FILTER, NAE_CASE_REF_CREATE_CASE, NAE_CASE_REF_DATAFIELD, NAE_CASE_REF_SEARCH, NAE_DEFAULT_CASE_SEARCH_CATEGORIES, NAE_DEFAULT_HEADERS, NAE_DEFAULT_LANGUAGE, NAE_DEFAULT_MIN_PASSWORD_LENGTH, NAE_DEFAULT_TASK_SEARCH_CATEGORIES, NAE_FILTERS_FILTER, NAE_FILTER_FIELD, NAE_FILTER_TEXT, NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT, NAE_IMPORT_NET_COMPONENT, NAE_IMPORT_NET_DIALOG_COMPONENT, NAE_INFORM_ABOUT_INVALID_DATA, NAE_LOAD_FILTER_COMPONENT, NAE_LOAD_FILTER_DIALOG_COMPONENT, NAE_MIN_PASSWORD_LENGTH, NAE_MULTI_USER_ASSIGN_COMPONENT, NAE_MULTI_USER_ASSIGN_DIALOG_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_NEW_CASE_DIALOG_COMPONENT, NAE_OPEN_EXISTING_TAB, NAE_OPTION_SELECTOR_COMPONENT, NAE_OPTION_SELECTOR_DIALOG_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_ROUTING_CONFIGURATION_PATH, NAE_SAVE_FILTER_COMPONENT, NAE_SAVE_FILTER_DIALOG_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_FORCE_OPEN, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_COMPONENT, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_URI_NODE_CASES_PAGE_SIZE, NAE_USER_ASSIGN_COMPONENT, NAE_USER_ASSIGN_DIALOG_COMPONENT, NAE_USER_IMPERSONATE_COMPONENT, NAE_USER_IMPERSONATE_DIALOG_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NetgrifPaginatorIntl, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, OLD_PASSWORD, OpenedTab, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PASSWORD, PETRI_NET_ID, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PermissionType, PetriNetResourceService, PetriNetResourceServiceProvider, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProcessServiceProvider, ProfileModule, ProfileService, ProgressType, PromptDialogComponent, PromptDialogModule, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskLoadingService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RIGHT_DRAWER_DEFAULT_MIN_WIDTH, RIGHT_DRAWER_DEFAULT_WIDTH, RIGHT_DRAWER_MAX_WIDTH, RIGHT_SIDE_INIT_PAGE_SIZE, RIGHT_SIDE_NEW_PAGE_SIZE, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentLdapGroupService, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SETTINGS_TRANSITION_ID, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionIdleTimerService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBarComponent, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SpinnerOverlayService, StringCollectionField, Subgrid, SubjectTaskOperations, Substring, SuccessSnackBarComponent, TRANSITION_ID, TabLabelStream, TabView, TabbedVirtualScrollComponent, TaskAssignee, TaskConst, TaskContentService, TaskDataService, TaskElementType, TaskEndpoint, TaskEvent, TaskEventService, TaskHandlingService, TaskHeaderService, TaskMetaField, TaskNetAttributeAutocompleteCategory, TaskProcess, TaskRefComponents, TaskRefDashboardConstants, TaskRefDashboardTileConstants, TaskRefField, TaskRequestStateService, TaskResourceService, TaskResourceServiceProvider, TaskRole, TaskTask, TaskViewService, TemplateAppearance, TestCaseBaseFilterProvider, TestCaseViewAllowedNetsFactory, TestConfigurationService, TestMockDependenciesModule, TestNoAllowedNetsFactory, TestTaskBaseFilterProvider, TestTaskViewAllowedNetsFactory, TestViewService, TextAreaField, TextAreaHeight, TextField, TextFieldComponent, TextFieldValidation, TextFieldView, TranslateLibModule, TreeCaseViewService, TreePetriflowIdentifiers, TreeTaskContentService, UnlimitedTaskContentService, UriContentType, UriResourceService, UriService, User, UserAutocomplete, UserComparatorService, UserField, UserFilterConstants, UserFiltersService, UserImpersonationConstants, UserInviteService, UserListField, UserListService, UserListValue, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, UtilityModule, 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, decodeBase64, defaultCaseSearchCategoriesFactory, defaultTaskSearchCategoriesFactory, destroySubscription, encodeBase64, extractFieldValueFromData, extractFilterFieldFromData, extractFilterFromData, extractFilterFromFilterField, extractIconAndTitle, extractRoles, extractSearchTypeFromData, getField, getFieldFromDataGroups, getFieldIndex, getFieldIndexFromDataGroups, getImmediateData, getNetAndCreateCase, groupNavigationViewIdSegmentFactory, hasContent, loadAllPages, mockUserAutocompleteValue, navigationItemCaseViewDefaultHeadersFactory, navigationItemTaskAllowedNetsServiceFactory, navigationItemTaskCategoryFactory, navigationItemTaskFilterFactory, navigationItemTaskViewDefaultHeadersFactory, ofVoid, processMessageResponse, publicBaseFilterFactory, publicFactoryResolver, redirectAction, refreshTree, reloadTaskAction, tabbedAllowedNetsServiceFactory, tabbedTaskViewConfigurationFactory, toMoment, validateTaskAction };
|
|
38117
38192
|
//# sourceMappingURL=netgrif-components-core.mjs.map
|