@netgrif/components-core 6.3.0-beta.1 → 6.3.0-beta.3

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.
Files changed (35) hide show
  1. package/esm2020/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/abstract-enumeration-autocomplete-select-field.component.mjs +49 -7
  2. package/esm2020/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/enumeration-autocomplete-filter-property.mjs +6 -0
  3. package/esm2020/lib/data-fields/filter-field/abstract-filter-field-tab-view-content.component.mjs +60 -0
  4. package/esm2020/lib/data-fields/filter-field/abstract-filter-field-tab-view.component.mjs +53 -0
  5. package/esm2020/lib/data-fields/filter-field/abstract-filter-field.component.mjs +4 -1
  6. package/esm2020/lib/data-fields/models/abstract-data-field.mjs +4 -1
  7. package/esm2020/lib/data-fields/multichoice-field/multichoice-autocomplete-field/abstract-multichoice-autocomplete-field-component.component.mjs +28 -1
  8. package/esm2020/lib/data-fields/multichoice-field/multichoice-autocomplete-field/multichoice-autocomplete-filter-property.mjs +6 -0
  9. package/esm2020/lib/data-fields/public-api.mjs +6 -1
  10. package/esm2020/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-portal-component-registry.service.mjs +11 -1
  11. package/esm2020/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-view-constants.mjs +10 -0
  12. package/esm2020/lib/public/factories/get-net-and-create-case.mjs +2 -2
  13. package/esm2020/lib/resources/engine-endpoint/public/public-petri-net-resource.service.mjs +2 -2
  14. package/esm2020/lib/resources/engine-endpoint/public/public-task-resource.service.mjs +3 -3
  15. package/esm2020/lib/utility/public-api.mjs +2 -1
  16. package/esm2020/lib/utility/tests/mocks/mock-user.service.mjs +38 -0
  17. package/fesm2015/netgrif-components-core.mjs +309 -68
  18. package/fesm2015/netgrif-components-core.mjs.map +1 -1
  19. package/fesm2020/netgrif-components-core.mjs +301 -66
  20. package/fesm2020/netgrif-components-core.mjs.map +1 -1
  21. package/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/abstract-enumeration-autocomplete-select-field.component.d.ts +13 -5
  22. package/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/enumeration-autocomplete-filter-property.d.ts +4 -0
  23. package/lib/data-fields/filter-field/abstract-filter-field-tab-view-content.component.d.ts +17 -0
  24. package/lib/data-fields/filter-field/abstract-filter-field-tab-view.component.d.ts +17 -0
  25. package/lib/data-fields/filter-field/abstract-filter-field.component.d.ts +1 -0
  26. package/lib/data-fields/models/abstract-data-field.d.ts +1 -0
  27. package/lib/data-fields/multichoice-field/multichoice-autocomplete-field/abstract-multichoice-autocomplete-field-component.component.d.ts +5 -1
  28. package/lib/data-fields/multichoice-field/multichoice-autocomplete-field/multichoice-autocomplete-filter-property.d.ts +4 -0
  29. package/lib/data-fields/public-api.d.ts +5 -0
  30. package/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-portal-component-registry.service.d.ts +4 -1
  31. package/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-view-constants.d.ts +8 -0
  32. package/lib/resources/engine-endpoint/public/public-task-resource.service.d.ts +2 -1
  33. package/lib/utility/public-api.d.ts +1 -0
  34. package/lib/utility/tests/mocks/mock-user.service.d.ts +16 -0
  35. package/package.json +1 -1
@@ -3842,6 +3842,9 @@ class DataField {
3842
3842
  set touch(set) {
3843
3843
  this._touch.next(set);
3844
3844
  }
3845
+ get touch$() {
3846
+ return this._touch.asObservable();
3847
+ }
3845
3848
  get component() {
3846
3849
  return this._component;
3847
3850
  }
@@ -4979,6 +4982,12 @@ class EnumerationField extends DataField {
4979
4982
  }
4980
4983
  }
4981
4984
 
4985
+ var EnumerationAutocompleteFilterProperty;
4986
+ (function (EnumerationAutocompleteFilterProperty) {
4987
+ EnumerationAutocompleteFilterProperty["PREFIX"] = "prefix";
4988
+ EnumerationAutocompleteFilterProperty["SUBSTRING"] = "substring";
4989
+ })(EnumerationAutocompleteFilterProperty || (EnumerationAutocompleteFilterProperty = {}));
4990
+
4982
4991
  class AbstractEnumerationAutocompleteSelectFieldComponent {
4983
4992
  constructor(_translate) {
4984
4993
  this._translate = _translate;
@@ -4992,26 +5001,67 @@ class AbstractEnumerationAutocompleteSelectFieldComponent {
4992
5001
  };
4993
5002
  }
4994
5003
  ngOnInit() {
5004
+ this.tmpValue = this.formControlRef.value ?? '';
4995
5005
  this.filteredOptions = this.formControlRef.valueChanges.pipe(startWith(''), map(value => this._filter(value)));
5006
+ this.enumerationField.touch$.subscribe(touch => {
5007
+ if (touch) {
5008
+ this.text.control.markAsTouched();
5009
+ }
5010
+ });
5011
+ this.formControlRef.valueChanges.subscribe(it => {
5012
+ this.tmpValue = it ?? '';
5013
+ });
4996
5014
  }
4997
5015
  ngOnDestroy() {
4998
5016
  this.filteredOptions = undefined;
4999
5017
  }
5018
+ change() {
5019
+ if (this.text.value !== undefined) {
5020
+ this.filteredOptions = of(this._filter(this.text.value));
5021
+ }
5022
+ }
5023
+ select(event) {
5024
+ this.formControlRef.setValue(event.option.value);
5025
+ }
5026
+ isInvalid() {
5027
+ return !this.formControlRef.disabled && !this.formControlRef.valid && this.text.control.touched;
5028
+ }
5029
+ checkPropertyInComponent(property) {
5030
+ return !!this.enumerationField.component && !!this.enumerationField.component.properties && property in this.enumerationField.component.properties;
5031
+ }
5032
+ filterType() {
5033
+ if (this.checkPropertyInComponent('filter')) {
5034
+ return this.enumerationField.component.properties.filter;
5035
+ }
5036
+ }
5037
+ _filter(value) {
5038
+ let filterType = this.filterType()?.toLowerCase();
5039
+ switch (filterType) {
5040
+ case EnumerationAutocompleteFilterProperty.SUBSTRING:
5041
+ return this._filterInclude(value);
5042
+ case EnumerationAutocompleteFilterProperty.PREFIX:
5043
+ return this._filterIndexOf(value);
5044
+ default:
5045
+ return this._filterIndexOf(value);
5046
+ }
5047
+ }
5048
+ _filterInclude(value) {
5049
+ const filterValue = value?.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
5050
+ return this.enumerationField.choices.filter(option => option.value.toLowerCase()
5051
+ .normalize('NFD')
5052
+ .replace(/[\u0300-\u036f]/g, '')
5053
+ .includes(filterValue));
5054
+ }
5000
5055
  /**
5001
5056
  * Function to filter out matchless options without accent and case-sensitive differences
5002
5057
  * @param value to compare matching options
5003
5058
  * @return return matched options
5004
5059
  */
5005
- _filter(value) {
5060
+ _filterIndexOf(value) {
5006
5061
  const filterValue = value?.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
5007
5062
  return this.enumerationField.choices.filter(option => option.value.toLowerCase().normalize('NFD')
5008
5063
  .replace(/[\u0300-\u036f]/g, '').indexOf(filterValue) === 0);
5009
5064
  }
5010
- change() {
5011
- if (this.text.nativeElement.value !== undefined) {
5012
- this.filteredOptions = of(this._filter(this.text.nativeElement.value));
5013
- }
5014
- }
5015
5065
  buildErrorMessage() {
5016
5066
  if (this.formControlRef.hasError(EnumerationFieldValidation.REQUIRED)) {
5017
5067
  return this._translate.instant('dataField.validations.required');
@@ -7231,6 +7281,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
7231
7281
  type: Input
7232
7282
  }] } });
7233
7283
 
7284
+ var MultichoiceAutocompleteFilterProperty;
7285
+ (function (MultichoiceAutocompleteFilterProperty) {
7286
+ MultichoiceAutocompleteFilterProperty["PREFIX"] = "prefix";
7287
+ MultichoiceAutocompleteFilterProperty["SUBSTRING"] = "substring";
7288
+ })(MultichoiceAutocompleteFilterProperty || (MultichoiceAutocompleteFilterProperty = {}));
7289
+
7234
7290
  class AbstractMultichoiceAutocompleteFieldComponentComponent {
7235
7291
  constructor() {
7236
7292
  this.separatorKeysCodes = [ENTER, COMMA];
@@ -7277,7 +7333,33 @@ class AbstractMultichoiceAutocompleteFieldComponentComponent {
7277
7333
  this.filteredOptions = of(this._filter(this.input.nativeElement.value).filter((option) => !this.multichoiceField.value.includes(option.key)));
7278
7334
  }
7279
7335
  }
7336
+ checkPropertyInComponent(property) {
7337
+ return !!this.multichoiceField.component && !!this.multichoiceField.component.properties && property in this.multichoiceField.component.properties;
7338
+ }
7339
+ filterType() {
7340
+ if (this.checkPropertyInComponent('filter')) {
7341
+ return this.multichoiceField.component.properties.filter;
7342
+ }
7343
+ }
7280
7344
  _filter(value) {
7345
+ let filterType = this.filterType()?.toLowerCase();
7346
+ switch (filterType) {
7347
+ case MultichoiceAutocompleteFilterProperty.SUBSTRING:
7348
+ return this._filterInclude(value);
7349
+ case MultichoiceAutocompleteFilterProperty.PREFIX:
7350
+ return this._filterIndexOf(value);
7351
+ default:
7352
+ return this._filterIndexOf(value);
7353
+ }
7354
+ }
7355
+ _filterInclude(value) {
7356
+ if (Array.isArray(value)) {
7357
+ value = '';
7358
+ }
7359
+ const filterValue = value?.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '');
7360
+ return this.multichoiceField.choices.filter(option => option.value.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, '').includes(filterValue));
7361
+ }
7362
+ _filterIndexOf(value) {
7281
7363
  if (Array.isArray(value)) {
7282
7364
  value = '';
7283
7365
  }
@@ -8239,6 +8321,9 @@ class AbstractFilterFieldComponent extends AbstractDataFieldComponent {
8239
8321
  this.portal = new ComponentPortal(this.getFilterContentComponent(), null, injector);
8240
8322
  this.initialized = true;
8241
8323
  }
8324
+ get editable() {
8325
+ return !!this.dataField.behavior.editable;
8326
+ }
8242
8327
  }
8243
8328
  AbstractFilterFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldComponent, deps: [{ token: i0.Injector }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
8244
8329
  AbstractFilterFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AbstractFilterFieldComponent, selector: "ncc-abstract-filter-field", inputs: { dataField: "dataField" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
@@ -13216,6 +13301,176 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
13216
13301
  args: [NAE_FILTER_FIELD]
13217
13302
  }] }, { type: SearchService }]; } });
13218
13303
 
13304
+ var Dashboard;
13305
+ (function (Dashboard) {
13306
+ Dashboard["FILTER_TAB_VIEW_ID"] = "filter-tab-view";
13307
+ Dashboard["FILTER_CASE_VIEW_ID"] = "filter-case-view";
13308
+ Dashboard["FILTER_TASK_VIEW_ID"] = "filter-task-view";
13309
+ Dashboard["FILTER_TAB_VIEW_TITLE_KEY"] = "tabTitle";
13310
+ Dashboard["FILTER_TAB_VIEW_ICON_KEY"] = "tabIcon";
13311
+ Dashboard["FILTER_TAB_VIEW_COMPONENT_ID"] = "filter-tab-view";
13312
+ })(Dashboard || (Dashboard = {}));
13313
+
13314
+ class DashboardPortalComponentRegistryService {
13315
+ constructor() {
13316
+ this.registry = new Map();
13317
+ this.typeRegistry = new Map();
13318
+ }
13319
+ register(component, factory) {
13320
+ this.registry.set(component, factory);
13321
+ }
13322
+ registerType(key, type) {
13323
+ this.typeRegistry.set(key, type);
13324
+ }
13325
+ get(component, injector) {
13326
+ if (!this.registry.has(component)) {
13327
+ return undefined;
13328
+ }
13329
+ return this.registry.get(component)(injector);
13330
+ }
13331
+ getType(key) {
13332
+ if (!this.typeRegistry.has(key)) {
13333
+ return undefined;
13334
+ }
13335
+ return this.typeRegistry.get(key);
13336
+ }
13337
+ }
13338
+ DashboardPortalComponentRegistryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
13339
+ DashboardPortalComponentRegistryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, providedIn: 'root' });
13340
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, decorators: [{
13341
+ type: Injectable,
13342
+ args: [{
13343
+ providedIn: 'root'
13344
+ }]
13345
+ }], ctorParameters: function () { return []; } });
13346
+
13347
+ class AbstractFilterFieldTabViewComponent {
13348
+ constructor(_registry, _filterField, _tabContentComponent, _tabViewComponent) {
13349
+ this._registry = _registry;
13350
+ this._filterField = _filterField;
13351
+ this._tabContentComponent = _tabContentComponent;
13352
+ this._tabViewComponent = _tabViewComponent;
13353
+ this.tabs = [
13354
+ {
13355
+ label: {
13356
+ text: this._filterField.filterMetadata[Dashboard.FILTER_TAB_VIEW_TITLE_KEY] ?? this._filterField.title,
13357
+ icon: this._filterField.filterMetadata[Dashboard.FILTER_TAB_VIEW_ICON_KEY] ?? 'home'
13358
+ },
13359
+ canBeClosed: false,
13360
+ tabContentComponent: this.tabContentComponent(),
13361
+ injectedObject: {
13362
+ tabViewComponent: this.tabViewComponent(),
13363
+ tabViewOrder: 0,
13364
+ }
13365
+ }
13366
+ ];
13367
+ }
13368
+ tabContentComponent() {
13369
+ let tabContentComponent = this._tabContentComponent;
13370
+ if (!!this._registry.getType(Dashboard.FILTER_CASE_VIEW_ID)) {
13371
+ tabContentComponent = this._registry.getType(Dashboard.FILTER_CASE_VIEW_ID);
13372
+ }
13373
+ return tabContentComponent;
13374
+ }
13375
+ ;
13376
+ tabViewComponent() {
13377
+ let tabViewComponent = this._tabViewComponent;
13378
+ if (!!this._registry.getType(Dashboard.FILTER_TASK_VIEW_ID)) {
13379
+ tabViewComponent = this._registry.getType(Dashboard.FILTER_TASK_VIEW_ID);
13380
+ }
13381
+ return tabViewComponent;
13382
+ }
13383
+ ;
13384
+ }
13385
+ AbstractFilterFieldTabViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldTabViewComponent, deps: [{ token: DashboardPortalComponentRegistryService }, { token: FilterField }, { token: i0.Type }, { token: i0.Type }], target: i0.ɵɵFactoryTarget.Component });
13386
+ AbstractFilterFieldTabViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AbstractFilterFieldTabViewComponent, selector: "ncc-abstract-filter-field-tab-view", ngImport: i0, template: '', isInline: true });
13387
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldTabViewComponent, decorators: [{
13388
+ type: Component,
13389
+ args: [{
13390
+ selector: 'ncc-abstract-filter-field-tab-view',
13391
+ template: ''
13392
+ }]
13393
+ }], ctorParameters: function () { return [{ type: DashboardPortalComponentRegistryService }, { type: FilterField }, { type: i0.Type }, { type: i0.Type }]; } });
13394
+
13395
+ const NAE_VIEW_ID = new InjectionToken('NaeViewId');
13396
+ const NAE_VIEW_ID_SEGMENT = new InjectionToken('NaeViewIdSegment');
13397
+
13398
+ class ViewIdService {
13399
+ constructor(parentInjector, idSegment) {
13400
+ this._viewId = '';
13401
+ if (parentInjector !== null) {
13402
+ const parentIdService = parentInjector.get(ViewIdService, null);
13403
+ if (parentIdService !== null) {
13404
+ this._viewId = parentIdService.viewId + ViewIdService.VIEW_ID_SEGMENT_SEPARATOR;
13405
+ }
13406
+ }
13407
+ this._viewId += idSegment;
13408
+ }
13409
+ get viewId() {
13410
+ return this._viewId;
13411
+ }
13412
+ }
13413
+ ViewIdService.VIEW_ID_SEGMENT_SEPARATOR = '-';
13414
+ ViewIdService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService, deps: [{ token: i0.Injector, optional: true, skipSelf: true }, { token: NAE_VIEW_ID_SEGMENT }], target: i0.ɵɵFactoryTarget.Injectable });
13415
+ ViewIdService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService });
13416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService, decorators: [{
13417
+ type: Injectable
13418
+ }], ctorParameters: function () { return [{ type: i0.Injector, decorators: [{
13419
+ type: Optional
13420
+ }, {
13421
+ type: SkipSelf
13422
+ }] }, { type: undefined, decorators: [{
13423
+ type: Inject,
13424
+ args: [NAE_VIEW_ID_SEGMENT]
13425
+ }] }]; } });
13426
+
13427
+ class AbstractFilterFieldTabViewContentComponent extends AbstractFilterFieldContentComponent {
13428
+ constructor(registry, injector, filterField, searchService) {
13429
+ super(filterField, searchService);
13430
+ this.registry = registry;
13431
+ this.injector = injector;
13432
+ }
13433
+ ngAfterViewInit() {
13434
+ this.createFilter();
13435
+ this._filterField.valueChanges().subscribe(() => {
13436
+ this.createFilter();
13437
+ });
13438
+ }
13439
+ createFilter() {
13440
+ const portalInjector = Injector.create({
13441
+ providers: [
13442
+ {
13443
+ provide: NAE_FILTER_FIELD,
13444
+ useValue: this._filterField
13445
+ },
13446
+ {
13447
+ provide: NAE_BASE_FILTER,
13448
+ useValue: { filter: SimpleFilter.fromQuery({ query: this._filterField.value }, FilterType.CASE) }
13449
+ },
13450
+ {
13451
+ provide: NAE_VIEW_ID_SEGMENT,
13452
+ useValue: this._filterField.parentCaseId + '_' + this._filterField.parentTaskId + '_' + this._filterField.stringId
13453
+ },
13454
+ { provide: ViewIdService, useClass: ViewIdService }
13455
+ ],
13456
+ parent: this.injector
13457
+ });
13458
+ this.componentPortal = this.registry.get(Dashboard.FILTER_TAB_VIEW_ID, portalInjector);
13459
+ }
13460
+ }
13461
+ AbstractFilterFieldTabViewContentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldTabViewContentComponent, deps: [{ token: DashboardPortalComponentRegistryService }, { token: i0.Injector }, { token: NAE_FILTER_FIELD }, { token: SearchService }], target: i0.ɵɵFactoryTarget.Component });
13462
+ AbstractFilterFieldTabViewContentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AbstractFilterFieldTabViewContentComponent, selector: "ncc-abstract-filter-field-tab-view-content", usesInheritance: true, ngImport: i0, template: '', isInline: true });
13463
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AbstractFilterFieldTabViewContentComponent, decorators: [{
13464
+ type: Component,
13465
+ args: [{
13466
+ selector: 'ncc-abstract-filter-field-tab-view-content',
13467
+ template: ''
13468
+ }]
13469
+ }], ctorParameters: function () { return [{ type: DashboardPortalComponentRegistryService }, { type: i0.Injector }, { type: FilterField, decorators: [{
13470
+ type: Inject,
13471
+ args: [NAE_FILTER_FIELD]
13472
+ }] }, { type: SearchService }]; } });
13473
+
13219
13474
  class AbstractI18nFieldComponent extends AbstractDataFieldComponent {
13220
13475
  constructor(informAboutInvalidData) {
13221
13476
  super(informAboutInvalidData);
@@ -15457,29 +15712,6 @@ var TaskRefComponents;
15457
15712
  TaskRefComponents["DASHBOARD"] = "dashboard";
15458
15713
  })(TaskRefComponents || (TaskRefComponents = {}));
15459
15714
 
15460
- class DashboardPortalComponentRegistryService {
15461
- constructor() {
15462
- this.registry = new Map();
15463
- }
15464
- register(component, factory) {
15465
- this.registry.set(component, factory);
15466
- }
15467
- get(component, injector) {
15468
- if (!this.registry.has(component)) {
15469
- return undefined;
15470
- }
15471
- return this.registry.get(component)(injector);
15472
- }
15473
- }
15474
- DashboardPortalComponentRegistryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
15475
- DashboardPortalComponentRegistryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, providedIn: 'root' });
15476
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DashboardPortalComponentRegistryService, decorators: [{
15477
- type: Injectable,
15478
- args: [{
15479
- providedIn: 'root'
15480
- }]
15481
- }], ctorParameters: function () { return []; } });
15482
-
15483
15715
  /* CLASSES */
15484
15716
 
15485
15717
  class RedirectService {
@@ -15987,9 +16219,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
15987
16219
 
15988
16220
  /* APIS */
15989
16221
 
15990
- const NAE_VIEW_ID = new InjectionToken('NaeViewId');
15991
- const NAE_VIEW_ID_SEGMENT = new InjectionToken('NaeViewIdSegment');
15992
-
15993
16222
  // USER MODELS
15994
16223
 
15995
16224
  /**
@@ -16159,35 +16388,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
16159
16388
  type: Injectable
16160
16389
  }], ctorParameters: function () { return [{ type: UserResourceService }, { type: LoggerService }, { type: SnackBarService }, { type: i1$2.TranslateService }]; } });
16161
16390
 
16162
- class ViewIdService {
16163
- constructor(parentInjector, idSegment) {
16164
- this._viewId = '';
16165
- if (parentInjector !== null) {
16166
- const parentIdService = parentInjector.get(ViewIdService, null);
16167
- if (parentIdService !== null) {
16168
- this._viewId = parentIdService.viewId + ViewIdService.VIEW_ID_SEGMENT_SEPARATOR;
16169
- }
16170
- }
16171
- this._viewId += idSegment;
16172
- }
16173
- get viewId() {
16174
- return this._viewId;
16175
- }
16176
- }
16177
- ViewIdService.VIEW_ID_SEGMENT_SEPARATOR = '-';
16178
- ViewIdService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService, deps: [{ token: i0.Injector, optional: true, skipSelf: true }, { token: NAE_VIEW_ID_SEGMENT }], target: i0.ɵɵFactoryTarget.Injectable });
16179
- ViewIdService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService });
16180
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ViewIdService, decorators: [{
16181
- type: Injectable
16182
- }], ctorParameters: function () { return [{ type: i0.Injector, decorators: [{
16183
- type: Optional
16184
- }, {
16185
- type: SkipSelf
16186
- }] }, { type: undefined, decorators: [{
16187
- type: Inject,
16188
- args: [NAE_VIEW_ID_SEGMENT]
16189
- }] }]; } });
16190
-
16191
16391
  class AbstractNavigationResizableDrawerComponent {
16192
16392
  constructor() {
16193
16393
  }
@@ -23560,7 +23760,7 @@ class PublicPetriNetResourceService extends PetriNetResourceService {
23560
23760
  * **Request URL:** {{baseUrl}}/api/public/petrinet/{identifier}/{version}
23561
23761
  */
23562
23762
  getOne(identifier, version, params) {
23563
- return this.provider.get$('public/petrinet/' + identifier + '/' + version, this.SERVER_URL, params)
23763
+ return this.provider.get$('public/petrinet/' + btoa(identifier) + '/' + version, this.SERVER_URL, params)
23564
23764
  .pipe(map(r => this.changeType(r, 'petriNetReferences')));
23565
23765
  }
23566
23766
  /**
@@ -23757,9 +23957,9 @@ class PublicTaskResourceService extends TaskResourceService {
23757
23957
  * Delete file from the task
23758
23958
  * DELETE
23759
23959
  */
23760
- deleteFile(taskId, fieldId, name) {
23960
+ deleteFile(taskId, fieldId, name, param) {
23761
23961
  const url = !!name ? `public/task/${taskId}/file/${fieldId}/${name}` : `public/task/${taskId}/file/${fieldId}`;
23762
- return this._resourceProvider.delete$(url, this.SERVER_URL).pipe(map(r => this.changeType(r, undefined)));
23962
+ return this._resourceProvider.delete$(url, this.SERVER_URL, param).pipe(map(r => this.changeType(r, undefined)));
23763
23963
  }
23764
23964
  /**
23765
23965
  * Download task file preview for field value
@@ -30469,6 +30669,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
30469
30669
  type: Injectable
30470
30670
  }] });
30471
30671
 
30672
+ class MockUserService {
30673
+ constructor() {
30674
+ this._userChange$ = new ReplaySubject(1);
30675
+ }
30676
+ get user$() {
30677
+ return this._userChange$.asObservable();
30678
+ }
30679
+ get user() {
30680
+ return this._user;
30681
+ }
30682
+ set user(user) {
30683
+ this._user = user;
30684
+ }
30685
+ hasRoleById(roleStringId) {
30686
+ if (!roleStringId || !this._user.roles) {
30687
+ return false;
30688
+ }
30689
+ return this._user.roles.some(r => r.stringId === roleStringId);
30690
+ }
30691
+ hasRoleByName(roleName, netIdentifier) {
30692
+ if (!roleName || !netIdentifier || !this._user.roles) {
30693
+ return false;
30694
+ }
30695
+ return this._user.roles.some(r => r.stringId === roleName && r.netImportId === netIdentifier);
30696
+ }
30697
+ hasAuthority() {
30698
+ return true;
30699
+ }
30700
+ }
30701
+ MockUserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MockUserService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
30702
+ MockUserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MockUserService });
30703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MockUserService, decorators: [{
30704
+ type: Injectable
30705
+ }], ctorParameters: function () { return []; } });
30706
+
30472
30707
  class MockAuthenticationMethodService extends AuthenticationMethodService {
30473
30708
  login(credentials) {
30474
30709
  return of({ email: 'mail', id: 'id', name: 'name', surname: 'surname', fullName: 'name surname',
@@ -32672,7 +32907,7 @@ const publicFactoryResolver = (userService, sessionService, authService, router,
32672
32907
  };
32673
32908
 
32674
32909
  const getNetAndCreateCase = (router, route, process, caseResourceService, snackBarService, translate, publicTaskLoadingService) => {
32675
- process.getNet(route.snapshot.paramMap.get('petriNetId')).pipe(mergeMap(net => {
32910
+ process.getNet(atob(route.snapshot.paramMap.get('petriNetId'))).pipe(mergeMap(net => {
32676
32911
  if (net) {
32677
32912
  publicTaskLoadingService.setLoading$(true);
32678
32913
  const newCase = {
@@ -32952,5 +33187,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
32952
33187
  * Generated bundle index. Do not edit.
32953
33188
  */
32954
33189
 
32955
- export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseViewComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardBarChartTextFieldComponent, AbstractDashboardContentComponent, AbstractDashboardIframeTextFieldComponent, AbstractDashboardLineChartTextFieldComponent, AbstractDashboardPieChartTextFieldComponent, AbstractDashboardPortalTextFieldComponent, AbstractDashboardTextFieldComponent, 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, AbstractTaskRefDashboardTileComponent, AbstractTaskRefFieldComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserFieldComponent, AbstractUserImpersonateComponent, AbstractUserInviteComponent, 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, 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, DashboardPortalComponentRegistryService, 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, ImpersonationService, ImpersonationUserListService, ImpersonationUserResourceService, ImpersonationUserSelectService, 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_ADMIN_IMPERSONATE_COMPONENT, 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_FORCE_OPEN, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_USER_ASSIGN_COMPONENT, NAE_USER_IMPERSONATE_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, TaskRefComponents, TaskRefDashboardConstants, TaskRefDashboardTileConstants, TaskRefField, TaskRequestStateService, TaskResourceService, 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, 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 };
33190
+ export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseViewComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardBarChartTextFieldComponent, AbstractDashboardContentComponent, AbstractDashboardIframeTextFieldComponent, AbstractDashboardLineChartTextFieldComponent, AbstractDashboardPieChartTextFieldComponent, AbstractDashboardPortalTextFieldComponent, AbstractDashboardTextFieldComponent, AbstractDataFieldTemplateComponent, AbstractDateFieldComponent, AbstractDateTimeFieldComponent, AbstractDefaultNumberFieldComponent, AbstractEditModeComponent, AbstractEmailSubmissionFormComponent, AbstractEnumerationAutocompleteDynamicFieldComponent, AbstractEnumerationAutocompleteSelectFieldComponent, AbstractEnumerationFieldComponent, AbstractEnumerationIconFieldComponent, AbstractEnumerationListFieldComponent, AbstractEnumerationSelectFieldComponent, AbstractEnumerationStepperFieldComponent, AbstractFieldComponentResolverComponent, AbstractFileFieldComponent, AbstractFileListFieldComponent, 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, 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, AbstractTaskRefDashboardTileComponent, AbstractTaskRefFieldComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserFieldComponent, AbstractUserImpersonateComponent, AbstractUserInviteComponent, 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, 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, Dashboard, DashboardCardTypes, DashboardMultiData, DashboardPortalComponentRegistryService, 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, ImpersonationService, ImpersonationUserListService, ImpersonationUserResourceService, ImpersonationUserSelectService, 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, MockUserService, MoreThan, MoreThanDate, MoreThanDateTime, MultichoiceAutocompleteFilterProperty, MultichoiceField, NAE_ADMIN_IMPERSONATE_COMPONENT, 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_FORCE_OPEN, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_USER_ASSIGN_COMPONENT, NAE_USER_IMPERSONATE_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, TaskRefComponents, TaskRefDashboardConstants, TaskRefDashboardTileConstants, TaskRefField, TaskRequestStateService, TaskResourceService, 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, 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 };
32956
33191
  //# sourceMappingURL=netgrif-components-core.mjs.map