@gloww/gloww 20.0.0-beta.41 → 20.0.0-beta.42

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/index.d.ts CHANGED
@@ -1089,6 +1089,67 @@ declare class CallbackDirective {
1089
1089
  static ɵdir: i0.ɵɵDirectiveDeclaration<CallbackDirective, "[glowwCallback]", never, {}, {}, never, never, true, never>;
1090
1090
  }
1091
1091
 
1092
+ type UserTaskExecutionStep = {
1093
+ ExecutionID?: number;
1094
+ ProcessStepID?: string | number;
1095
+ HasAsExecution?: {
1096
+ DefinitionID?: string;
1097
+ ProcessID?: number;
1098
+ };
1099
+ };
1100
+ type UserTask = {
1101
+ Title?: string;
1102
+ DialogTitle?: string;
1103
+ MESSAGE?: string;
1104
+ MESSAGE2?: string;
1105
+ Category?: string;
1106
+ Statut?: string;
1107
+ RepliedBY?: string;
1108
+ ProcessStepID?: number;
1109
+ HasAsExecutionStep?: UserTaskExecutionStep;
1110
+ };
1111
+ type UserTaskAssignment = {
1112
+ AssignmentID: number;
1113
+ UserTaskId?: number;
1114
+ Domain?: string;
1115
+ Username?: string;
1116
+ Responsible?: boolean;
1117
+ STATUT?: string;
1118
+ Category?: string;
1119
+ IsCandidate?: UserTask;
1120
+ };
1121
+ declare class AssignedUserTasksComponent implements OnInit {
1122
+ private readonly glowwService;
1123
+ private readonly authenticationService;
1124
+ private readonly i18n;
1125
+ private readonly router;
1126
+ sort: MatSort;
1127
+ paginator: MatPaginator;
1128
+ displayedColumns: string[];
1129
+ dataSource: MatTableDataSource<UserTaskAssignment, MatPaginator>;
1130
+ loading: boolean;
1131
+ errorMessage: string;
1132
+ constructor(glowwService: GlowwService & {
1133
+ searchBPMN2_UserTask_Assignment: (obj?: any) => any;
1134
+ }, authenticationService: AuthenticationService, i18n: GlowwI18nService, router: Router);
1135
+ ngOnInit(): void;
1136
+ ngAfterViewInit(): void;
1137
+ t(key: string, fallback: string): string;
1138
+ loadAssignments(): void;
1139
+ openExecution(taskAssignment: UserTaskAssignment): void;
1140
+ openExecutionSteps(taskAssignment: UserTaskAssignment): void;
1141
+ hasExecution(taskAssignment: UserTaskAssignment): boolean;
1142
+ getTaskLabel(taskAssignment: UserTaskAssignment): string;
1143
+ getDefinitionLabel(taskAssignment: UserTaskAssignment): string;
1144
+ getExecutionLabel(taskAssignment: UserTaskAssignment): string;
1145
+ getStatusLabel(taskAssignment: UserTaskAssignment): string;
1146
+ getAssignmentLabel(taskAssignment: UserTaskAssignment): string;
1147
+ private buildQuery;
1148
+ private getSortValue;
1149
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssignedUserTasksComponent, never>;
1150
+ static ɵcmp: i0.ɵɵComponentDeclaration<AssignedUserTasksComponent, "glw-assigned-user-tasks", never, {}, {}, never, never, true, never>;
1151
+ }
1152
+
1092
1153
  declare abstract class BaseCollectionComponent {
1093
1154
  private _formBuilder;
1094
1155
  filterform: FormGroup;
@@ -1107,13 +1168,13 @@ declare class HasUnsavedDataGuard {
1107
1168
  static ɵprov: i0.ɵɵInjectableDeclaration<HasUnsavedDataGuard>;
1108
1169
  }
1109
1170
 
1110
- declare const GLOWW_STANDALONE_DECLARATIONS: readonly [typeof UploadDocComponent, typeof SafeHtmlPipe, typeof DisplayObjectsComponent, typeof HeaderComponent, typeof ResultTableComponent, typeof SearchFormComponent, typeof ConfirmationComponent, typeof PromptComponent, typeof SecurePipe, typeof SecureImgComponent, typeof MenuListItemComponent, typeof CodeEditorComponent, typeof HtmlEditorComponent, typeof HtmlFormatPipe, typeof UploadFileComponent, typeof FileSinkDirective, typeof FileEditComponent, typeof FoldersComponent, typeof DownloadProgressComponent, typeof SecureAComponent, typeof DummyComponent, typeof SelectComponent, typeof AutoCompleteComponent, typeof DatetimeComponent, typeof RouteDirective, typeof CallbackDirective, typeof FilterFormComponent];
1111
- declare const GLOWW_MODULE_EXPORTS: readonly [typeof UploadDocComponent, typeof SafeHtmlPipe, typeof DisplayObjectsComponent, typeof HeaderComponent, typeof ResultTableComponent, typeof SearchFormComponent, typeof ConfirmationComponent, typeof PromptComponent, typeof SecurePipe, typeof SecureImgComponent, typeof MenuListItemComponent, typeof CodeEditorComponent, typeof HtmlEditorComponent, typeof HtmlFormatPipe, typeof UploadFileComponent, typeof FileSinkDirective, typeof FileEditComponent, typeof FoldersComponent, typeof DownloadProgressComponent, typeof SecureAComponent, typeof DummyComponent, typeof SelectComponent, typeof AutoCompleteComponent, typeof DatetimeComponent, typeof RouteDirective, typeof CallbackDirective, typeof FilterFormComponent, typeof MatDatepickerModule, typeof NgxMatDatetimePickerModule, typeof NgxMatTimepickerComponent, typeof NgxMatNativeDateModule];
1171
+ declare const GLOWW_STANDALONE_DECLARATIONS: readonly [typeof UploadDocComponent, typeof SafeHtmlPipe, typeof DisplayObjectsComponent, typeof HeaderComponent, typeof ResultTableComponent, typeof SearchFormComponent, typeof ConfirmationComponent, typeof PromptComponent, typeof SecurePipe, typeof SecureImgComponent, typeof MenuListItemComponent, typeof CodeEditorComponent, typeof HtmlEditorComponent, typeof HtmlFormatPipe, typeof UploadFileComponent, typeof FileSinkDirective, typeof FileEditComponent, typeof FoldersComponent, typeof DownloadProgressComponent, typeof SecureAComponent, typeof DummyComponent, typeof SelectComponent, typeof AutoCompleteComponent, typeof DatetimeComponent, typeof AssignedUserTasksComponent, typeof RouteDirective, typeof CallbackDirective, typeof FilterFormComponent];
1172
+ declare const GLOWW_MODULE_EXPORTS: readonly [typeof UploadDocComponent, typeof SafeHtmlPipe, typeof DisplayObjectsComponent, typeof HeaderComponent, typeof ResultTableComponent, typeof SearchFormComponent, typeof ConfirmationComponent, typeof PromptComponent, typeof SecurePipe, typeof SecureImgComponent, typeof MenuListItemComponent, typeof CodeEditorComponent, typeof HtmlEditorComponent, typeof HtmlFormatPipe, typeof UploadFileComponent, typeof FileSinkDirective, typeof FileEditComponent, typeof FoldersComponent, typeof DownloadProgressComponent, typeof SecureAComponent, typeof DummyComponent, typeof SelectComponent, typeof AutoCompleteComponent, typeof DatetimeComponent, typeof AssignedUserTasksComponent, typeof RouteDirective, typeof CallbackDirective, typeof FilterFormComponent, typeof MatDatepickerModule, typeof NgxMatDatetimePickerModule, typeof NgxMatTimepickerComponent, typeof NgxMatNativeDateModule];
1112
1173
  declare function provideGloww(folderServiceConfig?: FolderServiceConfig): EnvironmentProviders;
1113
1174
  declare class GlowwModule {
1114
1175
  static forRoot(folderServiceConfig?: FolderServiceConfig): ModuleWithProviders<GlowwModule>;
1115
1176
  static ɵfac: i0.ɵɵFactoryDeclaration<GlowwModule, never>;
1116
- static ɵmod: i0.ɵɵNgModuleDeclaration<GlowwModule, never, [typeof i1.CommonModule, typeof i10.RouterModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof _angular_material_dialog.MatDialogModule, typeof i6.MatInputModule, typeof i6$1.MatIconModule, typeof i4.MatButtonModule, typeof i8.MatCardModule, typeof i9.MatProgressSpinnerModule, typeof i10$1.MatProgressBarModule, typeof i11.MatTableModule, typeof i12.MatSelectModule, typeof i13.MatPaginatorModule, typeof i14.MatSortModule, typeof i9.MatProgressSpinnerModule, typeof i15.MatAutocompleteModule, typeof i16.CodemirrorModule, typeof i17.AngularEditorModule, typeof i18.MatDatepickerModule, typeof i19.NgxMatDatetimePickerModule, typeof i19.NgxMatTimepickerComponent, typeof i19.NgxMatNativeDateModule, typeof i20.DragDropModule, typeof i21.AngularResizeEventModule, typeof UploadDocComponent, typeof SafeHtmlPipe, typeof DisplayObjectsComponent, typeof HeaderComponent, typeof ResultTableComponent, typeof SearchFormComponent, typeof ConfirmationComponent, typeof PromptComponent, typeof SecurePipe, typeof SecureImgComponent, typeof MenuListItemComponent, typeof CodeEditorComponent, typeof HtmlEditorComponent, typeof HtmlFormatPipe, typeof UploadFileComponent, typeof FileSinkDirective, typeof FileEditComponent, typeof FoldersComponent, typeof DownloadProgressComponent, typeof SecureAComponent, typeof DummyComponent, typeof SelectComponent, typeof AutoCompleteComponent, typeof DatetimeComponent, typeof RouteDirective, typeof CallbackDirective, typeof FilterFormComponent], [typeof UploadDocComponent, typeof SafeHtmlPipe, typeof DisplayObjectsComponent, typeof HeaderComponent, typeof ResultTableComponent, typeof SearchFormComponent, typeof ConfirmationComponent, typeof PromptComponent, typeof SecurePipe, typeof SecureImgComponent, typeof MenuListItemComponent, typeof CodeEditorComponent, typeof HtmlEditorComponent, typeof HtmlFormatPipe, typeof UploadFileComponent, typeof FileSinkDirective, typeof FileEditComponent, typeof FoldersComponent, typeof DownloadProgressComponent, typeof SecureAComponent, typeof DummyComponent, typeof SelectComponent, typeof AutoCompleteComponent, typeof DatetimeComponent, typeof RouteDirective, typeof CallbackDirective, typeof FilterFormComponent, typeof i18.MatDatepickerModule, typeof i19.NgxMatDatetimePickerModule, typeof i19.NgxMatTimepickerComponent, typeof i19.NgxMatNativeDateModule]>;
1177
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GlowwModule, never, [typeof i1.CommonModule, typeof i10.RouterModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof _angular_material_dialog.MatDialogModule, typeof i6.MatInputModule, typeof i6$1.MatIconModule, typeof i4.MatButtonModule, typeof i8.MatCardModule, typeof i9.MatProgressSpinnerModule, typeof i10$1.MatProgressBarModule, typeof i11.MatTableModule, typeof i12.MatSelectModule, typeof i13.MatPaginatorModule, typeof i14.MatSortModule, typeof i9.MatProgressSpinnerModule, typeof i15.MatAutocompleteModule, typeof i16.CodemirrorModule, typeof i17.AngularEditorModule, typeof i18.MatDatepickerModule, typeof i19.NgxMatDatetimePickerModule, typeof i19.NgxMatTimepickerComponent, typeof i19.NgxMatNativeDateModule, typeof i20.DragDropModule, typeof i21.AngularResizeEventModule, typeof UploadDocComponent, typeof SafeHtmlPipe, typeof DisplayObjectsComponent, typeof HeaderComponent, typeof ResultTableComponent, typeof SearchFormComponent, typeof ConfirmationComponent, typeof PromptComponent, typeof SecurePipe, typeof SecureImgComponent, typeof MenuListItemComponent, typeof CodeEditorComponent, typeof HtmlEditorComponent, typeof HtmlFormatPipe, typeof UploadFileComponent, typeof FileSinkDirective, typeof FileEditComponent, typeof FoldersComponent, typeof DownloadProgressComponent, typeof SecureAComponent, typeof DummyComponent, typeof SelectComponent, typeof AutoCompleteComponent, typeof DatetimeComponent, typeof AssignedUserTasksComponent, typeof RouteDirective, typeof CallbackDirective, typeof FilterFormComponent], [typeof UploadDocComponent, typeof SafeHtmlPipe, typeof DisplayObjectsComponent, typeof HeaderComponent, typeof ResultTableComponent, typeof SearchFormComponent, typeof ConfirmationComponent, typeof PromptComponent, typeof SecurePipe, typeof SecureImgComponent, typeof MenuListItemComponent, typeof CodeEditorComponent, typeof HtmlEditorComponent, typeof HtmlFormatPipe, typeof UploadFileComponent, typeof FileSinkDirective, typeof FileEditComponent, typeof FoldersComponent, typeof DownloadProgressComponent, typeof SecureAComponent, typeof DummyComponent, typeof SelectComponent, typeof AutoCompleteComponent, typeof DatetimeComponent, typeof AssignedUserTasksComponent, typeof RouteDirective, typeof CallbackDirective, typeof FilterFormComponent, typeof i18.MatDatepickerModule, typeof i19.NgxMatDatetimePickerModule, typeof i19.NgxMatTimepickerComponent, typeof i19.NgxMatNativeDateModule]>;
1117
1178
  static ɵinj: i0.ɵɵInjectorDeclaration<GlowwModule>;
1118
1179
  }
1119
1180
 
@@ -1162,5 +1223,5 @@ declare class GlowwValidators {
1162
1223
  } | null;
1163
1224
  }
1164
1225
 
1165
- export { API_SERVER_URL, AdministratorGuard, AuthGuard, AuthenticationService, AuthenticationServiceConfig, AutoCompleteComponent, BaseCollectionComponent, CallbackDirective, ChangePasswordDlgComponent, CodeEditorComponent, ConfirmationComponent, ConfirmationModel, DatetimeComponent, DialogService, DisplayObjectsComponent, DownloadProgressComponent, DummyComponent, ErrorInterceptor, FileEditComponent, FileSinkDirective, FilterFormComponent, FolderService, FolderServiceConfig, FoldersComponent, GLOWW_APPLI, GLOWW_MODULE_EXPORTS, GLOWW_SECURITY_STANDALONE_DECLARATIONS, GLOWW_STANDALONE_DECLARATIONS, GlowwModule, GlowwSecurityModule, GlowwSecurityService, GlowwService, GlowwValidators, HasUnsavedDataGuard, HeaderComponent, HtmlEditorComponent, HtmlFormatPipe, JwtInterceptor, LoginComponent, MenuListItemComponent, NavService, PromptComponent, PromptModel, ResultTableComponent, RouteDirective, SafeHtmlPipe, SearchFormComponent, SecureAComponent, SecureImgComponent, SecurePipe, SelectComponent, SocialNetworkComponent, SocialNetworkDlgComponent, StagingInterceptor, UploadDocComponent, UploadFileComponent, UserMenuComponent, VersionCheckService, VoiceRecognitionService, provideGloww, provideGlowwSecurity };
1226
+ export { API_SERVER_URL, AdministratorGuard, AssignedUserTasksComponent, AuthGuard, AuthenticationService, AuthenticationServiceConfig, AutoCompleteComponent, BaseCollectionComponent, CallbackDirective, ChangePasswordDlgComponent, CodeEditorComponent, ConfirmationComponent, ConfirmationModel, DatetimeComponent, DialogService, DisplayObjectsComponent, DownloadProgressComponent, DummyComponent, ErrorInterceptor, FileEditComponent, FileSinkDirective, FilterFormComponent, FolderService, FolderServiceConfig, FoldersComponent, GLOWW_APPLI, GLOWW_MODULE_EXPORTS, GLOWW_SECURITY_STANDALONE_DECLARATIONS, GLOWW_STANDALONE_DECLARATIONS, GlowwModule, GlowwSecurityModule, GlowwSecurityService, GlowwService, GlowwValidators, HasUnsavedDataGuard, HeaderComponent, HtmlEditorComponent, HtmlFormatPipe, JwtInterceptor, LoginComponent, MenuListItemComponent, NavService, PromptComponent, PromptModel, ResultTableComponent, RouteDirective, SafeHtmlPipe, SearchFormComponent, SecureAComponent, SecureImgComponent, SecurePipe, SelectComponent, SocialNetworkComponent, SocialNetworkDlgComponent, StagingInterceptor, UploadDocComponent, UploadFileComponent, UserMenuComponent, VersionCheckService, VoiceRecognitionService, provideGloww, provideGlowwSecurity };
1166
1227
  export type { Action, DirectoryContent, IHasUnsavedData, NavItem };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gloww/gloww",
3
- "version": "20.0.0-beta.41",
3
+ "version": "20.0.0-beta.42",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^20.0.0",
6
6
  "@angular/cdk": "^20.0.0",