@alfresco/adf-process-services-cloud 9.1.0-16295798990 → 9.1.0-16342350760

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.
@@ -71,17 +71,6 @@ import * as i3$3 from '@angular/material/radio';
71
71
  import { MatRadioModule } from '@angular/material/radio';
72
72
  import edjsHTML from 'editorjs-html';
73
73
  import * as i2$5 from '@angular/platform-browser';
74
- import EditorJS from '@editorjs/editorjs';
75
- import CodeTool from '@editorjs/code';
76
- import Header from '@editorjs/header';
77
- import Paragraph from '@editorjs/paragraph';
78
- import InlineCode from '@editorjs/inline-code';
79
- import List from '@editorjs/list';
80
- import Marker from '@editorjs/marker';
81
- import Underline from '@editorjs/underline';
82
- import ChangeFontSize from '@valano/change-font-size';
83
- import ColorPlugin from 'editorjs-text-color-plugin';
84
- import AlignmentTuneTool from 'editorjs-text-alignment-blocktune';
85
74
 
86
75
  /*!
87
76
  * @license
@@ -14252,236 +14241,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
14252
14241
  }, 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;padding:10px 12px;outline:none;width:100%}\n"] }]
14253
14242
  }], ctorParameters: () => [{ type: i1$1.FormService }, { type: i2$5.DomSanitizer }] });
14254
14243
 
14255
- /*!
14256
- * @license
14257
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
14258
- *
14259
- * Licensed under the Apache License, Version 2.0 (the "License");
14260
- * you may not use this file except in compliance with the License.
14261
- * You may obtain a copy of the License at
14262
- *
14263
- * http://www.apache.org/licenses/LICENSE-2.0
14264
- *
14265
- * Unless required by applicable law or agreed to in writing, software
14266
- * distributed under the License is distributed on an "AS IS" BASIS,
14267
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14268
- * See the License for the specific language governing permissions and
14269
- * limitations under the License.
14270
- */
14271
- /** Plugin import */
14272
- const editorJsConfig = {
14273
- autofocus: true,
14274
- logLevel: 'ERROR',
14275
- tools: {
14276
- underline: {
14277
- class: Underline,
14278
- shortcut: 'CMD+U'
14279
- },
14280
- header: {
14281
- class: Header,
14282
- inlineToolbar: true,
14283
- tunes: ['anyTuneName']
14284
- },
14285
- paragraph: {
14286
- class: Paragraph,
14287
- inlineToolbar: true,
14288
- tunes: ['anyTuneName']
14289
- },
14290
- list: {
14291
- class: List,
14292
- inlineToolbar: true,
14293
- config: {
14294
- defaultStyle: 'unordered'
14295
- }
14296
- },
14297
- Color: {
14298
- class: ColorPlugin,
14299
- config: {
14300
- customPicker: true,
14301
- colorCollections: [
14302
- '#FF1300',
14303
- '#ffa500',
14304
- '#9C27B0',
14305
- '#673AB7',
14306
- '#3F51B5',
14307
- '#0070FF',
14308
- '#03A9F4',
14309
- '#00BCD4',
14310
- '#5f9ea0',
14311
- '#4CAF50',
14312
- '#8BC34A',
14313
- '#CDDC39',
14314
- '#FFF',
14315
- '#000',
14316
- '#c0c0c0',
14317
- '#808080',
14318
- '#800000'
14319
- ],
14320
- defaultColor: '#FF1300',
14321
- type: 'text'
14322
- }
14323
- },
14324
- Marker: {
14325
- class: Marker,
14326
- shortcut: 'CMD+M'
14327
- },
14328
- 'Increase/Decrease font size': {
14329
- class: ChangeFontSize,
14330
- config: {
14331
- cssClass: 'plus20pc',
14332
- buttonIcon: '<span class="material-icons">format_size</span>'
14333
- }
14334
- },
14335
- inlineCode: {
14336
- class: InlineCode,
14337
- shortcut: 'CMD+SHIFT+M'
14338
- },
14339
- anyTuneName: {
14340
- class: AlignmentTuneTool
14341
- },
14342
- code: CodeTool
14343
- }
14344
- };
14345
-
14346
- /*!
14347
- * @license
14348
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
14349
- *
14350
- * Licensed under the Apache License, Version 2.0 (the "License");
14351
- * you may not use this file except in compliance with the License.
14352
- * You may obtain a copy of the License at
14353
- *
14354
- * http://www.apache.org/licenses/LICENSE-2.0
14355
- *
14356
- * Unless required by applicable law or agreed to in writing, software
14357
- * distributed under the License is distributed on an "AS IS" BASIS,
14358
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14359
- * See the License for the specific language governing permissions and
14360
- * limitations under the License.
14361
- */
14362
- class RichTextEditorComponent {
14363
- constructor() {
14364
- this.placeholder = '';
14365
- this.autoFocus = false;
14366
- this._outputData = new Subject();
14367
- this.outputData$ = this._outputData.asObservable();
14368
- this.isReady = false;
14369
- }
14370
- ngOnInit() {
14371
- this.dynamicId = `editorjs-${crypto.getRandomValues(new Uint32Array(1))}`;
14372
- }
14373
- ngAfterViewInit() {
14374
- this.editorInstance = new EditorJS({
14375
- holder: this.dynamicId,
14376
- placeholder: this.placeholder,
14377
- autofocus: this.autoFocus,
14378
- ...editorJsConfig,
14379
- data: this.data,
14380
- onChange: () => {
14381
- this.sendEditorOutputData();
14382
- },
14383
- onReady: () => {
14384
- this.isReady = true;
14385
- this.sendEditorOutputData();
14386
- }
14387
- });
14388
- }
14389
- sendEditorOutputData() {
14390
- this.editorInstance
14391
- .save()
14392
- .then((outputData) => {
14393
- this._outputData.next(outputData);
14394
- })
14395
- .catch((error) => {
14396
- console.error('Saving failed: ', error);
14397
- });
14398
- }
14399
- getEditorContent() {
14400
- return this.editorInstance.save();
14401
- }
14402
- ngOnDestroy() {
14403
- if (this.isReady) {
14404
- this.editorInstance.destroy();
14405
- }
14406
- }
14407
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RichTextEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
14408
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: RichTextEditorComponent, isStandalone: true, selector: "adf-cloud-rich-text-editor", inputs: { data: "data", placeholder: "placeholder", autoFocus: "autoFocus" }, ngImport: i0, template: "<div class=\"adf-rich-text-editor-container\">\n <div class=\"editorjs\" id=\"{{dynamicId}}\"></div>\n</div>\n", styles: [".adf-rich-text-editor-container{color:var(--theme-text-fg-color, rgba(0, 0, 0, .87))}.adf-rich-text-editor-container .editorjs.readonly .codex-editor__redactor{padding-bottom:0!important}.adf-rich-text-editor-container .ce-inline-toolbar{transform:scale(1)}.adf-rich-text-editor-container .ce-inline-toolbar .ce-popover__items{overflow:hidden}.adf-rich-text-editor-container .ce-inline-toolbar .ce-inline-tool .material-icons{font-size:20px}xy-color-picker{position:relative;background-color:transparent;margin:0;overflow:hidden}\n"], encapsulation: i0.ViewEncapsulation.None }); }
14409
- }
14410
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RichTextEditorComponent, decorators: [{
14411
- type: Component,
14412
- args: [{ selector: 'adf-cloud-rich-text-editor', encapsulation: ViewEncapsulation.None, template: "<div class=\"adf-rich-text-editor-container\">\n <div class=\"editorjs\" id=\"{{dynamicId}}\"></div>\n</div>\n", styles: [".adf-rich-text-editor-container{color:var(--theme-text-fg-color, rgba(0, 0, 0, .87))}.adf-rich-text-editor-container .editorjs.readonly .codex-editor__redactor{padding-bottom:0!important}.adf-rich-text-editor-container .ce-inline-toolbar{transform:scale(1)}.adf-rich-text-editor-container .ce-inline-toolbar .ce-popover__items{overflow:hidden}.adf-rich-text-editor-container .ce-inline-toolbar .ce-inline-tool .material-icons{font-size:20px}xy-color-picker{position:relative;background-color:transparent;margin:0;overflow:hidden}\n"] }]
14413
- }], propDecorators: { data: [{
14414
- type: Input
14415
- }], placeholder: [{
14416
- type: Input
14417
- }], autoFocus: [{
14418
- type: Input
14419
- }] } });
14420
-
14421
- /*!
14422
- * @license
14423
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
14424
- *
14425
- * Licensed under the Apache License, Version 2.0 (the "License");
14426
- * you may not use this file except in compliance with the License.
14427
- * You may obtain a copy of the License at
14428
- *
14429
- * http://www.apache.org/licenses/LICENSE-2.0
14430
- *
14431
- * Unless required by applicable law or agreed to in writing, software
14432
- * distributed under the License is distributed on an "AS IS" BASIS,
14433
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14434
- * See the License for the specific language governing permissions and
14435
- * limitations under the License.
14436
- */
14437
- /** @deprecated use `RichTextEditorComponent` instead */
14438
- class RichTextEditorModule {
14439
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RichTextEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14440
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: RichTextEditorModule, imports: [RichTextEditorComponent], exports: [RichTextEditorComponent] }); }
14441
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RichTextEditorModule }); }
14442
- }
14443
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RichTextEditorModule, decorators: [{
14444
- type: NgModule,
14445
- args: [{
14446
- imports: [RichTextEditorComponent],
14447
- exports: [RichTextEditorComponent]
14448
- }]
14449
- }] });
14450
-
14451
- /*!
14452
- * @license
14453
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
14454
- *
14455
- * Licensed under the Apache License, Version 2.0 (the "License");
14456
- * you may not use this file except in compliance with the License.
14457
- * You may obtain a copy of the License at
14458
- *
14459
- * http://www.apache.org/licenses/LICENSE-2.0
14460
- *
14461
- * Unless required by applicable law or agreed to in writing, software
14462
- * distributed under the License is distributed on an "AS IS" BASIS,
14463
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14464
- * See the License for the specific language governing permissions and
14465
- * limitations under the License.
14466
- */
14467
-
14468
- /*!
14469
- * @license
14470
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
14471
- *
14472
- * Licensed under the Apache License, Version 2.0 (the "License");
14473
- * you may not use this file except in compliance with the License.
14474
- * You may obtain a copy of the License at
14475
- *
14476
- * http://www.apache.org/licenses/LICENSE-2.0
14477
- *
14478
- * Unless required by applicable law or agreed to in writing, software
14479
- * distributed under the License is distributed on an "AS IS" BASIS,
14480
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14481
- * See the License for the specific language governing permissions and
14482
- * limitations under the License.
14483
- */
14484
-
14485
14244
  /*!
14486
14245
  * @license
14487
14246
  * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
@@ -14499,7 +14258,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
14499
14258
  * limitations under the License.
14500
14259
  */
14501
14260
  const FORM_CLOUD_DIRECTIVES = [
14502
- RichTextEditorComponent,
14503
14261
  FormSpinnerComponent,
14504
14262
  PropertiesViewerWrapperComponent,
14505
14263
  PropertiesViewerWidgetComponent,
@@ -14518,8 +14276,7 @@ const FORM_CLOUD_DIRECTIVES = [
14518
14276
  /** @deprecated use ...FORM_CLOUD_DIRECTIVES instead */
14519
14277
  class FormCloudModule {
14520
14278
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: FormCloudModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14521
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: FormCloudModule, imports: [RichTextEditorComponent,
14522
- FormSpinnerComponent,
14279
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: FormCloudModule, imports: [FormSpinnerComponent,
14523
14280
  PropertiesViewerWrapperComponent,
14524
14281
  PropertiesViewerWidgetComponent,
14525
14282
  DisplayRichTextWidgetComponent,
@@ -14532,8 +14289,7 @@ class FormCloudModule {
14532
14289
  UploadCloudWidgetComponent,
14533
14290
  PeopleCloudWidgetComponent,
14534
14291
  GroupCloudWidgetComponent,
14535
- FormCloudComponent], exports: [RichTextEditorComponent,
14536
- FormSpinnerComponent,
14292
+ FormCloudComponent], exports: [FormSpinnerComponent,
14537
14293
  PropertiesViewerWrapperComponent,
14538
14294
  PropertiesViewerWidgetComponent,
14539
14295
  DisplayRichTextWidgetComponent,
@@ -15079,8 +14835,7 @@ const PROCESS_SERVICES_CLOUD_DIRECTIVES = [
15079
14835
  ...APP_LIST_CLOUD_DIRECTIVES,
15080
14836
  ...FORM_CLOUD_DIRECTIVES,
15081
14837
  ...TASK_FORM_CLOUD_DIRECTIVES,
15082
- PeopleCloudComponent,
15083
- RichTextEditorComponent
14838
+ PeopleCloudComponent
15084
14839
  ];
15085
14840
  /**
15086
14841
  * @deprecated this module is deprecated and will be removed in the future versions
@@ -15115,9 +14870,7 @@ class ProcessServicesCloudModule {
15115
14870
  };
15116
14871
  }
15117
14872
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ProcessServicesCloudModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
15118
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: ProcessServicesCloudModule, imports: [ProcessCloudModule, TaskCloudModule, GroupCloudComponent, AppListCloudComponent, AppDetailsCloudComponent, RichTextEditorComponent, FormSpinnerComponent, PropertiesViewerWrapperComponent, PropertiesViewerWidgetComponent, DisplayRichTextWidgetComponent, FileViewerWidgetComponent, FilePropertiesTableCloudComponent, FormCustomOutcomesComponent, FormDefinitionSelectorCloudComponent, RadioButtonsCloudWidgetComponent, AttachFileCloudWidgetComponent, UploadCloudWidgetComponent, PeopleCloudWidgetComponent, GroupCloudWidgetComponent, FormCloudComponent, UserTaskCloudButtonsComponent, TaskFormCloudComponent, UserTaskCloudComponent, PeopleCloudComponent,
15119
- RichTextEditorComponent], exports: [ProcessCloudModule, TaskCloudModule, GroupCloudComponent, AppListCloudComponent, AppDetailsCloudComponent, RichTextEditorComponent, FormSpinnerComponent, PropertiesViewerWrapperComponent, PropertiesViewerWidgetComponent, DisplayRichTextWidgetComponent, FileViewerWidgetComponent, FilePropertiesTableCloudComponent, FormCustomOutcomesComponent, FormDefinitionSelectorCloudComponent, RadioButtonsCloudWidgetComponent, AttachFileCloudWidgetComponent, UploadCloudWidgetComponent, PeopleCloudWidgetComponent, GroupCloudWidgetComponent, FormCloudComponent, UserTaskCloudButtonsComponent, TaskFormCloudComponent, UserTaskCloudComponent, PeopleCloudComponent,
15120
- RichTextEditorComponent] }); }
14873
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: ProcessServicesCloudModule, imports: [ProcessCloudModule, TaskCloudModule, GroupCloudComponent, AppListCloudComponent, AppDetailsCloudComponent, FormSpinnerComponent, PropertiesViewerWrapperComponent, PropertiesViewerWidgetComponent, DisplayRichTextWidgetComponent, FileViewerWidgetComponent, FilePropertiesTableCloudComponent, FormCustomOutcomesComponent, FormDefinitionSelectorCloudComponent, RadioButtonsCloudWidgetComponent, AttachFileCloudWidgetComponent, UploadCloudWidgetComponent, PeopleCloudWidgetComponent, GroupCloudWidgetComponent, FormCloudComponent, UserTaskCloudButtonsComponent, TaskFormCloudComponent, UserTaskCloudComponent, PeopleCloudComponent], exports: [ProcessCloudModule, TaskCloudModule, GroupCloudComponent, AppListCloudComponent, AppDetailsCloudComponent, FormSpinnerComponent, PropertiesViewerWrapperComponent, PropertiesViewerWidgetComponent, DisplayRichTextWidgetComponent, FileViewerWidgetComponent, FilePropertiesTableCloudComponent, FormCustomOutcomesComponent, FormDefinitionSelectorCloudComponent, RadioButtonsCloudWidgetComponent, AttachFileCloudWidgetComponent, UploadCloudWidgetComponent, PeopleCloudWidgetComponent, GroupCloudWidgetComponent, FormCloudComponent, UserTaskCloudButtonsComponent, TaskFormCloudComponent, UserTaskCloudComponent, PeopleCloudComponent] }); }
15121
14874
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ProcessServicesCloudModule, imports: [ProcessCloudModule, TaskCloudModule, GroupCloudComponent, AppListCloudComponent, AppDetailsCloudComponent, FormSpinnerComponent, PropertiesViewerWrapperComponent, PropertiesViewerWidgetComponent, FileViewerWidgetComponent, FilePropertiesTableCloudComponent, FormDefinitionSelectorCloudComponent, RadioButtonsCloudWidgetComponent, AttachFileCloudWidgetComponent, UploadCloudWidgetComponent, PeopleCloudWidgetComponent, GroupCloudWidgetComponent, FormCloudComponent, UserTaskCloudButtonsComponent, TaskFormCloudComponent, UserTaskCloudComponent, PeopleCloudComponent, ProcessCloudModule, TaskCloudModule] }); }
15122
14875
  }
15123
14876
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ProcessServicesCloudModule, decorators: [{
@@ -16030,5 +15783,5 @@ const DATE_FORMAT_CLOUD = 'YYYY-MM-DD';
16030
15783
  * Generated bundle index. Do not edit.
16031
15784
  */
16032
15785
 
16033
- export { 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, RichTextEditorComponent, RichTextEditorModule, 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, radioButtonsSchema };
15786
+ export { 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, radioButtonsSchema };
16034
15787
  //# sourceMappingURL=adf-process-services-cloud.mjs.map