@gloww/gloww 20.0.0-beta.44 → 20.0.0-beta.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/gloww-gloww.mjs +13 -10
- package/fesm2022/gloww-gloww.mjs.map +1 -1
- package/index.d.ts +5 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, Injector, OnChanges, PipeTransform, OnInit, AfterContentInit, QueryList, EventEmitter, AfterViewInit, TemplateRef, ChangeDetectorRef, SimpleChanges, ModuleWithProviders, EnvironmentProviders, ElementRef } from '@angular/core';
|
|
3
1
|
import * as rxjs from 'rxjs';
|
|
4
2
|
import { Subject, BehaviorSubject, Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from '@angular/core';
|
|
4
|
+
import { InjectionToken, Injector, OnChanges, PipeTransform, OnInit, AfterContentInit, QueryList, EventEmitter, AfterViewInit, TemplateRef, ChangeDetectorRef, SimpleChanges, ModuleWithProviders, EnvironmentProviders, ElementRef } from '@angular/core';
|
|
5
5
|
import * as _angular_common_http from '@angular/common/http';
|
|
6
6
|
import { HttpClient, HttpParams, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
|
|
7
7
|
import * as i1 from '@angular/common';
|
|
@@ -63,6 +63,7 @@ declare class GlowwService {
|
|
|
63
63
|
getParams(obj: any): HttpParams;
|
|
64
64
|
noSrc(): Promise<boolean>;
|
|
65
65
|
noRestSecurity(): Promise<boolean>;
|
|
66
|
+
commitUserTask(userTaskId: number, args: Record<string, any>): rxjs.Observable<string>;
|
|
66
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<GlowwService, never>;
|
|
67
68
|
static ɵprov: i0.ɵɵInjectableDeclaration<GlowwService>;
|
|
68
69
|
}
|
|
@@ -1139,7 +1140,7 @@ declare class AssignedUserTasksComponent implements OnInit {
|
|
|
1139
1140
|
constructor(glowwService: GlowwService & {
|
|
1140
1141
|
searchBPMN2_UserTask_Assignment: (obj?: any) => any;
|
|
1141
1142
|
getBPMN2_UserTask: (userTaskId: number) => any;
|
|
1142
|
-
|
|
1143
|
+
commitUserTask: (userTaskId: number, args: Record<string, any>) => any;
|
|
1143
1144
|
}, authenticationService: AuthenticationService, i18n: GlowwI18nService, dialog: MatDialog);
|
|
1144
1145
|
ngOnInit(): void;
|
|
1145
1146
|
ngAfterViewInit(): void;
|
|
@@ -1152,6 +1153,7 @@ declare class AssignedUserTasksComponent implements OnInit {
|
|
|
1152
1153
|
getAssignmentLabel(taskAssignment: UserTaskAssignment): string;
|
|
1153
1154
|
canRespond(taskAssignment: UserTaskAssignment): boolean;
|
|
1154
1155
|
private buildQuery;
|
|
1156
|
+
private isPendingTask;
|
|
1155
1157
|
private getSortValue;
|
|
1156
1158
|
private buildDialogData;
|
|
1157
1159
|
private parseChoices;
|