@alfresco/adf-process-services-cloud 8.2.0-17234132289 → 8.3.0
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/adf-process-services-cloud.mjs +133 -68
- package/fesm2022/adf-process-services-cloud.mjs.map +1 -1
- package/lib/form/components/widgets/display-rich-text/display-rich-text.widget.d.ts +6 -6
- package/lib/form/services/rich-text-parser.service.d.ts +12 -0
- package/lib/process/process-filters/models/process-filter-cloud.model.d.ts +25 -24
- package/lib/process/process-list/components/process-list-cloud.component.d.ts +2 -1
- package/lib/process/process-list/models/process-cloud-query-request.model.d.ts +1 -0
- package/lib/process/process-list/services/process-list-cloud.service.d.ts +4 -1
- package/lib/task/task-list/services/task-list-cloud.service.d.ts +1 -0
- package/package.json +6 -5
|
@@ -9,7 +9,7 @@ import * as i3 from '@angular/material/icon';
|
|
|
9
9
|
import { MatIconModule } from '@angular/material/icon';
|
|
10
10
|
import * as i4 from '@angular/material/card';
|
|
11
11
|
import { MatCardModule } from '@angular/material/card';
|
|
12
|
-
import { of, from, Subject, EMPTY, throwError, BehaviorSubject, combineLatest, forkJoin, catchError as catchError$1 } from 'rxjs';
|
|
12
|
+
import { of, from, Subject, EMPTY, throwError, BehaviorSubject, combineLatest, firstValueFrom, forkJoin, catchError as catchError$1 } from 'rxjs';
|
|
13
13
|
import { map, catchError, take, tap, filter, switchMap, debounceTime, finalize, mergeMap, distinctUntilChanged, expand, reduce, mapTo, concatMap } from 'rxjs/operators';
|
|
14
14
|
import * as i1 from '@alfresco/adf-core/api';
|
|
15
15
|
import * as i6 from '@angular/material/core';
|
|
@@ -69,8 +69,8 @@ import * as i5$3 from '@angular/material/table';
|
|
|
69
69
|
import { MatTableModule } from '@angular/material/table';
|
|
70
70
|
import * as i3$3 from '@angular/material/radio';
|
|
71
71
|
import { MatRadioModule } from '@angular/material/radio';
|
|
72
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
72
73
|
import edjsHTML from 'editorjs-html';
|
|
73
|
-
import * as i2$5 from '@angular/platform-browser';
|
|
74
74
|
|
|
75
75
|
/*!
|
|
76
76
|
* @license
|
|
@@ -3503,6 +3503,14 @@ class TaskListCloudService extends BaseCloudService {
|
|
|
3503
3503
|
}
|
|
3504
3504
|
return this.fetchTaskList(requestNode).pipe(map((tasks) => tasks.list.pagination.totalItems));
|
|
3505
3505
|
}
|
|
3506
|
+
getTaskListCount(requestNode) {
|
|
3507
|
+
if (!requestNode?.appName) {
|
|
3508
|
+
return throwError(() => new Error('Appname not configured'));
|
|
3509
|
+
}
|
|
3510
|
+
const queryUrl = `${this.getBasePath(requestNode.appName)}/query/v1/tasks/count`;
|
|
3511
|
+
const queryData = this.buildQueryData(requestNode);
|
|
3512
|
+
return this.post(queryUrl, queryData).pipe(map((response) => response || 0));
|
|
3513
|
+
}
|
|
3506
3514
|
buildQueryData(requestNode) {
|
|
3507
3515
|
const queryData = {
|
|
3508
3516
|
id: requestNode.id,
|
|
@@ -3705,7 +3713,7 @@ class TaskFiltersCloudComponent extends BaseTaskFiltersCloudComponent {
|
|
|
3705
3713
|
}
|
|
3706
3714
|
fetchTaskFilterCounter(filter) {
|
|
3707
3715
|
return this.searchApiMethod === 'POST'
|
|
3708
|
-
? this.taskListCloudService.
|
|
3716
|
+
? this.taskListCloudService.getTaskListCount(new TaskFilterCloudAdapter(filter))
|
|
3709
3717
|
: this.taskFilterCloudService.getTaskFilterCounter(filter);
|
|
3710
3718
|
}
|
|
3711
3719
|
initFilterCounterNotifications() {
|
|
@@ -4972,9 +4980,11 @@ class PeopleCloudComponent {
|
|
|
4972
4980
|
this.invalidUsers = [];
|
|
4973
4981
|
for (const user of this.getPreselectedUsers()) {
|
|
4974
4982
|
try {
|
|
4975
|
-
const validationResult = (await this.identityUserService
|
|
4976
|
-
|
|
4977
|
-
.
|
|
4983
|
+
const validationResult = (await firstValueFrom(this.identityUserService.search(user.username, {
|
|
4984
|
+
roles: this.roles,
|
|
4985
|
+
withinApplication: this.appName,
|
|
4986
|
+
groups: this.groupsRestriction
|
|
4987
|
+
})))[0];
|
|
4978
4988
|
if (!this.equalsUsers(user, validationResult)) {
|
|
4979
4989
|
this.invalidUsers.push(user);
|
|
4980
4990
|
}
|
|
@@ -5442,7 +5452,7 @@ class GroupCloudComponent {
|
|
|
5442
5452
|
return false;
|
|
5443
5453
|
}
|
|
5444
5454
|
async searchGroup(name) {
|
|
5445
|
-
return (await this.identityGroupService.search(name)
|
|
5455
|
+
return (await firstValueFrom(this.identityGroupService.search(name)))[0];
|
|
5446
5456
|
}
|
|
5447
5457
|
getPreselectedGroups() {
|
|
5448
5458
|
if (this.isSingleMode()) {
|
|
@@ -7363,23 +7373,23 @@ class ContentCloudNodeSelectorService {
|
|
|
7363
7373
|
async getNodeIdFromPath(destinationFolderPath) {
|
|
7364
7374
|
if (destinationFolderPath.alias && destinationFolderPath.path) {
|
|
7365
7375
|
try {
|
|
7366
|
-
return await this.getNodeId(destinationFolderPath.alias, destinationFolderPath.path)
|
|
7376
|
+
return await firstValueFrom(this.getNodeId(destinationFolderPath.alias, destinationFolderPath.path));
|
|
7367
7377
|
}
|
|
7368
7378
|
catch {
|
|
7369
7379
|
/*empty*/
|
|
7370
7380
|
}
|
|
7371
7381
|
}
|
|
7372
|
-
return this.getNodeId(destinationFolderPath.alias)
|
|
7382
|
+
return firstValueFrom(this.getNodeId(destinationFolderPath.alias));
|
|
7373
7383
|
}
|
|
7374
7384
|
async getNodeIdFromFolderVariableValue(variableValue, defaultAlias) {
|
|
7375
7385
|
const isExistingNode = await this.isExistingNode(variableValue);
|
|
7376
|
-
return isExistingNode ? variableValue : this.getNodeId(defaultAlias)
|
|
7386
|
+
return isExistingNode ? variableValue : firstValueFrom(this.getNodeId(defaultAlias));
|
|
7377
7387
|
}
|
|
7378
7388
|
async isExistingNode(nodeId) {
|
|
7379
7389
|
let isExistingNode = false;
|
|
7380
7390
|
if (nodeId) {
|
|
7381
7391
|
try {
|
|
7382
|
-
isExistingNode = await this.getNodeId(nodeId).pipe(mapTo(true))
|
|
7392
|
+
isExistingNode = await firstValueFrom(this.getNodeId(nodeId).pipe(mapTo(true)));
|
|
7383
7393
|
}
|
|
7384
7394
|
catch {
|
|
7385
7395
|
/*empty*/
|
|
@@ -8786,7 +8796,7 @@ class UnClaimTaskCloudDirective {
|
|
|
8786
8796
|
async onClick() {
|
|
8787
8797
|
try {
|
|
8788
8798
|
this.renderer.setAttribute(this.el.nativeElement, 'disabled', 'true');
|
|
8789
|
-
await this.taskListService.unclaimTask(this.appName, this.taskId)
|
|
8799
|
+
await firstValueFrom(this.taskListService.unclaimTask(this.appName, this.taskId));
|
|
8790
8800
|
this.success.emit(this.taskId);
|
|
8791
8801
|
}
|
|
8792
8802
|
catch (error) {
|
|
@@ -8878,7 +8888,7 @@ class ClaimTaskCloudDirective {
|
|
|
8878
8888
|
const currentUser = this.identityUserService.getCurrentUserInfo().username;
|
|
8879
8889
|
try {
|
|
8880
8890
|
this.renderer.setAttribute(this.el.nativeElement, 'disabled', 'true');
|
|
8881
|
-
const result = await this.taskListService.claimTask(this.appName, this.taskId, currentUser)
|
|
8891
|
+
const result = await firstValueFrom(this.taskListService.claimTask(this.appName, this.taskId, currentUser));
|
|
8882
8892
|
if (result) {
|
|
8883
8893
|
this.success.emit(result);
|
|
8884
8894
|
}
|
|
@@ -9571,7 +9581,7 @@ class CompleteTaskDirective {
|
|
|
9571
9581
|
async onClick() {
|
|
9572
9582
|
try {
|
|
9573
9583
|
this.renderer.setAttribute(this.el.nativeElement, 'disabled', 'true');
|
|
9574
|
-
const result = await this.taskListService.completeTask(this.appName, this.taskId)
|
|
9584
|
+
const result = await firstValueFrom(this.taskListService.completeTask(this.appName, this.taskId));
|
|
9575
9585
|
if (result) {
|
|
9576
9586
|
this.success.emit(result);
|
|
9577
9587
|
}
|
|
@@ -10237,45 +10247,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
10237
10247
|
class ProcessFilterCloudModel {
|
|
10238
10248
|
constructor(obj) {
|
|
10239
10249
|
this.dateRangeFilterService = new DateRangeFilterService();
|
|
10240
|
-
if (obj) {
|
|
10241
|
-
|
|
10242
|
-
this.name = obj.name || null;
|
|
10243
|
-
this.key = obj.key || null;
|
|
10244
|
-
this.environmentId = obj.environmentId;
|
|
10245
|
-
this.showCounter = obj.showCounter || false;
|
|
10246
|
-
this.icon = obj.icon || null;
|
|
10247
|
-
this.index = obj.index || null;
|
|
10248
|
-
this.appName = obj.appName || obj.appName === '' ? obj.appName : null;
|
|
10249
|
-
this.appVersion = obj.appVersion || null;
|
|
10250
|
-
if (obj.appVersionMultiple && Array.isArray(obj.appVersionMultiple)) {
|
|
10251
|
-
this.appVersion = obj.appVersionMultiple;
|
|
10252
|
-
}
|
|
10253
|
-
this.processInstanceId = obj.processInstanceId || null;
|
|
10254
|
-
this.parentId = obj.parentId || '';
|
|
10255
|
-
this.processName = obj.processName || null;
|
|
10256
|
-
this.initiator = obj.initiator || null;
|
|
10257
|
-
this.status = obj.status || null;
|
|
10258
|
-
this.sort = obj.sort || null;
|
|
10259
|
-
this.order = obj.order || null;
|
|
10260
|
-
this.processDefinitionId = obj.processDefinitionId || null;
|
|
10261
|
-
this.processDefinitionName = obj.processDefinitionName || null;
|
|
10262
|
-
this.processDefinitionKey = obj.processDefinitionKey || null;
|
|
10263
|
-
this.lastModified = obj.lastModified || null;
|
|
10264
|
-
this.lastModifiedTo = obj.lastModifiedTo || null;
|
|
10265
|
-
this.lastModifiedFrom = obj.lastModifiedFrom || null;
|
|
10266
|
-
this.startedDate = obj.startedDate || null;
|
|
10267
|
-
this.startFrom = obj._startFrom || null;
|
|
10268
|
-
this.startTo = obj._startTo || null;
|
|
10269
|
-
this.completedDateType = obj.completedDateType || null;
|
|
10270
|
-
this.startedDateType = obj.startedDateType || null;
|
|
10271
|
-
this.suspendedDateType = obj.suspendedDateType || null;
|
|
10272
|
-
this.completedFrom = obj._completedFrom || null;
|
|
10273
|
-
this.completedTo = obj._completedTo || null;
|
|
10274
|
-
this.completedDate = obj.completedDate || null;
|
|
10275
|
-
this._suspendedFrom = obj._suspendedFrom || null;
|
|
10276
|
-
this._suspendedTo = obj._suspendedTo || null;
|
|
10277
|
-
this.initArrayProperties(obj);
|
|
10250
|
+
if (!obj) {
|
|
10251
|
+
return;
|
|
10278
10252
|
}
|
|
10253
|
+
this.id = obj.id || Math.random().toString(36).substring(2, 9);
|
|
10254
|
+
this.name = obj.name || null;
|
|
10255
|
+
this.key = obj.key || null;
|
|
10256
|
+
this.environmentId = obj.environmentId || null;
|
|
10257
|
+
this.showCounter = obj.showCounter || false;
|
|
10258
|
+
this.icon = obj.icon || null;
|
|
10259
|
+
this.index = obj.index || null;
|
|
10260
|
+
this.appName = obj.appName || obj.appName === '' ? obj.appName : null;
|
|
10261
|
+
this.appVersion = obj.appVersion || null;
|
|
10262
|
+
if (obj.appVersionMultiple && Array.isArray(obj.appVersionMultiple)) {
|
|
10263
|
+
this.appVersion = obj.appVersionMultiple;
|
|
10264
|
+
}
|
|
10265
|
+
this.processInstanceId = obj.processInstanceId || null;
|
|
10266
|
+
this.parentId = obj.parentId || '';
|
|
10267
|
+
this.processName = obj.processName || null;
|
|
10268
|
+
this.initiator = obj.initiator || null;
|
|
10269
|
+
this.status = obj.status || null;
|
|
10270
|
+
this.sort = obj.sort || null;
|
|
10271
|
+
this.order = obj.order || null;
|
|
10272
|
+
this.processDefinitionId = obj.processDefinitionId || null;
|
|
10273
|
+
this.processDefinitionName = obj.processDefinitionName || null;
|
|
10274
|
+
this.processDefinitionKey = obj.processDefinitionKey || null;
|
|
10275
|
+
this.lastModified = obj.lastModified || null;
|
|
10276
|
+
this.lastModifiedTo = obj.lastModifiedTo || null;
|
|
10277
|
+
this.lastModifiedFrom = obj.lastModifiedFrom || null;
|
|
10278
|
+
this.startedDate = obj.startedDate || null;
|
|
10279
|
+
this.startFrom = obj._startFrom || null;
|
|
10280
|
+
this.startTo = obj._startTo || null;
|
|
10281
|
+
this.completedDateType = obj.completedDateType || null;
|
|
10282
|
+
this.startedDateType = obj.startedDateType || null;
|
|
10283
|
+
this.suspendedDateType = obj.suspendedDateType || null;
|
|
10284
|
+
this.completedFrom = obj._completedFrom || null;
|
|
10285
|
+
this.completedTo = obj._completedTo || null;
|
|
10286
|
+
this.completedDate = obj.completedDate || null;
|
|
10287
|
+
this.excludeByProcessCategoryName = obj.excludeByProcessCategoryName || null;
|
|
10288
|
+
this._suspendedFrom = obj._suspendedFrom || null;
|
|
10289
|
+
this._suspendedTo = obj._suspendedTo || null;
|
|
10290
|
+
this.initArrayProperties(obj);
|
|
10279
10291
|
}
|
|
10280
10292
|
initArrayProperties(obj) {
|
|
10281
10293
|
if (obj.processDefinitionNames) {
|
|
@@ -10882,7 +10894,8 @@ class ProcessListCloudService extends BaseCloudService {
|
|
|
10882
10894
|
suspendedFrom: requestNode.suspendedFrom,
|
|
10883
10895
|
suspendedTo: requestNode.suspendedTo,
|
|
10884
10896
|
processVariableKeys: requestNode.processVariableKeys,
|
|
10885
|
-
processVariableFilters: requestNode.processVariableFilters
|
|
10897
|
+
processVariableFilters: requestNode.processVariableFilters,
|
|
10898
|
+
excludeByProcessCategoryName: requestNode.excludeByProcessCategoryName
|
|
10886
10899
|
};
|
|
10887
10900
|
if (requestNode.sorting) {
|
|
10888
10901
|
queryData['sort'] = {
|
|
@@ -10978,6 +10991,14 @@ class ProcessListCloudService extends BaseCloudService {
|
|
|
10978
10991
|
const defaultQueryUrl = 'query/admin/v1/process-instances';
|
|
10979
10992
|
return this.getProcess(callback, defaultQueryUrl, requestNode, queryUrl);
|
|
10980
10993
|
}
|
|
10994
|
+
getProcessListCount(requestNode) {
|
|
10995
|
+
if (!requestNode?.appName) {
|
|
10996
|
+
return throwError(() => new Error('Appname not configured'));
|
|
10997
|
+
}
|
|
10998
|
+
const queryUrl = `${this.getBasePath(requestNode.appName)}/query/v1/process-instances/count`;
|
|
10999
|
+
const queryData = this.buildQueryData(requestNode);
|
|
11000
|
+
return this.post(queryUrl, queryData).pipe(map((response) => response || 0));
|
|
11001
|
+
}
|
|
10981
11002
|
getVariableKeysFromQueryParams(queryParams) {
|
|
10982
11003
|
if (!queryParams['variableKeys'] || queryParams['variableKeys'].length <= 0) {
|
|
10983
11004
|
return [];
|
|
@@ -11149,6 +11170,7 @@ class ProcessListRequestModel {
|
|
|
11149
11170
|
this.suspendedTo = obj.suspendedTo;
|
|
11150
11171
|
this.processVariableKeys = obj.processVariableKeys;
|
|
11151
11172
|
this.processVariableFilters = obj.processVariableFilters;
|
|
11173
|
+
this.excludeByProcessCategoryName = obj.excludeByProcessCategoryName;
|
|
11152
11174
|
}
|
|
11153
11175
|
}
|
|
11154
11176
|
class ProcessFilterCloudAdapter extends ProcessListRequestModel {
|
|
@@ -11430,7 +11452,7 @@ class ProcessFiltersCloudComponent {
|
|
|
11430
11452
|
}
|
|
11431
11453
|
fetchProcessFilterCounter(filter) {
|
|
11432
11454
|
return this.searchApiMethod === 'POST'
|
|
11433
|
-
? this.processListCloudService.
|
|
11455
|
+
? this.processListCloudService.getProcessListCount(new ProcessFilterCloudAdapter(filter))
|
|
11434
11456
|
: this.processListCloudService.getProcessCounter(filter.appName, filter.status);
|
|
11435
11457
|
}
|
|
11436
11458
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ProcessFiltersCloudComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -12606,6 +12628,7 @@ class ProcessListCloudComponent extends DataTableSchema {
|
|
|
12606
12628
|
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
12607
12629
|
*/
|
|
12608
12630
|
this.statuses = [];
|
|
12631
|
+
this.excludeByProcessCategoryName = '';
|
|
12609
12632
|
/** Emitted when a row in the process list is clicked. */
|
|
12610
12633
|
this.rowClick = new EventEmitter();
|
|
12611
12634
|
/** Emitted when rows are selected/unselected. */
|
|
@@ -12846,7 +12869,8 @@ class ProcessListCloudComponent extends DataTableSchema {
|
|
|
12846
12869
|
suspendedFrom: this.suspendedFrom,
|
|
12847
12870
|
suspendedTo: this.suspendedTo,
|
|
12848
12871
|
processVariableKeys: this.getVariableDefinitionsRequestModel(),
|
|
12849
|
-
processVariableFilters: this.processVariables
|
|
12872
|
+
processVariableFilters: this.processVariables,
|
|
12873
|
+
excludeByProcessCategoryName: this.excludeByProcessCategoryName
|
|
12850
12874
|
};
|
|
12851
12875
|
return new ProcessListRequestModel(requestNode);
|
|
12852
12876
|
}
|
|
@@ -12938,7 +12962,7 @@ class ProcessListCloudComponent extends DataTableSchema {
|
|
|
12938
12962
|
return displayedVariableColumns.length ? displayedVariableColumns : undefined;
|
|
12939
12963
|
}
|
|
12940
12964
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ProcessListCloudComponent, deps: [{ token: ProcessListCloudService }, { token: i1$1.AppConfigService }, { token: i1$1.UserPreferencesService }, { token: PROCESS_LISTS_PREFERENCES_SERVICE_TOKEN }, { token: VariableMapperService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12941
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: ProcessListCloudComponent, isStandalone: true, selector: "adf-cloud-process-list", inputs: { appName: "appName", appVersion: "appVersion", initiator: "initiator", id: "id", environmentId: "environmentId", name: "name", parentId: "parentId", processDefinitionId: "processDefinitionId", processDefinitionName: "processDefinitionName", processDefinitionKey: "processDefinitionKey", status: "status", businessKey: "businessKey", lastModifiedFrom: "lastModifiedFrom", lastModifiedTo: "lastModifiedTo", startFrom: "startFrom", startTo: "startTo", completedFrom: "completedFrom", completedTo: "completedTo", completedDate: "completedDate", suspendedFrom: "suspendedFrom", suspendedTo: "suspendedTo", selectionMode: "selectionMode", multiselect: "multiselect", sorting: "sorting", showActions: "showActions", showProvidedActions: "showProvidedActions", actionsPosition: "actionsPosition", stickyHeader: "stickyHeader", showContextMenu: "showContextMenu", showMainDatatableActions: "showMainDatatableActions", isResizingEnabled: "isResizingEnabled", searchApiMethod: "searchApiMethod", names: "names", ids: "ids", parentIds: "parentIds", processDefinitionNames: "processDefinitionNames", initiators: "initiators", appVersions: "appVersions", statuses: "statuses", processVariables: "processVariables" }, outputs: { rowClick: "rowClick", rowsSelected: "rowsSelected", showRowContextMenu: "showRowContextMenu", showRowActionsMenu: "showRowActionsMenu", executeRowAction: "executeRowAction", error: "error", success: "success" }, queries: [{ propertyName: "emptyCustomContent", first: true, predicate: CustomEmptyContentTemplateDirective, descendants: true }, { propertyName: "customLoadingContent", first: true, predicate: CustomLoadingContentTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "dataTable", first: true, predicate: DataTableComponent, descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<adf-datatable\n [rows]=\"rows\"\n [columns]=\"columns\"\n [data]=\"dataAdapter\"\n [stickyHeader]=\"stickyHeader\"\n [loading]=\"isLoading\"\n [sorting]=\"formattedSorting\"\n [selectionMode]=\"selectionMode\"\n [multiselect]=\"multiselect\"\n [actions]=\"showActions\"\n [actionsPosition]=\"actionsPosition\"\n [contextMenu]=\"showContextMenu\"\n [showMainDatatableActions]=\"showMainDatatableActions\"\n [showProvidedActions]=\"showProvidedActions\"\n [isResizingEnabled]=\"isResizingEnabled\"\n (showRowActionsMenu)=\"onShowRowActionsMenu($event)\"\n (showRowContextMenu)=\"onShowRowContextMenu($event)\"\n (executeRowAction)=\"onExecuteRowAction($event)\"\n (rowClick)=\"onRowClick($any($event))\"\n (row-select)=\"onRowSelect($any($event))\"\n (row-unselect)=\"onRowUnselect($any($event))\"\n (row-keyup)=\"onRowKeyUp($any($event))\"\n (sorting-changed)=\"onSortingChanged($any($event))\"\n (columnOrderChanged)=\"onColumnOrderChanged($event)\"\n (columnsWidthChanged)=\"onColumnsWidthChanged($event)\"\n >\n <adf-loading-content-template>\n <ng-template>\n <mat-progress-spinner\n *ngIf=\"!customLoadingContent\"\n class=\"adf-cloud-process-list-loading-margin\"\n [color]=\"'primary'\"\n [mode]=\"'indeterminate'\" />\n <ng-content select=\"adf-custom-loading-content-template\" />\n </ng-template>\n </adf-loading-content-template>\n <adf-no-content-template>\n <ng-template>\n <adf-empty-content *ngIf=\"!emptyCustomContent\"\n icon=\"assessment\"\n [title]=\"'ADF_CLOUD_PROCESS_LIST.MESSAGES.TITLE' | translate\"\n [subtitle]=\"'ADF_CLOUD_PROCESS_LIST.MESSAGES.SUBTITLE'| translate\" />\n <ng-content select=\"adf-custom-empty-content-template\" />\n </ng-template>\n </adf-no-content-template>\n\n <adf-main-menu-datatable-template>\n <ng-template let-mainMenuTrigger>\n <adf-datatable-column-selector\n [columns]=\"columns\"\n [mainMenuTrigger]=\"mainMenuTrigger\"\n (submitColumnsVisibility)=\"onColumnsVisibilityChange($event)\" />\n </ng-template>\n </adf-main-menu-datatable-template>\n</adf-datatable>\n", styles: [".adf-cloud-process-list-loading-margin{margin-left:calc((100% - 100px)/2);margin-right:calc((100% - 100px)/2)}\n"], dependencies: [{ kind: "component", type: DataTableComponent, selector: "adf-datatable", inputs: ["data", "rows", "sorting", "columns", "selectionMode", "multiselect", "mainTableAction", "actions", "showMainDatatableActions", "showProvidedActions", "actionsPosition", "actionsVisibleOnHover", "fallbackThumbnail", "contextMenu", "rowStyle", "rowStyleClass", "showHeader", "stickyHeader", "loading", "noPermission", "rowMenuCacheEnabled", "resolverFn", "allowFiltering", "isResizingEnabled", "blurOnResize", "displayCheckboxesOnHover", "enableDragRows"], outputs: ["rowClick", "rowDblClick", "showRowContextMenu", "showRowActionsMenu", "executeRowAction", "columnOrderChanged", "columnsWidthChanged", "selectedItemsCountChanged", "dragDropped"] }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i4$1.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "component", type: ColumnsSelectorComponent, selector: "adf-datatable-column-selector", inputs: ["columns", "mainMenuTrigger", "columnsSorting", "maxColumnsVisible"], outputs: ["submitColumnsVisibility"] }, { kind: "directive", type: MainMenuDataTableTemplateDirective, selector: "adf-main-menu-datatable-template" }, { kind: "component", type: EmptyContentComponent, selector: "adf-empty-content", inputs: ["icon", "title", "subtitle"] }, { kind: "directive", type: NoContentTemplateDirective, selector: "adf-no-content-template, no-content-template" }, { kind: "directive", type: LoadingContentTemplateDirective, selector: "adf-loading-content-template, loading-content-template" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
12965
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: ProcessListCloudComponent, isStandalone: true, selector: "adf-cloud-process-list", inputs: { appName: "appName", appVersion: "appVersion", initiator: "initiator", id: "id", environmentId: "environmentId", name: "name", parentId: "parentId", processDefinitionId: "processDefinitionId", processDefinitionName: "processDefinitionName", processDefinitionKey: "processDefinitionKey", status: "status", businessKey: "businessKey", lastModifiedFrom: "lastModifiedFrom", lastModifiedTo: "lastModifiedTo", startFrom: "startFrom", startTo: "startTo", completedFrom: "completedFrom", completedTo: "completedTo", completedDate: "completedDate", suspendedFrom: "suspendedFrom", suspendedTo: "suspendedTo", selectionMode: "selectionMode", multiselect: "multiselect", sorting: "sorting", showActions: "showActions", showProvidedActions: "showProvidedActions", actionsPosition: "actionsPosition", stickyHeader: "stickyHeader", showContextMenu: "showContextMenu", showMainDatatableActions: "showMainDatatableActions", isResizingEnabled: "isResizingEnabled", searchApiMethod: "searchApiMethod", names: "names", ids: "ids", parentIds: "parentIds", processDefinitionNames: "processDefinitionNames", initiators: "initiators", appVersions: "appVersions", statuses: "statuses", processVariables: "processVariables", excludeByProcessCategoryName: "excludeByProcessCategoryName" }, outputs: { rowClick: "rowClick", rowsSelected: "rowsSelected", showRowContextMenu: "showRowContextMenu", showRowActionsMenu: "showRowActionsMenu", executeRowAction: "executeRowAction", error: "error", success: "success" }, queries: [{ propertyName: "emptyCustomContent", first: true, predicate: CustomEmptyContentTemplateDirective, descendants: true }, { propertyName: "customLoadingContent", first: true, predicate: CustomLoadingContentTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "dataTable", first: true, predicate: DataTableComponent, descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<adf-datatable\n [rows]=\"rows\"\n [columns]=\"columns\"\n [data]=\"dataAdapter\"\n [stickyHeader]=\"stickyHeader\"\n [loading]=\"isLoading\"\n [sorting]=\"formattedSorting\"\n [selectionMode]=\"selectionMode\"\n [multiselect]=\"multiselect\"\n [actions]=\"showActions\"\n [actionsPosition]=\"actionsPosition\"\n [contextMenu]=\"showContextMenu\"\n [showMainDatatableActions]=\"showMainDatatableActions\"\n [showProvidedActions]=\"showProvidedActions\"\n [isResizingEnabled]=\"isResizingEnabled\"\n (showRowActionsMenu)=\"onShowRowActionsMenu($event)\"\n (showRowContextMenu)=\"onShowRowContextMenu($event)\"\n (executeRowAction)=\"onExecuteRowAction($event)\"\n (rowClick)=\"onRowClick($any($event))\"\n (row-select)=\"onRowSelect($any($event))\"\n (row-unselect)=\"onRowUnselect($any($event))\"\n (row-keyup)=\"onRowKeyUp($any($event))\"\n (sorting-changed)=\"onSortingChanged($any($event))\"\n (columnOrderChanged)=\"onColumnOrderChanged($event)\"\n (columnsWidthChanged)=\"onColumnsWidthChanged($event)\"\n >\n <adf-loading-content-template>\n <ng-template>\n <mat-progress-spinner\n *ngIf=\"!customLoadingContent\"\n class=\"adf-cloud-process-list-loading-margin\"\n [color]=\"'primary'\"\n [mode]=\"'indeterminate'\" />\n <ng-content select=\"adf-custom-loading-content-template\" />\n </ng-template>\n </adf-loading-content-template>\n <adf-no-content-template>\n <ng-template>\n <adf-empty-content *ngIf=\"!emptyCustomContent\"\n icon=\"assessment\"\n [title]=\"'ADF_CLOUD_PROCESS_LIST.MESSAGES.TITLE' | translate\"\n [subtitle]=\"'ADF_CLOUD_PROCESS_LIST.MESSAGES.SUBTITLE'| translate\" />\n <ng-content select=\"adf-custom-empty-content-template\" />\n </ng-template>\n </adf-no-content-template>\n\n <adf-main-menu-datatable-template>\n <ng-template let-mainMenuTrigger>\n <adf-datatable-column-selector\n [columns]=\"columns\"\n [mainMenuTrigger]=\"mainMenuTrigger\"\n (submitColumnsVisibility)=\"onColumnsVisibilityChange($event)\" />\n </ng-template>\n </adf-main-menu-datatable-template>\n</adf-datatable>\n", styles: [".adf-cloud-process-list-loading-margin{margin-left:calc((100% - 100px)/2);margin-right:calc((100% - 100px)/2)}\n"], dependencies: [{ kind: "component", type: DataTableComponent, selector: "adf-datatable", inputs: ["data", "rows", "sorting", "columns", "selectionMode", "multiselect", "mainTableAction", "actions", "showMainDatatableActions", "showProvidedActions", "actionsPosition", "actionsVisibleOnHover", "fallbackThumbnail", "contextMenu", "rowStyle", "rowStyleClass", "showHeader", "stickyHeader", "loading", "noPermission", "rowMenuCacheEnabled", "resolverFn", "allowFiltering", "isResizingEnabled", "blurOnResize", "displayCheckboxesOnHover", "enableDragRows"], outputs: ["rowClick", "rowDblClick", "showRowContextMenu", "showRowActionsMenu", "executeRowAction", "columnOrderChanged", "columnsWidthChanged", "selectedItemsCountChanged", "dragDropped"] }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i4$1.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "component", type: ColumnsSelectorComponent, selector: "adf-datatable-column-selector", inputs: ["columns", "mainMenuTrigger", "columnsSorting", "maxColumnsVisible"], outputs: ["submitColumnsVisibility"] }, { kind: "directive", type: MainMenuDataTableTemplateDirective, selector: "adf-main-menu-datatable-template" }, { kind: "component", type: EmptyContentComponent, selector: "adf-empty-content", inputs: ["icon", "title", "subtitle"] }, { kind: "directive", type: NoContentTemplateDirective, selector: "adf-no-content-template, no-content-template" }, { kind: "directive", type: LoadingContentTemplateDirective, selector: "adf-loading-content-template, loading-content-template" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
12942
12966
|
}
|
|
12943
12967
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ProcessListCloudComponent, decorators: [{
|
|
12944
12968
|
type: Component,
|
|
@@ -13045,6 +13069,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
13045
13069
|
type: Input
|
|
13046
13070
|
}], processVariables: [{
|
|
13047
13071
|
type: Input
|
|
13072
|
+
}], excludeByProcessCategoryName: [{
|
|
13073
|
+
type: Input
|
|
13048
13074
|
}], rowClick: [{
|
|
13049
13075
|
type: Output
|
|
13050
13076
|
}], rowsSelected: [{
|
|
@@ -14363,10 +14389,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
14363
14389
|
* See the License for the specific language governing permissions and
|
|
14364
14390
|
* limitations under the License.
|
|
14365
14391
|
*/
|
|
14366
|
-
|
|
14367
|
-
class DisplayRichTextWidgetComponent extends WidgetComponent {
|
|
14392
|
+
class RichTextParserService {
|
|
14368
14393
|
static { this.CUSTOM_PARSER = {
|
|
14369
14394
|
header: (block) => {
|
|
14395
|
+
if (!block.data || !block.data.text || !block.data.level) {
|
|
14396
|
+
return '';
|
|
14397
|
+
}
|
|
14370
14398
|
const paragraphAlign = block.data.alignment || block.data.align || block.tunes?.anyTuneName?.alignment;
|
|
14371
14399
|
if (typeof paragraphAlign !== 'undefined' && ['left', 'right', 'center'].includes(paragraphAlign)) {
|
|
14372
14400
|
return `<h${block.data.level} class="ce-tune-alignment--${paragraphAlign}">${block.data.text}</h${block.data.level}>`;
|
|
@@ -14376,6 +14404,9 @@ class DisplayRichTextWidgetComponent extends WidgetComponent {
|
|
|
14376
14404
|
}
|
|
14377
14405
|
},
|
|
14378
14406
|
paragraph: (block) => {
|
|
14407
|
+
if (!block.data || !block.data.text) {
|
|
14408
|
+
return '';
|
|
14409
|
+
}
|
|
14379
14410
|
const paragraphAlign = block.data.alignment || block.data.align || block.tunes?.anyTuneName?.alignment;
|
|
14380
14411
|
if (typeof paragraphAlign !== 'undefined' && ['left', 'right', 'center', 'justify'].includes(paragraphAlign)) {
|
|
14381
14412
|
return `<p class="ce-tune-alignment--${paragraphAlign}">${block.data.text}</p>`;
|
|
@@ -14385,24 +14416,58 @@ class DisplayRichTextWidgetComponent extends WidgetComponent {
|
|
|
14385
14416
|
}
|
|
14386
14417
|
}
|
|
14387
14418
|
}; }
|
|
14388
|
-
|
|
14419
|
+
parse(richText) {
|
|
14420
|
+
return edjsHTML(RichTextParserService.CUSTOM_PARSER, { strict: true }).parse(richText);
|
|
14421
|
+
}
|
|
14422
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RichTextParserService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14423
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RichTextParserService, providedIn: 'root' }); }
|
|
14424
|
+
}
|
|
14425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RichTextParserService, decorators: [{
|
|
14426
|
+
type: Injectable,
|
|
14427
|
+
args: [{
|
|
14428
|
+
providedIn: 'root'
|
|
14429
|
+
}]
|
|
14430
|
+
}] });
|
|
14431
|
+
|
|
14432
|
+
/*!
|
|
14433
|
+
* @license
|
|
14434
|
+
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
14435
|
+
*
|
|
14436
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
14437
|
+
* you may not use this file except in compliance with the License.
|
|
14438
|
+
* You may obtain a copy of the License at
|
|
14439
|
+
*
|
|
14440
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
14441
|
+
*
|
|
14442
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
14443
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14444
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14445
|
+
* See the License for the specific language governing permissions and
|
|
14446
|
+
* limitations under the License.
|
|
14447
|
+
*/
|
|
14448
|
+
/* eslint-disable @angular-eslint/component-selector */
|
|
14449
|
+
const RICH_TEXT_PARSER_TOKEN = new InjectionToken('RichTextParserService', {
|
|
14450
|
+
factory: () => new RichTextParserService()
|
|
14451
|
+
});
|
|
14452
|
+
class DisplayRichTextWidgetComponent extends WidgetComponent {
|
|
14453
|
+
constructor(formService) {
|
|
14389
14454
|
super(formService);
|
|
14390
|
-
this.
|
|
14391
|
-
this.sanitizer =
|
|
14455
|
+
this.richTextParserService = inject(RICH_TEXT_PARSER_TOKEN);
|
|
14456
|
+
this.sanitizer = inject(DomSanitizer);
|
|
14392
14457
|
}
|
|
14393
14458
|
ngOnInit() {
|
|
14394
|
-
this.parsedHTML =
|
|
14395
|
-
if (
|
|
14396
|
-
this.
|
|
14459
|
+
this.parsedHTML = this.richTextParserService.parse(this.field.value);
|
|
14460
|
+
if (this.parsedHTML instanceof Error) {
|
|
14461
|
+
throw this.parsedHTML;
|
|
14397
14462
|
}
|
|
14398
14463
|
else {
|
|
14399
|
-
|
|
14464
|
+
this.sanitizeHtmlContent();
|
|
14400
14465
|
}
|
|
14401
14466
|
}
|
|
14402
14467
|
sanitizeHtmlContent() {
|
|
14403
14468
|
this.parsedHTML = this.sanitizer.sanitize(SecurityContext.HTML, this.parsedHTML);
|
|
14404
14469
|
}
|
|
14405
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: DisplayRichTextWidgetComponent, deps: [{ token: i1$1.FormService }
|
|
14470
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: DisplayRichTextWidgetComponent, deps: [{ token: i1$1.FormService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14406
14471
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: DisplayRichTextWidgetComponent, isStandalone: true, selector: "display-rich-text", host: { listeners: { "click": "event($event)", "blur": "event($event)", "change": "event($event)", "focus": "event($event)", "focusin": "event($event)", "focusout": "event($event)", "input": "event($event)", "invalid": "event($event)", "select": "event($event)" } }, usesInheritance: true, ngImport: i0, template: "<div class=\"adf-display-rich-text-widget\">\n <div class=\"adf-display-rich-text-widget-parsed-html\" [innerHTML]=\"parsedHTML\"></div>\n</div>\n", styles: [".adf-display-rich-text-widget pre{min-height:100px;font-family:Menlo,Monaco,Consolas,Courier New,monospace;color:#41314e;line-height:1.6em;font-size:12px;background:#f8f7fa;border:1px solid #f1f1f4;box-shadow:none;white-space:pre;word-wrap:normal;overflow-x:auto;resize:vertical;border-radius:3px;outline:none;width:100%}\n"], encapsulation: i0.ViewEncapsulation.None }); }
|
|
14407
14472
|
}
|
|
14408
14473
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: DisplayRichTextWidgetComponent, decorators: [{
|
|
@@ -14418,7 +14483,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
14418
14483
|
'(invalid)': 'event($event)',
|
|
14419
14484
|
'(select)': 'event($event)'
|
|
14420
14485
|
}, encapsulation: ViewEncapsulation.None, template: "<div class=\"adf-display-rich-text-widget\">\n <div class=\"adf-display-rich-text-widget-parsed-html\" [innerHTML]=\"parsedHTML\"></div>\n</div>\n", styles: [".adf-display-rich-text-widget pre{min-height:100px;font-family:Menlo,Monaco,Consolas,Courier New,monospace;color:#41314e;line-height:1.6em;font-size:12px;background:#f8f7fa;border:1px solid #f1f1f4;box-shadow:none;white-space:pre;word-wrap:normal;overflow-x:auto;resize:vertical;border-radius:3px;outline:none;width:100%}\n"] }]
|
|
14421
|
-
}], ctorParameters: () => [{ type: i1$1.FormService }
|
|
14486
|
+
}], ctorParameters: () => [{ type: i1$1.FormService }] });
|
|
14422
14487
|
|
|
14423
14488
|
/*!
|
|
14424
14489
|
* @license
|
|
@@ -15963,5 +16028,5 @@ const DATE_FORMAT_CLOUD = 'YYYY-MM-DD';
|
|
|
15963
16028
|
* Generated bundle index. Do not edit.
|
|
15964
16029
|
*/
|
|
15965
16030
|
|
|
15966
|
-
export { APP_CUSTOM_SCREEN_TOKEN, APP_LIST_CLOUD_DIRECTIVES, AppDetailsCloudComponent, AppListCloudComponent, ApplicationVersionModel, ApplicationVersionResponseModel, AppsProcessCloudService, AssignmentType, AttachFileCloudWidgetComponent, BaseCloudService, CloudFormRenderingService, ContentCloudNodeSelectorService, DATE_FORMAT_CLOUD, DEFAULT_APP_INSTANCE_ICON, DEFAULT_APP_INSTANCE_THEME, DEFAULT_OPTION, DEFAULT_TASK_PRIORITIES, DEPLOYED_STATUS, DateCloudFilterType, DateCloudWidgetComponent, DateRangeFilterService, DescriptorCustomUIAuthFlowType, DisplayModeService, DisplayRichTextWidgetComponent, DropdownCloudWidgetComponent, EditProcessFilterCloudComponent, EditServiceTaskFilterCloudComponent, EditTaskFilterCloudComponent, FORM_CLOUD_DIRECTIVES, FORM_CLOUD_FIELD_VALIDATORS_TOKEN, FORM_CLOUD_SERVICE_FIELD_VALIDATORS_TOKEN, FilePropertiesTableCloudComponent, FileViewerWidgetComponent, FormCloudComponent, FormCloudDisplayMode, FormCloudModule, FormCloudService, FormCustomOutcomesComponent, FormDefinitionSelectorCloudComponent, FormDefinitionSelectorCloudService, FormFieldType, FormSpinnerComponent, GroupCloudComponent, GroupCloudModule, GroupCloudWidgetComponent, HIDE_FILTER_LIMIT, IdentityGroupService, IdentityUserService, LAYOUT_GRID, LAYOUT_LIST, LocalPreferenceCloudService, NotificationCloudService, PROCESS_CLOUD_DIRECTIVES, PROCESS_FILTERS_CLOUD_DIRECTIVES, PROCESS_FILTERS_SERVICE_TOKEN, PROCESS_FILTER_ACTION_DELETE, PROCESS_FILTER_ACTION_RESTORE, PROCESS_FILTER_ACTION_SAVE, PROCESS_FILTER_ACTION_SAVE_AS, PROCESS_FILTER_ACTION_SAVE_DEFAULT, PROCESS_LISTS_PREFERENCES_SERVICE_TOKEN, PROCESS_SERVICES_CLOUD_DIRECTIVES, PeopleCloudComponent, PeopleCloudModule, PeopleCloudWidgetComponent, PeopleModeOptions, ProcessCloudContentService, ProcessCloudModule, ProcessCloudService, ProcessDefinitionCloud, ProcessFilterCloudAdapter, ProcessFilterCloudModel, ProcessFilterCloudService, ProcessFilterDialogCloudComponent, ProcessFiltersCloudComponent, ProcessFiltersCloudModule, ProcessHeaderCloudComponent, ProcessHeaderCloudModule, ProcessListCloudComponent, ProcessListCloudModule, ProcessListCloudPreferences, ProcessListCloudService, ProcessListCloudSortingModel, ProcessListRequestModel, ProcessListRequestSortingModel, ProcessPayloadCloud, ProcessQueryCloudRequestModel, ProcessServicesCloudModule, ProcessTaskListCloudService, PropertiesViewerWidgetComponent, PropertiesViewerWrapperComponent, RadioButtonsCloudWidgetComponent, ScreenRenderingService, ServiceTaskFilterCloudService, ServiceTaskFiltersCloudComponent, ServiceTaskListCloudComponent, ServiceTaskListCloudService, StartProcessCloudComponent, StartProcessCloudService, StartTaskCloudRequestModel, TASK_ASSIGNED_STATE, TASK_CANCELLED_STATE, TASK_CLAIM_PERMISSION, TASK_COMPLETED_STATE, TASK_CREATED_STATE, TASK_FILTERS_CLOUD_DIRECTIVES, TASK_FILTERS_SERVICE_TOKEN, TASK_FORM_CLOUD_DIRECTIVES, TASK_LIST_CLOUD_DIRECTIVES, TASK_LIST_CLOUD_TOKEN, TASK_LIST_PREFERENCES_SERVICE_TOKEN, TASK_RELEASE_PERMISSION, TASK_SUSPENDED_STATE, TASK_UPDATE_PERMISSION, TASK_VIEW_PERMISSION, TaskAssignmentFilterCloudComponent, TaskCloudEntryModel, TaskCloudModule, TaskCloudNodePaging, TaskCloudPagingList, TaskCloudService, TaskFilterCloudAdapter, TaskFilterCloudModel, TaskFilterCloudService, TaskFilterDialogCloudComponent, TaskFiltersCloudComponent, TaskFiltersCloudModule, TaskFormCloudComponent, TaskFormModule, TaskHeaderCloudComponent, TaskHeaderCloudModule, TaskListCloudComponent, TaskListCloudModule, TaskListCloudService, TaskListCloudSortingModel, TaskListRequestModel, TaskListRequestSortingModel, TaskQueryCloudRequestModel, TaskStatusFilter, TaskVariableCloud, UploadCloudWidgetComponent, UserPreferenceCloudService, UserTaskCloudButtonsComponent, UserTaskCloudComponent, VariableMapperService, WebSocketService, processCloudPresetsDefaultModel, provideCloudFormRenderer, provideCloudPreferences, provideScreen, radioButtonsSchema };
|
|
16031
|
+
export { APP_CUSTOM_SCREEN_TOKEN, APP_LIST_CLOUD_DIRECTIVES, AppDetailsCloudComponent, AppListCloudComponent, ApplicationVersionModel, ApplicationVersionResponseModel, AppsProcessCloudService, AssignmentType, AttachFileCloudWidgetComponent, BaseCloudService, CloudFormRenderingService, ContentCloudNodeSelectorService, DATE_FORMAT_CLOUD, DEFAULT_APP_INSTANCE_ICON, DEFAULT_APP_INSTANCE_THEME, DEFAULT_OPTION, DEFAULT_TASK_PRIORITIES, DEPLOYED_STATUS, DateCloudFilterType, DateCloudWidgetComponent, DateRangeFilterService, DescriptorCustomUIAuthFlowType, DisplayModeService, DisplayRichTextWidgetComponent, DropdownCloudWidgetComponent, EditProcessFilterCloudComponent, EditServiceTaskFilterCloudComponent, EditTaskFilterCloudComponent, FORM_CLOUD_DIRECTIVES, FORM_CLOUD_FIELD_VALIDATORS_TOKEN, FORM_CLOUD_SERVICE_FIELD_VALIDATORS_TOKEN, FilePropertiesTableCloudComponent, FileViewerWidgetComponent, FormCloudComponent, FormCloudDisplayMode, FormCloudModule, FormCloudService, FormCustomOutcomesComponent, FormDefinitionSelectorCloudComponent, FormDefinitionSelectorCloudService, FormFieldType, FormSpinnerComponent, GroupCloudComponent, GroupCloudModule, GroupCloudWidgetComponent, HIDE_FILTER_LIMIT, IdentityGroupService, IdentityUserService, LAYOUT_GRID, LAYOUT_LIST, LocalPreferenceCloudService, NotificationCloudService, PROCESS_CLOUD_DIRECTIVES, PROCESS_FILTERS_CLOUD_DIRECTIVES, PROCESS_FILTERS_SERVICE_TOKEN, PROCESS_FILTER_ACTION_DELETE, PROCESS_FILTER_ACTION_RESTORE, PROCESS_FILTER_ACTION_SAVE, PROCESS_FILTER_ACTION_SAVE_AS, PROCESS_FILTER_ACTION_SAVE_DEFAULT, PROCESS_LISTS_PREFERENCES_SERVICE_TOKEN, PROCESS_SERVICES_CLOUD_DIRECTIVES, PeopleCloudComponent, PeopleCloudModule, PeopleCloudWidgetComponent, PeopleModeOptions, ProcessCloudContentService, ProcessCloudModule, ProcessCloudService, ProcessDefinitionCloud, ProcessFilterCloudAdapter, ProcessFilterCloudModel, ProcessFilterCloudService, ProcessFilterDialogCloudComponent, ProcessFiltersCloudComponent, ProcessFiltersCloudModule, ProcessHeaderCloudComponent, ProcessHeaderCloudModule, ProcessListCloudComponent, ProcessListCloudModule, ProcessListCloudPreferences, ProcessListCloudService, ProcessListCloudSortingModel, ProcessListRequestModel, ProcessListRequestSortingModel, ProcessPayloadCloud, ProcessQueryCloudRequestModel, ProcessServicesCloudModule, ProcessTaskListCloudService, PropertiesViewerWidgetComponent, PropertiesViewerWrapperComponent, RICH_TEXT_PARSER_TOKEN, RadioButtonsCloudWidgetComponent, ScreenRenderingService, ServiceTaskFilterCloudService, ServiceTaskFiltersCloudComponent, ServiceTaskListCloudComponent, ServiceTaskListCloudService, StartProcessCloudComponent, StartProcessCloudService, StartTaskCloudRequestModel, TASK_ASSIGNED_STATE, TASK_CANCELLED_STATE, TASK_CLAIM_PERMISSION, TASK_COMPLETED_STATE, TASK_CREATED_STATE, TASK_FILTERS_CLOUD_DIRECTIVES, TASK_FILTERS_SERVICE_TOKEN, TASK_FORM_CLOUD_DIRECTIVES, TASK_LIST_CLOUD_DIRECTIVES, TASK_LIST_CLOUD_TOKEN, TASK_LIST_PREFERENCES_SERVICE_TOKEN, TASK_RELEASE_PERMISSION, TASK_SUSPENDED_STATE, TASK_UPDATE_PERMISSION, TASK_VIEW_PERMISSION, TaskAssignmentFilterCloudComponent, TaskCloudEntryModel, TaskCloudModule, TaskCloudNodePaging, TaskCloudPagingList, TaskCloudService, TaskFilterCloudAdapter, TaskFilterCloudModel, TaskFilterCloudService, TaskFilterDialogCloudComponent, TaskFiltersCloudComponent, TaskFiltersCloudModule, TaskFormCloudComponent, TaskFormModule, TaskHeaderCloudComponent, TaskHeaderCloudModule, TaskListCloudComponent, TaskListCloudModule, TaskListCloudService, TaskListCloudSortingModel, TaskListRequestModel, TaskListRequestSortingModel, TaskQueryCloudRequestModel, TaskStatusFilter, TaskVariableCloud, UploadCloudWidgetComponent, UserPreferenceCloudService, UserTaskCloudButtonsComponent, UserTaskCloudComponent, VariableMapperService, WebSocketService, processCloudPresetsDefaultModel, provideCloudFormRenderer, provideCloudPreferences, provideScreen, radioButtonsSchema };
|
|
15967
16032
|
//# sourceMappingURL=adf-process-services-cloud.mjs.map
|