@netgrif/components-core 6.4.2-rc.6 → 6.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,6 +31,7 @@ import { OverflowService } from '../../header/services/overflow.service';
31
31
  import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
32
32
  import { FinishPolicyService } from '../../task/services/finish-policy.service';
33
33
  import { InjectedTabData } from '../../tabs/interfaces';
34
+ import { UserComparatorService } from "../../user/services/user-comparator.service";
34
35
  import * as i0 from "@angular/core";
35
36
  export declare abstract class AbstractTaskPanelComponent extends AbstractPanelWithImmediateDataComponent implements OnInit, AfterViewInit, OnDestroy {
36
37
  protected _taskContentService: TaskContentService;
@@ -53,6 +54,7 @@ export declare abstract class AbstractTaskPanelComponent extends AbstractPanelWi
53
54
  protected _currencyPipe: CurrencyPipe;
54
55
  protected _changedFieldsService: ChangedFieldsService;
55
56
  protected _permissionService: PermissionService;
57
+ protected _userComparator: UserComparatorService;
56
58
  protected _taskForceOpen: boolean;
57
59
  /**
58
60
  * @ignore
@@ -89,7 +91,7 @@ export declare abstract class AbstractTaskPanelComponent extends AbstractPanelWi
89
91
  protected _taskDisableButtonFunctions: DisableButtonFuntions;
90
92
  protected _unsub: Subscription;
91
93
  protected _canReload: boolean;
92
- protected constructor(_taskContentService: TaskContentService, _log: LoggerService, _taskViewService: TaskViewService, _paperView: PaperViewService, _taskEventService: TaskEventService, _assignTaskService: AssignTaskService, _delegateTaskService: DelegateTaskService, _cancelTaskService: CancelTaskService, _finishTaskService: FinishTaskService, _taskState: TaskRequestStateService, _taskDataService: TaskDataService, _assignPolicyService: AssignPolicyService, _finishPolicyService: FinishPolicyService, _callChain: CallChainService, _taskOperations: SubjectTaskOperations, _disableFunctions: DisableButtonFuntions, _translate: TranslateService, _currencyPipe: CurrencyPipe, _changedFieldsService: ChangedFieldsService, _permissionService: PermissionService, overflowService: OverflowService, _taskForceOpen: boolean, injectedTabData: InjectedTabData);
94
+ protected constructor(_taskContentService: TaskContentService, _log: LoggerService, _taskViewService: TaskViewService, _paperView: PaperViewService, _taskEventService: TaskEventService, _assignTaskService: AssignTaskService, _delegateTaskService: DelegateTaskService, _cancelTaskService: CancelTaskService, _finishTaskService: FinishTaskService, _taskState: TaskRequestStateService, _taskDataService: TaskDataService, _assignPolicyService: AssignPolicyService, _finishPolicyService: FinishPolicyService, _callChain: CallChainService, _taskOperations: SubjectTaskOperations, _disableFunctions: DisableButtonFuntions, _translate: TranslateService, _currencyPipe: CurrencyPipe, _changedFieldsService: ChangedFieldsService, _permissionService: PermissionService, _userComparator: UserComparatorService, overflowService: OverflowService, _taskForceOpen: boolean, injectedTabData: InjectedTabData);
93
95
  ngOnInit(): void;
94
96
  ngAfterViewInit(): void;
95
97
  protected abstract createContentPortal(): void;
@@ -124,6 +126,6 @@ export declare abstract class AbstractTaskPanelComponent extends AbstractPanelWi
124
126
  isForceOpen(): boolean;
125
127
  getContentMinHeight(): string;
126
128
  isExpanded(): boolean;
127
- static ɵfac: i0.ɵɵFactoryDeclaration<AbstractTaskPanelComponent, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
129
+ static ɵfac: i0.ɵɵFactoryDeclaration<AbstractTaskPanelComponent, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
128
130
  static ɵcmp: i0.ɵɵComponentDeclaration<AbstractTaskPanelComponent, "ncc-abstract-legal-notice", never, { "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"; }, { "taskEvent": "taskEvent"; "panelRefOutput": "panelRefOutput"; }, never, never>;
129
131
  }
@@ -20,6 +20,7 @@ export interface Case {
20
20
  * ]
21
21
  */
22
22
  lastModified: NaeDate;
23
+ lastModifiedDataSet?: NaeDate | undefined;
23
24
  /**
24
25
  * **Example:** PER-1669965980
25
26
  */
@@ -39,6 +39,7 @@ export declare class TaskDataService extends TaskHandlingService implements OnDe
39
39
  protected _fieldConverterService: FieldConverterService;
40
40
  protected _taskEvent: TaskEventService;
41
41
  protected _taskOperations: TaskOperations;
42
+ protected _taskContentService: TaskContentService;
42
43
  protected _afterActionFactory: CallChainService;
43
44
  protected _eventQueue: EventQueueService;
44
45
  protected _userComparator: UserComparatorService;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@netgrif/components-core",
3
- "version": "6.4.2-rc.6",
3
+ "version": "6.4.2",
4
4
  "description": "Netgrif Application engine frontend core Angular library",
5
5
  "homepage": "https://components.netgrif.com",
6
6
  "license": "SEE LICENSE IN LICENSE",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "https://github.com/netgrif/components.git"
9
+ "url": "git+https://github.com/netgrif/components.git"
10
10
  },
11
11
  "bugs": {
12
12
  "url": "https://github.com/netgrif/components/issues"
@@ -515,6 +515,6 @@
515
515
  "pageAmount": "Strana {{page}} z {{amountPages}}"
516
516
  },
517
517
  "export": {
518
- "errorExportDownload": "File failed to download!"
518
+ "errorExportDownload": "Stiahnutie súboru zlyhalo!"
519
519
  }
520
520
  }
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZS1maWVsZC1pZC1ib2R5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmV0Z3JpZi1jb21wb25lbnRzLWNvcmUvc3JjL2xpYi9kYXRhLWZpZWxkcy9tb2RlbHMvZmlsZS1maWVsZC1pZC1ib2R5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIEZpbGVGaWVsZElkQm9keSB7XG4gICAgW2tleTogc3RyaW5nXTogc3RyaW5nO1xufVxuIl19
@@ -1,3 +0,0 @@
1
- export interface FileFieldIdBody {
2
- [key: string]: string;
3
- }