@netgrif/components-core 6.4.0-beta.4 → 6.4.0-beta.5

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 (55) hide show
  1. package/esm2020/lib/actions/front-action.module.mjs +28 -0
  2. package/esm2020/lib/actions/model/front-action-definition.mjs +2 -0
  3. package/esm2020/lib/actions/model/router-action-definitions.mjs +8 -0
  4. package/esm2020/lib/actions/model/task-action-definitions.mjs +16 -0
  5. package/esm2020/lib/actions/public-api.mjs +6 -0
  6. package/esm2020/lib/actions/services/front-action.service.mjs +27 -0
  7. package/esm2020/lib/data-fields/data-fields.module.mjs +1 -1
  8. package/esm2020/lib/data-fields/models/changed-fields.mjs +1 -1
  9. package/esm2020/lib/event/model/event-constants.mjs +5 -1
  10. package/esm2020/lib/event/services/event.service.mjs +23 -1
  11. package/esm2020/lib/filter/user-filters.service.mjs +1 -1
  12. package/esm2020/lib/panel/task-panel/abstract-task-panel.component.mjs +5 -2
  13. package/esm2020/lib/panel/task-panel-single/abstract-single-task.component.mjs +11 -5
  14. package/esm2020/lib/public/factories/public-search-factory.mjs +15 -4
  15. package/esm2020/lib/registry/front-action-registry.service.mjs +34 -0
  16. package/esm2020/lib/registry/public-api.mjs +2 -1
  17. package/esm2020/lib/resources/interface/event-outcome.mjs +1 -1
  18. package/esm2020/lib/side-menu/content-components/injection-tokens.mjs +2 -1
  19. package/esm2020/lib/side-menu/content-components/public-api.mjs +2 -1
  20. package/esm2020/lib/side-menu/content-components/task-view/model/task-view-injection-data.mjs +2 -0
  21. package/esm2020/lib/task/services/task-data.service.mjs +11 -9
  22. package/esm2020/lib/task-content/services/single-task-content.service.mjs +4 -4
  23. package/esm2020/lib/task-content/services/task-content.service.mjs +6 -21
  24. package/esm2020/lib/task-content/services/unlimited-task-content.service.mjs +4 -4
  25. package/esm2020/lib/view/task-view/abstract-single-task-view.component.mjs +18 -34
  26. package/esm2020/public-api.mjs +2 -1
  27. package/fesm2015/netgrif-components-core.mjs +189 -73
  28. package/fesm2015/netgrif-components-core.mjs.map +1 -1
  29. package/fesm2020/netgrif-components-core.mjs +187 -72
  30. package/fesm2020/netgrif-components-core.mjs.map +1 -1
  31. package/lib/actions/front-action.module.d.ts +9 -0
  32. package/lib/actions/model/front-action-definition.d.ts +5 -0
  33. package/lib/actions/model/router-action-definitions.d.ts +2 -0
  34. package/lib/actions/model/task-action-definitions.d.ts +3 -0
  35. package/lib/actions/public-api.d.ts +5 -0
  36. package/lib/actions/services/front-action.service.d.ts +15 -0
  37. package/lib/data-fields/models/changed-fields.d.ts +7 -6
  38. package/lib/event/model/event-constants.d.ts +5 -1
  39. package/lib/event/services/event.service.d.ts +3 -0
  40. package/lib/panel/task-panel/abstract-task-panel.component.d.ts +2 -1
  41. package/lib/panel/task-panel-single/abstract-single-task.component.d.ts +5 -3
  42. package/lib/public/factories/public-search-factory.d.ts +3 -0
  43. package/lib/registry/front-action-registry.service.d.ts +13 -0
  44. package/lib/registry/public-api.d.ts +1 -0
  45. package/lib/resources/interface/event-outcome.d.ts +5 -0
  46. package/lib/side-menu/content-components/injection-tokens.d.ts +1 -0
  47. package/lib/side-menu/content-components/public-api.d.ts +1 -0
  48. package/lib/side-menu/content-components/task-view/model/task-view-injection-data.d.ts +4 -0
  49. package/lib/task/services/task-data.service.d.ts +4 -2
  50. package/lib/task-content/services/single-task-content.service.d.ts +2 -2
  51. package/lib/task-content/services/task-content.service.d.ts +6 -16
  52. package/lib/task-content/services/unlimited-task-content.service.d.ts +2 -2
  53. package/lib/view/task-view/abstract-single-task-view.component.d.ts +6 -5
  54. package/package.json +1 -1
  55. package/public-api.d.ts +1 -0
@@ -75,7 +75,7 @@ import moment from 'moment';
75
75
  import * as Buffer from 'buffer';
76
76
  import { ENTER, COMMA } from '@angular/cdk/keycodes';
77
77
  import * as i2$3 from '@angular/router';
78
- import { NavigationEnd } from '@angular/router';
78
+ import { NavigationEnd, Router } from '@angular/router';
79
79
  import * as i1$6 from '@angular/cdk/overlay';
80
80
  import { OverlayModule } from '@angular/cdk/overlay';
81
81
  import { orderBy } from 'natural-orderby';
@@ -7155,6 +7155,10 @@ var EventConstants;
7155
7155
  * Changed fields parameter of {@link SetDataEventOutcome}
7156
7156
  */
7157
7157
  EventConstants["CHANGED_FIELDS"] = "changedFields";
7158
+ /**
7159
+ * Front actions parameter of {@link EventOutcome}
7160
+ */
7161
+ EventConstants["FRONT_ACTIONS"] = "frontActions";
7158
7162
  })(EventConstants || (EventConstants = {}));
7159
7163
 
7160
7164
  class EventService {
@@ -7202,6 +7206,28 @@ class EventService {
7202
7206
  });
7203
7207
  return changedFieldsMap;
7204
7208
  }
7209
+ parseFrontActionsFromOutcomeTree(outcome) {
7210
+ const frontActions = [];
7211
+ if (!!outcome.outcomes && outcome.outcomes.length > 0) {
7212
+ return this.parseFrontActionsFromOutcomeTreeRecursive(outcome.outcomes, frontActions);
7213
+ }
7214
+ else
7215
+ return frontActions;
7216
+ }
7217
+ parseFrontActionsFromOutcomeTreeRecursive(outcomes, frontActions) {
7218
+ outcomes.forEach(childOutcome => {
7219
+ if (EventConstants.FRONT_ACTIONS in childOutcome) {
7220
+ const childFrontActions = childOutcome.frontActions;
7221
+ if (!!childFrontActions) {
7222
+ frontActions.push(...childFrontActions);
7223
+ }
7224
+ }
7225
+ if (!!childOutcome.outcomes && childOutcome.outcomes.length > 0) {
7226
+ this.parseFrontActionsFromOutcomeTreeRecursive(childOutcome.outcomes, frontActions);
7227
+ }
7228
+ });
7229
+ return frontActions;
7230
+ }
7205
7231
  }
7206
7232
  EventService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EventService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
7207
7233
  EventService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EventService, providedIn: 'root' });
@@ -15063,12 +15089,12 @@ class TaskContentService {
15063
15089
  * A snackbar will also be displayed to the user, informing them of the fact that the fields are invalid.
15064
15090
  * @returns whether the task is valid or not
15065
15091
  */
15066
- validateTaskData() {
15092
+ validateTaskData(taskId) {
15067
15093
  if (!this._task || !this._task.dataGroups) {
15068
15094
  return false;
15069
15095
  }
15070
- const valid = !this._task.dataGroups.some(group => group.fields.some(field => !field.valid && !field.disabled));
15071
- const validDisabled = !this._task.dataGroups.some(group => group.fields.some(field => !field.validRequired && field.disabled));
15096
+ const valid = !this._task.dataGroups.filter(group => !!group.parentTaskId && !!taskId ? group.parentTaskId === taskId : true).some(group => group.fields.some(field => !field.valid && !field.disabled));
15097
+ const validDisabled = !this._task.dataGroups.filter(group => !!group.parentTaskId && !!taskId ? group.parentTaskId === taskId : true).some(group => group.fields.some(field => !field.validRequired && field.disabled));
15072
15098
  if (!valid) {
15073
15099
  this._snackBarService.openErrorSnackBar(this._translate.instant('tasks.snackbar.invalidData'));
15074
15100
  this._task.dataGroups.forEach(group => group.fields.forEach(field => field.touch = true));
@@ -15158,7 +15184,6 @@ class TaskContentService {
15158
15184
  }
15159
15185
  });
15160
15186
  this.$shouldCreate.next(this._task.dataGroups);
15161
- this.performFrontendAction(frontendActions);
15162
15187
  }
15163
15188
  updateField(chFields, field, frontendActions) {
15164
15189
  if (this._fieldConverterService.resolveType(field) === FieldTypeResource.TASK_REF) {
@@ -15240,20 +15265,6 @@ class TaskContentService {
15240
15265
  field.update();
15241
15266
  });
15242
15267
  }
15243
- /**
15244
- * Performs the specific frontend action.
15245
- *
15246
- * A prototype implementation of frontend actions.
15247
- *
15248
- * The specifics are subject to change. It is very likely that this method will be moved to a different service.
15249
- *
15250
- * @param frontendAction the action that should be performed.
15251
- */
15252
- performFrontendAction(frontendAction) {
15253
- if (frontendAction && frontendAction.type === TaskContentService.VALIDATE_FRONTEND_ACTION) {
15254
- timer().subscribe(() => this.validateTaskData());
15255
- }
15256
- }
15257
15268
  isFieldInTask(taskId, changedField) {
15258
15269
  return !!taskId
15259
15270
  && !!this.taskFieldsIndex[taskId]
@@ -15275,7 +15286,7 @@ class TaskContentService {
15275
15286
  }
15276
15287
  }
15277
15288
  TaskContentService.FRONTEND_ACTIONS_KEY = '_frontend_actions';
15278
- TaskContentService.VALIDATE_FRONTEND_ACTION = 'validate';
15289
+ TaskContentService.ACTION = 'action';
15279
15290
  TaskContentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TaskContentService, deps: [{ token: FieldConverterService }, { token: SnackBarService }, { token: i1$2.TranslateService }, { token: LoggerService }], target: i0.ɵɵFactoryTarget.Injectable });
15280
15291
  TaskContentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TaskContentService });
15281
15292
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TaskContentService, decorators: [{
@@ -15676,12 +15687,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
15676
15687
  type: Injectable
15677
15688
  }], ctorParameters: function () { return []; } });
15678
15689
 
15690
+ class FrontActionRegistryService {
15691
+ constructor() {
15692
+ this._registry = new Map();
15693
+ }
15694
+ get registry() {
15695
+ return this._registry;
15696
+ }
15697
+ set registry(value) {
15698
+ this._registry = value;
15699
+ }
15700
+ register(key, fn) {
15701
+ this._registry.set(key, fn);
15702
+ }
15703
+ contains(key) {
15704
+ return this._registry.has(key);
15705
+ }
15706
+ get(key) {
15707
+ if (this._registry.has(key)) {
15708
+ return this._registry.get(key);
15709
+ }
15710
+ return undefined;
15711
+ }
15712
+ }
15713
+ FrontActionRegistryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionRegistryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
15714
+ FrontActionRegistryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionRegistryService, providedIn: 'root' });
15715
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionRegistryService, decorators: [{
15716
+ type: Injectable,
15717
+ args: [{
15718
+ providedIn: 'root'
15719
+ }]
15720
+ }], ctorParameters: function () { return []; } });
15721
+
15722
+ class FrontActionService {
15723
+ constructor(_injector, _frontActionRegistry, _log) {
15724
+ this._injector = _injector;
15725
+ this._frontActionRegistry = _frontActionRegistry;
15726
+ this._log = _log;
15727
+ }
15728
+ run(frontAction) {
15729
+ const fn = this._frontActionRegistry.get(frontAction.id);
15730
+ if (!fn) {
15731
+ this._log.error("Frontend action is not defined for ID [" + frontAction.id + "]");
15732
+ }
15733
+ fn.call(this._injector, frontAction);
15734
+ }
15735
+ runAll(frontAction) {
15736
+ frontAction.forEach(a => this.run(a));
15737
+ }
15738
+ }
15739
+ FrontActionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionService, deps: [{ token: i0.Injector }, { token: FrontActionRegistryService }, { token: LoggerService }], target: i0.ɵɵFactoryTarget.Injectable });
15740
+ FrontActionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionService });
15741
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionService, decorators: [{
15742
+ type: Injectable
15743
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: FrontActionRegistryService }, { type: LoggerService }]; } });
15744
+
15679
15745
  /**
15680
15746
  * Handles the loading and updating of data fields and behaviour of
15681
15747
  * a single Task object managed by a {@link TaskContentService} instance.
15682
15748
  */
15683
15749
  class TaskDataService extends TaskHandlingService {
15684
- constructor(_taskState, _translate, _log, _snackBar, _taskResourceService, _fieldConverterService, _taskEvent, _taskOperations, _selectedCaseService, _taskContentService, _afterActionFactory, _eventQueue, _userComparator, _eventService, _changedFieldsService) {
15750
+ constructor(_taskState, _translate, _log, _snackBar, _taskResourceService, _fieldConverterService, _taskEvent, _taskOperations, _selectedCaseService, _taskContentService, _afterActionFactory, _eventQueue, _userComparator, _eventService, _changedFieldsService, _frontActionService) {
15685
15751
  super(_taskContentService, _selectedCaseService);
15686
15752
  this._taskState = _taskState;
15687
15753
  this._translate = _translate;
@@ -15696,13 +15762,10 @@ class TaskDataService extends TaskHandlingService {
15696
15762
  this._userComparator = _userComparator;
15697
15763
  this._eventService = _eventService;
15698
15764
  this._changedFieldsService = _changedFieldsService;
15765
+ this._frontActionService = _frontActionService;
15699
15766
  this._updateSuccess$ = new Subject();
15700
15767
  this._dataReloadSubscription = this._taskContentService.taskDataReloadRequest$.subscribe(queuedFrontendAction => {
15701
- this.initializeTaskDataFields(this._afterActionFactory.create(success => {
15702
- if (success && queuedFrontendAction) {
15703
- this._taskContentService.performFrontendAction(queuedFrontendAction);
15704
- }
15705
- }), true);
15768
+ this.initializeTaskDataFields(new AfterAction(), true);
15706
15769
  });
15707
15770
  }
15708
15771
  ngOnDestroy() {
@@ -16077,9 +16140,13 @@ class TaskDataService extends TaskHandlingService {
16077
16140
  processSuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent, body) {
16078
16141
  const outcome = response.outcome;
16079
16142
  const changedFieldsMap = this._eventService.parseChangedFieldsFromOutcomeTree(outcome);
16143
+ const frontActions = this._eventService.parseFrontActionsFromOutcomeTree(outcome);
16080
16144
  if (Object.keys(changedFieldsMap).length > 0) {
16081
16145
  this._changedFieldsService.emitChangedFields(changedFieldsMap);
16082
16146
  }
16147
+ if (!!frontActions && frontActions.length > 0) {
16148
+ this._frontActionService.runAll(frontActions);
16149
+ }
16083
16150
  this.clearWaitingForResponseFlag(body);
16084
16151
  this._snackBar.openSuccessSnackBar(!!outcome.message ? outcome.message : this._translate.instant('tasks.snackbar.dataSaved'));
16085
16152
  this.updateStateInfo(afterAction, true, setTaskId);
@@ -16197,7 +16264,7 @@ class TaskDataService extends TaskHandlingService {
16197
16264
  });
16198
16265
  }
16199
16266
  }
16200
- TaskDataService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TaskDataService, deps: [{ token: TaskRequestStateService }, { token: i1$2.TranslateService }, { token: LoggerService }, { token: SnackBarService }, { token: TaskResourceService }, { token: FieldConverterService }, { token: TaskEventService }, { token: NAE_TASK_OPERATIONS }, { token: SelectedCaseService, optional: true }, { token: TaskContentService }, { token: CallChainService }, { token: EventQueueService }, { token: UserComparatorService }, { token: EventService }, { token: ChangedFieldsService }], target: i0.ɵɵFactoryTarget.Injectable });
16267
+ TaskDataService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TaskDataService, deps: [{ token: TaskRequestStateService }, { token: i1$2.TranslateService }, { token: LoggerService }, { token: SnackBarService }, { token: TaskResourceService }, { token: FieldConverterService }, { token: TaskEventService }, { token: NAE_TASK_OPERATIONS }, { token: SelectedCaseService, optional: true }, { token: TaskContentService }, { token: CallChainService }, { token: EventQueueService }, { token: UserComparatorService }, { token: EventService }, { token: ChangedFieldsService }, { token: FrontActionService }], target: i0.ɵɵFactoryTarget.Injectable });
16201
16268
  TaskDataService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TaskDataService });
16202
16269
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TaskDataService, decorators: [{
16203
16270
  type: Injectable
@@ -16207,7 +16274,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
16207
16274
  args: [NAE_TASK_OPERATIONS]
16208
16275
  }] }, { type: SelectedCaseService, decorators: [{
16209
16276
  type: Optional
16210
- }] }, { type: TaskContentService }, { type: CallChainService }, { type: EventQueueService }, { type: UserComparatorService }, { type: EventService }, { type: ChangedFieldsService }];
16277
+ }] }, { type: TaskContentService }, { type: CallChainService }, { type: EventQueueService }, { type: UserComparatorService }, { type: EventService }, { type: ChangedFieldsService }, { type: FrontActionService }];
16211
16278
  } });
16212
16279
 
16213
16280
  class AbstractTaskRefDashboardTileComponent {
@@ -19088,6 +19155,7 @@ const NAE_SAVE_FILTER_COMPONENT = new InjectionToken('NaeSaveFilterComponent');
19088
19155
  const NAE_LOAD_FILTER_COMPONENT = new InjectionToken('NaeLoadFilterComponent');
19089
19156
  const NAE_USER_IMPERSONATE_COMPONENT = new InjectionToken('NaeUserImpersonateComponent');
19090
19157
  const NAE_ADMIN_IMPERSONATE_COMPONENT = new InjectionToken('NaeAdminImpersonateComponent');
19158
+ const NAE_TASK_VIEW_COMPONENT = new InjectionToken('NaeTaskViewComponent');
19091
19159
 
19092
19160
  const NAE_SIDE_MENU_CONTROL = new InjectionToken('NaeSideMenuControl');
19093
19161
 
@@ -20043,6 +20111,7 @@ class AbstractTaskPanelComponent extends AbstractPanelWithImmediateDataComponent
20043
20111
  this.responsiveBody = true;
20044
20112
  this.preventCollapse = false;
20045
20113
  this.hidePanelHeader = false;
20114
+ this.hideActionRow = false;
20046
20115
  this.showMoreMenu = true;
20047
20116
  this.thisContext = {
20048
20117
  canAssign: () => this.canAssign(),
@@ -20312,7 +20381,7 @@ class AbstractTaskPanelComponent extends AbstractPanelWithImmediateDataComponent
20312
20381
  }
20313
20382
  }
20314
20383
  AbstractTaskPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskPanelComponent, deps: [{ token: TaskContentService }, { token: LoggerService }, { token: TaskViewService }, { token: PaperViewService }, { token: TaskEventService }, { token: AssignTaskService }, { token: DelegateTaskService }, { token: CancelTaskService }, { token: FinishTaskService }, { token: TaskRequestStateService }, { token: TaskDataService }, { token: AssignPolicyService }, { token: FinishPolicyService }, { token: CallChainService }, { token: SubjectTaskOperations }, { token: NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, optional: true }, { token: i1$2.TranslateService }, { token: i5.CurrencyPipe }, { token: ChangedFieldsService }, { token: PermissionService }, { token: OverflowService, optional: true }, { token: NAE_TASK_FORCE_OPEN, optional: true }], target: i0.ɵɵFactoryTarget.Component });
20315
- AbstractTaskPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTaskPanelComponent, selector: "ncc-abstract-legal-notice", inputs: { taskListVirtualScroll: "taskListVirtualScroll", panelContentComponent: "panelContentComponent", selectedHeaders$: "selectedHeaders$", first: "first", last: "last", responsiveBody: "responsiveBody", preventCollapse: "preventCollapse", hidePanelHeader: "hidePanelHeader", actionButtonTemplates: "actionButtonTemplates", actionRowJustifyContent: "actionRowJustifyContent", showMoreMenu: "showMoreMenu", forceLoadDataOnOpen: "forceLoadDataOnOpen", textEllipsis: "textEllipsis", taskPanelData: "taskPanelData" }, outputs: { taskEvent: "taskEvent", panelRefOutput: "panelRefOutput" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
20384
+ AbstractTaskPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTaskPanelComponent, selector: "ncc-abstract-legal-notice", inputs: { taskListVirtualScroll: "taskListVirtualScroll", panelContentComponent: "panelContentComponent", selectedHeaders$: "selectedHeaders$", first: "first", last: "last", responsiveBody: "responsiveBody", preventCollapse: "preventCollapse", hidePanelHeader: "hidePanelHeader", hideActionRow: "hideActionRow", actionButtonTemplates: "actionButtonTemplates", actionRowJustifyContent: "actionRowJustifyContent", showMoreMenu: "showMoreMenu", forceLoadDataOnOpen: "forceLoadDataOnOpen", textEllipsis: "textEllipsis", taskPanelData: "taskPanelData" }, outputs: { taskEvent: "taskEvent", panelRefOutput: "panelRefOutput" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
20316
20385
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskPanelComponent, decorators: [{
20317
20386
  type: Component,
20318
20387
  args: [{
@@ -20349,6 +20418,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
20349
20418
  type: Input
20350
20419
  }], hidePanelHeader: [{
20351
20420
  type: Input
20421
+ }], hideActionRow: [{
20422
+ type: Input
20352
20423
  }], actionButtonTemplates: [{
20353
20424
  type: Input
20354
20425
  }], actionRowJustifyContent: [{
@@ -21038,12 +21109,13 @@ class AbstractSingleTaskComponent {
21038
21109
  this.textEllipsis = false;
21039
21110
  this.preventCollapse = true;
21040
21111
  this.hidePanelHeader = true;
21112
+ this.hideActionRow = true;
21113
+ this.showPageHeader = true;
21114
+ this.showPageFooter = true;
21041
21115
  this.taskEvent = new EventEmitter();
21042
- this._unsubscribe$ = new Subject();
21043
21116
  }
21044
21117
  ngOnDestroy() {
21045
21118
  this.taskEvent.complete();
21046
- this._unsubscribe$.complete();
21047
21119
  }
21048
21120
  setPanelRef(panelRef) {
21049
21121
  this._taskPanelRef = panelRef;
@@ -21060,7 +21132,7 @@ class AbstractSingleTaskComponent {
21060
21132
  }
21061
21133
  }
21062
21134
  AbstractSingleTaskComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskComponent, deps: [{ token: LoggerService }, { token: i2$3.ActivatedRoute }, { token: NAE_TAB_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
21063
- AbstractSingleTaskComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSingleTaskComponent, selector: "ncc-abstract-single-task", inputs: { task$: "task$", loading$: "loading$", selectedHeaders$: "selectedHeaders$", responsiveBody: "responsiveBody", forceLoadDataOnOpen: "forceLoadDataOnOpen", textEllipsis: "textEllipsis", preventCollapse: "preventCollapse", hidePanelHeader: "hidePanelHeader", noTaskSection: "noTaskSection", pageHeader: "pageHeader", pageFooter: "pageFooter", headerTitle: "headerTitle", footerText: "footerText", actionButtonTemplates: "actionButtonTemplates", actionRowJustifyContent: "actionRowJustifyContent" }, outputs: { taskEvent: "taskEvent" }, ngImport: i0, template: '', isInline: true });
21135
+ AbstractSingleTaskComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSingleTaskComponent, selector: "ncc-abstract-single-task", inputs: { task$: "task$", loading$: "loading$", selectedHeaders$: "selectedHeaders$", responsiveBody: "responsiveBody", forceLoadDataOnOpen: "forceLoadDataOnOpen", textEllipsis: "textEllipsis", preventCollapse: "preventCollapse", hidePanelHeader: "hidePanelHeader", hideActionRow: "hideActionRow", noTaskSection: "noTaskSection", pageHeader: "pageHeader", pageFooter: "pageFooter", showPageHeader: "showPageHeader", showPageFooter: "showPageFooter", headerTitle: "headerTitle", footerText: "footerText", actionButtonTemplates: "actionButtonTemplates", actionRowJustifyContent: "actionRowJustifyContent" }, outputs: { taskEvent: "taskEvent" }, ngImport: i0, template: '', isInline: true });
21064
21136
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskComponent, decorators: [{
21065
21137
  type: Component,
21066
21138
  args: [{
@@ -21090,12 +21162,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
21090
21162
  type: Input
21091
21163
  }], hidePanelHeader: [{
21092
21164
  type: Input
21165
+ }], hideActionRow: [{
21166
+ type: Input
21093
21167
  }], noTaskSection: [{
21094
21168
  type: Input
21095
21169
  }], pageHeader: [{
21096
21170
  type: Input
21097
21171
  }], pageFooter: [{
21098
21172
  type: Input
21173
+ }], showPageHeader: [{
21174
+ type: Input
21175
+ }], showPageFooter: [{
21176
+ type: Input
21099
21177
  }], headerTitle: [{
21100
21178
  type: Input
21101
21179
  }], footerText: [{
@@ -30411,31 +30489,18 @@ class TaskConst {
30411
30489
  }
30412
30490
  TaskConst.TRANSITION_ID = 'transitionId';
30413
30491
  class AbstractSingleTaskViewComponent extends AbstractViewWithHeadersComponent {
30414
- constructor(taskViewService, activatedRoute, async) {
30492
+ constructor(taskViewService, activatedRoute, baseFilter) {
30415
30493
  super(taskViewService, activatedRoute);
30416
30494
  this.taskViewService = taskViewService;
30495
+ this.baseFilter = baseFilter;
30417
30496
  this.initiallyExpanded = true;
30418
30497
  this.preventCollapse = true;
30419
30498
  this.noTaskPresent = new EventEmitter();
30420
- this.taskPanelData = new ReplaySubject(1);
30421
- this.subRoute = this._activatedRoute.paramMap.subscribe(paramMap => {
30422
- var _a;
30423
- if (!!((_a = paramMap === null || paramMap === void 0 ? void 0 : paramMap['params']) === null || _a === void 0 ? void 0 : _a[TaskConst.TRANSITION_ID])) {
30424
- this.transitionId = paramMap['params'][TaskConst.TRANSITION_ID];
30425
- this.subPanelData = this.taskViewService.tasks$.subscribe(tasks => {
30426
- if (!!tasks && tasks.length > 0) {
30427
- this.taskPanelData.next(this.resolveTransitionTask(tasks));
30428
- }
30429
- else {
30430
- const isLoading = async.transform(this.loading$);
30431
- if (!isLoading) {
30432
- this.taskPanelData.next(undefined);
30433
- this.noTaskPresent.next();
30434
- }
30435
- }
30436
- });
30499
+ this.taskPanelData = this.taskViewService.tasks$.pipe(map(tasks => tasks.find(panelData => this.isTaskMatchingFilter(panelData, baseFilter.filter.getRequestBody())))).pipe(tap(panelData => {
30500
+ if (!!panelData) {
30501
+ panelData.initiallyExpanded = true;
30437
30502
  }
30438
- });
30503
+ }));
30439
30504
  this.loading$ = this.taskViewService.loading$;
30440
30505
  }
30441
30506
  ngOnDestroy() {
@@ -30446,22 +30511,15 @@ class AbstractSingleTaskViewComponent extends AbstractViewWithHeadersComponent {
30446
30511
  if (!!this.subPanelData) {
30447
30512
  this.subPanelData.unsubscribe();
30448
30513
  }
30449
- if (!!this.taskPanelData) {
30450
- this.taskPanelData.complete();
30451
- }
30452
30514
  }
30453
30515
  get task$() {
30454
- return this.taskPanelData.asObservable();
30516
+ return this.taskPanelData;
30455
30517
  }
30456
- resolveTransitionTask(tasks) {
30457
- const transitionTask = tasks.find(t => t.task.transitionId === this.transitionId);
30458
- if (!!transitionTask) {
30459
- transitionTask.initiallyExpanded = transitionTask.task.finishDate === undefined;
30460
- }
30461
- return transitionTask;
30518
+ isTaskMatchingFilter(panelData, taskSearchRequestBody) {
30519
+ return panelData.task.stringId === taskSearchRequestBody.stringId || panelData.task.transitionId === taskSearchRequestBody.transitionId;
30462
30520
  }
30463
30521
  }
30464
- AbstractSingleTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$3.ActivatedRoute }, { token: i5.AsyncPipe }], target: i0.ɵɵFactoryTarget.Component });
30522
+ AbstractSingleTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$3.ActivatedRoute }, { token: NAE_BASE_FILTER }], target: i0.ɵɵFactoryTarget.Component });
30465
30523
  AbstractSingleTaskViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSingleTaskViewComponent, selector: "ncc-abstract-single-task-view", inputs: { initiallyExpanded: "initiallyExpanded", preventCollapse: "preventCollapse" }, outputs: { noTaskPresent: "noTaskPresent" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
30466
30524
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskViewComponent, decorators: [{
30467
30525
  type: Component,
@@ -30469,7 +30527,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
30469
30527
  selector: 'ncc-abstract-single-task-view',
30470
30528
  template: ''
30471
30529
  }]
30472
- }], ctorParameters: function () { return [{ type: TaskViewService }, { type: i2$3.ActivatedRoute }, { type: i5.AsyncPipe }]; }, propDecorators: { initiallyExpanded: [{
30530
+ }], ctorParameters: function () {
30531
+ return [{ type: TaskViewService }, { type: i2$3.ActivatedRoute }, { type: undefined, decorators: [{
30532
+ type: Inject,
30533
+ args: [NAE_BASE_FILTER]
30534
+ }] }];
30535
+ }, propDecorators: { initiallyExpanded: [{
30473
30536
  type: Input
30474
30537
  }], preventCollapse: [{
30475
30538
  type: Input
@@ -33810,7 +33873,7 @@ class MockProfileService {
33810
33873
  * If you want to use an unlimited number of calls use {@link UnlimitedTaskContentService} instead.
33811
33874
  */
33812
33875
  class SingleTaskContentService extends TaskContentService {
33813
- constructor(_fieldConverterService, _snackBarService, _translate, _logger) {
33876
+ constructor(_fieldConverterService, _snackBarService, _translate, _logger, _injector) {
33814
33877
  super(_fieldConverterService, _snackBarService, _translate, _logger);
33815
33878
  this._task$ = new ReplaySubject(1);
33816
33879
  }
@@ -33852,11 +33915,11 @@ class SingleTaskContentService extends TaskContentService {
33852
33915
  }
33853
33916
  }
33854
33917
  }
33855
- SingleTaskContentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SingleTaskContentService, deps: [{ token: FieldConverterService }, { token: SnackBarService }, { token: i1$2.TranslateService }, { token: LoggerService }], target: i0.ɵɵFactoryTarget.Injectable });
33918
+ SingleTaskContentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SingleTaskContentService, deps: [{ token: FieldConverterService }, { token: SnackBarService }, { token: i1$2.TranslateService }, { token: LoggerService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
33856
33919
  SingleTaskContentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SingleTaskContentService });
33857
33920
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SingleTaskContentService, decorators: [{
33858
33921
  type: Injectable
33859
- }], ctorParameters: function () { return [{ type: FieldConverterService }, { type: SnackBarService }, { type: i1$2.TranslateService }, { type: LoggerService }]; } });
33922
+ }], ctorParameters: function () { return [{ type: FieldConverterService }, { type: SnackBarService }, { type: i1$2.TranslateService }, { type: LoggerService }, { type: i0.Injector }]; } });
33860
33923
 
33861
33924
  /**
33862
33925
  * Provides an implementation of the {@link TaskContentService} abstract class that allows
@@ -33865,7 +33928,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
33865
33928
  * If you want to limit the number of calls to 1 use {@link SingleTaskContentService} instead.
33866
33929
  */
33867
33930
  class UnlimitedTaskContentService extends TaskContentService {
33868
- constructor(_fieldConverterService, _snackBarService, _translate, _logger) {
33931
+ constructor(_fieldConverterService, _snackBarService, _translate, _logger, _injector) {
33869
33932
  super(_fieldConverterService, _snackBarService, _translate, _logger);
33870
33933
  this._task$ = new ReplaySubject(1);
33871
33934
  }
@@ -33899,11 +33962,11 @@ class UnlimitedTaskContentService extends TaskContentService {
33899
33962
  this._task$.complete();
33900
33963
  }
33901
33964
  }
33902
- UnlimitedTaskContentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: UnlimitedTaskContentService, deps: [{ token: FieldConverterService }, { token: SnackBarService }, { token: i1$2.TranslateService }, { token: LoggerService }], target: i0.ɵɵFactoryTarget.Injectable });
33965
+ UnlimitedTaskContentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: UnlimitedTaskContentService, deps: [{ token: FieldConverterService }, { token: SnackBarService }, { token: i1$2.TranslateService }, { token: LoggerService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
33903
33966
  UnlimitedTaskContentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: UnlimitedTaskContentService });
33904
33967
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: UnlimitedTaskContentService, decorators: [{
33905
33968
  type: Injectable
33906
- }], ctorParameters: function () { return [{ type: FieldConverterService }, { type: SnackBarService }, { type: i1$2.TranslateService }, { type: LoggerService }]; } });
33969
+ }], ctorParameters: function () { return [{ type: FieldConverterService }, { type: SnackBarService }, { type: i1$2.TranslateService }, { type: LoggerService }, { type: i0.Injector }]; } });
33907
33970
 
33908
33971
  /**
33909
33972
  * Contains types of elements that are used to construct task content, but are not data fields themselves.
@@ -35114,13 +35177,24 @@ const getNetAndCreateCase = (router, route, process, caseResourceService, snackB
35114
35177
  });
35115
35178
  };
35116
35179
 
35180
+ const CASE_ID = "caseId";
35181
+ const PETRI_NET_ID = "petriNetId";
35182
+ const TRANSITION_ID = "transitionId";
35117
35183
  const publicBaseFilterFactory = (router, route, process, caseResourceService, snackBarService, translate, publicTaskLoadingService) => {
35118
- if (route.snapshot.paramMap.get('caseId') === null && route.snapshot.paramMap.get('petriNetId') !== null) {
35184
+ const caseId = route.snapshot.paramMap.get(CASE_ID);
35185
+ const petriNetId = route.snapshot.paramMap.get(PETRI_NET_ID);
35186
+ const transId = route.snapshot.paramMap.get(TRANSITION_ID);
35187
+ if (caseId === null && petriNetId !== null) {
35119
35188
  getNetAndCreateCase(router, route, process, caseResourceService, snackBarService, translate, publicTaskLoadingService);
35120
35189
  }
35121
- else if (route.snapshot.paramMap.get('caseId') !== null) {
35190
+ else if (caseId !== null && transId !== null) {
35122
35191
  return {
35123
- filter: new SimpleFilter('', FilterType.TASK, { case: { id: route.snapshot.paramMap.get('caseId') } })
35192
+ filter: new SimpleFilter('', FilterType.TASK, { case: { id: caseId }, transitionId: transId })
35193
+ };
35194
+ }
35195
+ else if (caseId !== null) {
35196
+ return {
35197
+ filter: new SimpleFilter('', FilterType.TASK, { case: { id: caseId } })
35124
35198
  };
35125
35199
  }
35126
35200
  return {
@@ -35207,6 +35281,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
35207
35281
 
35208
35282
  /* MODELS */
35209
35283
 
35284
+ const redirectAction = {
35285
+ call: (injector, frontAction) => {
35286
+ const router = injector.get(Router);
35287
+ router.navigate([frontAction.args[0]]);
35288
+ }
35289
+ };
35290
+
35291
+ const validateTaskAction = {
35292
+ call: (injector, frontAction) => {
35293
+ const taskContentService = injector.get(TaskContentService);
35294
+ taskContentService.validateTaskData(frontAction.args[0]);
35295
+ }
35296
+ };
35297
+ const reloadTaskAction = {
35298
+ call: (injector, frontAction) => {
35299
+ const taskDataService = injector.get(TaskDataService);
35300
+ taskDataService.initializeTaskDataFields(new AfterAction(), true);
35301
+ }
35302
+ };
35303
+
35304
+ class FrontActionModule {
35305
+ constructor(frontActionsRegistry) {
35306
+ frontActionsRegistry.register('redirect', redirectAction);
35307
+ frontActionsRegistry.register('validate', validateTaskAction);
35308
+ frontActionsRegistry.register('reloadTask', reloadTaskAction);
35309
+ }
35310
+ }
35311
+ FrontActionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionModule, deps: [{ token: FrontActionRegistryService }], target: i0.ɵɵFactoryTarget.NgModule });
35312
+ FrontActionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionModule, imports: [CommonModule] });
35313
+ FrontActionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionModule, imports: [[
35314
+ CommonModule
35315
+ ]] });
35316
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FrontActionModule, decorators: [{
35317
+ type: NgModule,
35318
+ args: [{
35319
+ declarations: [],
35320
+ imports: [
35321
+ CommonModule
35322
+ ]
35323
+ }]
35324
+ }], ctorParameters: function () { return [{ type: FrontActionRegistryService }]; } });
35325
+
35210
35326
  /*
35211
35327
  * Public API Surface of netgrif-components-core
35212
35328
  */
@@ -35215,5 +35331,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
35215
35331
  * Generated bundle index. Do not edit.
35216
35332
  */
35217
35333
 
35218
- export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBaseDataFieldComponent, AbstractBooleanDefaultFieldComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonDefaultFieldComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseRefDefaultComponent, AbstractCaseViewComponent, AbstractChangePasswordComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardBarChartTextFieldComponent, AbstractDashboardContentComponent, AbstractDashboardIframeTextFieldComponent, AbstractDashboardLineChartTextFieldComponent, AbstractDashboardPieChartTextFieldComponent, AbstractDashboardPortalTextFieldComponent, AbstractDashboardTextFieldComponent, AbstractDataFieldTemplateComponent, AbstractDateDefaultFieldComponent, AbstractDateFieldComponent, AbstractDateTimeDefaultFieldComponent, AbstractDateTimeFieldComponent, AbstractDefaultNumberFieldComponent, AbstractEditModeComponent, AbstractEmailSubmissionFormComponent, AbstractEnumerationAutocompleteDynamicFieldComponent, AbstractEnumerationAutocompleteSelectFieldComponent, AbstractEnumerationFieldComponent, AbstractEnumerationIconFieldComponent, AbstractEnumerationListFieldComponent, AbstractEnumerationSelectFieldComponent, AbstractEnumerationStepperFieldComponent, AbstractFieldComponentResolverComponent, AbstractFileDefaultFieldComponent, AbstractFileFieldComponent, AbstractFileListDefaultFieldComponent, AbstractFileListFieldComponent, AbstractFilterDefaultFieldComponent, AbstractFilterFieldComponent, AbstractFilterFieldContentComponent, AbstractFilterFieldTabViewComponent, AbstractFilterFieldTabViewContentComponent, AbstractFilterSelectorComponent, AbstractFilterSelectorListItemComponent, AbstractForgottenPasswordComponent, AbstractFulltextSearchComponent, AbstractGroupNavigationComponentResolverComponent, AbstractHeaderComponent, AbstractHeaderService, AbstractHtmlTextareaFieldComponent, AbstractI18nDividerFieldComponent, AbstractI18nErrorsComponent, AbstractI18nFieldComponent, AbstractI18nTextFieldComponent, AbstractIframeCardComponent, AbstractImmediateFilterTextComponent, AbstractImmediateFilterTextContentComponent, AbstractImportNetComponent, AbstractInternalLinkComponent, AbstractLanguageSelectorComponent, AbstractLdapGroupRoleAssignmentComponent, AbstractLegalNoticeComponent, AbstractLoadFilterComponent, AbstractLoadingModeComponent, AbstractLoggerService, AbstractLoginFormComponent, AbstractLogoutShortcutComponent, AbstractMultiUserAssignComponent, AbstractMultiUserAssignItemComponent, AbstractMultiUserAssignListComponent, AbstractMultichoiceAutocompleteFieldComponentComponent, 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, AbstractSessionIdleComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSingleTaskComponent, AbstractSingleTaskViewComponent, AbstractSortModeComponent, AbstractSortableViewComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTabbedCaseViewComponent, AbstractTabbedTaskViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskListPaginationComponent, AbstractTaskPanelComponent, AbstractTaskRefDashboardFieldComponent, AbstractTaskRefDashboardTileComponent, AbstractTaskRefFieldComponent, AbstractTaskRefListFieldComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserDefaultFieldComponent, AbstractUserFieldComponent, AbstractUserImpersonateComponent, AbstractUserInviteComponent, AbstractUserListDefaultFieldComponent, AbstractUserListFieldComponent, AbstractViewWithHeadersComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, AccessService, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AlertDialogModule, AllowedNetsService, AllowedNetsServiceFactory, AnonymousAuthenticationInterceptor, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationInterceptor, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BasicAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, CONFIRM_PASSWORD, CallChainService, CancelTaskService, CaseAuthor, CaseCreationDate, CaseCreationDateTime, CaseDataset, CaseHeaderService, CaseListFontColorService, CaseMetaField, CaseNetAttributeAutocompleteCategory, CaseProcess, CaseRefField, CaseResourceService, CaseRole, CaseSearch, CaseSimpleDataset, CaseStringId, CaseTask, CaseTitle, CaseTreeNode, CaseTreeService, CaseViewService, CaseVisualId, Categories, Category, CategoryFactory, CategoryResolverService, ChangedFieldsService, ClausePredicate, ComponentPrefixes, ComponentRegistryService, ConfigParams, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConfirmDialogModule, ConsoleLogPublisher, ContainsPipe, CovalentModule, CurrencyModule, CustomDateAdapter, DATA_FIELD_PORTAL_DATA, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DEFAULT, DEFAULT_LANGUAGE_CODE, Dashboard, DashboardCardTypes, DashboardMultiData, DashboardResourceService, DashboardSingleData, DataField, DataFieldsModule, DataFocusPolicy, DataFocusPolicyService, DataGroupAlignment, DatafieldMapKey, DateField, DateTimeField, DefaultSearchCategoriesModule, DelegateTaskService, DialogModule, DialogService, DynamicEnumerationField, DynamicNavigationRouteProviderService, EditableClausePredicate, EditableClausePredicateWithGenerators, EditableElementaryPredicate, EditablePredicate, EditablePredicateWithGenerator, ElementaryPredicate, EnumerationAutocompleteFilterProperty, EnumerationField, EnumerationFieldValidation, Equals, EqualsDate, ErrorSnackBarComponent, EventConstants, EventQueueService, EventService, FieldAlignment, FieldConverterService, FieldTypeResource, FileField, FileListField, FileListFieldValidation, FilePreviewType, FileUploadMIMEType, FileUploadModel, Filter, FilterExtractionService, FilterField, FilterRepository, FilterType, FilteredArray, FinishPolicy, FinishPolicyService, FinishTaskService, GenericSnackBarComponent, GroupGuardService, GroupNavigationComponentResolverService, GroupNavigationConstants, HeaderColumn, HeaderColumnType, HeaderMode, HeaderSearchService, HeaderType, HttpLoaderFactory, I18nField, I18nFieldValidation, ImpersonationService, ImpersonationUserListService, ImpersonationUserResourceService, ImpersonationUserSelectService, InRange, InRangeDate, IncrementingCounter, IsEmptyPipe, IsNonEmptyPipe, IsNull, LanguageIconsService, LanguageService, LdapGroupListService, LdapGroupResourceService, LessThan, LessThanDate, LessThanDateTime, LetContext, LetDirective, Like, LoadingEmitter, LoadingWithFilterEmitter, LocalStorageLogPublisher, LogEntry, LogLevel, LogPublisher, LogPublisherService, LoggerService, MENU_IDENTIFIERS, MaterialAppearance, MaterialModule, MergeOperator, MergedFilter, MockAuthenticationMethodService, MockAuthenticationService, MockEndpoint, MockProfileService, MockSignUpService, MockUserPreferenceService, MockUserResourceService, MockUserService, MoreThan, MoreThanDate, MoreThanDateTime, MultichoiceAutocompleteFilterProperty, MultichoiceField, NAE_ADMIN_IMPERSONATE_COMPONENT, NAE_ADMIN_IMPERSONATE_DIALOG_COMPONENT, NAE_ASYNC_RENDERING_CONFIGURATION, NAE_AUTOSWITCH_TAB_TOKEN, NAE_BASE_FILTER, NAE_CASE_REF_CREATE_CASE, NAE_CASE_REF_SEARCH, NAE_DEFAULT_CASE_SEARCH_CATEGORIES, NAE_DEFAULT_HEADERS, NAE_DEFAULT_MIN_PASSWORD_LENGTH, NAE_DEFAULT_TASK_SEARCH_CATEGORIES, NAE_FILES_UPLOAD_COMPONENT, NAE_FILES_UPLOAD_DIALOG_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_LOAD_FILTER_DIALOG_COMPONENT, NAE_MIN_PASSWORD_LENGTH, NAE_NAVIGATION_ITEM_TASK_DATA, NAE_NET_ALL_VERSIONS, NAE_NET_VERSION_VISIBLE, NAE_NEW_CASE_COMPONENT, NAE_NEW_CASE_CONFIGURATION, NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, NAE_NEW_CASE_DIALOG_COMPONENT, NAE_OPEN_EXISTING_TAB, NAE_OPTION_SELECTOR_COMPONENT, NAE_OPTION_SELECTOR_DIALOG_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_ROUTING_CONFIGURATION_PATH, NAE_SAVE_FILTER_COMPONENT, NAE_SAVE_FILTER_DIALOG_COMPONENT, NAE_SEARCH_CATEGORIES, NAE_SEARCH_COMPONENT_CONFIGURATION, NAE_SIDE_MENU_CONTROL, NAE_SNACKBAR_HORIZONTAL_POSITION, NAE_SNACKBAR_VERTICAL_POSITION, NAE_TAB_DATA, NAE_TASK_FORCE_OPEN, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_URI_NODE_CASES_PAGE_SIZE, NAE_USER_ASSIGN_COMPONENT, NAE_USER_ASSIGN_DIALOG_COMPONENT, NAE_USER_IMPERSONATE_COMPONENT, NAE_USER_IMPERSONATE_DIALOG_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, OLD_PASSWORD, OpenedTab, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PASSWORD, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PermissionType, PetriNetResourceService, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProfileModule, ProfileService, ProgressType, PromptDialogComponent, PromptDialogModule, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskLoadingService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentLdapGroupService, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SETTINGS_TRANSITION_ID, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionIdleTimerService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBarComponent, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SpinnerOverlayService, 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, UserListValue, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, UtilityModule, ViewIdService, ViewService, WarningSnackBarComponent, WorkflowHeaderService, WorkflowMetaField, WorkflowViewService, WrappedBoolean, arrayToObservable, authenticationServiceFactory, clearTimeInformation, configureCategory, createMockCase, createMockCaseOutcome, createMockDataGroup, createMockDependencies, createMockField, createMockGetDataOutcome, createMockImmediateData, createMockNet, createMockPage, createMockPetriNetOutcome, createMockSetDataOutcome, createMockTask, createMockTaskOutcome, createSortParam, createTaskEventNotification, decodeBase64, defaultCaseSearchCategoriesFactory, defaultTaskSearchCategoriesFactory, destroySubscription, encodeBase64, extractFieldValueFromData, extractFilterFieldFromData, extractFilterFromData, extractFilterFromFilterField, extractIconAndTitle, extractRoles, extractSearchTypeFromData, getField, getFieldFromDataGroups, getFieldIndex, getFieldIndexFromDataGroups, getImmediateData, getNetAndCreateCase, groupNavigationViewIdSegmentFactory, hasContent, loadAllPages, mockUserAutocompleteValue, navigationItemCaseViewDefaultHeadersFactory, navigationItemTaskAllowedNetsServiceFactory, navigationItemTaskCategoryFactory, navigationItemTaskFilterFactory, navigationItemTaskViewDefaultHeadersFactory, ofVoid, processMessageResponse, publicBaseFilterFactory, publicFactoryResolver, refreshTree, tabbedAllowedNetsServiceFactory, tabbedTaskViewConfigurationFactory, toMoment };
35334
+ export { AbstractAddChildNodeComponent, AbstractAdvancedSearchComponent, AbstractAuthenticationOverlayComponent, AbstractBaseDataFieldComponent, AbstractBooleanDefaultFieldComponent, AbstractBooleanFieldComponent, AbstractBreadcrumbsComponent, AbstractButtonDefaultFieldComponent, AbstractButtonFieldComponent, AbstractCaseListComponent, AbstractCaseListPaginatorComponent, AbstractCasePanelComponent, AbstractCaseRefDefaultComponent, AbstractCaseViewComponent, AbstractChangePasswordComponent, AbstractCountCardComponent, AbstractCurrencyNumberFieldComponent, AbstractCustomCardComponent, AbstractDashboardBarChartTextFieldComponent, AbstractDashboardContentComponent, AbstractDashboardIframeTextFieldComponent, AbstractDashboardLineChartTextFieldComponent, AbstractDashboardPieChartTextFieldComponent, AbstractDashboardPortalTextFieldComponent, AbstractDashboardTextFieldComponent, AbstractDataFieldTemplateComponent, AbstractDateDefaultFieldComponent, AbstractDateFieldComponent, AbstractDateTimeDefaultFieldComponent, AbstractDateTimeFieldComponent, AbstractDefaultNumberFieldComponent, AbstractEditModeComponent, AbstractEmailSubmissionFormComponent, AbstractEnumerationAutocompleteDynamicFieldComponent, AbstractEnumerationAutocompleteSelectFieldComponent, AbstractEnumerationFieldComponent, AbstractEnumerationIconFieldComponent, AbstractEnumerationListFieldComponent, AbstractEnumerationSelectFieldComponent, AbstractEnumerationStepperFieldComponent, AbstractFieldComponentResolverComponent, AbstractFileDefaultFieldComponent, AbstractFileFieldComponent, AbstractFileListDefaultFieldComponent, AbstractFileListFieldComponent, AbstractFilterDefaultFieldComponent, AbstractFilterFieldComponent, AbstractFilterFieldContentComponent, AbstractFilterFieldTabViewComponent, AbstractFilterFieldTabViewContentComponent, AbstractFilterSelectorComponent, AbstractFilterSelectorListItemComponent, AbstractForgottenPasswordComponent, AbstractFulltextSearchComponent, AbstractGroupNavigationComponentResolverComponent, AbstractHeaderComponent, AbstractHeaderService, AbstractHtmlTextareaFieldComponent, AbstractI18nDividerFieldComponent, AbstractI18nErrorsComponent, AbstractI18nFieldComponent, AbstractI18nTextFieldComponent, AbstractIframeCardComponent, AbstractImmediateFilterTextComponent, AbstractImmediateFilterTextContentComponent, AbstractImportNetComponent, AbstractInternalLinkComponent, AbstractLanguageSelectorComponent, AbstractLdapGroupRoleAssignmentComponent, AbstractLegalNoticeComponent, AbstractLoadFilterComponent, AbstractLoadingModeComponent, AbstractLoggerService, AbstractLoginFormComponent, AbstractLogoutShortcutComponent, AbstractMultiUserAssignComponent, AbstractMultiUserAssignItemComponent, AbstractMultiUserAssignListComponent, AbstractMultichoiceAutocompleteFieldComponentComponent, 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, AbstractSessionIdleComponent, AbstractSideMenuContainerComponent, AbstractSimpleTextFieldComponent, AbstractSingleTaskComponent, AbstractSingleTaskViewComponent, AbstractSortModeComponent, AbstractSortableViewComponent, AbstractTabCreationDetectorComponent, AbstractTabViewComponent, AbstractTabbedCaseViewComponent, AbstractTabbedTaskViewComponent, AbstractTaskContentComponent, AbstractTaskListComponent, AbstractTaskListPaginationComponent, AbstractTaskPanelComponent, AbstractTaskRefDashboardFieldComponent, AbstractTaskRefDashboardTileComponent, AbstractTaskRefFieldComponent, AbstractTaskRefListFieldComponent, AbstractTaskViewComponent, AbstractTextErrorsComponent, AbstractTextFieldComponent, AbstractTextareaFieldComponent, AbstractToolbarComponent, AbstractTreeComponent, AbstractTreeTaskContentComponent, AbstractUserAssignComponent, AbstractUserAssignItemComponent, AbstractUserAssignListComponent, AbstractUserCardComponent, AbstractUserDefaultFieldComponent, AbstractUserFieldComponent, AbstractUserImpersonateComponent, AbstractUserInviteComponent, AbstractUserListDefaultFieldComponent, AbstractUserListFieldComponent, AbstractViewWithHeadersComponent, AbstractWorkflowPanelComponent, AbstractWorkflowViewComponent, AccessService, ActiveGroupService, AdvancedSearchComponentInitializationService, AfterAction, AlertDialogComponent, AlertDialogModule, AllowedNetsService, AllowedNetsServiceFactory, AnonymousAuthenticationInterceptor, AnonymousService, AssignPolicy, AssignPolicyService, AssignTaskService, AuthenticationGuardService, AuthenticationInterceptor, AuthenticationMethodService, AuthenticationModule, AuthenticationService, AuthorityGuardService, AutocompleteCategory, BOOLEAN_VALUE_LABEL_ENABLED, BaseAllowedNetsService, BasicAuthenticationService, BooleanField, BooleanFieldValidation, BooleanOperator, ButtonField, ButtonFieldValidation, CASE_ID, CONFIRM_PASSWORD, CallChainService, CancelTaskService, CaseAuthor, CaseCreationDate, CaseCreationDateTime, CaseDataset, CaseHeaderService, CaseListFontColorService, CaseMetaField, CaseNetAttributeAutocompleteCategory, CaseProcess, CaseRefField, CaseResourceService, CaseRole, CaseSearch, CaseSimpleDataset, CaseStringId, CaseTask, CaseTitle, CaseTreeNode, CaseTreeService, CaseViewService, CaseVisualId, Categories, Category, CategoryFactory, CategoryResolverService, ChangedFieldsService, ClausePredicate, ComponentPrefixes, ComponentRegistryService, ConfigParams, ConfigurationInput, ConfigurationService, ConfirmDialogComponent, ConfirmDialogModule, ConsoleLogPublisher, ContainsPipe, CovalentModule, CurrencyModule, CustomDateAdapter, DATA_FIELD_PORTAL_DATA, DATE_FORMAT, DATE_FORMAT_STRING, DATE_TIME_FORMAT, DATE_TIME_FORMAT_STRING, DEFAULT, DEFAULT_LANGUAGE_CODE, Dashboard, DashboardCardTypes, DashboardMultiData, DashboardResourceService, DashboardSingleData, DataField, DataFieldsModule, DataFocusPolicy, DataFocusPolicyService, DataGroupAlignment, DatafieldMapKey, DateField, DateTimeField, DefaultSearchCategoriesModule, DelegateTaskService, DialogModule, DialogService, DynamicEnumerationField, DynamicNavigationRouteProviderService, EditableClausePredicate, EditableClausePredicateWithGenerators, EditableElementaryPredicate, EditablePredicate, EditablePredicateWithGenerator, ElementaryPredicate, EnumerationAutocompleteFilterProperty, EnumerationField, EnumerationFieldValidation, Equals, EqualsDate, ErrorSnackBarComponent, EventConstants, EventQueueService, EventService, FieldAlignment, FieldConverterService, FieldTypeResource, FileField, FileListField, FileListFieldValidation, FilePreviewType, FileUploadMIMEType, FileUploadModel, Filter, FilterExtractionService, FilterField, FilterRepository, FilterType, FilteredArray, FinishPolicy, FinishPolicyService, FinishTaskService, FrontActionModule, FrontActionRegistryService, FrontActionService, GenericSnackBarComponent, GroupGuardService, GroupNavigationComponentResolverService, GroupNavigationConstants, HeaderColumn, HeaderColumnType, HeaderMode, HeaderSearchService, HeaderType, HttpLoaderFactory, I18nField, I18nFieldValidation, ImpersonationService, ImpersonationUserListService, ImpersonationUserResourceService, ImpersonationUserSelectService, InRange, InRangeDate, IncrementingCounter, IsEmptyPipe, IsNonEmptyPipe, IsNull, LanguageIconsService, LanguageService, LdapGroupListService, LdapGroupResourceService, LessThan, LessThanDate, LessThanDateTime, LetContext, LetDirective, Like, LoadingEmitter, LoadingWithFilterEmitter, LocalStorageLogPublisher, LogEntry, LogLevel, LogPublisher, LogPublisherService, LoggerService, MENU_IDENTIFIERS, MaterialAppearance, MaterialModule, MergeOperator, MergedFilter, MockAuthenticationMethodService, MockAuthenticationService, MockEndpoint, MockProfileService, MockSignUpService, MockUserPreferenceService, MockUserResourceService, MockUserService, MoreThan, MoreThanDate, MoreThanDateTime, MultichoiceAutocompleteFilterProperty, MultichoiceField, NAE_ADMIN_IMPERSONATE_COMPONENT, NAE_ADMIN_IMPERSONATE_DIALOG_COMPONENT, NAE_ASYNC_RENDERING_CONFIGURATION, NAE_AUTOSWITCH_TAB_TOKEN, NAE_BASE_FILTER, NAE_CASE_REF_CREATE_CASE, NAE_CASE_REF_SEARCH, NAE_DEFAULT_CASE_SEARCH_CATEGORIES, NAE_DEFAULT_HEADERS, NAE_DEFAULT_MIN_PASSWORD_LENGTH, NAE_DEFAULT_TASK_SEARCH_CATEGORIES, NAE_FILES_UPLOAD_COMPONENT, NAE_FILES_UPLOAD_DIALOG_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_LOAD_FILTER_DIALOG_COMPONENT, NAE_MIN_PASSWORD_LENGTH, NAE_NAVIGATION_ITEM_TASK_DATA, NAE_NET_ALL_VERSIONS, NAE_NET_VERSION_VISIBLE, NAE_NEW_CASE_COMPONENT, NAE_NEW_CASE_CONFIGURATION, NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, NAE_NEW_CASE_DIALOG_COMPONENT, NAE_OPEN_EXISTING_TAB, NAE_OPTION_SELECTOR_COMPONENT, NAE_OPTION_SELECTOR_DIALOG_COMPONENT, NAE_PREFERRED_TASK_ENDPOINT, NAE_ROUTING_CONFIGURATION_PATH, NAE_SAVE_FILTER_COMPONENT, NAE_SAVE_FILTER_DIALOG_COMPONENT, NAE_SEARCH_CATEGORIES, NAE_SEARCH_COMPONENT_CONFIGURATION, NAE_SIDE_MENU_CONTROL, NAE_SNACKBAR_HORIZONTAL_POSITION, NAE_SNACKBAR_VERTICAL_POSITION, NAE_TAB_DATA, NAE_TASK_FORCE_OPEN, NAE_TASK_OPERATIONS, NAE_TASK_PANEL_DISABLE_BUTTON_FUNCTIONS, NAE_TASK_VIEW_COMPONENT, NAE_TASK_VIEW_CONFIGURATION, NAE_TREE_CASE_VIEW_CONFIGURATION, NAE_URI_NODE_CASES_PAGE_SIZE, NAE_USER_ASSIGN_COMPONENT, NAE_USER_ASSIGN_DIALOG_COMPONENT, NAE_USER_IMPERSONATE_COMPONENT, NAE_USER_IMPERSONATE_DIALOG_COMPONENT, NAE_VIEW_ID, NAE_VIEW_ID_SEGMENT, NAE_WORKFLOW_SERVICE_CONFIRM_DELETE, NAE_WORKFLOW_SERVICE_FILTER, Net, NetAttributeAutocompleteCategory, NextGroupService, NoConfigurationAutocompleteCategory, NoConfigurationCategory, NoConfigurationUserAutocompleteCategory, NotEquals, NotEqualsDate, NotEqualsDateTime, NullAuthenticationService, NullTaskOperations, NumberField, NumberFieldValidation, OLD_PASSWORD, OpenedTab, Operator, OperatorResolverService, OperatorService, OperatorTemplatePart, OperatorTemplatePartType, Operators, OrganizationListService, OverflowService, PASSWORD, PETRI_NET_ID, PUBLISHERS, PageLoadRequestContext, PaginationParams, PaginationSort, PaperViewService, PermissionService, PermissionType, PetriNetResourceService, Predicate, PredicateWithGenerator, ProcessList, ProcessService, ProfileModule, ProfileService, ProgressType, PromptDialogComponent, PromptDialogModule, PublicCaseResourceService, PublicPetriNetResourceService, PublicProcessService, PublicTaskLoadingService, PublicTaskResourceService, PublicUrlResolverService, Query, QueuedEvent, RedirectService, ResourceProvider, ResultWithAfterActions, RoleAssignmentLdapGroupService, RoleAssignmentService, RoleGuardService, RoutingBuilderService, SETTINGS_TRANSITION_ID, SearchIndex, SearchIndexResolverService, SearchInputType, SearchMode, SearchService, SelectedCaseService, SessionIdleTimerService, SessionService, SideMenuControl, SideMenuRef, SideMenuService, SideMenuSize, SignUpModule, SignUpService, SimpleFilter, SingleTaskContentService, SnackBarComponent, SnackBarHorizontalPosition, SnackBarModule, SnackBarService, SnackBarVerticalPosition, SpinnerOverlayService, Subgrid, SubjectTaskOperations, Substring, SuccessSnackBarComponent, TRANSITION_ID, TabLabelStream, TabView, TabbedVirtualScrollComponent, TaskAssignee, TaskConst, TaskContentService, TaskDataService, TaskElementType, TaskEndpoint, TaskEvent, TaskEventService, TaskHandlingService, TaskHeaderService, TaskMetaField, TaskNetAttributeAutocompleteCategory, TaskProcess, TaskRefComponents, TaskRefDashboardConstants, TaskRefDashboardTileConstants, TaskRefField, TaskRequestStateService, TaskResourceService, TaskRole, TaskTask, TaskViewService, TemplateAppearance, TestCaseBaseFilterProvider, TestCaseViewAllowedNetsFactory, TestConfigurationService, TestMockDependenciesModule, TestNoAllowedNetsFactory, TestTaskBaseFilterProvider, TestTaskViewAllowedNetsFactory, TestViewService, TextAreaField, TextAreaHeight, TextField, TextFieldComponent, TextFieldValidation, TextFieldView, TranslateLibModule, TreeCaseViewService, TreePetriflowIdentifiers, TreeTaskContentService, UnlimitedTaskContentService, UriContentType, UriResourceService, UriService, User, UserAutocomplete, UserComparatorService, UserField, UserFilterConstants, UserFiltersService, UserImpersonationConstants, UserInviteService, UserListField, UserListService, UserListValue, UserPreferenceService, UserResourceService, UserService, UserTransformer, UserValue, UtilityModule, ViewIdService, ViewService, WarningSnackBarComponent, WorkflowHeaderService, WorkflowMetaField, WorkflowViewService, WrappedBoolean, arrayToObservable, authenticationServiceFactory, clearTimeInformation, configureCategory, createMockCase, createMockCaseOutcome, createMockDataGroup, createMockDependencies, createMockField, createMockGetDataOutcome, createMockImmediateData, createMockNet, createMockPage, createMockPetriNetOutcome, createMockSetDataOutcome, createMockTask, createMockTaskOutcome, createSortParam, createTaskEventNotification, decodeBase64, defaultCaseSearchCategoriesFactory, defaultTaskSearchCategoriesFactory, destroySubscription, encodeBase64, extractFieldValueFromData, extractFilterFieldFromData, extractFilterFromData, extractFilterFromFilterField, extractIconAndTitle, extractRoles, extractSearchTypeFromData, getField, getFieldFromDataGroups, getFieldIndex, getFieldIndexFromDataGroups, getImmediateData, getNetAndCreateCase, groupNavigationViewIdSegmentFactory, hasContent, loadAllPages, mockUserAutocompleteValue, navigationItemCaseViewDefaultHeadersFactory, navigationItemTaskAllowedNetsServiceFactory, navigationItemTaskCategoryFactory, navigationItemTaskFilterFactory, navigationItemTaskViewDefaultHeadersFactory, ofVoid, processMessageResponse, publicBaseFilterFactory, publicFactoryResolver, redirectAction, refreshTree, reloadTaskAction, tabbedAllowedNetsServiceFactory, tabbedTaskViewConfigurationFactory, toMoment, validateTaskAction };
35219
35335
  //# sourceMappingURL=netgrif-components-core.mjs.map