@alfresco/adf-core 9.1.0-16879056836 → 9.1.0-16936569382
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/feature-flags/lib/components/flags/flags.component.d.ts +2 -2
- package/fesm2022/adf-core.mjs +148 -1484
- package/fesm2022/adf-core.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-api.mjs +1 -1
- package/fesm2022/alfresco-adf-core-api.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-feature-flags.mjs.map +1 -1
- package/lib/app-config/public-api.d.ts +0 -1
- package/lib/mock/data-column.mock.d.ts +0 -2
- package/lib/mock/form/widget-visibility.service.mock.d.ts +0 -5
- package/lib/mock/public-api.d.ts +0 -4
- package/lib/testing/unit-testing-utils.d.ts +1 -11
- package/lib/viewer/components/img-viewer/img-viewer.component.d.ts +2 -2
- package/lib/viewer/components/viewer.component.d.ts +1 -1
- package/lib/viewer/services/rendering-queue.services.d.ts +2 -2
- package/package.json +3 -3
- package/lib/app-config/debug-app-config.service.d.ts +0 -10
- package/lib/mock/form/form-definition-readonly.mock.d.ts +0 -17
- package/lib/mock/form/form-definition-visibility.mock.d.ts +0 -18
- package/lib/mock/form/form-definition.mock.d.ts +0 -19
- package/lib/mock/form/form.component.mock.d.ts +0 -17
package/fesm2022/adf-core.mjs
CHANGED
|
@@ -105,7 +105,7 @@ import { MatChipHarness, MatChipListboxHarness, MatChipGridHarness } from '@angu
|
|
|
105
105
|
import { MatButtonHarness } from '@angular/material/button/testing';
|
|
106
106
|
import { MatIconHarness } from '@angular/material/icon/testing';
|
|
107
107
|
import { MatCheckboxHarness } from '@angular/material/checkbox/testing';
|
|
108
|
-
import { MatFormFieldHarness
|
|
108
|
+
import { MatFormFieldHarness } from '@angular/material/form-field/testing';
|
|
109
109
|
import { MatInputHarness } from '@angular/material/input/testing';
|
|
110
110
|
import { MatAutocompleteHarness } from '@angular/material/autocomplete/testing';
|
|
111
111
|
import { MatTabGroupHarness } from '@angular/material/tabs/testing';
|
|
@@ -1010,7 +1010,7 @@ class StorageService {
|
|
|
1010
1010
|
storage.removeItem(key, key);
|
|
1011
1011
|
return true;
|
|
1012
1012
|
}
|
|
1013
|
-
catch
|
|
1013
|
+
catch {
|
|
1014
1014
|
return false;
|
|
1015
1015
|
}
|
|
1016
1016
|
}
|
|
@@ -2392,7 +2392,7 @@ class ViewUtilService {
|
|
|
2392
2392
|
* @returns list of extensions
|
|
2393
2393
|
*/
|
|
2394
2394
|
get externalExtensions() {
|
|
2395
|
-
return this.viewerExtensions.map((
|
|
2395
|
+
return this.viewerExtensions.map((extension) => extension.fileExtension);
|
|
2396
2396
|
}
|
|
2397
2397
|
constructor(extensionService) {
|
|
2398
2398
|
this.extensionService = extensionService;
|
|
@@ -2437,7 +2437,7 @@ class ViewUtilService {
|
|
|
2437
2437
|
const match = fileName.match(/\.([^./?#]+)($|\?|#)/);
|
|
2438
2438
|
return match ? match[1] : null;
|
|
2439
2439
|
}
|
|
2440
|
-
return
|
|
2440
|
+
return undefined;
|
|
2441
2441
|
}
|
|
2442
2442
|
getViewerType(extension, mimeType, extensionsSupportedByTemplates) {
|
|
2443
2443
|
let viewerType = this.getViewerTypeByExtension(extension, extensionsSupportedByTemplates);
|
|
@@ -2451,7 +2451,7 @@ class ViewUtilService {
|
|
|
2451
2451
|
mimeType = mimeType.toLowerCase();
|
|
2452
2452
|
const editorTypes = Object.keys(this.mimeTypes);
|
|
2453
2453
|
for (const type of editorTypes) {
|
|
2454
|
-
if (this.mimeTypes[type].
|
|
2454
|
+
if (this.mimeTypes[type].includes(mimeType)) {
|
|
2455
2455
|
return type;
|
|
2456
2456
|
}
|
|
2457
2457
|
}
|
|
@@ -2468,22 +2468,22 @@ class ViewUtilService {
|
|
|
2468
2468
|
if (this.isCustomViewerExtension(extension, extensionsSupportedByTemplates)) {
|
|
2469
2469
|
return 'custom';
|
|
2470
2470
|
}
|
|
2471
|
-
if (this.extensions.image.
|
|
2471
|
+
if (this.extensions.image.includes(extension)) {
|
|
2472
2472
|
return 'image';
|
|
2473
2473
|
}
|
|
2474
|
-
if (this.extensions.media.
|
|
2474
|
+
if (this.extensions.media.includes(extension)) {
|
|
2475
2475
|
return 'media';
|
|
2476
2476
|
}
|
|
2477
|
-
if (this.extensions.text.
|
|
2477
|
+
if (this.extensions.text.includes(extension)) {
|
|
2478
2478
|
return 'text';
|
|
2479
2479
|
}
|
|
2480
|
-
if (this.extensions.pdf.
|
|
2480
|
+
if (this.extensions.pdf.includes(extension)) {
|
|
2481
2481
|
return 'pdf';
|
|
2482
2482
|
}
|
|
2483
2483
|
return 'unknown';
|
|
2484
2484
|
}
|
|
2485
2485
|
isExternalViewer() {
|
|
2486
|
-
return
|
|
2486
|
+
return this.viewerExtensions.some((extension) => extension.fileExtension === '*');
|
|
2487
2487
|
}
|
|
2488
2488
|
isCustomViewerExtension(extension, extensionsSupportedByTemplates) {
|
|
2489
2489
|
const extensions = this.externalExtensions || [];
|
|
@@ -2492,7 +2492,7 @@ class ViewUtilService {
|
|
|
2492
2492
|
}
|
|
2493
2493
|
if (extension && extensions.length > 0) {
|
|
2494
2494
|
extension = extension.toLowerCase();
|
|
2495
|
-
return extensions.flat().
|
|
2495
|
+
return extensions.flat().includes(extension);
|
|
2496
2496
|
}
|
|
2497
2497
|
return false;
|
|
2498
2498
|
}
|
|
@@ -2506,45 +2506,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
2506
2506
|
}]
|
|
2507
2507
|
}], ctorParameters: () => [{ type: i1$4.AppExtensionService }] });
|
|
2508
2508
|
|
|
2509
|
-
/*!
|
|
2510
|
-
* @license
|
|
2511
|
-
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
2512
|
-
*
|
|
2513
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
2514
|
-
* you may not use this file except in compliance with the License.
|
|
2515
|
-
* You may obtain a copy of the License at
|
|
2516
|
-
*
|
|
2517
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
2518
|
-
*
|
|
2519
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
2520
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
2521
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2522
|
-
* See the License for the specific language governing permissions and
|
|
2523
|
-
* limitations under the License.
|
|
2524
|
-
*/
|
|
2525
|
-
class DebugAppConfigService extends AppConfigService {
|
|
2526
|
-
constructor(storage) {
|
|
2527
|
-
super();
|
|
2528
|
-
this.storage = storage;
|
|
2529
|
-
}
|
|
2530
|
-
get(key, defaultValue) {
|
|
2531
|
-
if (key === AppConfigValues.OAUTHCONFIG) {
|
|
2532
|
-
return JSON.parse(this.storage.getItem(key)) || super.get(key, defaultValue);
|
|
2533
|
-
}
|
|
2534
|
-
else if (key === AppConfigValues.APPLICATION) {
|
|
2535
|
-
return undefined;
|
|
2536
|
-
}
|
|
2537
|
-
else {
|
|
2538
|
-
return this.storage.getItem(key) || super.get(key, defaultValue);
|
|
2539
|
-
}
|
|
2540
|
-
}
|
|
2541
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: DebugAppConfigService, deps: [{ token: StorageService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2542
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: DebugAppConfigService }); }
|
|
2543
|
-
}
|
|
2544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: DebugAppConfigService, decorators: [{
|
|
2545
|
-
type: Injectable
|
|
2546
|
-
}], ctorParameters: () => [{ type: StorageService }] });
|
|
2547
|
-
|
|
2548
2509
|
/*!
|
|
2549
2510
|
* @license
|
|
2550
2511
|
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
@@ -4050,31 +4011,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
4050
4011
|
class ImgViewerComponent {
|
|
4051
4012
|
onKeyDown(event) {
|
|
4052
4013
|
switch (event.key) {
|
|
4053
|
-
case 'ArrowLeft':
|
|
4014
|
+
case 'ArrowLeft': {
|
|
4054
4015
|
event.preventDefault();
|
|
4055
4016
|
this.cropper.move(-3, 0);
|
|
4056
4017
|
break;
|
|
4057
|
-
|
|
4018
|
+
}
|
|
4019
|
+
case 'ArrowUp': {
|
|
4058
4020
|
event.preventDefault();
|
|
4059
4021
|
this.cropper.move(0, -3);
|
|
4060
4022
|
break;
|
|
4061
|
-
|
|
4023
|
+
}
|
|
4024
|
+
case 'ArrowRight': {
|
|
4062
4025
|
event.preventDefault();
|
|
4063
4026
|
this.cropper.move(3, 0);
|
|
4064
4027
|
break;
|
|
4065
|
-
|
|
4028
|
+
}
|
|
4029
|
+
case 'ArrowDown': {
|
|
4066
4030
|
event.preventDefault();
|
|
4067
4031
|
this.cropper.move(0, 3);
|
|
4068
4032
|
break;
|
|
4069
|
-
|
|
4033
|
+
}
|
|
4034
|
+
case 'i': {
|
|
4070
4035
|
this.zoomIn();
|
|
4071
4036
|
break;
|
|
4072
|
-
|
|
4037
|
+
}
|
|
4038
|
+
case 'o': {
|
|
4073
4039
|
this.zoomOut();
|
|
4074
4040
|
break;
|
|
4075
|
-
|
|
4041
|
+
}
|
|
4042
|
+
case 'r': {
|
|
4076
4043
|
this.rotateImage();
|
|
4077
4044
|
break;
|
|
4045
|
+
}
|
|
4078
4046
|
default:
|
|
4079
4047
|
}
|
|
4080
4048
|
}
|
|
@@ -4180,7 +4148,7 @@ class ImgViewerComponent {
|
|
|
4180
4148
|
this.cropper.clear();
|
|
4181
4149
|
this.cropper.reset();
|
|
4182
4150
|
this.cropper.setDragMode('move');
|
|
4183
|
-
this.scale = 1
|
|
4151
|
+
this.scale = 1;
|
|
4184
4152
|
this.updateCanvasContainer();
|
|
4185
4153
|
}
|
|
4186
4154
|
updateCanvasContainer() {
|
|
@@ -4369,7 +4337,7 @@ class RenderingQueueServices {
|
|
|
4369
4337
|
PAUSED: 2,
|
|
4370
4338
|
FINISHED: 3
|
|
4371
4339
|
};
|
|
4372
|
-
this.CLEANUP_TIMEOUT =
|
|
4340
|
+
this.CLEANUP_TIMEOUT = 30_000;
|
|
4373
4341
|
this.pdfViewer = null;
|
|
4374
4342
|
this.pdfThumbnailViewer = null;
|
|
4375
4343
|
this.onIdle = null;
|
|
@@ -4413,10 +4381,8 @@ class RenderingQueueServices {
|
|
|
4413
4381
|
return;
|
|
4414
4382
|
}
|
|
4415
4383
|
// No pages needed rendering so check thumbnails.
|
|
4416
|
-
if (this.pdfThumbnailViewer && this.isThumbnailViewEnabled) {
|
|
4417
|
-
|
|
4418
|
-
return;
|
|
4419
|
-
}
|
|
4384
|
+
if (this.pdfThumbnailViewer && this.isThumbnailViewEnabled && this.pdfThumbnailViewer.forceRendering()) {
|
|
4385
|
+
return;
|
|
4420
4386
|
}
|
|
4421
4387
|
if (this.printing) {
|
|
4422
4388
|
// If printing is currently ongoing do not reschedule cleanup.
|
|
@@ -4434,11 +4400,11 @@ class RenderingQueueServices {
|
|
|
4434
4400
|
// 2 if last scrolled down page after the visible pages
|
|
4435
4401
|
// 2 if last scrolled up page before the visible pages
|
|
4436
4402
|
const visibleViews = visible.views;
|
|
4437
|
-
const
|
|
4438
|
-
if (
|
|
4403
|
+
const numberVisible = visibleViews.length;
|
|
4404
|
+
if (numberVisible === 0) {
|
|
4439
4405
|
return false;
|
|
4440
4406
|
}
|
|
4441
|
-
for (let i = 0; i <
|
|
4407
|
+
for (let i = 0; i < numberVisible; ++i) {
|
|
4442
4408
|
const view = visibleViews[i].view;
|
|
4443
4409
|
if (!this.isViewFinished(view)) {
|
|
4444
4410
|
return view;
|
|
@@ -4505,8 +4471,9 @@ class RenderingQueueServices {
|
|
|
4505
4471
|
view.draw().then(continueRendering, continueRendering);
|
|
4506
4472
|
break;
|
|
4507
4473
|
}
|
|
4508
|
-
default:
|
|
4474
|
+
default: {
|
|
4509
4475
|
break;
|
|
4476
|
+
}
|
|
4510
4477
|
}
|
|
4511
4478
|
return true;
|
|
4512
4479
|
}
|
|
@@ -6090,7 +6057,7 @@ class ViewerComponent {
|
|
|
6090
6057
|
this.hideInfoButton = false;
|
|
6091
6058
|
/** Identifier of a node that is opened by the viewer. */
|
|
6092
6059
|
this.nodeId = null;
|
|
6093
|
-
/** Original node mime type, should be provided when
|
|
6060
|
+
/** Original node mime type, should be provided when renditions mime type is different. */
|
|
6094
6061
|
this.nodeMimeType = undefined;
|
|
6095
6062
|
/** Custom error message to be displayed in the viewer. */
|
|
6096
6063
|
this.customError = undefined;
|
|
@@ -6461,7 +6428,7 @@ class ViewerExtensionDirective {
|
|
|
6461
6428
|
*/
|
|
6462
6429
|
isVisible(fileExtension) {
|
|
6463
6430
|
let supportedExtension;
|
|
6464
|
-
if (
|
|
6431
|
+
if (Array.isArray(this.supportedExtensions)) {
|
|
6465
6432
|
supportedExtension = this.supportedExtensions.find((extension) => extension.toLowerCase() === fileExtension);
|
|
6466
6433
|
}
|
|
6467
6434
|
return !!supportedExtension;
|
|
@@ -10958,7 +10925,7 @@ class TranslateLoaderService {
|
|
|
10958
10925
|
}
|
|
10959
10926
|
}
|
|
10960
10927
|
providerRegistered(name) {
|
|
10961
|
-
return
|
|
10928
|
+
return this.providers.some((x) => x.name === name);
|
|
10962
10929
|
}
|
|
10963
10930
|
fetchLanguageFile(lang, component, fallbackUrl) {
|
|
10964
10931
|
const translationUrl = fallbackUrl || `${component.path}/${this.prefix}/${lang}${this.suffix}?v=${Date.now()}`;
|
|
@@ -10972,7 +10939,7 @@ class TranslateLoaderService {
|
|
|
10972
10939
|
return this.fetchLanguageFile(lang, component, url);
|
|
10973
10940
|
}
|
|
10974
10941
|
}
|
|
10975
|
-
return throwError(`Failed to load ${translationUrl}`);
|
|
10942
|
+
return throwError(() => new Error(`Failed to load ${translationUrl}`));
|
|
10976
10943
|
}));
|
|
10977
10944
|
}
|
|
10978
10945
|
getComponentToFetch(lang) {
|
|
@@ -10980,12 +10947,12 @@ class TranslateLoaderService {
|
|
|
10980
10947
|
if (!this.queue[lang]) {
|
|
10981
10948
|
this.queue[lang] = [];
|
|
10982
10949
|
}
|
|
10983
|
-
this.providers
|
|
10950
|
+
for (const component of this.providers) {
|
|
10984
10951
|
if (!this.isComponentInQueue(lang, component.name)) {
|
|
10985
10952
|
this.queue[lang].push(component.name);
|
|
10986
10953
|
observableBatch.push(this.fetchLanguageFile(lang, component));
|
|
10987
10954
|
}
|
|
10988
|
-
}
|
|
10955
|
+
}
|
|
10989
10956
|
return observableBatch;
|
|
10990
10957
|
}
|
|
10991
10958
|
init(lang) {
|
|
@@ -10994,7 +10961,7 @@ class TranslateLoaderService {
|
|
|
10994
10961
|
}
|
|
10995
10962
|
}
|
|
10996
10963
|
isComponentInQueue(lang, name) {
|
|
10997
|
-
return
|
|
10964
|
+
return (this.queue[lang] || []).some((x) => x === name);
|
|
10998
10965
|
}
|
|
10999
10966
|
getFullTranslationJSON(lang) {
|
|
11000
10967
|
let result = {};
|
|
@@ -11026,19 +10993,22 @@ class TranslateLoaderService {
|
|
|
11026
10993
|
];
|
|
11027
10994
|
return new Observable((observer) => {
|
|
11028
10995
|
if (batch.length > 0) {
|
|
11029
|
-
forkJoin(batch).subscribe(
|
|
11030
|
-
|
|
11031
|
-
|
|
11032
|
-
|
|
11033
|
-
|
|
11034
|
-
|
|
10996
|
+
forkJoin(batch).subscribe({
|
|
10997
|
+
next: () => {
|
|
10998
|
+
const fullTranslation = this.getFullTranslationJSON(lang);
|
|
10999
|
+
if (fullTranslation) {
|
|
11000
|
+
observer.next(fullTranslation);
|
|
11001
|
+
}
|
|
11002
|
+
if (hasFailures) {
|
|
11003
|
+
observer.error('Failed to load some resources');
|
|
11004
|
+
}
|
|
11005
|
+
else {
|
|
11006
|
+
observer.complete();
|
|
11007
|
+
}
|
|
11008
|
+
},
|
|
11009
|
+
error: () => {
|
|
11035
11010
|
observer.error('Failed to load some resources');
|
|
11036
11011
|
}
|
|
11037
|
-
else {
|
|
11038
|
-
observer.complete();
|
|
11039
|
-
}
|
|
11040
|
-
}, () => {
|
|
11041
|
-
observer.error('Failed to load some resources');
|
|
11042
11012
|
});
|
|
11043
11013
|
}
|
|
11044
11014
|
else {
|
|
@@ -21029,7 +20999,7 @@ class FormFieldModel extends FormWidgetModel {
|
|
|
21029
20999
|
try {
|
|
21030
21000
|
dateValue = DateFnsUtils.parseDate(this.value, this.dateDisplayFormat);
|
|
21031
21001
|
}
|
|
21032
|
-
catch
|
|
21002
|
+
catch {
|
|
21033
21003
|
dateValue = new Date('error');
|
|
21034
21004
|
}
|
|
21035
21005
|
if (isValid(dateValue)) {
|
|
@@ -28543,1350 +28513,100 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
28543
28513
|
* See the License for the specific language governing permissions and
|
|
28544
28514
|
* limitations under the License.
|
|
28545
28515
|
*/
|
|
28546
|
-
const
|
|
28547
|
-
|
|
28548
|
-
|
|
28549
|
-
|
|
28550
|
-
|
|
28551
|
-
|
|
28552
|
-
|
|
28553
|
-
|
|
28554
|
-
|
|
28555
|
-
|
|
28556
|
-
|
|
28557
|
-
|
|
28558
|
-
|
|
28559
|
-
|
|
28560
|
-
|
|
28561
|
-
|
|
28562
|
-
|
|
28563
|
-
|
|
28564
|
-
|
|
28565
|
-
|
|
28566
|
-
|
|
28567
|
-
|
|
28568
|
-
|
|
28569
|
-
|
|
28570
|
-
|
|
28571
|
-
|
|
28572
|
-
|
|
28573
|
-
|
|
28574
|
-
|
|
28575
|
-
|
|
28576
|
-
|
|
28577
|
-
|
|
28578
|
-
|
|
28579
|
-
|
|
28580
|
-
|
|
28581
|
-
|
|
28582
|
-
|
|
28583
|
-
|
|
28584
|
-
|
|
28585
|
-
|
|
28586
|
-
|
|
28587
|
-
|
|
28588
|
-
|
|
28589
|
-
|
|
28590
|
-
|
|
28591
|
-
|
|
28592
|
-
|
|
28593
|
-
|
|
28594
|
-
|
|
28595
|
-
type: 'dropdown',
|
|
28596
|
-
value: 'Choose one...',
|
|
28597
|
-
required: false,
|
|
28598
|
-
readOnly: false,
|
|
28599
|
-
overrideId: false,
|
|
28600
|
-
colspan: 1,
|
|
28601
|
-
placeholder: null,
|
|
28602
|
-
minLength: 0,
|
|
28603
|
-
maxLength: 0,
|
|
28604
|
-
minValue: null,
|
|
28605
|
-
maxValue: null,
|
|
28606
|
-
regexPattern: null,
|
|
28607
|
-
optionType: null,
|
|
28608
|
-
hasEmptyValue: true,
|
|
28609
|
-
options: [
|
|
28610
|
-
{
|
|
28611
|
-
id: 'empty',
|
|
28612
|
-
name: 'Choose one...'
|
|
28613
|
-
},
|
|
28614
|
-
{
|
|
28615
|
-
id: 'option_1',
|
|
28616
|
-
name: 'test1'
|
|
28617
|
-
},
|
|
28618
|
-
{
|
|
28619
|
-
id: 'option_2',
|
|
28620
|
-
name: 'test2'
|
|
28621
|
-
},
|
|
28516
|
+
const formModelTabs = {
|
|
28517
|
+
formRepresentation: {
|
|
28518
|
+
id: 16,
|
|
28519
|
+
name: 'start event',
|
|
28520
|
+
description: '',
|
|
28521
|
+
version: 2,
|
|
28522
|
+
lastUpdatedBy: 4,
|
|
28523
|
+
lastUpdatedByFullName: 'User Test',
|
|
28524
|
+
lastUpdated: '2017-10-04T13:00:03.030+0000',
|
|
28525
|
+
stencilSetId: null,
|
|
28526
|
+
referenceId: null,
|
|
28527
|
+
formDefinition: {
|
|
28528
|
+
tabs: [],
|
|
28529
|
+
fields: [
|
|
28530
|
+
{
|
|
28531
|
+
fieldType: 'ContainerRepresentation',
|
|
28532
|
+
id: '1507037668653',
|
|
28533
|
+
name: 'Label',
|
|
28534
|
+
type: 'container',
|
|
28535
|
+
value: null,
|
|
28536
|
+
required: false,
|
|
28537
|
+
readOnly: false,
|
|
28538
|
+
overrideId: false,
|
|
28539
|
+
colspan: 1,
|
|
28540
|
+
placeholder: null,
|
|
28541
|
+
minLength: 0,
|
|
28542
|
+
maxLength: 0,
|
|
28543
|
+
minValue: null,
|
|
28544
|
+
maxValue: null,
|
|
28545
|
+
regexPattern: null,
|
|
28546
|
+
optionType: null,
|
|
28547
|
+
hasEmptyValue: null,
|
|
28548
|
+
options: null,
|
|
28549
|
+
restUrl: null,
|
|
28550
|
+
restResponsePath: null,
|
|
28551
|
+
restIdProperty: null,
|
|
28552
|
+
restLabelProperty: null,
|
|
28553
|
+
tab: null,
|
|
28554
|
+
className: null,
|
|
28555
|
+
dateDisplayFormat: null,
|
|
28556
|
+
layout: null,
|
|
28557
|
+
sizeX: 2,
|
|
28558
|
+
sizeY: 1,
|
|
28559
|
+
row: -1,
|
|
28560
|
+
col: -1,
|
|
28561
|
+
visibilityCondition: null,
|
|
28562
|
+
numberOfColumns: 2,
|
|
28563
|
+
fields: {
|
|
28564
|
+
'1': [
|
|
28622
28565
|
{
|
|
28623
|
-
|
|
28624
|
-
|
|
28566
|
+
fieldType: 'AmountFieldRepresentation',
|
|
28567
|
+
id: 'label',
|
|
28568
|
+
name: 'Label',
|
|
28569
|
+
type: 'amount',
|
|
28570
|
+
value: null,
|
|
28571
|
+
required: false,
|
|
28572
|
+
readOnly: false,
|
|
28573
|
+
overrideId: false,
|
|
28574
|
+
colspan: 1,
|
|
28575
|
+
placeholder: null,
|
|
28576
|
+
minLength: 0,
|
|
28577
|
+
maxLength: 0,
|
|
28578
|
+
minValue: null,
|
|
28579
|
+
maxValue: null,
|
|
28580
|
+
regexPattern: null,
|
|
28581
|
+
optionType: null,
|
|
28582
|
+
hasEmptyValue: null,
|
|
28583
|
+
options: null,
|
|
28584
|
+
restUrl: null,
|
|
28585
|
+
restResponsePath: null,
|
|
28586
|
+
restIdProperty: null,
|
|
28587
|
+
restLabelProperty: null,
|
|
28588
|
+
tab: null,
|
|
28589
|
+
className: null,
|
|
28590
|
+
params: {
|
|
28591
|
+
existingColspan: 1,
|
|
28592
|
+
maxColspan: 2
|
|
28593
|
+
},
|
|
28594
|
+
dateDisplayFormat: null,
|
|
28595
|
+
layout: {
|
|
28596
|
+
row: -1,
|
|
28597
|
+
column: -1,
|
|
28598
|
+
colspan: 1
|
|
28599
|
+
},
|
|
28600
|
+
sizeX: 1,
|
|
28601
|
+
sizeY: 1,
|
|
28602
|
+
row: -1,
|
|
28603
|
+
col: -1,
|
|
28604
|
+
visibilityCondition: null,
|
|
28605
|
+
enableFractions: false,
|
|
28606
|
+
currency: null
|
|
28625
28607
|
}
|
|
28626
28608
|
],
|
|
28627
|
-
|
|
28628
|
-
restResponsePath: null,
|
|
28629
|
-
restIdProperty: null,
|
|
28630
|
-
restLabelProperty: null,
|
|
28631
|
-
tab: null,
|
|
28632
|
-
className: null,
|
|
28633
|
-
params: {
|
|
28634
|
-
existingColspan: 1,
|
|
28635
|
-
maxColspan: 2
|
|
28636
|
-
},
|
|
28637
|
-
dateDisplayFormat: null,
|
|
28638
|
-
layout: {
|
|
28639
|
-
row: -1,
|
|
28640
|
-
column: -1,
|
|
28641
|
-
colspan: 1
|
|
28642
|
-
},
|
|
28643
|
-
sizeX: 1,
|
|
28644
|
-
sizeY: 1,
|
|
28645
|
-
row: -1,
|
|
28646
|
-
col: -1,
|
|
28647
|
-
visibilityCondition: null,
|
|
28648
|
-
endpoint: null,
|
|
28649
|
-
requestHeaders: null
|
|
28650
|
-
}
|
|
28651
|
-
],
|
|
28652
|
-
'2': [
|
|
28653
|
-
{
|
|
28654
|
-
fieldType: 'RestFieldRepresentation',
|
|
28655
|
-
id: 'radio',
|
|
28656
|
-
name: 'radio',
|
|
28657
|
-
type: 'radio-buttons',
|
|
28658
|
-
value: null,
|
|
28659
|
-
required: false,
|
|
28660
|
-
readOnly: false,
|
|
28661
|
-
overrideId: false,
|
|
28662
|
-
colspan: 1,
|
|
28663
|
-
placeholder: null,
|
|
28664
|
-
minLength: 0,
|
|
28665
|
-
maxLength: 0,
|
|
28666
|
-
minValue: null,
|
|
28667
|
-
maxValue: null,
|
|
28668
|
-
regexPattern: null,
|
|
28669
|
-
optionType: null,
|
|
28670
|
-
hasEmptyValue: null,
|
|
28671
|
-
options: [
|
|
28672
|
-
{
|
|
28673
|
-
id: 'option_1',
|
|
28674
|
-
name: 'Option 1'
|
|
28675
|
-
},
|
|
28676
|
-
{
|
|
28677
|
-
id: 'option_2',
|
|
28678
|
-
name: 'Option 2'
|
|
28679
|
-
},
|
|
28680
|
-
{
|
|
28681
|
-
id: 'option_3',
|
|
28682
|
-
name: 'Option 3'
|
|
28683
|
-
}
|
|
28684
|
-
],
|
|
28685
|
-
restUrl: null,
|
|
28686
|
-
restResponsePath: null,
|
|
28687
|
-
restIdProperty: null,
|
|
28688
|
-
restLabelProperty: null,
|
|
28689
|
-
tab: null,
|
|
28690
|
-
className: null,
|
|
28691
|
-
params: {
|
|
28692
|
-
existingColspan: 1,
|
|
28693
|
-
maxColspan: 1
|
|
28694
|
-
},
|
|
28695
|
-
dateDisplayFormat: null,
|
|
28696
|
-
layout: {
|
|
28697
|
-
row: -1,
|
|
28698
|
-
column: -1,
|
|
28699
|
-
colspan: 1
|
|
28700
|
-
},
|
|
28701
|
-
sizeX: 1,
|
|
28702
|
-
sizeY: 2,
|
|
28703
|
-
row: -1,
|
|
28704
|
-
col: -1,
|
|
28705
|
-
visibilityCondition: null,
|
|
28706
|
-
endpoint: null,
|
|
28707
|
-
requestHeaders: null
|
|
28708
|
-
}
|
|
28709
|
-
]
|
|
28710
|
-
}
|
|
28711
|
-
},
|
|
28712
|
-
{
|
|
28713
|
-
fieldType: 'ContainerRepresentation',
|
|
28714
|
-
id: '1498212413062',
|
|
28715
|
-
name: 'Label',
|
|
28716
|
-
type: 'container',
|
|
28717
|
-
value: null,
|
|
28718
|
-
required: false,
|
|
28719
|
-
readOnly: false,
|
|
28720
|
-
overrideId: false,
|
|
28721
|
-
colspan: 1,
|
|
28722
|
-
placeholder: null,
|
|
28723
|
-
minLength: 0,
|
|
28724
|
-
maxLength: 0,
|
|
28725
|
-
minValue: null,
|
|
28726
|
-
maxValue: null,
|
|
28727
|
-
regexPattern: null,
|
|
28728
|
-
optionType: null,
|
|
28729
|
-
hasEmptyValue: null,
|
|
28730
|
-
options: null,
|
|
28731
|
-
restUrl: null,
|
|
28732
|
-
restResponsePath: null,
|
|
28733
|
-
restIdProperty: null,
|
|
28734
|
-
restLabelProperty: null,
|
|
28735
|
-
tab: null,
|
|
28736
|
-
className: null,
|
|
28737
|
-
dateDisplayFormat: null,
|
|
28738
|
-
layout: null,
|
|
28739
|
-
sizeX: 2,
|
|
28740
|
-
sizeY: 1,
|
|
28741
|
-
row: -1,
|
|
28742
|
-
col: -1,
|
|
28743
|
-
visibilityCondition: null,
|
|
28744
|
-
numberOfColumns: 2,
|
|
28745
|
-
fields: {
|
|
28746
|
-
'1': [
|
|
28747
|
-
{
|
|
28748
|
-
fieldType: 'FormFieldRepresentation',
|
|
28749
|
-
id: 'date',
|
|
28750
|
-
name: 'date',
|
|
28751
|
-
type: 'date',
|
|
28752
|
-
value: null,
|
|
28753
|
-
required: false,
|
|
28754
|
-
readOnly: false,
|
|
28755
|
-
overrideId: false,
|
|
28756
|
-
colspan: 1,
|
|
28757
|
-
placeholder: null,
|
|
28758
|
-
minLength: 0,
|
|
28759
|
-
maxLength: 0,
|
|
28760
|
-
minValue: null,
|
|
28761
|
-
maxValue: null,
|
|
28762
|
-
regexPattern: null,
|
|
28763
|
-
optionType: null,
|
|
28764
|
-
hasEmptyValue: null,
|
|
28765
|
-
options: null,
|
|
28766
|
-
restUrl: null,
|
|
28767
|
-
restResponsePath: null,
|
|
28768
|
-
restIdProperty: null,
|
|
28769
|
-
restLabelProperty: null,
|
|
28770
|
-
tab: null,
|
|
28771
|
-
className: null,
|
|
28772
|
-
params: {
|
|
28773
|
-
existingColspan: 1,
|
|
28774
|
-
maxColspan: 2
|
|
28775
|
-
},
|
|
28776
|
-
dateDisplayFormat: null,
|
|
28777
|
-
layout: {
|
|
28778
|
-
row: -1,
|
|
28779
|
-
column: -1,
|
|
28780
|
-
colspan: 1
|
|
28781
|
-
},
|
|
28782
|
-
sizeX: 1,
|
|
28783
|
-
sizeY: 1,
|
|
28784
|
-
row: -1,
|
|
28785
|
-
col: -1,
|
|
28786
|
-
visibilityCondition: null
|
|
28787
|
-
}
|
|
28788
|
-
],
|
|
28789
|
-
'2': []
|
|
28790
|
-
}
|
|
28791
|
-
}
|
|
28792
|
-
],
|
|
28793
|
-
outcomes: [],
|
|
28794
|
-
javascriptEvents: [],
|
|
28795
|
-
className: '',
|
|
28796
|
-
style: '',
|
|
28797
|
-
customFieldTemplates: {},
|
|
28798
|
-
metadata: {},
|
|
28799
|
-
variables: [],
|
|
28800
|
-
customFieldsValueInfo: {},
|
|
28801
|
-
gridsterForm: false,
|
|
28802
|
-
globalDateFormat: 'D-M-YYYY'
|
|
28803
|
-
};
|
|
28804
|
-
|
|
28805
|
-
/*!
|
|
28806
|
-
* @license
|
|
28807
|
-
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
28808
|
-
*
|
|
28809
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
28810
|
-
* you may not use this file except in compliance with the License.
|
|
28811
|
-
* You may obtain a copy of the License at
|
|
28812
|
-
*
|
|
28813
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
28814
|
-
*
|
|
28815
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
28816
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
28817
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
28818
|
-
* See the License for the specific language governing permissions and
|
|
28819
|
-
* limitations under the License.
|
|
28820
|
-
*/
|
|
28821
|
-
const formDefinitionTwoTextFields = {
|
|
28822
|
-
id: 20,
|
|
28823
|
-
name: 'formTextDefinition',
|
|
28824
|
-
processDefinitionId: 'textDefinition:1:153',
|
|
28825
|
-
processDefinitionName: 'textDefinition',
|
|
28826
|
-
processDefinitionKey: 'textDefinition',
|
|
28827
|
-
taskId: '159',
|
|
28828
|
-
taskDefinitionKey: 'sid-D941F49F-2B04-4FBB-9B49-9E95991993E8',
|
|
28829
|
-
tabs: [],
|
|
28830
|
-
fields: [
|
|
28831
|
-
{
|
|
28832
|
-
fieldType: 'ContainerRepresentation',
|
|
28833
|
-
id: '1507044399260',
|
|
28834
|
-
name: 'Label',
|
|
28835
|
-
type: 'container',
|
|
28836
|
-
value: null,
|
|
28837
|
-
required: false,
|
|
28838
|
-
readOnly: false,
|
|
28839
|
-
overrideId: false,
|
|
28840
|
-
colspan: 1,
|
|
28841
|
-
placeholder: null,
|
|
28842
|
-
minLength: 0,
|
|
28843
|
-
maxLength: 0,
|
|
28844
|
-
minValue: null,
|
|
28845
|
-
maxValue: null,
|
|
28846
|
-
regexPattern: null,
|
|
28847
|
-
optionType: null,
|
|
28848
|
-
hasEmptyValue: null,
|
|
28849
|
-
options: null,
|
|
28850
|
-
restUrl: null,
|
|
28851
|
-
restResponsePath: null,
|
|
28852
|
-
restIdProperty: null,
|
|
28853
|
-
restLabelProperty: null,
|
|
28854
|
-
tab: null,
|
|
28855
|
-
className: null,
|
|
28856
|
-
dateDisplayFormat: null,
|
|
28857
|
-
layout: null,
|
|
28858
|
-
sizeX: 2,
|
|
28859
|
-
sizeY: 1,
|
|
28860
|
-
row: -1,
|
|
28861
|
-
col: -1,
|
|
28862
|
-
visibilityCondition: null,
|
|
28863
|
-
numberOfColumns: 2,
|
|
28864
|
-
fields: {
|
|
28865
|
-
'1': [
|
|
28866
|
-
{
|
|
28867
|
-
fieldType: 'FormFieldRepresentation',
|
|
28868
|
-
id: 'firstname',
|
|
28869
|
-
name: 'firstName',
|
|
28870
|
-
type: 'text',
|
|
28871
|
-
value: null,
|
|
28872
|
-
required: false,
|
|
28873
|
-
readOnly: false,
|
|
28874
|
-
overrideId: false,
|
|
28875
|
-
colspan: 1,
|
|
28876
|
-
placeholder: null,
|
|
28877
|
-
minLength: 0,
|
|
28878
|
-
maxLength: 0,
|
|
28879
|
-
minValue: null,
|
|
28880
|
-
maxValue: null,
|
|
28881
|
-
regexPattern: null,
|
|
28882
|
-
optionType: null,
|
|
28883
|
-
hasEmptyValue: null,
|
|
28884
|
-
options: null,
|
|
28885
|
-
restUrl: null,
|
|
28886
|
-
restResponsePath: null,
|
|
28887
|
-
restIdProperty: null,
|
|
28888
|
-
restLabelProperty: null,
|
|
28889
|
-
tab: null,
|
|
28890
|
-
className: null,
|
|
28891
|
-
params: {
|
|
28892
|
-
existingColspan: 1,
|
|
28893
|
-
maxColspan: 2
|
|
28894
|
-
},
|
|
28895
|
-
dateDisplayFormat: null,
|
|
28896
|
-
layout: {
|
|
28897
|
-
row: -1,
|
|
28898
|
-
column: -1,
|
|
28899
|
-
colspan: 1
|
|
28900
|
-
},
|
|
28901
|
-
sizeX: 1,
|
|
28902
|
-
sizeY: 1,
|
|
28903
|
-
row: -1,
|
|
28904
|
-
col: -1,
|
|
28905
|
-
visibilityCondition: null
|
|
28906
|
-
}
|
|
28907
|
-
],
|
|
28908
|
-
'2': [
|
|
28909
|
-
{
|
|
28910
|
-
fieldType: 'FormFieldRepresentation',
|
|
28911
|
-
id: 'lastname',
|
|
28912
|
-
name: 'lastName',
|
|
28913
|
-
type: 'text',
|
|
28914
|
-
value: null,
|
|
28915
|
-
required: false,
|
|
28916
|
-
readOnly: false,
|
|
28917
|
-
overrideId: false,
|
|
28918
|
-
colspan: 1,
|
|
28919
|
-
placeholder: null,
|
|
28920
|
-
minLength: 0,
|
|
28921
|
-
maxLength: 0,
|
|
28922
|
-
minValue: null,
|
|
28923
|
-
maxValue: null,
|
|
28924
|
-
regexPattern: null,
|
|
28925
|
-
optionType: null,
|
|
28926
|
-
hasEmptyValue: null,
|
|
28927
|
-
options: null,
|
|
28928
|
-
restUrl: null,
|
|
28929
|
-
restResponsePath: null,
|
|
28930
|
-
restIdProperty: null,
|
|
28931
|
-
restLabelProperty: null,
|
|
28932
|
-
tab: null,
|
|
28933
|
-
className: null,
|
|
28934
|
-
params: {
|
|
28935
|
-
existingColspan: 1,
|
|
28936
|
-
maxColspan: 1
|
|
28937
|
-
},
|
|
28938
|
-
dateDisplayFormat: null,
|
|
28939
|
-
layout: {
|
|
28940
|
-
row: -1,
|
|
28941
|
-
column: -1,
|
|
28942
|
-
colspan: 1
|
|
28943
|
-
},
|
|
28944
|
-
sizeX: 1,
|
|
28945
|
-
sizeY: 1,
|
|
28946
|
-
row: -1,
|
|
28947
|
-
col: -1,
|
|
28948
|
-
visibilityCondition: null
|
|
28949
|
-
}
|
|
28950
|
-
]
|
|
28951
|
-
}
|
|
28952
|
-
}
|
|
28953
|
-
],
|
|
28954
|
-
outcomes: [],
|
|
28955
|
-
javascriptEvents: [],
|
|
28956
|
-
className: '',
|
|
28957
|
-
style: '',
|
|
28958
|
-
customFieldTemplates: {},
|
|
28959
|
-
metadata: {},
|
|
28960
|
-
variables: [],
|
|
28961
|
-
customFieldsValueInfo: {},
|
|
28962
|
-
gridsterForm: false,
|
|
28963
|
-
globalDateFormat: 'D-M-YYYY'
|
|
28964
|
-
};
|
|
28965
|
-
const formDefinitionDropdownField = {
|
|
28966
|
-
id: 21,
|
|
28967
|
-
name: 'dropdownDefinition',
|
|
28968
|
-
processDefinitionId: 'textDefinition:2:163',
|
|
28969
|
-
processDefinitionName: 'textDefinition',
|
|
28970
|
-
processDefinitionKey: 'textDefinition',
|
|
28971
|
-
taskId: '169',
|
|
28972
|
-
taskDefinitionKey: 'sid-D941F49F-2B04-4FBB-9B49-9E95991993E8',
|
|
28973
|
-
tabs: [],
|
|
28974
|
-
fields: [
|
|
28975
|
-
{
|
|
28976
|
-
fieldType: 'ContainerRepresentation',
|
|
28977
|
-
id: '1507046026940',
|
|
28978
|
-
name: 'Label',
|
|
28979
|
-
type: 'container',
|
|
28980
|
-
value: null,
|
|
28981
|
-
required: false,
|
|
28982
|
-
readOnly: false,
|
|
28983
|
-
overrideId: false,
|
|
28984
|
-
colspan: 1,
|
|
28985
|
-
placeholder: null,
|
|
28986
|
-
minLength: 0,
|
|
28987
|
-
maxLength: 0,
|
|
28988
|
-
minValue: null,
|
|
28989
|
-
maxValue: null,
|
|
28990
|
-
regexPattern: null,
|
|
28991
|
-
optionType: null,
|
|
28992
|
-
hasEmptyValue: null,
|
|
28993
|
-
options: null,
|
|
28994
|
-
restUrl: null,
|
|
28995
|
-
restResponsePath: null,
|
|
28996
|
-
restIdProperty: null,
|
|
28997
|
-
restLabelProperty: null,
|
|
28998
|
-
tab: null,
|
|
28999
|
-
className: null,
|
|
29000
|
-
dateDisplayFormat: null,
|
|
29001
|
-
layout: null,
|
|
29002
|
-
sizeX: 2,
|
|
29003
|
-
sizeY: 1,
|
|
29004
|
-
row: -1,
|
|
29005
|
-
col: -1,
|
|
29006
|
-
visibilityCondition: null,
|
|
29007
|
-
numberOfColumns: 2,
|
|
29008
|
-
fields: {
|
|
29009
|
-
'1': [
|
|
29010
|
-
{
|
|
29011
|
-
fieldType: 'RestFieldRepresentation',
|
|
29012
|
-
id: 'country',
|
|
29013
|
-
name: 'country',
|
|
29014
|
-
type: 'dropdown',
|
|
29015
|
-
value: 'Choose one...',
|
|
29016
|
-
required: false,
|
|
29017
|
-
readOnly: false,
|
|
29018
|
-
overrideId: false,
|
|
29019
|
-
colspan: 1,
|
|
29020
|
-
placeholder: null,
|
|
29021
|
-
minLength: 0,
|
|
29022
|
-
maxLength: 0,
|
|
29023
|
-
minValue: null,
|
|
29024
|
-
maxValue: null,
|
|
29025
|
-
regexPattern: null,
|
|
29026
|
-
optionType: null,
|
|
29027
|
-
hasEmptyValue: true,
|
|
29028
|
-
options: [
|
|
29029
|
-
{
|
|
29030
|
-
id: 'empty',
|
|
29031
|
-
name: 'Choose one...'
|
|
29032
|
-
},
|
|
29033
|
-
{
|
|
29034
|
-
id: 'option_1',
|
|
29035
|
-
name: 'united kingdom'
|
|
29036
|
-
},
|
|
29037
|
-
{
|
|
29038
|
-
id: 'option_2',
|
|
29039
|
-
name: 'italy'
|
|
29040
|
-
},
|
|
29041
|
-
{
|
|
29042
|
-
id: 'option_3',
|
|
29043
|
-
name: 'france'
|
|
29044
|
-
}
|
|
29045
|
-
],
|
|
29046
|
-
restUrl: null,
|
|
29047
|
-
restResponsePath: null,
|
|
29048
|
-
restIdProperty: null,
|
|
29049
|
-
restLabelProperty: null,
|
|
29050
|
-
tab: null,
|
|
29051
|
-
className: null,
|
|
29052
|
-
params: {
|
|
29053
|
-
existingColspan: 1,
|
|
29054
|
-
maxColspan: 2
|
|
29055
|
-
},
|
|
29056
|
-
dateDisplayFormat: null,
|
|
29057
|
-
layout: {
|
|
29058
|
-
row: -1,
|
|
29059
|
-
column: -1,
|
|
29060
|
-
colspan: 1
|
|
29061
|
-
},
|
|
29062
|
-
sizeX: 1,
|
|
29063
|
-
sizeY: 1,
|
|
29064
|
-
row: -1,
|
|
29065
|
-
col: -1,
|
|
29066
|
-
visibilityCondition: null,
|
|
29067
|
-
endpoint: null,
|
|
29068
|
-
requestHeaders: null
|
|
29069
|
-
}
|
|
29070
|
-
],
|
|
29071
|
-
'2': []
|
|
29072
|
-
}
|
|
29073
|
-
}
|
|
29074
|
-
],
|
|
29075
|
-
outcomes: [],
|
|
29076
|
-
javascriptEvents: [],
|
|
29077
|
-
className: '',
|
|
29078
|
-
style: '',
|
|
29079
|
-
customFieldTemplates: {},
|
|
29080
|
-
metadata: {},
|
|
29081
|
-
variables: [],
|
|
29082
|
-
customFieldsValueInfo: {},
|
|
29083
|
-
gridsterForm: false,
|
|
29084
|
-
globalDateFormat: 'D-M-YYYY'
|
|
29085
|
-
};
|
|
29086
|
-
const formDefinitionRequiredField = {
|
|
29087
|
-
id: 21,
|
|
29088
|
-
name: 'dropdownDefinition',
|
|
29089
|
-
processDefinitionId: 'textDefinition:2:163',
|
|
29090
|
-
processDefinitionName: 'textDefinition',
|
|
29091
|
-
processDefinitionKey: 'textDefinition',
|
|
29092
|
-
taskId: '169',
|
|
29093
|
-
taskDefinitionKey: 'sid-D941F49F-2B04-4FBB-9B49-9E95991993E8',
|
|
29094
|
-
tabs: [],
|
|
29095
|
-
fields: [
|
|
29096
|
-
{
|
|
29097
|
-
fieldType: 'ContainerRepresentation',
|
|
29098
|
-
id: '1507046026940',
|
|
29099
|
-
name: 'Label',
|
|
29100
|
-
type: 'container',
|
|
29101
|
-
value: null,
|
|
29102
|
-
required: false,
|
|
29103
|
-
readOnly: false,
|
|
29104
|
-
overrideId: false,
|
|
29105
|
-
colspan: 1,
|
|
29106
|
-
placeholder: null,
|
|
29107
|
-
minLength: 0,
|
|
29108
|
-
maxLength: 0,
|
|
29109
|
-
minValue: null,
|
|
29110
|
-
maxValue: null,
|
|
29111
|
-
regexPattern: null,
|
|
29112
|
-
optionType: null,
|
|
29113
|
-
hasEmptyValue: null,
|
|
29114
|
-
options: null,
|
|
29115
|
-
restUrl: null,
|
|
29116
|
-
restResponsePath: null,
|
|
29117
|
-
restIdProperty: null,
|
|
29118
|
-
restLabelProperty: null,
|
|
29119
|
-
tab: null,
|
|
29120
|
-
className: null,
|
|
29121
|
-
dateDisplayFormat: null,
|
|
29122
|
-
layout: null,
|
|
29123
|
-
sizeX: 2,
|
|
29124
|
-
sizeY: 1,
|
|
29125
|
-
row: -1,
|
|
29126
|
-
col: -1,
|
|
29127
|
-
visibilityCondition: null,
|
|
29128
|
-
numberOfColumns: 2,
|
|
29129
|
-
fields: {
|
|
29130
|
-
'1': [
|
|
29131
|
-
{
|
|
29132
|
-
fieldType: 'RestFieldRepresentation',
|
|
29133
|
-
id: 'country',
|
|
29134
|
-
name: 'country',
|
|
29135
|
-
type: 'dropdown',
|
|
29136
|
-
value: 'Choose one...',
|
|
29137
|
-
required: true,
|
|
29138
|
-
readOnly: false,
|
|
29139
|
-
overrideId: false,
|
|
29140
|
-
colspan: 1,
|
|
29141
|
-
placeholder: null,
|
|
29142
|
-
minLength: 0,
|
|
29143
|
-
maxLength: 0,
|
|
29144
|
-
minValue: null,
|
|
29145
|
-
maxValue: null,
|
|
29146
|
-
regexPattern: null,
|
|
29147
|
-
optionType: null,
|
|
29148
|
-
hasEmptyValue: true,
|
|
29149
|
-
options: [
|
|
29150
|
-
{
|
|
29151
|
-
id: 'empty',
|
|
29152
|
-
name: 'Choose one...'
|
|
29153
|
-
},
|
|
29154
|
-
{
|
|
29155
|
-
id: 'option_1',
|
|
29156
|
-
name: 'united kingdom'
|
|
29157
|
-
},
|
|
29158
|
-
{
|
|
29159
|
-
id: 'option_2',
|
|
29160
|
-
name: 'italy'
|
|
29161
|
-
},
|
|
29162
|
-
{
|
|
29163
|
-
id: 'option_3',
|
|
29164
|
-
name: 'france'
|
|
29165
|
-
}
|
|
29166
|
-
],
|
|
29167
|
-
restUrl: null,
|
|
29168
|
-
restResponsePath: null,
|
|
29169
|
-
restIdProperty: null,
|
|
29170
|
-
restLabelProperty: null,
|
|
29171
|
-
tab: null,
|
|
29172
|
-
className: null,
|
|
29173
|
-
params: {
|
|
29174
|
-
existingColspan: 1,
|
|
29175
|
-
maxColspan: 2
|
|
29176
|
-
},
|
|
29177
|
-
dateDisplayFormat: null,
|
|
29178
|
-
layout: {
|
|
29179
|
-
row: -1,
|
|
29180
|
-
column: -1,
|
|
29181
|
-
colspan: 1
|
|
29182
|
-
},
|
|
29183
|
-
sizeX: 1,
|
|
29184
|
-
sizeY: 1,
|
|
29185
|
-
row: -1,
|
|
29186
|
-
col: -1,
|
|
29187
|
-
visibilityCondition: null,
|
|
29188
|
-
endpoint: null,
|
|
29189
|
-
requestHeaders: null
|
|
29190
|
-
}
|
|
29191
|
-
],
|
|
29192
|
-
'2': []
|
|
29193
|
-
}
|
|
29194
|
-
}
|
|
29195
|
-
],
|
|
29196
|
-
outcomes: [],
|
|
29197
|
-
javascriptEvents: [],
|
|
29198
|
-
className: '',
|
|
29199
|
-
style: '',
|
|
29200
|
-
customFieldTemplates: {},
|
|
29201
|
-
metadata: {},
|
|
29202
|
-
variables: [],
|
|
29203
|
-
customFieldsValueInfo: {},
|
|
29204
|
-
gridsterForm: false,
|
|
29205
|
-
globalDateFormat: 'D-M-YYYY'
|
|
29206
|
-
};
|
|
29207
|
-
|
|
29208
|
-
/*!
|
|
29209
|
-
* @license
|
|
29210
|
-
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
29211
|
-
*
|
|
29212
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
29213
|
-
* you may not use this file except in compliance with the License.
|
|
29214
|
-
* You may obtain a copy of the License at
|
|
29215
|
-
*
|
|
29216
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
29217
|
-
*
|
|
29218
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
29219
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
29220
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
29221
|
-
* See the License for the specific language governing permissions and
|
|
29222
|
-
* limitations under the License.
|
|
29223
|
-
*/
|
|
29224
|
-
const formReadonlyTwoTextFields = {
|
|
29225
|
-
id: 22,
|
|
29226
|
-
name: 'formTextDefinition',
|
|
29227
|
-
processDefinitionId: 'textDefinition:3:182',
|
|
29228
|
-
processDefinitionName: 'textDefinition',
|
|
29229
|
-
processDefinitionKey: 'textDefinition',
|
|
29230
|
-
taskId: '188',
|
|
29231
|
-
taskDefinitionKey: 'sid-D941F49F-2B04-4FBB-9B49-9E95991993E8',
|
|
29232
|
-
tabs: [],
|
|
29233
|
-
fields: [
|
|
29234
|
-
{
|
|
29235
|
-
fieldType: 'ContainerRepresentation',
|
|
29236
|
-
id: '1507044399260',
|
|
29237
|
-
name: 'Label',
|
|
29238
|
-
type: 'container',
|
|
29239
|
-
value: null,
|
|
29240
|
-
required: false,
|
|
29241
|
-
readOnly: false,
|
|
29242
|
-
overrideId: false,
|
|
29243
|
-
colspan: 1,
|
|
29244
|
-
placeholder: null,
|
|
29245
|
-
minLength: 0,
|
|
29246
|
-
maxLength: 0,
|
|
29247
|
-
minValue: null,
|
|
29248
|
-
maxValue: null,
|
|
29249
|
-
regexPattern: null,
|
|
29250
|
-
optionType: null,
|
|
29251
|
-
hasEmptyValue: null,
|
|
29252
|
-
options: null,
|
|
29253
|
-
restUrl: null,
|
|
29254
|
-
restResponsePath: null,
|
|
29255
|
-
restIdProperty: null,
|
|
29256
|
-
restLabelProperty: null,
|
|
29257
|
-
tab: null,
|
|
29258
|
-
className: null,
|
|
29259
|
-
dateDisplayFormat: null,
|
|
29260
|
-
layout: null,
|
|
29261
|
-
sizeX: 2,
|
|
29262
|
-
sizeY: 1,
|
|
29263
|
-
row: -1,
|
|
29264
|
-
col: -1,
|
|
29265
|
-
visibilityCondition: null,
|
|
29266
|
-
numberOfColumns: 2,
|
|
29267
|
-
fields: {
|
|
29268
|
-
'1': [
|
|
29269
|
-
{
|
|
29270
|
-
fieldType: 'FormFieldRepresentation',
|
|
29271
|
-
id: 'firstname',
|
|
29272
|
-
name: 'firstName',
|
|
29273
|
-
type: 'readonly',
|
|
29274
|
-
value: 'fakeFirstName',
|
|
29275
|
-
required: false,
|
|
29276
|
-
readOnly: false,
|
|
29277
|
-
overrideId: false,
|
|
29278
|
-
colspan: 1,
|
|
29279
|
-
placeholder: null,
|
|
29280
|
-
minLength: 0,
|
|
29281
|
-
maxLength: 0,
|
|
29282
|
-
minValue: null,
|
|
29283
|
-
maxValue: null,
|
|
29284
|
-
regexPattern: null,
|
|
29285
|
-
optionType: null,
|
|
29286
|
-
hasEmptyValue: null,
|
|
29287
|
-
options: null,
|
|
29288
|
-
restUrl: null,
|
|
29289
|
-
restResponsePath: null,
|
|
29290
|
-
restIdProperty: null,
|
|
29291
|
-
restLabelProperty: null,
|
|
29292
|
-
tab: null,
|
|
29293
|
-
className: null,
|
|
29294
|
-
params: {
|
|
29295
|
-
existingColspan: 1,
|
|
29296
|
-
maxColspan: 2,
|
|
29297
|
-
field: {
|
|
29298
|
-
id: 'firstname',
|
|
29299
|
-
name: 'firstName',
|
|
29300
|
-
type: 'text',
|
|
29301
|
-
value: null,
|
|
29302
|
-
required: false,
|
|
29303
|
-
readOnly: false,
|
|
29304
|
-
overrideId: false,
|
|
29305
|
-
colspan: 1,
|
|
29306
|
-
placeholder: null,
|
|
29307
|
-
minLength: 0,
|
|
29308
|
-
maxLength: 0,
|
|
29309
|
-
minValue: null,
|
|
29310
|
-
maxValue: null,
|
|
29311
|
-
regexPattern: null,
|
|
29312
|
-
optionType: null,
|
|
29313
|
-
hasEmptyValue: null,
|
|
29314
|
-
options: null,
|
|
29315
|
-
restUrl: null,
|
|
29316
|
-
restResponsePath: null,
|
|
29317
|
-
restIdProperty: null,
|
|
29318
|
-
restLabelProperty: null,
|
|
29319
|
-
tab: null,
|
|
29320
|
-
className: null,
|
|
29321
|
-
dateDisplayFormat: null,
|
|
29322
|
-
layout: null,
|
|
29323
|
-
sizeX: 0,
|
|
29324
|
-
sizeY: 0,
|
|
29325
|
-
row: 0,
|
|
29326
|
-
col: 0,
|
|
29327
|
-
visibilityCondition: null
|
|
29328
|
-
}
|
|
29329
|
-
},
|
|
29330
|
-
dateDisplayFormat: null,
|
|
29331
|
-
layout: {
|
|
29332
|
-
row: -1,
|
|
29333
|
-
column: -1,
|
|
29334
|
-
colspan: 1
|
|
29335
|
-
},
|
|
29336
|
-
sizeX: 1,
|
|
29337
|
-
sizeY: 1,
|
|
29338
|
-
row: -1,
|
|
29339
|
-
col: -1,
|
|
29340
|
-
visibilityCondition: null
|
|
29341
|
-
}
|
|
29342
|
-
],
|
|
29343
|
-
'2': [
|
|
29344
|
-
{
|
|
29345
|
-
fieldType: 'FormFieldRepresentation',
|
|
29346
|
-
id: 'lastname',
|
|
29347
|
-
name: 'lastName',
|
|
29348
|
-
type: 'readonly',
|
|
29349
|
-
value: 'fakeLastName',
|
|
29350
|
-
required: false,
|
|
29351
|
-
readOnly: false,
|
|
29352
|
-
overrideId: false,
|
|
29353
|
-
colspan: 1,
|
|
29354
|
-
placeholder: null,
|
|
29355
|
-
minLength: 0,
|
|
29356
|
-
maxLength: 0,
|
|
29357
|
-
minValue: null,
|
|
29358
|
-
maxValue: null,
|
|
29359
|
-
regexPattern: null,
|
|
29360
|
-
optionType: null,
|
|
29361
|
-
hasEmptyValue: null,
|
|
29362
|
-
options: null,
|
|
29363
|
-
restUrl: null,
|
|
29364
|
-
restResponsePath: null,
|
|
29365
|
-
restIdProperty: null,
|
|
29366
|
-
restLabelProperty: null,
|
|
29367
|
-
tab: null,
|
|
29368
|
-
className: null,
|
|
29369
|
-
params: {
|
|
29370
|
-
existingColspan: 1,
|
|
29371
|
-
maxColspan: 1,
|
|
29372
|
-
field: {
|
|
29373
|
-
id: 'lastname',
|
|
29374
|
-
name: 'lastName',
|
|
29375
|
-
type: 'text',
|
|
29376
|
-
value: null,
|
|
29377
|
-
required: false,
|
|
29378
|
-
readOnly: false,
|
|
29379
|
-
overrideId: false,
|
|
29380
|
-
colspan: 1,
|
|
29381
|
-
placeholder: null,
|
|
29382
|
-
minLength: 0,
|
|
29383
|
-
maxLength: 0,
|
|
29384
|
-
minValue: null,
|
|
29385
|
-
maxValue: null,
|
|
29386
|
-
regexPattern: null,
|
|
29387
|
-
optionType: null,
|
|
29388
|
-
hasEmptyValue: null,
|
|
29389
|
-
options: null,
|
|
29390
|
-
restUrl: null,
|
|
29391
|
-
restResponsePath: null,
|
|
29392
|
-
restIdProperty: null,
|
|
29393
|
-
restLabelProperty: null,
|
|
29394
|
-
tab: null,
|
|
29395
|
-
className: null,
|
|
29396
|
-
dateDisplayFormat: null,
|
|
29397
|
-
layout: null,
|
|
29398
|
-
sizeX: 0,
|
|
29399
|
-
sizeY: 0,
|
|
29400
|
-
row: 0,
|
|
29401
|
-
col: 0,
|
|
29402
|
-
visibilityCondition: null
|
|
29403
|
-
}
|
|
29404
|
-
},
|
|
29405
|
-
dateDisplayFormat: null,
|
|
29406
|
-
layout: {
|
|
29407
|
-
row: -1,
|
|
29408
|
-
column: -1,
|
|
29409
|
-
colspan: 1
|
|
29410
|
-
},
|
|
29411
|
-
sizeX: 1,
|
|
29412
|
-
sizeY: 1,
|
|
29413
|
-
row: -1,
|
|
29414
|
-
col: -1,
|
|
29415
|
-
visibilityCondition: null
|
|
29416
|
-
}
|
|
29417
|
-
]
|
|
29418
|
-
}
|
|
29419
|
-
}
|
|
29420
|
-
],
|
|
29421
|
-
outcomes: [],
|
|
29422
|
-
javascriptEvents: [],
|
|
29423
|
-
className: '',
|
|
29424
|
-
style: '',
|
|
29425
|
-
customFieldTemplates: {},
|
|
29426
|
-
metadata: {},
|
|
29427
|
-
variables: [],
|
|
29428
|
-
customFieldsValueInfo: {},
|
|
29429
|
-
gridsterForm: false,
|
|
29430
|
-
globalDateFormat: 'D-M-YYYY'
|
|
29431
|
-
};
|
|
29432
|
-
|
|
29433
|
-
/*!
|
|
29434
|
-
* @license
|
|
29435
|
-
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
29436
|
-
*
|
|
29437
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
29438
|
-
* you may not use this file except in compliance with the License.
|
|
29439
|
-
* You may obtain a copy of the License at
|
|
29440
|
-
*
|
|
29441
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
29442
|
-
*
|
|
29443
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
29444
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
29445
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
29446
|
-
* See the License for the specific language governing permissions and
|
|
29447
|
-
* limitations under the License.
|
|
29448
|
-
*/
|
|
29449
|
-
const formDefVisibilityFieldDependsOnNextOne = {
|
|
29450
|
-
id: 19,
|
|
29451
|
-
processDefinitionId: 'visibility:1:148',
|
|
29452
|
-
processDefinitionName: 'visibility',
|
|
29453
|
-
processDefinitionKey: 'visibility',
|
|
29454
|
-
tabs: [],
|
|
29455
|
-
fields: [
|
|
29456
|
-
{
|
|
29457
|
-
fieldType: 'ContainerRepresentation',
|
|
29458
|
-
id: '1506960847579',
|
|
29459
|
-
name: 'Label',
|
|
29460
|
-
type: 'container',
|
|
29461
|
-
value: null,
|
|
29462
|
-
required: false,
|
|
29463
|
-
readOnly: false,
|
|
29464
|
-
overrideId: false,
|
|
29465
|
-
colspan: 1,
|
|
29466
|
-
placeholder: null,
|
|
29467
|
-
minLength: 0,
|
|
29468
|
-
maxLength: 0,
|
|
29469
|
-
minValue: null,
|
|
29470
|
-
maxValue: null,
|
|
29471
|
-
regexPattern: null,
|
|
29472
|
-
optionType: null,
|
|
29473
|
-
hasEmptyValue: null,
|
|
29474
|
-
options: null,
|
|
29475
|
-
restUrl: null,
|
|
29476
|
-
restResponsePath: null,
|
|
29477
|
-
restIdProperty: null,
|
|
29478
|
-
restLabelProperty: null,
|
|
29479
|
-
tab: null,
|
|
29480
|
-
className: null,
|
|
29481
|
-
dateDisplayFormat: null,
|
|
29482
|
-
layout: null,
|
|
29483
|
-
sizeX: 2,
|
|
29484
|
-
sizeY: 1,
|
|
29485
|
-
row: -1,
|
|
29486
|
-
col: -1,
|
|
29487
|
-
visibilityCondition: null,
|
|
29488
|
-
numberOfColumns: 2,
|
|
29489
|
-
fields: {
|
|
29490
|
-
'1': [
|
|
29491
|
-
{
|
|
29492
|
-
fieldType: 'RestFieldRepresentation',
|
|
29493
|
-
id: 'country',
|
|
29494
|
-
name: 'country',
|
|
29495
|
-
type: 'dropdown',
|
|
29496
|
-
value: 'Choose one...',
|
|
29497
|
-
required: false,
|
|
29498
|
-
readOnly: false,
|
|
29499
|
-
overrideId: false,
|
|
29500
|
-
colspan: 1,
|
|
29501
|
-
placeholder: null,
|
|
29502
|
-
minLength: 0,
|
|
29503
|
-
maxLength: 0,
|
|
29504
|
-
minValue: null,
|
|
29505
|
-
maxValue: null,
|
|
29506
|
-
regexPattern: null,
|
|
29507
|
-
optionType: null,
|
|
29508
|
-
hasEmptyValue: true,
|
|
29509
|
-
options: [
|
|
29510
|
-
{
|
|
29511
|
-
id: 'empty',
|
|
29512
|
-
name: 'Choose one...'
|
|
29513
|
-
},
|
|
29514
|
-
{
|
|
29515
|
-
id: 'option_1',
|
|
29516
|
-
name: 'france'
|
|
29517
|
-
},
|
|
29518
|
-
{
|
|
29519
|
-
id: 'option_2',
|
|
29520
|
-
name: 'uk'
|
|
29521
|
-
}
|
|
29522
|
-
],
|
|
29523
|
-
restUrl: null,
|
|
29524
|
-
restResponsePath: null,
|
|
29525
|
-
restIdProperty: null,
|
|
29526
|
-
restLabelProperty: null,
|
|
29527
|
-
tab: null,
|
|
29528
|
-
className: null,
|
|
29529
|
-
params: {
|
|
29530
|
-
existingColspan: 1,
|
|
29531
|
-
maxColspan: 2
|
|
29532
|
-
},
|
|
29533
|
-
dateDisplayFormat: null,
|
|
29534
|
-
layout: {
|
|
29535
|
-
row: -1,
|
|
29536
|
-
column: -1,
|
|
29537
|
-
colspan: 1
|
|
29538
|
-
},
|
|
29539
|
-
sizeX: 1,
|
|
29540
|
-
sizeY: 1,
|
|
29541
|
-
row: -1,
|
|
29542
|
-
col: -1,
|
|
29543
|
-
visibilityCondition: {
|
|
29544
|
-
leftType: 'field',
|
|
29545
|
-
leftValue: 'name',
|
|
29546
|
-
operator: '==',
|
|
29547
|
-
rightValue: 'italy',
|
|
29548
|
-
rightFormFieldId: '',
|
|
29549
|
-
rightRestResponseId: '',
|
|
29550
|
-
nextConditionOperator: '',
|
|
29551
|
-
nextCondition: null
|
|
29552
|
-
},
|
|
29553
|
-
endpoint: null,
|
|
29554
|
-
requestHeaders: null
|
|
29555
|
-
}
|
|
29556
|
-
],
|
|
29557
|
-
'2': [
|
|
29558
|
-
{
|
|
29559
|
-
fieldType: 'FormFieldRepresentation',
|
|
29560
|
-
id: 'name',
|
|
29561
|
-
name: 'name',
|
|
29562
|
-
type: 'text',
|
|
29563
|
-
value: null,
|
|
29564
|
-
required: false,
|
|
29565
|
-
readOnly: false,
|
|
29566
|
-
overrideId: false,
|
|
29567
|
-
colspan: 1,
|
|
29568
|
-
placeholder: null,
|
|
29569
|
-
minLength: 0,
|
|
29570
|
-
maxLength: 0,
|
|
29571
|
-
minValue: null,
|
|
29572
|
-
maxValue: null,
|
|
29573
|
-
regexPattern: null,
|
|
29574
|
-
optionType: null,
|
|
29575
|
-
hasEmptyValue: null,
|
|
29576
|
-
options: null,
|
|
29577
|
-
restUrl: null,
|
|
29578
|
-
restResponsePath: null,
|
|
29579
|
-
restIdProperty: null,
|
|
29580
|
-
restLabelProperty: null,
|
|
29581
|
-
tab: null,
|
|
29582
|
-
className: null,
|
|
29583
|
-
params: {
|
|
29584
|
-
existingColspan: 1,
|
|
29585
|
-
maxColspan: 1
|
|
29586
|
-
},
|
|
29587
|
-
dateDisplayFormat: null,
|
|
29588
|
-
layout: {
|
|
29589
|
-
row: -1,
|
|
29590
|
-
column: -1,
|
|
29591
|
-
colspan: 1
|
|
29592
|
-
},
|
|
29593
|
-
sizeX: 1,
|
|
29594
|
-
sizeY: 1,
|
|
29595
|
-
row: -1,
|
|
29596
|
-
col: -1,
|
|
29597
|
-
visibilityCondition: null
|
|
29598
|
-
}
|
|
29599
|
-
]
|
|
29600
|
-
}
|
|
29601
|
-
}
|
|
29602
|
-
],
|
|
29603
|
-
outcomes: [],
|
|
29604
|
-
javascriptEvents: [],
|
|
29605
|
-
className: '',
|
|
29606
|
-
style: '',
|
|
29607
|
-
customFieldTemplates: {},
|
|
29608
|
-
metadata: {},
|
|
29609
|
-
variables: [],
|
|
29610
|
-
customFieldsValueInfo: {},
|
|
29611
|
-
gridsterForm: false,
|
|
29612
|
-
globalDateFormat: 'D-M-YYYY'
|
|
29613
|
-
};
|
|
29614
|
-
const formDefVisibilitiFieldDependsOnPreviousOne = {
|
|
29615
|
-
id: 19,
|
|
29616
|
-
processDefinitionId: 'visibility:1:148',
|
|
29617
|
-
processDefinitionName: 'visibility',
|
|
29618
|
-
processDefinitionKey: 'visibility',
|
|
29619
|
-
tabs: [],
|
|
29620
|
-
fields: [
|
|
29621
|
-
{
|
|
29622
|
-
fieldType: 'ContainerRepresentation',
|
|
29623
|
-
id: '1506960847579',
|
|
29624
|
-
name: 'Label',
|
|
29625
|
-
type: 'container',
|
|
29626
|
-
value: null,
|
|
29627
|
-
required: false,
|
|
29628
|
-
readOnly: false,
|
|
29629
|
-
overrideId: false,
|
|
29630
|
-
colspan: 1,
|
|
29631
|
-
placeholder: null,
|
|
29632
|
-
minLength: 0,
|
|
29633
|
-
maxLength: 0,
|
|
29634
|
-
minValue: null,
|
|
29635
|
-
maxValue: null,
|
|
29636
|
-
regexPattern: null,
|
|
29637
|
-
optionType: null,
|
|
29638
|
-
hasEmptyValue: null,
|
|
29639
|
-
options: null,
|
|
29640
|
-
restUrl: null,
|
|
29641
|
-
restResponsePath: null,
|
|
29642
|
-
restIdProperty: null,
|
|
29643
|
-
restLabelProperty: null,
|
|
29644
|
-
tab: null,
|
|
29645
|
-
className: null,
|
|
29646
|
-
dateDisplayFormat: null,
|
|
29647
|
-
layout: null,
|
|
29648
|
-
sizeX: 2,
|
|
29649
|
-
sizeY: 1,
|
|
29650
|
-
row: -1,
|
|
29651
|
-
col: -1,
|
|
29652
|
-
visibilityCondition: null,
|
|
29653
|
-
numberOfColumns: 2,
|
|
29654
|
-
fields: {
|
|
29655
|
-
'1': [
|
|
29656
|
-
{
|
|
29657
|
-
fieldType: 'FormFieldRepresentation',
|
|
29658
|
-
id: 'name',
|
|
29659
|
-
name: 'name',
|
|
29660
|
-
type: 'text',
|
|
29661
|
-
value: null,
|
|
29662
|
-
required: false,
|
|
29663
|
-
readOnly: false,
|
|
29664
|
-
overrideId: false,
|
|
29665
|
-
colspan: 1,
|
|
29666
|
-
placeholder: null,
|
|
29667
|
-
minLength: 0,
|
|
29668
|
-
maxLength: 0,
|
|
29669
|
-
minValue: null,
|
|
29670
|
-
maxValue: null,
|
|
29671
|
-
regexPattern: null,
|
|
29672
|
-
optionType: null,
|
|
29673
|
-
hasEmptyValue: null,
|
|
29674
|
-
options: null,
|
|
29675
|
-
restUrl: null,
|
|
29676
|
-
restResponsePath: null,
|
|
29677
|
-
restIdProperty: null,
|
|
29678
|
-
restLabelProperty: null,
|
|
29679
|
-
tab: null,
|
|
29680
|
-
className: null,
|
|
29681
|
-
params: {
|
|
29682
|
-
existingColspan: 1,
|
|
29683
|
-
maxColspan: 1
|
|
29684
|
-
},
|
|
29685
|
-
dateDisplayFormat: null,
|
|
29686
|
-
layout: {
|
|
29687
|
-
row: -1,
|
|
29688
|
-
column: -1,
|
|
29689
|
-
colspan: 1
|
|
29690
|
-
},
|
|
29691
|
-
sizeX: 1,
|
|
29692
|
-
sizeY: 1,
|
|
29693
|
-
row: -1,
|
|
29694
|
-
col: -1,
|
|
29695
|
-
visibilityCondition: null
|
|
29696
|
-
}
|
|
29697
|
-
],
|
|
29698
|
-
'2': [
|
|
29699
|
-
{
|
|
29700
|
-
fieldType: 'RestFieldRepresentation',
|
|
29701
|
-
id: 'country',
|
|
29702
|
-
name: 'country',
|
|
29703
|
-
type: 'dropdown',
|
|
29704
|
-
value: 'Choose one...',
|
|
29705
|
-
required: false,
|
|
29706
|
-
readOnly: false,
|
|
29707
|
-
overrideId: false,
|
|
29708
|
-
colspan: 1,
|
|
29709
|
-
placeholder: null,
|
|
29710
|
-
minLength: 0,
|
|
29711
|
-
maxLength: 0,
|
|
29712
|
-
minValue: null,
|
|
29713
|
-
maxValue: null,
|
|
29714
|
-
regexPattern: null,
|
|
29715
|
-
optionType: null,
|
|
29716
|
-
hasEmptyValue: true,
|
|
29717
|
-
options: [
|
|
29718
|
-
{
|
|
29719
|
-
id: 'empty',
|
|
29720
|
-
name: 'Choose one...'
|
|
29721
|
-
},
|
|
29722
|
-
{
|
|
29723
|
-
id: 'option_1',
|
|
29724
|
-
name: 'france'
|
|
29725
|
-
},
|
|
29726
|
-
{
|
|
29727
|
-
id: 'option_2',
|
|
29728
|
-
name: 'uk'
|
|
29729
|
-
}
|
|
29730
|
-
],
|
|
29731
|
-
restUrl: null,
|
|
29732
|
-
restResponsePath: null,
|
|
29733
|
-
restIdProperty: null,
|
|
29734
|
-
restLabelProperty: null,
|
|
29735
|
-
tab: null,
|
|
29736
|
-
className: null,
|
|
29737
|
-
params: {
|
|
29738
|
-
existingColspan: 1,
|
|
29739
|
-
maxColspan: 2
|
|
29740
|
-
},
|
|
29741
|
-
dateDisplayFormat: null,
|
|
29742
|
-
layout: {
|
|
29743
|
-
row: -1,
|
|
29744
|
-
column: -1,
|
|
29745
|
-
colspan: 1
|
|
29746
|
-
},
|
|
29747
|
-
sizeX: 1,
|
|
29748
|
-
sizeY: 1,
|
|
29749
|
-
row: -1,
|
|
29750
|
-
col: -1,
|
|
29751
|
-
visibilityCondition: {
|
|
29752
|
-
leftType: 'field',
|
|
29753
|
-
leftValue: 'name',
|
|
29754
|
-
operator: '==',
|
|
29755
|
-
rightValue: 'italy',
|
|
29756
|
-
rightFormFieldId: '',
|
|
29757
|
-
rightRestResponseId: '',
|
|
29758
|
-
nextConditionOperator: '',
|
|
29759
|
-
nextCondition: null
|
|
29760
|
-
},
|
|
29761
|
-
endpoint: null,
|
|
29762
|
-
requestHeaders: null
|
|
29763
|
-
}
|
|
29764
|
-
]
|
|
29765
|
-
}
|
|
29766
|
-
}
|
|
29767
|
-
],
|
|
29768
|
-
outcomes: [],
|
|
29769
|
-
javascriptEvents: [],
|
|
29770
|
-
className: '',
|
|
29771
|
-
style: '',
|
|
29772
|
-
customFieldTemplates: {},
|
|
29773
|
-
metadata: {},
|
|
29774
|
-
variables: [],
|
|
29775
|
-
customFieldsValueInfo: {},
|
|
29776
|
-
gridsterForm: false,
|
|
29777
|
-
globalDateFormat: 'D-M-YYYY'
|
|
29778
|
-
};
|
|
29779
|
-
|
|
29780
|
-
/*!
|
|
29781
|
-
* @license
|
|
29782
|
-
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
29783
|
-
*
|
|
29784
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
29785
|
-
* you may not use this file except in compliance with the License.
|
|
29786
|
-
* You may obtain a copy of the License at
|
|
29787
|
-
*
|
|
29788
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
29789
|
-
*
|
|
29790
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
29791
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
29792
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
29793
|
-
* See the License for the specific language governing permissions and
|
|
29794
|
-
* limitations under the License.
|
|
29795
|
-
*/
|
|
29796
|
-
const formModelTabs = {
|
|
29797
|
-
formRepresentation: {
|
|
29798
|
-
id: 16,
|
|
29799
|
-
name: 'start event',
|
|
29800
|
-
description: '',
|
|
29801
|
-
version: 2,
|
|
29802
|
-
lastUpdatedBy: 4,
|
|
29803
|
-
lastUpdatedByFullName: 'User Test',
|
|
29804
|
-
lastUpdated: '2017-10-04T13:00:03.030+0000',
|
|
29805
|
-
stencilSetId: null,
|
|
29806
|
-
referenceId: null,
|
|
29807
|
-
formDefinition: {
|
|
29808
|
-
tabs: [],
|
|
29809
|
-
fields: [
|
|
29810
|
-
{
|
|
29811
|
-
fieldType: 'ContainerRepresentation',
|
|
29812
|
-
id: '1507037668653',
|
|
29813
|
-
name: 'Label',
|
|
29814
|
-
type: 'container',
|
|
29815
|
-
value: null,
|
|
29816
|
-
required: false,
|
|
29817
|
-
readOnly: false,
|
|
29818
|
-
overrideId: false,
|
|
29819
|
-
colspan: 1,
|
|
29820
|
-
placeholder: null,
|
|
29821
|
-
minLength: 0,
|
|
29822
|
-
maxLength: 0,
|
|
29823
|
-
minValue: null,
|
|
29824
|
-
maxValue: null,
|
|
29825
|
-
regexPattern: null,
|
|
29826
|
-
optionType: null,
|
|
29827
|
-
hasEmptyValue: null,
|
|
29828
|
-
options: null,
|
|
29829
|
-
restUrl: null,
|
|
29830
|
-
restResponsePath: null,
|
|
29831
|
-
restIdProperty: null,
|
|
29832
|
-
restLabelProperty: null,
|
|
29833
|
-
tab: null,
|
|
29834
|
-
className: null,
|
|
29835
|
-
dateDisplayFormat: null,
|
|
29836
|
-
layout: null,
|
|
29837
|
-
sizeX: 2,
|
|
29838
|
-
sizeY: 1,
|
|
29839
|
-
row: -1,
|
|
29840
|
-
col: -1,
|
|
29841
|
-
visibilityCondition: null,
|
|
29842
|
-
numberOfColumns: 2,
|
|
29843
|
-
fields: {
|
|
29844
|
-
'1': [
|
|
29845
|
-
{
|
|
29846
|
-
fieldType: 'AmountFieldRepresentation',
|
|
29847
|
-
id: 'label',
|
|
29848
|
-
name: 'Label',
|
|
29849
|
-
type: 'amount',
|
|
29850
|
-
value: null,
|
|
29851
|
-
required: false,
|
|
29852
|
-
readOnly: false,
|
|
29853
|
-
overrideId: false,
|
|
29854
|
-
colspan: 1,
|
|
29855
|
-
placeholder: null,
|
|
29856
|
-
minLength: 0,
|
|
29857
|
-
maxLength: 0,
|
|
29858
|
-
minValue: null,
|
|
29859
|
-
maxValue: null,
|
|
29860
|
-
regexPattern: null,
|
|
29861
|
-
optionType: null,
|
|
29862
|
-
hasEmptyValue: null,
|
|
29863
|
-
options: null,
|
|
29864
|
-
restUrl: null,
|
|
29865
|
-
restResponsePath: null,
|
|
29866
|
-
restIdProperty: null,
|
|
29867
|
-
restLabelProperty: null,
|
|
29868
|
-
tab: null,
|
|
29869
|
-
className: null,
|
|
29870
|
-
params: {
|
|
29871
|
-
existingColspan: 1,
|
|
29872
|
-
maxColspan: 2
|
|
29873
|
-
},
|
|
29874
|
-
dateDisplayFormat: null,
|
|
29875
|
-
layout: {
|
|
29876
|
-
row: -1,
|
|
29877
|
-
column: -1,
|
|
29878
|
-
colspan: 1
|
|
29879
|
-
},
|
|
29880
|
-
sizeX: 1,
|
|
29881
|
-
sizeY: 1,
|
|
29882
|
-
row: -1,
|
|
29883
|
-
col: -1,
|
|
29884
|
-
visibilityCondition: null,
|
|
29885
|
-
enableFractions: false,
|
|
29886
|
-
currency: null
|
|
29887
|
-
}
|
|
29888
|
-
],
|
|
29889
|
-
'2': [
|
|
28609
|
+
'2': [
|
|
29890
28610
|
{
|
|
29891
28611
|
fieldType: 'FormFieldRepresentation',
|
|
29892
28612
|
id: 'label1',
|
|
@@ -30042,11 +28762,6 @@ const formModelTabs = {
|
|
|
30042
28762
|
* limitations under the License.
|
|
30043
28763
|
*/
|
|
30044
28764
|
const formTest = new FormModel({});
|
|
30045
|
-
const fakeTaskProcessVariableModels = [
|
|
30046
|
-
{ id: 'TEST_VAR_1', type: 'string', value: 'test_value_1' },
|
|
30047
|
-
{ id: 'TEST_VAR_2', type: 'string', value: 'test_value_2' },
|
|
30048
|
-
{ id: 'TEST_VAR_3', type: 'string', value: 'test_value_3' }
|
|
30049
|
-
];
|
|
30050
28765
|
const formValues = {
|
|
30051
28766
|
test_1: 'value_1',
|
|
30052
28767
|
test_2: 'value_2',
|
|
@@ -32027,27 +30742,6 @@ const mockPathInfos = [
|
|
|
32027
30742
|
* See the License for the specific language governing permissions and
|
|
32028
30743
|
* limitations under the License.
|
|
32029
30744
|
*/
|
|
32030
|
-
const getDataColumnMock = (column = {}) => ({
|
|
32031
|
-
id: 'columnId',
|
|
32032
|
-
key: 'key',
|
|
32033
|
-
type: 'text',
|
|
32034
|
-
format: 'format',
|
|
32035
|
-
sortable: false,
|
|
32036
|
-
title: 'title',
|
|
32037
|
-
srTitle: 'srTitle',
|
|
32038
|
-
cssClass: 'cssClass',
|
|
32039
|
-
template: undefined,
|
|
32040
|
-
copyContent: false,
|
|
32041
|
-
editable: false,
|
|
32042
|
-
focus: false,
|
|
32043
|
-
sortingKey: 'sortingKey',
|
|
32044
|
-
header: undefined,
|
|
32045
|
-
draggable: false,
|
|
32046
|
-
resizable: true,
|
|
32047
|
-
isHidden: false,
|
|
32048
|
-
customData: undefined,
|
|
32049
|
-
...column
|
|
32050
|
-
});
|
|
32051
30745
|
const textColumnRows = [{ firstname: 'John' }, { firstname: 'Henry' }, { firstname: 'David' }, { firstname: 'Thomas' }];
|
|
32052
30746
|
const dateColumnRows = [
|
|
32053
30747
|
{ createdOn: new Date(2016, 6, 1, 11, 8, 4) },
|
|
@@ -32698,9 +31392,6 @@ class UnitTestingUtils {
|
|
|
32698
31392
|
getByDirective(directive) {
|
|
32699
31393
|
return this.debugElement.query(By.directive(directive));
|
|
32700
31394
|
}
|
|
32701
|
-
getAllByDirective(directive) {
|
|
32702
|
-
return this.debugElement.queryAll(By.directive(directive));
|
|
32703
|
-
}
|
|
32704
31395
|
/** Perform actions */
|
|
32705
31396
|
clickByCSS(selector) {
|
|
32706
31397
|
const element = this.getByCSS(selector);
|
|
@@ -32827,9 +31518,6 @@ class UnitTestingUtils {
|
|
|
32827
31518
|
async getMatIconWithAncestorByCSS(selector) {
|
|
32828
31519
|
return this.loader.getHarness(MatIconHarness.with({ ancestor: selector }));
|
|
32829
31520
|
}
|
|
32830
|
-
async getMatIconWithAncestorByCSSAndName(selector, name) {
|
|
32831
|
-
return this.loader.getHarness(MatIconHarness.with({ ancestor: selector, name }));
|
|
32832
|
-
}
|
|
32833
31521
|
async checkIfMatIconExistsWithAncestorByDataAutomationId(dataAutomationId) {
|
|
32834
31522
|
return this.loader.hasHarness(MatIconHarness.with({ ancestor: `[data-automation-id="${dataAutomationId}"]` }));
|
|
32835
31523
|
}
|
|
@@ -32899,9 +31587,6 @@ class UnitTestingUtils {
|
|
|
32899
31587
|
async getMatInput() {
|
|
32900
31588
|
return this.loader.getHarness(MatInputHarness);
|
|
32901
31589
|
}
|
|
32902
|
-
async getMatInputByCSS(selector) {
|
|
32903
|
-
return this.loader.getHarness(MatInputHarness.with({ selector }));
|
|
32904
|
-
}
|
|
32905
31590
|
async getMatInputByDataAutomationId(dataAutomationId) {
|
|
32906
31591
|
return this.loader.getHarness(MatInputHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
|
|
32907
31592
|
}
|
|
@@ -32915,12 +31600,6 @@ class UnitTestingUtils {
|
|
|
32915
31600
|
async checkIfMatInputExists() {
|
|
32916
31601
|
return this.loader.hasHarness(MatInputHarness);
|
|
32917
31602
|
}
|
|
32918
|
-
async checkIfMatInputExistsWithCSS(selector) {
|
|
32919
|
-
return this.loader.hasHarness(MatInputHarness.with({ selector }));
|
|
32920
|
-
}
|
|
32921
|
-
async checkIfMatInputExistsWithDataAutomationId(dataAutomationId) {
|
|
32922
|
-
return this.loader.hasHarness(MatInputHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
|
|
32923
|
-
}
|
|
32924
31603
|
async checkIfMatInputExistsWithPlaceholder(placeholder) {
|
|
32925
31604
|
return this.loader.hasHarness(MatInputHarness.with({ placeholder }));
|
|
32926
31605
|
}
|
|
@@ -32933,10 +31612,6 @@ class UnitTestingUtils {
|
|
|
32933
31612
|
const input = await this.getMatInput();
|
|
32934
31613
|
await input.setValue(value);
|
|
32935
31614
|
}
|
|
32936
|
-
async fillMatInputByCSS(selector, value) {
|
|
32937
|
-
const input = await this.getMatInputByCSS(selector);
|
|
32938
|
-
await input.setValue(value);
|
|
32939
|
-
}
|
|
32940
31615
|
async fillMatInputByDataAutomationId(dataAutomationId, value) {
|
|
32941
31616
|
const input = await this.getMatInputByDataAutomationId(dataAutomationId);
|
|
32942
31617
|
await input.setValue(value);
|
|
@@ -32954,10 +31629,6 @@ class UnitTestingUtils {
|
|
|
32954
31629
|
const input = await this.getMatInput();
|
|
32955
31630
|
return input.getValue();
|
|
32956
31631
|
}
|
|
32957
|
-
async getMatInputValueByDataAutomationId(dataAutomationId) {
|
|
32958
|
-
const input = await this.getMatInputByDataAutomationId(dataAutomationId);
|
|
32959
|
-
return input.getValue();
|
|
32960
|
-
}
|
|
32961
31632
|
async sendKeysToMatInput(keys) {
|
|
32962
31633
|
const input = await this.getMatInput();
|
|
32963
31634
|
const host = await input.host();
|
|
@@ -32970,13 +31641,6 @@ class UnitTestingUtils {
|
|
|
32970
31641
|
fixture.detectChanges();
|
|
32971
31642
|
return autocomplete.getOptions();
|
|
32972
31643
|
}
|
|
32973
|
-
/** MatError related methods */
|
|
32974
|
-
async getMatErrorByCSS(selector) {
|
|
32975
|
-
return this.loader.getHarness(MatErrorHarness.with({ selector }));
|
|
32976
|
-
}
|
|
32977
|
-
async getMatErrorByDataAutomationId(dataAutomationId) {
|
|
32978
|
-
return this.loader.getHarness(MatErrorHarness.with({ selector: `[data-automation-id="${dataAutomationId}"]` }));
|
|
32979
|
-
}
|
|
32980
31644
|
/** MatTabGroup related methods */
|
|
32981
31645
|
async getSelectedTabFromMatTabGroup() {
|
|
32982
31646
|
const tabs = await this.loader.getHarness(MatTabGroupHarness);
|
|
@@ -33082,5 +31746,5 @@ function provideAppConfigTesting(config) {
|
|
|
33082
31746
|
* Generated bundle index. Do not edit.
|
|
33083
31747
|
*/
|
|
33084
31748
|
|
|
33085
|
-
export { ABOUT_DIRECTIVES, ADF_AMOUNT_SETTINGS, ADF_COMMENTS_SERVICE, ADF_DATETIME_FORMATS, ADF_DATE_FORMATS, AboutComponent, AboutExtensionListComponent, AboutLicenseListComponent, AboutModule, AboutPanelDirective, AboutRepositoryInfoComponent, AboutServerSettingsComponent, AboutStatusListComponent, AddNotificationStorybookComponent, AdfDateFnsAdapter, AdfDateTimeFnsAdapter, AmountCellComponent, AmountWidgetComponent, AppConfigPipe, AppConfigService, AppConfigServiceMock, AppConfigValues, AuthBearerInterceptor, AuthGuard, AuthGuardBpm, AuthGuardEcm, AuthGuardService, AuthGuardSsoRoleService, AuthModule, AuthService, AuthenticationConfirmationComponent, AuthenticationService, AvatarComponent, BaseEvent, BaseUIEvent, BaseViewerWidgetComponent, BasicAlfrescoAuthService, BlankPageComponent, BlankPageModule, BooleanCellComponent, BpmProductVersionModel, ButtonComponent, ByPassFormRuleManager, CARD_VIEW_DIRECTIVES, CLIPBOARD_DIRECTIVES, CONTEXT_MENU_DIRECTIVES, CORE_DIRECTIVES, CORE_PIPES, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, CardItemTypeService, CardViewArrayItemComponent, CardViewArrayItemModel, CardViewBaseItemModel, CardViewBoolItemComponent, CardViewBoolItemModel, CardViewComponent, CardViewDateItemComponent, CardViewDateItemModel, CardViewDatetimeItemModel, CardViewFloatItemModel, CardViewIntItemModel, CardViewItemDispatcherComponent, CardViewItemFloatValidator, CardViewItemIntValidator, CardViewItemLengthValidator, CardViewItemLongValidator, CardViewItemMatchValidator, CardViewItemMinMaxValidator, CardViewItemPositiveIntValidator, CardViewItemPositiveLongValidator, CardViewKeyValuePairsItemComponent, CardViewKeyValuePairsItemModel, CardViewLongItemModel, CardViewMapItemComponent, CardViewMapItemModel, CardViewModule, CardViewSelectItemComponent, CardViewSelectItemModel, CardViewTextItemComponent, CardViewTextItemModel, CardViewUpdateService, CheckboxWidgetComponent, ClipboardComponent, ClipboardDirective, ClipboardModule, ClipboardService, CloseButtonPosition, ColumnsSelectorComponent, CommentListComponent, CommentListModule, CommentModel, CommentsComponent, CommentsModule, ConfirmDialogComponent, ConfirmDialogModule, ContainerColumnModel, ContainerModel, ContentAuth, ContentLinkModel, ContextMenuDirective, ContextMenuListComponent, ContextMenuModule, ContextMenuOverlayService, CookieService, CookieServiceMock, CoreModule, CoreStoryModule, CustomEmptyContentTemplateDirective, CustomLoadingContentTemplateDirective, CustomNoPermissionTemplateDirective, DATATABLE_DIRECTIVES, DEFAULT_DATE_FORMAT, DEFAULT_LANGUAGE_LIST, DEFAULT_PAGINATION, DIALOG_COMPONENT_DATA, DataCellEvent, DataCellEventModel, DataColumnComponent, DataColumnListComponent, DataRowActionEvent, DataRowActionModel, DataRowEvent, DataSorting, DataTableCellComponent, DataTableComponent, DataTableModule, DataTableRowComponent, DataTableSchema, DataTableService, DateCellComponent, DateColumnHeaderComponent, DateFnsUtils, DateTimePipe, DateTimeWidgetComponent, DateWidgetComponent,
|
|
31749
|
+
export { ABOUT_DIRECTIVES, ADF_AMOUNT_SETTINGS, ADF_COMMENTS_SERVICE, ADF_DATETIME_FORMATS, ADF_DATE_FORMATS, AboutComponent, AboutExtensionListComponent, AboutLicenseListComponent, AboutModule, AboutPanelDirective, AboutRepositoryInfoComponent, AboutServerSettingsComponent, AboutStatusListComponent, AddNotificationStorybookComponent, AdfDateFnsAdapter, AdfDateTimeFnsAdapter, AmountCellComponent, AmountWidgetComponent, AppConfigPipe, AppConfigService, AppConfigServiceMock, AppConfigValues, AuthBearerInterceptor, AuthGuard, AuthGuardBpm, AuthGuardEcm, AuthGuardService, AuthGuardSsoRoleService, AuthModule, AuthService, AuthenticationConfirmationComponent, AuthenticationService, AvatarComponent, BaseEvent, BaseUIEvent, BaseViewerWidgetComponent, BasicAlfrescoAuthService, BlankPageComponent, BlankPageModule, BooleanCellComponent, BpmProductVersionModel, ButtonComponent, ByPassFormRuleManager, CARD_VIEW_DIRECTIVES, CLIPBOARD_DIRECTIVES, CONTEXT_MENU_DIRECTIVES, CORE_DIRECTIVES, CORE_PIPES, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, CardItemTypeService, CardViewArrayItemComponent, CardViewArrayItemModel, CardViewBaseItemModel, CardViewBoolItemComponent, CardViewBoolItemModel, CardViewComponent, CardViewDateItemComponent, CardViewDateItemModel, CardViewDatetimeItemModel, CardViewFloatItemModel, CardViewIntItemModel, CardViewItemDispatcherComponent, CardViewItemFloatValidator, CardViewItemIntValidator, CardViewItemLengthValidator, CardViewItemLongValidator, CardViewItemMatchValidator, CardViewItemMinMaxValidator, CardViewItemPositiveIntValidator, CardViewItemPositiveLongValidator, CardViewKeyValuePairsItemComponent, CardViewKeyValuePairsItemModel, CardViewLongItemModel, CardViewMapItemComponent, CardViewMapItemModel, CardViewModule, CardViewSelectItemComponent, CardViewSelectItemModel, CardViewTextItemComponent, CardViewTextItemModel, CardViewUpdateService, CheckboxWidgetComponent, ClipboardComponent, ClipboardDirective, ClipboardModule, ClipboardService, CloseButtonPosition, ColumnsSelectorComponent, CommentListComponent, CommentListModule, CommentModel, CommentsComponent, CommentsModule, ConfirmDialogComponent, ConfirmDialogModule, ContainerColumnModel, ContainerModel, ContentAuth, ContentLinkModel, ContextMenuDirective, ContextMenuListComponent, ContextMenuModule, ContextMenuOverlayService, CookieService, CookieServiceMock, CoreModule, CoreStoryModule, CustomEmptyContentTemplateDirective, CustomLoadingContentTemplateDirective, CustomNoPermissionTemplateDirective, DATATABLE_DIRECTIVES, DEFAULT_DATE_FORMAT, DEFAULT_LANGUAGE_LIST, DEFAULT_PAGINATION, DIALOG_COMPONENT_DATA, DataCellEvent, DataCellEventModel, DataColumnComponent, DataColumnListComponent, DataRowActionEvent, DataRowActionModel, DataRowEvent, DataSorting, DataTableCellComponent, DataTableComponent, DataTableModule, DataTableRowComponent, DataTableSchema, DataTableService, DateCellComponent, DateColumnHeaderComponent, DateFnsUtils, DateTimePipe, DateTimeWidgetComponent, DateWidgetComponent, DecimalFieldValidator, DecimalNumberModel, DecimalNumberPipe, DecimalRenderMiddlewareService, DecimalWidgetComponent, DialogComponent, DialogSize, DirectiveModule, DisplayTextWidgetComponent, DownloadPromptActions, DownloadPromptDialogComponent, DownloadService, DropZoneDirective, DynamicChipListComponent, DynamicChipListModule, DynamicComponentMapper, DynamicComponentResolver, EXTENDIBLE_COMPONENT, EditJsonDialogComponent, EditJsonDialogModule, EmptyContentComponent, EmptyListBodyDirective, EmptyListComponent, EmptyListFooterDirective, EmptyListHeaderDirective, ErrorContentComponent, ErrorMessageModel, ErrorWidgetComponent, EventMock, FORM_FIELD_MODEL_RENDER_MIDDLEWARE, FORM_FIELD_VALIDATORS, FORM_RULES_MANAGER, FORM_SERVICE_FIELD_VALIDATORS_TOKEN, FieldStylePipe, FileSizeCellComponent, FileSizePipe, FileTypePipe, FileUtils, FixedValueFieldValidator, FormBaseComponent, FormBaseModule, FormErrorEvent, FormEvent, FormFieldComponent, FormFieldEvent, FormFieldModel, FormFieldTypes, FormModel, FormOutcomeEvent, FormOutcomeModel, FormRendererComponent, FormRenderingService, FormRulesEvent, FormRulesManager, FormService, FormSpinnerEvent, FormWidgetModel, FormatSpacePipe, FullNamePipe, HeaderComponent, HeaderFilterTemplateDirective, HeaderLayoutComponent, HeaderWidgetComponent, HighlightDirective, HighlightPipe, HighlightTransformService, HyperlinkWidgetComponent, INFO_DRAWER_DIRECTIVES, IconCellComponent, IconComponent, IconModule, IdentityGroupService, IdentityRoleModel, IdentityRoleService, IdentityUserInfoComponent, IdentityUserInfoModule, IdentityUserService, ImgViewerComponent, InfinitePaginationComponent, InfiniteSelectScrollDirective, InfoDrawerButtonsDirective, InfoDrawerComponent, InfoDrawerContentDirective, InfoDrawerLayoutComponent, InfoDrawerModule, InfoDrawerTabComponent, InfoDrawerTitleDirective, InitialUsernamePipe, InplaceFormInputComponent, InputMaskDirective, JSON_TYPE, JWT_STORAGE_SERVICE, JsonCellComponent, JsonWidgetComponent, JwtHelperService, LANDING_PAGE_TOKEN, LANGUAGE_MENU_DIRECTIVES, LAYOUT_DIRECTIVES, LOGIN_DIRECTIVES, LanguageMenuComponent, LanguageMenuModule, LanguagePickerComponent, LanguageService, LayoutContainerComponent, LoadingContentTemplateDirective, LocalizedDatePipe, LocationCellComponent, LogLevelsEnum, LogService, LoginComponent, LoginDialogComponent, LoginDialogPanelComponent, LoginErrorEvent, LoginFooterDirective, LoginHeaderDirective, LoginModule, LoginSubmitEvent, LoginSuccessEvent, LogoutDirective, MASK_DIRECTIVE, MOMENT_DATE_FORMATS, MainMenuDataTableTemplateDirective, MaterialModule, MaxLengthFieldValidator, MaxValueFieldValidator, MediaPlayerComponent, MinLengthFieldValidator, MinValueFieldValidator, ModuleListComponent, MomentDateAdapter, MultiValuePipe, MultilineTextWidgetComponentComponent, NOTIFICATION_HISTORY_DIRECTIVES, NOTIFICATION_TYPE, NavbarComponent, NavbarItemComponent, NoContentTemplateDirective, NoPermissionTemplateDirective, NoopAuthModule, NoopRedirectAuthService, NoopTranslateModule, NoopTranslationService, NotificationHistoryComponent, NotificationHistoryModule, NotificationService, NumberCellComponent, NumberFieldValidator, NumberWidgetComponent, OAuth2Service, ObjectDataColumn, ObjectDataRow, ObjectDataTableAdapter, ObjectUtils, OidcAuthGuard, OidcAuthenticationService, PAGINATION_DIRECTIVES, PDFJS_MODULE, PDFJS_VIEWER_MODULE, PackageListComponent, PageTitleService, PaginationComponent, PaginationModel, PaginationModule, PathInfo, PdfPasswordDialogComponent, PdfThumbComponent, PdfThumbListComponent, PdfViewerComponent, PipeModule, ProcessAuth, ProgressComponent, RedirectAuthService, RedirectionModel, RegExFieldValidator, RequestPaginationModel, RequiredFieldValidator, ResizableDirective, ResizeHandleDirective, SEARCH_AUTOCOMPLETE_VALUE_ACCESSOR, SEARCH_TEXT_INPUT_DIRECTIVES, STORAGE_PREFIX_FACTORY_SERVICE, SearchTextInputComponent, SearchTextModule, SearchTextStateEnum, SearchTriggerDirective, SelectFilterInputComponent, ShowHeaderMode, SidebarActionMenuComponent, SidebarMenuDirective, SidebarMenuExpandIconDirective, SidebarMenuTitleIconDirective, SidenavLayoutComponent, SidenavLayoutContentDirective, SidenavLayoutHeaderDirective, SidenavLayoutModule, SidenavLayoutNavigationDirective, SnackbarContentComponent, SnackbarContentModule, SortByCategoryMapperService, SortingPickerComponent, StartFormCustomButtonDirective, Status, StoragePrefixFactory, StorageService, StringUtils, TEMPLATE_DIRECTIVES, TOOLBAR_DIRECTIVES, TRANSLATION_PROVIDER, TabModel, TaskProcessVariableModel, TemplateModule, TextWidgetComponent, ThumbnailService, TimeAgoPipe, ToolbarComponent, ToolbarDividerComponent, ToolbarModule, ToolbarTitleComponent, TooltipCardComponent, TooltipCardDirective, TranslateLoaderService, TranslationMock, TranslationService, TruncatePipe, TxtViewerComponent, UnitTestingUtils, UnknownFormatComponent, UnknownWidgetComponent, UnsavedChangesDialogComponent, UnsavedChangesDialogModule, UnsavedChangesGuard, UploadDirective, UploadWidgetContentLinkModel, UploadWidgetContentLinkModelOptions, UrlService, User, UserAccessService, UserInfoMode, UserPreferenceValues, UserPreferencesService, VIEWER_DIRECTIVES, ValidateFormEvent, ValidateFormFieldEvent, ViewUtilService, ViewerComponent, ViewerExtensionDirective, ViewerModule, ViewerMoreActionsComponent, ViewerOpenWithComponent, ViewerRenderComponent, ViewerSidebarComponent, ViewerToolbarActionsComponent, ViewerToolbarComponent, ViewerToolbarCustomActionsComponent, WIDGET_DIRECTIVES, WidgetComponent, WidgetVisibilityService, amountColumnRows, booleanColumnRows, complexVisibilityJsonNotVisible, complexVisibilityJsonVisible, dateColumnRows, dateColumnTimeAgoRows, displayTextSchema, error, fakeFormChainedVisibilityJson, fakeFormCheckBoxVisibilityJson, fakeFormJson, fileSizeColumnRows, formModelTabs, formRulesManagerFactory, formTest, formValues, headerSchema, iconColumnRows, imageColumnRows, info, isNumberValue, isOutcomeButtonVisible, jsonColumnRows, locationColumnRows, logLevels, oauthStorageFactory, predefinedTheme, provideAppConfig, provideAppConfigTesting, provideCoreAuth, provideCoreAuthTesting, provideI18N, provideLandingPage, provideTranslations, rootInitiator, searchAnimation, tabInvalidFormVisibility, tabVisibilityJsonMock, textColumnRows, transformKeyToObject, warning };
|
|
33086
31750
|
//# sourceMappingURL=adf-core.mjs.map
|