@netgrif/components-core 6.0.4 → 6.1.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/bundles/netgrif-components-core.umd.js +283 -86
  2. package/bundles/netgrif-components-core.umd.js.map +1 -1
  3. package/bundles/netgrif-components-core.umd.min.js +2 -2
  4. package/bundles/netgrif-components-core.umd.min.js.map +1 -1
  5. package/esm2015/lib/allowed-nets/services/base-allowed-nets.service.js +2 -1
  6. package/esm2015/lib/allowed-nets/services/factory/allowed-nets-service-factory.js +8 -6
  7. package/esm2015/lib/data-fields/models/abstract-data-field.js +2 -2
  8. package/esm2015/lib/data-fields/text-field/html-textarea-field/abstract-html-textarea-field.component.js +6 -3
  9. package/esm2015/lib/panel/abstract/panel-with-header-binding.js +2 -5
  10. package/esm2015/lib/panel/panel-item/abstract-panel-item.component.js +13 -0
  11. package/esm2015/lib/panel/public-api.js +3 -1
  12. package/esm2015/lib/panel/task-panel-list/abstract-task-list.component.js +9 -60
  13. package/esm2015/lib/panel/task-panel-list/default-task-panel-list/abstract-default-task-list.js +80 -0
  14. package/esm2015/lib/panel/task-panel-list/task-panel-list-pagination/abstract-task-list-pagination.component.js +42 -0
  15. package/esm2015/lib/utility/tests/utility/create-mock-net.js +3 -2
  16. package/esm2015/lib/view/case-view/abstract-case-view.js +11 -2
  17. package/esm2015/lib/view/case-view/components/case-list/abstract-case-list.component.js +5 -48
  18. package/esm2015/lib/view/case-view/components/case-list-paginator/abstract-case-list-paginator.component.js +38 -0
  19. package/esm2015/lib/view/case-view/components/default-case-list/abstract-default-case-list.js +66 -0
  20. package/esm2015/lib/view/case-view/service/case-view-service.js +15 -1
  21. package/esm2015/lib/view/public-api.js +2 -1
  22. package/esm2015/lib/view/task-view/service/task-view.service.js +15 -1
  23. package/esm2015/netgrif-components-core.js +9 -7
  24. package/esm5/lib/allowed-nets/services/base-allowed-nets.service.js +2 -1
  25. package/esm5/lib/allowed-nets/services/factory/allowed-nets-service-factory.js +8 -6
  26. package/esm5/lib/data-fields/models/abstract-data-field.js +2 -2
  27. package/esm5/lib/data-fields/text-field/html-textarea-field/abstract-html-textarea-field.component.js +6 -3
  28. package/esm5/lib/panel/abstract/panel-with-header-binding.js +5 -5
  29. package/esm5/lib/panel/panel-item/abstract-panel-item.component.js +15 -0
  30. package/esm5/lib/panel/public-api.js +3 -1
  31. package/esm5/lib/panel/task-panel-list/abstract-task-list.component.js +9 -61
  32. package/esm5/lib/panel/task-panel-list/default-task-panel-list/abstract-default-task-list.js +90 -0
  33. package/esm5/lib/panel/task-panel-list/task-panel-list-pagination/abstract-task-list-pagination.component.js +52 -0
  34. package/esm5/lib/utility/tests/utility/create-mock-net.js +4 -2
  35. package/esm5/lib/view/case-view/abstract-case-view.js +11 -2
  36. package/esm5/lib/view/case-view/components/case-list/abstract-case-list.component.js +5 -49
  37. package/esm5/lib/view/case-view/components/case-list-paginator/abstract-case-list-paginator.component.js +43 -0
  38. package/esm5/lib/view/case-view/components/default-case-list/abstract-default-case-list.js +72 -0
  39. package/esm5/lib/view/case-view/service/case-view-service.js +19 -1
  40. package/esm5/lib/view/public-api.js +2 -1
  41. package/esm5/lib/view/task-view/service/task-view.service.js +19 -1
  42. package/esm5/netgrif-components-core.js +9 -7
  43. package/fesm2015/netgrif-components-core.js +216 -57
  44. package/fesm2015/netgrif-components-core.js.map +1 -1
  45. package/fesm5/netgrif-components-core.js +267 -75
  46. package/fesm5/netgrif-components-core.js.map +1 -1
  47. package/lib/allowed-nets/services/base-allowed-nets.service.d.ts +1 -0
  48. package/lib/data-fields/text-field/html-textarea-field/abstract-html-textarea-field.component.d.ts +1 -0
  49. package/lib/panel/panel-item/abstract-panel-item.component.d.ts +8 -0
  50. package/lib/panel/public-api.d.ts +2 -0
  51. package/lib/panel/task-panel-list/abstract-task-list.component.d.ts +6 -34
  52. package/lib/panel/task-panel-list/default-task-panel-list/abstract-default-task-list.d.ts +43 -0
  53. package/lib/panel/task-panel-list/task-panel-list-pagination/abstract-task-list-pagination.component.d.ts +20 -0
  54. package/lib/utility/tests/utility/create-mock-net.d.ts +2 -1
  55. package/lib/view/case-view/abstract-case-view.d.ts +6 -2
  56. package/lib/view/case-view/components/case-list/abstract-case-list.component.d.ts +2 -21
  57. package/lib/view/case-view/components/case-list-paginator/abstract-case-list-paginator.component.d.ts +18 -0
  58. package/lib/view/case-view/components/default-case-list/abstract-default-case-list.d.ts +30 -0
  59. package/lib/view/case-view/service/case-view-service.d.ts +3 -1
  60. package/lib/view/public-api.d.ts +1 -0
  61. package/lib/view/task-view/service/task-view.service.d.ts +2 -0
  62. package/netgrif-components-core.d.ts +10 -8
  63. package/netgrif-components-core.metadata.json +1 -1
  64. package/package.json +1 -1
@@ -4114,7 +4114,7 @@ var DataField = /** @class */ (function () {
4114
4114
  * @param b - second compared value
4115
4115
  */
4116
4116
  DataField.prototype.valueEquality = function (a, b) {
4117
- return a === b;
4117
+ return a === b || (Number.isNaN(a) && Number.isNaN(b));
4118
4118
  };
4119
4119
  /**
4120
4120
  * Updates the state of this data field model object.
@@ -7574,11 +7574,14 @@ var AbstractHtmlTextareaFieldComponent = /** @class */ (function (_super) {
7574
7574
  }
7575
7575
  AbstractHtmlTextareaFieldComponent.prototype.ngOnInit = function () {
7576
7576
  var _this = this;
7577
- this.disabledDisplay = this._sanitizer.bypassSecurityTrustHtml(this.textAreaField.value);
7577
+ this.disabledDisplay = this.sanitizeValue();
7578
7578
  this.textAreaField.valueChanges().subscribe(function () {
7579
- _this.disabledDisplay = _this._sanitizer.bypassSecurityTrustHtml(_this.textAreaField.value);
7579
+ _this.disabledDisplay = _this.sanitizeValue();
7580
7580
  });
7581
7581
  };
7582
+ AbstractHtmlTextareaFieldComponent.prototype.sanitizeValue = function () {
7583
+ return this._sanitizer.bypassSecurityTrustHtml(this.textAreaField.value !== undefined ? this.textAreaField.value : '');
7584
+ };
7582
7585
  AbstractHtmlTextareaFieldComponent.prototype.getErrorMessage = function () {
7583
7586
  return this.buildErrorMessage(this.textAreaField, this.formControlRef);
7584
7587
  };
@@ -14833,14 +14836,13 @@ var PanelWithHeaderBinding = /** @class */ (function () {
14833
14836
  }
14834
14837
  };
14835
14838
  PanelWithHeaderBinding.prototype.resolveFeaturedFieldsValues = function () {
14839
+ var _a;
14840
+ var _this = this;
14836
14841
  if (!this._lastSelectedHeaders) {
14837
14842
  return;
14838
14843
  }
14839
14844
  this.featuredFieldsValues.splice(0, this.featuredFieldsValues.length);
14840
- this.firstFeaturedValue = this.getFeaturedValue(this._lastSelectedHeaders[0]).value;
14841
- for (var i = 1; i < this._lastSelectedHeaders.length; i++) {
14842
- this.featuredFieldsValues.push(this.getFeaturedValue(this._lastSelectedHeaders[i]));
14843
- }
14845
+ (_a = this.featuredFieldsValues).push.apply(_a, __spread(this._lastSelectedHeaders.map(function (item) { return _this.getFeaturedValue(item); })));
14844
14846
  };
14845
14847
  PanelWithHeaderBinding.prototype.getFeaturedValue = function (selectedHeader) {
14846
14848
  if (!selectedHeader) {
@@ -15685,6 +15687,13 @@ var TaskViewService = /** @class */ (function (_super) {
15685
15687
  enumerable: false,
15686
15688
  configurable: true
15687
15689
  });
15690
+ Object.defineProperty(TaskViewService.prototype, "pagination", {
15691
+ get: function () {
15692
+ return this._pagination;
15693
+ },
15694
+ enumerable: false,
15695
+ configurable: true
15696
+ });
15688
15697
  Object.defineProperty(TaskViewService.prototype, "activeFilter", {
15689
15698
  get: function () {
15690
15699
  return this._searchService.activeFilter;
@@ -15784,6 +15793,17 @@ var TaskViewService = /** @class */ (function (_super) {
15784
15793
  this._requestedPage$.next(requestContext);
15785
15794
  }
15786
15795
  };
15796
+ TaskViewService.prototype.nextPagePagination = function (length, pageIndex, requestContext) {
15797
+ if (requestContext === undefined) {
15798
+ requestContext = new PageLoadRequestContext(this.activeFilter, this._pagination);
15799
+ requestContext.pagination.size = length;
15800
+ requestContext.pagination.number = pageIndex;
15801
+ }
15802
+ if (this.isLoadingRelevantFilter(requestContext) || this._endOfData) {
15803
+ return;
15804
+ }
15805
+ this._requestedPage$.next(requestContext);
15806
+ };
15787
15807
  TaskViewService.prototype.isLoadingRelevantFilter = function (requestContext) {
15788
15808
  return requestContext === undefined || (this._loading$.isActiveWithFilter(requestContext.filter) && !requestContext.force);
15789
15809
  };
@@ -15893,9 +15913,9 @@ var TabbedVirtualScrollComponent = /** @class */ (function () {
15893
15913
  return TabbedVirtualScrollComponent;
15894
15914
  }());
15895
15915
 
15896
- var AbstractTaskListComponent = /** @class */ (function (_super) {
15897
- __extends(AbstractTaskListComponent, _super);
15898
- function AbstractTaskListComponent(_taskViewService, _log, injectedTabData, route) {
15916
+ var AbstractDefaultTaskList = /** @class */ (function (_super) {
15917
+ __extends(AbstractDefaultTaskList, _super);
15918
+ function AbstractDefaultTaskList(_taskViewService, _log, injectedTabData, route) {
15899
15919
  var _this = _super.call(this, injectedTabData) || this;
15900
15920
  _this._taskViewService = _taskViewService;
15901
15921
  _this._log = _log;
@@ -15905,11 +15925,11 @@ var AbstractTaskListComponent = /** @class */ (function (_super) {
15905
15925
  _this.forceLoadDataOnOpen = false;
15906
15926
  _this.textEllipsis = false;
15907
15927
  _this.taskEvent = new EventEmitter();
15908
- _this.taskPanelRefs = new Map();
15909
- _this.unsubscribe$ = new Subject();
15928
+ _this._taskPanelRefs = new Map();
15929
+ _this._unsubscribe$ = new Subject();
15910
15930
  return _this;
15911
15931
  }
15912
- Object.defineProperty(AbstractTaskListComponent.prototype, "allowMultiOpen", {
15932
+ Object.defineProperty(AbstractDefaultTaskList.prototype, "allowMultiOpen", {
15913
15933
  get: function () {
15914
15934
  return this._allowMultiOpen;
15915
15935
  },
@@ -15920,66 +15940,139 @@ var AbstractTaskListComponent = /** @class */ (function (_super) {
15920
15940
  enumerable: false,
15921
15941
  configurable: true
15922
15942
  });
15923
- AbstractTaskListComponent.prototype.ngAfterViewInit = function () {
15924
- this.onRedirect();
15925
- };
15926
- AbstractTaskListComponent.prototype.ngOnDestroy = function () {
15943
+ AbstractDefaultTaskList.prototype.ngOnDestroy = function () {
15927
15944
  _super.prototype.ngOnDestroy.call(this);
15928
15945
  this.taskEvent.complete();
15929
- this.unsubscribe$.complete();
15946
+ this._unsubscribe$.complete();
15930
15947
  };
15931
- AbstractTaskListComponent.prototype.trackBy = function (idx, item) {
15932
- return item.task.stringId; // + (item.task.user ? item.task.user.email : '');
15948
+ AbstractDefaultTaskList.prototype.ngAfterViewInit = function () {
15949
+ this.onRedirect();
15933
15950
  };
15934
- AbstractTaskListComponent.prototype.loadNextPage = function () {
15935
- if (!this.viewport) {
15936
- return;
15937
- }
15938
- this._taskViewService.nextPage(this.viewport.getRenderedRange(), this.viewport.getDataLength());
15951
+ AbstractDefaultTaskList.prototype.trackBy = function (_idx, item) {
15952
+ return item.task.stringId; // + (item.task.user ? item.task.user.email : '');
15939
15953
  };
15940
15954
  /**
15941
15955
  * Emits an event into this component's @Output attribute
15942
15956
  * @param event the event that will be emitted
15943
15957
  */
15944
- AbstractTaskListComponent.prototype.emitTaskEvent = function (event) {
15958
+ AbstractDefaultTaskList.prototype.emitTaskEvent = function (event) {
15945
15959
  this.taskEvent.emit(event);
15946
15960
  };
15947
- AbstractTaskListComponent.prototype.addToPanelRefs = function (task, panelRef) {
15948
- this.taskPanelRefs.set(task.task.stringId, panelRef);
15961
+ AbstractDefaultTaskList.prototype.addToPanelRefs = function (task, panelRef) {
15962
+ this._taskPanelRefs.set(task.task.stringId, panelRef);
15949
15963
  };
15950
- AbstractTaskListComponent.prototype.onRedirect = function () {
15964
+ AbstractDefaultTaskList.prototype.onRedirect = function () {
15951
15965
  var _this = this;
15952
15966
  this.route.queryParams.pipe(filter(function (pm) { return !!pm['taskId']; })).subscribe(function (pm) {
15953
- _this.redirectTaskId = pm['taskId'];
15954
- _this.tasks$.pipe().subscribe(function (tasks) {
15955
- var task = tasks.find(function (t) { return t.task.stringId === _this.redirectTaskId; });
15967
+ _this._redirectTaskId = pm['taskId'];
15968
+ _this._tasks$.pipe().subscribe(function (tasks) {
15969
+ var task = tasks.find(function (t) { return t.task.stringId === _this._redirectTaskId; });
15956
15970
  if (!!task && !task.initiallyExpanded) {
15957
- _this.taskPanelRefs.get(_this.redirectTaskId).open();
15958
- _this.taskPanelRefs.get(_this.redirectTaskId).expanded = true;
15959
- _this.unsubscribe$.next();
15971
+ _this._taskPanelRefs.get(_this._redirectTaskId).open();
15972
+ _this._taskPanelRefs.get(_this._redirectTaskId).expanded = true;
15973
+ _this._unsubscribe$.next();
15960
15974
  }
15961
15975
  });
15962
15976
  });
15963
15977
  };
15964
- AbstractTaskListComponent.ctorParameters = function () { return [
15978
+ AbstractDefaultTaskList.ctorParameters = function () { return [
15965
15979
  { type: TaskViewService },
15966
15980
  { type: LoggerService },
15967
15981
  { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [NAE_TAB_DATA,] }] },
15968
15982
  { type: ActivatedRoute }
15969
15983
  ]; };
15970
- AbstractTaskListComponent.propDecorators = {
15971
- tasks$: [{ type: Input }],
15984
+ AbstractDefaultTaskList.propDecorators = {
15972
15985
  loading$: [{ type: Input }],
15973
15986
  selectedHeaders$: [{ type: Input }],
15974
15987
  responsiveBody: [{ type: Input }],
15975
15988
  forceLoadDataOnOpen: [{ type: Input }],
15976
15989
  textEllipsis: [{ type: Input }],
15977
15990
  allowMultiOpen: [{ type: Input }],
15978
- taskEvent: [{ type: Output }],
15991
+ taskEvent: [{ type: Output }]
15992
+ };
15993
+ return AbstractDefaultTaskList;
15994
+ }(TabbedVirtualScrollComponent));
15995
+
15996
+ var AbstractTaskListComponent = /** @class */ (function (_super) {
15997
+ __extends(AbstractTaskListComponent, _super);
15998
+ function AbstractTaskListComponent(_taskViewService, _log, injectedTabData, route) {
15999
+ var _this = _super.call(this, _taskViewService, _log, injectedTabData, route) || this;
16000
+ _this._taskViewService = _taskViewService;
16001
+ _this._log = _log;
16002
+ _this.route = route;
16003
+ return _this;
16004
+ }
16005
+ Object.defineProperty(AbstractTaskListComponent.prototype, "tasks$", {
16006
+ get: function () {
16007
+ return this._tasks$;
16008
+ },
16009
+ set: function (tasks) {
16010
+ this._tasks$ = tasks;
16011
+ },
16012
+ enumerable: false,
16013
+ configurable: true
16014
+ });
16015
+ AbstractTaskListComponent.prototype.loadNextPage = function () {
16016
+ if (!this.viewport) {
16017
+ return;
16018
+ }
16019
+ this._taskViewService.nextPage(this.viewport.getRenderedRange(), this.viewport.getDataLength());
16020
+ };
16021
+ AbstractTaskListComponent.ctorParameters = function () { return [
16022
+ { type: TaskViewService },
16023
+ { type: LoggerService },
16024
+ { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [NAE_TAB_DATA,] }] },
16025
+ { type: ActivatedRoute }
16026
+ ]; };
16027
+ AbstractTaskListComponent.propDecorators = {
16028
+ tasks$: [{ type: Input }],
15979
16029
  viewport: [{ type: ViewChild, args: [CdkVirtualScrollViewport,] }]
15980
16030
  };
15981
16031
  return AbstractTaskListComponent;
15982
- }(TabbedVirtualScrollComponent));
16032
+ }(AbstractDefaultTaskList));
16033
+
16034
+ var AbstractTaskListPaginationComponent = /** @class */ (function (_super) {
16035
+ __extends(AbstractTaskListPaginationComponent, _super);
16036
+ function AbstractTaskListPaginationComponent(_taskViewService, _log, injectedTabData, route) {
16037
+ var _this = _super.call(this, _taskViewService, _log, injectedTabData, route) || this;
16038
+ _this._taskViewService = _taskViewService;
16039
+ _this._log = _log;
16040
+ _this.route = route;
16041
+ _this.pageSize = 20;
16042
+ _this.pageIndex = 0;
16043
+ _this.pageSizeOptions = [10, 20, 50];
16044
+ return _this;
16045
+ }
16046
+ Object.defineProperty(AbstractTaskListPaginationComponent.prototype, "tasks$", {
16047
+ get: function () {
16048
+ return this._tasks$;
16049
+ },
16050
+ set: function (tasks) {
16051
+ var _this = this;
16052
+ this._tasks$ = tasks.pipe((tap(function () {
16053
+ _this.length = _this._taskViewService.pagination.totalElements;
16054
+ _this.pageIndex = _this._taskViewService.pagination.number;
16055
+ })));
16056
+ },
16057
+ enumerable: false,
16058
+ configurable: true
16059
+ });
16060
+ AbstractTaskListPaginationComponent.prototype.onPageChanged = function (e) {
16061
+ this.pageIndex = e.pageIndex;
16062
+ this.pageSize = e.pageSize;
16063
+ this._taskViewService.nextPagePagination(this.pageSize, this.pageIndex);
16064
+ };
16065
+ AbstractTaskListPaginationComponent.ctorParameters = function () { return [
16066
+ { type: TaskViewService },
16067
+ { type: LoggerService },
16068
+ { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [NAE_TAB_DATA,] }] },
16069
+ { type: ActivatedRoute }
16070
+ ]; };
16071
+ AbstractTaskListPaginationComponent.propDecorators = {
16072
+ tasks$: [{ type: Input }]
16073
+ };
16074
+ return AbstractTaskListPaginationComponent;
16075
+ }(AbstractDefaultTaskList));
15983
16076
 
15984
16077
  var WorkflowMetaField;
15985
16078
  (function (WorkflowMetaField) {
@@ -16154,6 +16247,19 @@ var AbstractImmediateFilterTextContentComponent = /** @class */ (function () {
16154
16247
  return AbstractImmediateFilterTextContentComponent;
16155
16248
  }());
16156
16249
 
16250
+ var AbstractPanelItemComponent = /** @class */ (function () {
16251
+ function AbstractPanelItemComponent() {
16252
+ this.textEllipsis = false;
16253
+ }
16254
+ AbstractPanelItemComponent.propDecorators = {
16255
+ leadingIcon: [{ type: Input }],
16256
+ leadingIconEnabled: [{ type: Input }],
16257
+ featuredValue: [{ type: Input }],
16258
+ textEllipsis: [{ type: Input }]
16259
+ };
16260
+ return AbstractPanelItemComponent;
16261
+ }());
16262
+
16157
16263
  var NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS = new InjectionToken('NaeTaskPanelDisableFunctions');
16158
16264
 
16159
16265
  /* COMPONENTS */
@@ -18564,6 +18670,9 @@ var AbstractCaseView = /** @class */ (function (_super) {
18564
18670
  _this._caseViewService.loading$.subscribe(function (loading) {
18565
18671
  _this.loading = loading;
18566
18672
  });
18673
+ _this.canCreateSub = _this._caseViewService.getNewCaseAllowedNets().subscribe(function (allowedNets) {
18674
+ _this.canCreate = allowedNets.length > 0;
18675
+ });
18567
18676
  _this.cases$ = _this._caseViewService.cases$;
18568
18677
  _this.authorityToCreate = _authority.map(function (a) { return a.authority; });
18569
18678
  return _this;
@@ -18577,7 +18686,7 @@ var AbstractCaseView = /** @class */ (function (_super) {
18577
18686
  }
18578
18687
  };
18579
18688
  AbstractCaseView.prototype.hasAuthority = function () {
18580
- return (this._caseViewService.hasAuthority(this.authorityToCreate) && this._caseViewService.getAllowedNetsCount() > 0);
18689
+ return (this._caseViewService.hasAuthority(this.authorityToCreate) && this.canCreate);
18581
18690
  };
18582
18691
  AbstractCaseView.prototype.getWidth = function () {
18583
18692
  return (this._overflowService && this._overflowService.overflowMode && this._overflowService.columnCount) ?
@@ -18586,6 +18695,12 @@ var AbstractCaseView = /** @class */ (function (_super) {
18586
18695
  AbstractCaseView.prototype.getOverflowStatus = function () {
18587
18696
  return this._overflowService ? this._overflowService.overflowMode : false;
18588
18697
  };
18698
+ AbstractCaseView.prototype.ngOnDestroy = function () {
18699
+ _super.prototype.ngOnDestroy.call(this);
18700
+ if (this.canCreateSub) {
18701
+ this.canCreateSub.unsubscribe();
18702
+ }
18703
+ };
18589
18704
  return AbstractCaseView;
18590
18705
  }(ViewWithHeaders));
18591
18706
 
@@ -18819,6 +18934,13 @@ var CaseViewService = /** @class */ (function (_super) {
18819
18934
  enumerable: false,
18820
18935
  configurable: true
18821
18936
  });
18937
+ Object.defineProperty(CaseViewService.prototype, "pagination", {
18938
+ get: function () {
18939
+ return this._pagination;
18940
+ },
18941
+ enumerable: false,
18942
+ configurable: true
18943
+ });
18822
18944
  Object.defineProperty(CaseViewService.prototype, "activeFilter", {
18823
18945
  get: function () {
18824
18946
  return this._searchService.activeFilter;
@@ -18872,6 +18994,17 @@ var CaseViewService = /** @class */ (function (_super) {
18872
18994
  this._nextPage$.next(requestContext);
18873
18995
  }
18874
18996
  };
18997
+ CaseViewService.prototype.nextPagePagination = function (length, pageIndex, requestContext) {
18998
+ if (requestContext === undefined) {
18999
+ requestContext = new PageLoadRequestContext(this.activeFilter, this._pagination);
19000
+ requestContext.pagination.size = length;
19001
+ requestContext.pagination.number = pageIndex;
19002
+ }
19003
+ if (this.isLoadingRelevantFilter(requestContext) || this._endOfData) {
19004
+ return;
19005
+ }
19006
+ this._nextPage$.next(requestContext);
19007
+ };
18875
19008
  CaseViewService.prototype.isLoadingRelevantFilter = function (requestContext) {
18876
19009
  return requestContext === undefined || this._loading$.isActiveWithFilter(requestContext.filter);
18877
19010
  };
@@ -26056,9 +26189,9 @@ var AbstractWorkflowViewComponent = /** @class */ (function (_super) {
26056
26189
  return AbstractWorkflowViewComponent;
26057
26190
  }(ViewWithHeaders));
26058
26191
 
26059
- var AbstractCaseListComponent = /** @class */ (function (_super) {
26060
- __extends(AbstractCaseListComponent, _super);
26061
- function AbstractCaseListComponent(_caseViewService, _log, injectedTabData, route) {
26192
+ var AbstractDefaultCaseList = /** @class */ (function (_super) {
26193
+ __extends(AbstractDefaultCaseList, _super);
26194
+ function AbstractDefaultCaseList(_caseViewService, _log, injectedTabData, route) {
26062
26195
  var _this = _super.call(this, injectedTabData) || this;
26063
26196
  _this._caseViewService = _caseViewService;
26064
26197
  _this._log = _log;
@@ -26068,38 +26201,20 @@ var AbstractCaseListComponent = /** @class */ (function (_super) {
26068
26201
  _this.showDeleteMenu = false;
26069
26202
  _this.textEllipsis = false;
26070
26203
  _this.redirectEnabled = true;
26071
- _this.cases$ = _this._caseViewService.cases$;
26072
26204
  _this.unsubscribe$ = new Subject();
26073
26205
  _this.loading$ = _this._caseViewService.loading$;
26074
26206
  _this.caseClick = new EventEmitter();
26075
- _this.onRedirect();
26076
26207
  return _this;
26077
26208
  }
26078
- AbstractCaseListComponent.prototype.ngOnDestroy = function () {
26209
+ AbstractDefaultCaseList.prototype.ngOnDestroy = function () {
26079
26210
  _super.prototype.ngOnDestroy.call(this);
26080
26211
  this.caseClick.complete();
26081
26212
  this.unsubscribe$.complete();
26082
26213
  };
26083
- AbstractCaseListComponent.prototype.trackBy = function (i) {
26084
- return i;
26085
- };
26086
- Object.defineProperty(AbstractCaseListComponent.prototype, "loadedDataSize", {
26087
- get: function () {
26088
- return this.viewport && this.viewport.getDataLength() ? this.viewport.getDataLength() : 0;
26089
- },
26090
- enumerable: false,
26091
- configurable: true
26092
- });
26093
- AbstractCaseListComponent.prototype.loadNextPage = function () {
26094
- if (!this.viewport) {
26095
- return;
26096
- }
26097
- this._caseViewService.nextPage(this.viewport.getRenderedRange(), this.viewport.getDataLength());
26098
- };
26099
- AbstractCaseListComponent.prototype.onCaseClick = function (case_) {
26214
+ AbstractDefaultCaseList.prototype.onCaseClick = function (case_) {
26100
26215
  this.caseClick.emit(case_);
26101
26216
  };
26102
- AbstractCaseListComponent.prototype.onRedirect = function () {
26217
+ AbstractDefaultCaseList.prototype.onRedirect = function () {
26103
26218
  var _this = this;
26104
26219
  if (!this.redirectEnabled) {
26105
26220
  return;
@@ -26117,13 +26232,13 @@ var AbstractCaseListComponent = /** @class */ (function (_super) {
26117
26232
  });
26118
26233
  });
26119
26234
  };
26120
- AbstractCaseListComponent.ctorParameters = function () { return [
26235
+ AbstractDefaultCaseList.ctorParameters = function () { return [
26121
26236
  { type: CaseViewService },
26122
26237
  { type: LoggerService },
26123
26238
  { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [NAE_TAB_DATA,] }] },
26124
26239
  { type: ActivatedRoute }
26125
26240
  ]; };
26126
- AbstractCaseListComponent.propDecorators = {
26241
+ AbstractDefaultCaseList.propDecorators = {
26127
26242
  selectedHeaders$: [{ type: Input }],
26128
26243
  responsiveBody: [{ type: Input }],
26129
26244
  caseClick: [{ type: Output }],
@@ -26131,11 +26246,83 @@ var AbstractCaseListComponent = /** @class */ (function (_super) {
26131
26246
  showDeleteMenu: [{ type: Input }],
26132
26247
  textEllipsis: [{ type: Input }],
26133
26248
  width: [{ type: Input }],
26134
- redirectEnabled: [{ type: Input }],
26249
+ redirectEnabled: [{ type: Input }]
26250
+ };
26251
+ return AbstractDefaultCaseList;
26252
+ }(TabbedVirtualScrollComponent));
26253
+
26254
+ var AbstractCaseListComponent = /** @class */ (function (_super) {
26255
+ __extends(AbstractCaseListComponent, _super);
26256
+ function AbstractCaseListComponent(_caseViewService, _log, injectedTabData, route) {
26257
+ var _this = _super.call(this, _caseViewService, _log, injectedTabData, route) || this;
26258
+ _this._caseViewService = _caseViewService;
26259
+ _this._log = _log;
26260
+ _this.route = route;
26261
+ _this.cases$ = _this._caseViewService.cases$;
26262
+ _this.onRedirect();
26263
+ return _this;
26264
+ }
26265
+ AbstractCaseListComponent.prototype.trackBy = function (i) {
26266
+ return i;
26267
+ };
26268
+ Object.defineProperty(AbstractCaseListComponent.prototype, "loadedDataSize", {
26269
+ get: function () {
26270
+ return this.viewport && this.viewport.getDataLength() ? this.viewport.getDataLength() : 0;
26271
+ },
26272
+ enumerable: false,
26273
+ configurable: true
26274
+ });
26275
+ AbstractCaseListComponent.prototype.loadNextPage = function () {
26276
+ if (!this.viewport) {
26277
+ return;
26278
+ }
26279
+ this._caseViewService.nextPage(this.viewport.getRenderedRange(), this.viewport.getDataLength());
26280
+ };
26281
+ AbstractCaseListComponent.ctorParameters = function () { return [
26282
+ { type: CaseViewService },
26283
+ { type: LoggerService },
26284
+ { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [NAE_TAB_DATA,] }] },
26285
+ { type: ActivatedRoute }
26286
+ ]; };
26287
+ AbstractCaseListComponent.propDecorators = {
26135
26288
  viewport: [{ type: ViewChild, args: [CdkVirtualScrollViewport,] }]
26136
26289
  };
26137
26290
  return AbstractCaseListComponent;
26138
- }(TabbedVirtualScrollComponent));
26291
+ }(AbstractDefaultCaseList));
26292
+
26293
+ var AbstractCaseListPaginatorComponent = /** @class */ (function (_super) {
26294
+ __extends(AbstractCaseListPaginatorComponent, _super);
26295
+ function AbstractCaseListPaginatorComponent(_caseViewService, _log, injectedTabData, route) {
26296
+ var _this = _super.call(this, _caseViewService, _log, injectedTabData, route) || this;
26297
+ _this._caseViewService = _caseViewService;
26298
+ _this._log = _log;
26299
+ _this.route = route;
26300
+ _this.pageSize = 20;
26301
+ _this.pageIndex = 0;
26302
+ _this.pageSizeOptions = [10, 20, 50];
26303
+ _this.cases$ = _this._caseViewService.cases$.pipe(tap(function () {
26304
+ _this.length = _this._caseViewService.pagination.totalElements;
26305
+ _this.pageIndex = _this._caseViewService.pagination.number;
26306
+ }));
26307
+ _this.onRedirect();
26308
+ return _this;
26309
+ }
26310
+ AbstractCaseListPaginatorComponent.prototype.onPageChanged = function (e) {
26311
+ this.pageIndex = e.pageIndex;
26312
+ this.pageSize = e.pageSize;
26313
+ this._caseViewService.nextPagePagination(this.pageSize, this.pageIndex);
26314
+ };
26315
+ AbstractCaseListPaginatorComponent.prototype.trackById = function (_index, caze) {
26316
+ return caze.stringId;
26317
+ };
26318
+ AbstractCaseListPaginatorComponent.ctorParameters = function () { return [
26319
+ { type: CaseViewService },
26320
+ { type: LoggerService },
26321
+ { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [NAE_TAB_DATA,] }] },
26322
+ { type: ActivatedRoute }
26323
+ ]; };
26324
+ return AbstractCaseListPaginatorComponent;
26325
+ }(AbstractDefaultCaseList));
26139
26326
 
26140
26327
  var AbstractTreeComponent = /** @class */ (function () {
26141
26328
  function AbstractTreeComponent(_treeService) {
@@ -28640,13 +28827,14 @@ function createMockPage(content) {
28640
28827
  * The attributes are filled with mostly empty values, if you want to make a test that uses some of them,
28641
28828
  * we recommend setting them yourself, as the returned object might change between versions.
28642
28829
  */
28643
- function createMockNet(stringId, identifier, title, roles, transitions, immediateData) {
28830
+ function createMockNet(stringId, identifier, title, roles, transitions, immediateData, permissions) {
28644
28831
  if (stringId === void 0) { stringId = 'stringId'; }
28645
28832
  if (identifier === void 0) { identifier = 'identifier'; }
28646
28833
  if (title === void 0) { title = 'title'; }
28647
28834
  if (roles === void 0) { roles = []; }
28648
28835
  if (transitions === void 0) { transitions = []; }
28649
28836
  if (immediateData === void 0) { immediateData = []; }
28837
+ if (permissions === void 0) { permissions = {}; }
28650
28838
  var net = new Net({
28651
28839
  stringId: stringId,
28652
28840
  title: title,
@@ -28663,6 +28851,7 @@ function createMockNet(stringId, identifier, title, roles, transitions, immediat
28663
28851
  });
28664
28852
  net.roles = roles;
28665
28853
  net.transitions = transitions.map(function (t) { return (__assign(__assign({}, t), { petriNetId: '', immediateData: [] })); });
28854
+ net.permissions = permissions;
28666
28855
  return net;
28667
28856
  }
28668
28857
 
@@ -31774,6 +31963,7 @@ var BaseAllowedNetsService = /** @class */ (function () {
31774
31963
  };
31775
31964
  Object.defineProperty(BaseAllowedNetsService.prototype, "allowedNets", {
31776
31965
  /**
31966
+ * @deprecated This method should not be used. Use {@link BaseAllowedNetsService#allowedNets$} instead
31777
31967
  * @returns the currently set allowed nets. Returns an empty array if no value was set.
31778
31968
  */
31779
31969
  get: function () {
@@ -31841,12 +32031,14 @@ function navigationItemTaskAllowedNetsServiceFactory(factory, baseAllowedNets, n
31841
32031
  if (filterField === undefined) {
31842
32032
  throw new Error("Provided navigation item task data does not contain a filter field with ID '" + UserFilterConstants.FILTER_FIELD_ID + "'! Allowed nets cannot be generated from it!");
31843
32033
  }
31844
- var nets = __spread(filterField.allowedNets);
32034
+ var nets = new BehaviorSubject(Array.from(new Set(__spread(filterField.allowedNets))));
31845
32035
  if (filterField.filterMetadata.inheritAllowedNets) {
31846
- nets.push.apply(nets, __spread(baseAllowedNets.allowedNets));
32036
+ baseAllowedNets.allowedNets$.subscribe(function (allowedNets) {
32037
+ var netSet = new Set(allowedNets);
32038
+ nets.next(Array.from(netSet));
32039
+ });
31847
32040
  }
31848
- var uniqueNets = new Set(nets);
31849
- return factory.createFromArray(Array.from(uniqueNets));
32041
+ return factory.createFromObservable(nets.asObservable());
31850
32042
  }
31851
32043
  /**
31852
32044
  * Simplifies the creation of {@link AllowedNetsService} instances
@@ -31949,5 +32141,5 @@ var AllowedNetsServiceFactory = /** @class */ (function () {
31949
32141
  * Generated bundle index. Do not edit.
31950
32142
  */
31951
32143
 
31952
- export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlay, AbstractBooleanFieldComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCasePanelComponent, AbstractCaseView, AbstractCountCard, AbstractCurrencyNumberFieldComponent, AbstractCustomCard, AbstractDashboardContent, 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, AbstractI18nFieldComponent, AbstractI18nTextFieldComponent, AbstractIframeCard, AbstractImmediateFilterTextComponent, AbstractImmediateFilterTextContentComponent, AbstractImportNetComponent, AbstractInternalLinkComponent, AbstractLanguageSelectorComponent, AbstractLegalNoticeComponent, AbstractLoadFilterComponent, AbstractLoadingModeComponent, AbstractLoggerService, AbstractLoginFormComponent, AbstractLogoutShortcutComponent, AbstractMultichoiceFieldComponent, AbstractMultichoiceListFieldComponent, AbstractMultichoiceSelectFieldComponent, AbstractNavigationDrawerComponent, AbstractNavigationRailComponent, AbstractNavigationTreeComponent, AbstractNewCaseComponent, AbstractNumberErrorsComponent, AbstractNumberFieldComponent, AbstractOptionSelectorComponent, AbstractPanelComponent, AbstractPasswordTextFieldComponent, AbstractProfileComponent, AbstractQuickPanelComponent, AbstractRegistrationComponent, AbstractRegistrationFormComponent, AbstractRemoveNodeComponent, AbstractResourceProvider, AbstractResourceService, AbstractRichTextareaFieldComponent, AbstractRoleAssignment, AbstractSaveFilterComponent, AbstractSearchClauseComponent, AbstractSearchComponent, AbstractSearchConfigurationInputComponent, AbstractSearchModeComponent, AbstractSearchOperandInputComponent, AbstractSearchPredicateComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSortModeComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskPanelComponent, AbstractTaskView, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserFieldComponent, AbstractUserInviteComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AllowedNetsService, AllowedNetsServiceFactory, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BasicAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, ButtonFieldView, 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, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConsoleLogPublisher, CovalentModule, CurrencyModule, CustomDateAdapter, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DashboardCardTypes, DashboardMultiData, DashboardResourceService, DashboardSingleData, DataField, DataFieldsModule, DataFocusPolicy, DataFocusPolicyService, DataGroupAlignment, DatafieldMapKey, DateField, DateTimeField, DefaultSearchCategoriesModule, DelegateTaskService, DialogModule, DialogService, DynamicEnumerationField, DynamicNavigationRouteProviderService, EditableClausePredicate, EditableClausePredicateWithGenerators, EditableElementaryPredicate, EditablePredicate, EditablePredicateWithGenerator, ElementaryPredicate, EnumerationField, EnumerationFieldValidation, EnumerationFieldView, Equals, EqualsDate, ErrorSnackBarComponent, EventConstants, EventQueueService, EventService, 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, InRange, InRangeDate, IncrementingCounter, IsNull, LanguageService, 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, MultichoiceFieldView, NAE_ASYNC_RENDERING_CONFIGURATION, 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_OPTION_SELECTOR_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_SAVE_FILTER_COMPONENT, NAE_SEARCH_CATEGORIES, NAE_SEARCH_COMPONENT_CONFIGURATION, NAE_SIDE_MENU_CONTROL, NAE_SNACKBAR_HORIZONTAL_POSITION, NAE_SNACKBAR_VERTICAL_POSITION, NAE_TAB_DATA, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_USER_ASSIGN_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PetriNetResourceService, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProgressType, PromptDialogComponent, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBar, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SortableView, SpinnerOverlayService, Subgrid, SubjectTaskOperations, Substring, SuccessSnackBarComponent, TabView, TabbedCaseView, TabbedTaskView, TabbedVirtualScrollComponent, TaskAssignee, TaskContentService, TaskDataService, TaskElementType, TaskEndpoint, TaskEvent, TaskEventService, TaskHandlingService, TaskHeaderService, TaskMetaField, TaskNetAttributeAutocompleteCategory, TaskProcess, TaskRefField, TaskRequestStateService, TaskResourceService, TaskRole, TaskTask, TaskViewService, TemplateAppearance, TestCaseBaseFilterProvider, TestCaseViewAllowedNetsFactory, TestConfigurationService, TestMockDependenciesModule, TestNoAllowedNetsFactory, TestTaskBaseFilterProvider, TestTaskViewAllowedNetsFactory, TestViewService, TextAreaField, TextAreaHeight, TextField, TextFieldValidation, TextFieldView, TranslateLibModule, TreeCaseViewService, TreePetriflowIdentifiers, TreeTaskContentService, UnlimitedTaskContentService, User, UserAutocomplete, UserComparatorService, UserField, UserFilterConstants, UserFiltersService, UserInviteService, UserListService, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, ViewIdService, ViewService, ViewWithHeaders, 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, ɵ0$1 as ɵ0, ɵ1, TranslateInterceptor as ɵa, AbstractDataFieldComponent as ɵb, AbstractTimeInstanceFieldComponent as ɵc, AbstractTimeInstanceField as ɵe, AuthenticationInterceptor as ɵi, AnonymousAuthenticationInterceptor as ɵj, AbstractNavigationResizableDrawerComponent as ɵk, PanelWithImmediateData as ɵl, PanelWithHeaderBinding as ɵm, AbstractDialog as ɵn, AlertDialogModule as ɵq, ConfirmDialogModule as ɵr, PromptDialogModule as ɵs, AbstractHeaderModeComponent as ɵt, DataGroupLayoutType as ɵu };
32144
+ export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlay, AbstractBooleanFieldComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseView, AbstractCountCard, AbstractCurrencyNumberFieldComponent, AbstractCustomCard, AbstractDashboardContent, 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, AbstractI18nFieldComponent, AbstractI18nTextFieldComponent, AbstractIframeCard, AbstractImmediateFilterTextComponent, AbstractImmediateFilterTextContentComponent, AbstractImportNetComponent, AbstractInternalLinkComponent, AbstractLanguageSelectorComponent, AbstractLegalNoticeComponent, AbstractLoadFilterComponent, AbstractLoadingModeComponent, AbstractLoggerService, AbstractLoginFormComponent, AbstractLogoutShortcutComponent, AbstractMultichoiceFieldComponent, AbstractMultichoiceListFieldComponent, AbstractMultichoiceSelectFieldComponent, AbstractNavigationDrawerComponent, AbstractNavigationRailComponent, AbstractNavigationTreeComponent, AbstractNewCaseComponent, AbstractNumberErrorsComponent, AbstractNumberFieldComponent, AbstractOptionSelectorComponent, AbstractPanelComponent, AbstractPanelItemComponent, AbstractPasswordTextFieldComponent, AbstractProfileComponent, AbstractQuickPanelComponent, AbstractRegistrationComponent, AbstractRegistrationFormComponent, AbstractRemoveNodeComponent, AbstractResourceProvider, AbstractResourceService, AbstractRichTextareaFieldComponent, AbstractRoleAssignment, AbstractSaveFilterComponent, AbstractSearchClauseComponent, AbstractSearchComponent, AbstractSearchConfigurationInputComponent, AbstractSearchModeComponent, AbstractSearchOperandInputComponent, AbstractSearchPredicateComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSortModeComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskListPaginationComponent, AbstractTaskPanelComponent, AbstractTaskView, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserFieldComponent, AbstractUserInviteComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AllowedNetsService, AllowedNetsServiceFactory, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BasicAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, ButtonFieldView, 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, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConsoleLogPublisher, CovalentModule, CurrencyModule, CustomDateAdapter, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DashboardCardTypes, DashboardMultiData, DashboardResourceService, DashboardSingleData, DataField, DataFieldsModule, DataFocusPolicy, DataFocusPolicyService, DataGroupAlignment, DatafieldMapKey, DateField, DateTimeField, DefaultSearchCategoriesModule, DelegateTaskService, DialogModule, DialogService, DynamicEnumerationField, DynamicNavigationRouteProviderService, EditableClausePredicate, EditableClausePredicateWithGenerators, EditableElementaryPredicate, EditablePredicate, EditablePredicateWithGenerator, ElementaryPredicate, EnumerationField, EnumerationFieldValidation, EnumerationFieldView, Equals, EqualsDate, ErrorSnackBarComponent, EventConstants, EventQueueService, EventService, 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, InRange, InRangeDate, IncrementingCounter, IsNull, LanguageService, 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, MultichoiceFieldView, NAE_ASYNC_RENDERING_CONFIGURATION, 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_OPTION_SELECTOR_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_SAVE_FILTER_COMPONENT, NAE_SEARCH_CATEGORIES, NAE_SEARCH_COMPONENT_CONFIGURATION, NAE_SIDE_MENU_CONTROL, NAE_SNACKBAR_HORIZONTAL_POSITION, NAE_SNACKBAR_VERTICAL_POSITION, NAE_TAB_DATA, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_USER_ASSIGN_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PetriNetResourceService, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProgressType, PromptDialogComponent, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBar, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SortableView, SpinnerOverlayService, Subgrid, SubjectTaskOperations, Substring, SuccessSnackBarComponent, TabView, TabbedCaseView, TabbedTaskView, TabbedVirtualScrollComponent, TaskAssignee, TaskContentService, TaskDataService, TaskElementType, TaskEndpoint, TaskEvent, TaskEventService, TaskHandlingService, TaskHeaderService, TaskMetaField, TaskNetAttributeAutocompleteCategory, TaskProcess, TaskRefField, TaskRequestStateService, TaskResourceService, TaskRole, TaskTask, TaskViewService, TemplateAppearance, TestCaseBaseFilterProvider, TestCaseViewAllowedNetsFactory, TestConfigurationService, TestMockDependenciesModule, TestNoAllowedNetsFactory, TestTaskBaseFilterProvider, TestTaskViewAllowedNetsFactory, TestViewService, TextAreaField, TextAreaHeight, TextField, TextFieldValidation, TextFieldView, TranslateLibModule, TreeCaseViewService, TreePetriflowIdentifiers, TreeTaskContentService, UnlimitedTaskContentService, User, UserAutocomplete, UserComparatorService, UserField, UserFilterConstants, UserFiltersService, UserInviteService, UserListService, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, ViewIdService, ViewService, ViewWithHeaders, 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, ɵ0$1 as ɵ0, ɵ1, TranslateInterceptor as ɵa, AbstractDataFieldComponent as ɵb, AbstractTimeInstanceFieldComponent as ɵc, AbstractTimeInstanceField as ɵe, AuthenticationInterceptor as ɵi, AnonymousAuthenticationInterceptor as ɵj, AbstractNavigationResizableDrawerComponent as ɵk, PanelWithImmediateData as ɵl, PanelWithHeaderBinding as ɵm, AbstractDefaultTaskList as ɵn, AbstractDialog as ɵo, AlertDialogModule as ɵr, ConfirmDialogModule as ɵs, PromptDialogModule as ɵt, AbstractHeaderModeComponent as ɵu, AbstractDefaultCaseList as ɵv, DataGroupLayoutType as ɵw };
31953
32145
  //# sourceMappingURL=netgrif-components-core.js.map