@alfresco/adf-process-services-cloud 8.1.0-16346981764 → 8.1.0-16472253724

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.
Files changed (34) hide show
  1. package/bundles/assets/adf-process-services-cloud/i18n/en.json +1 -2
  2. package/esm2022/lib/form/components/form-cloud.component.mjs +4 -22
  3. package/esm2022/lib/form/form-cloud.module.mjs +3 -7
  4. package/esm2022/lib/process/start-process/components/start-process-cloud.component.mjs +3 -18
  5. package/esm2022/lib/process-services-cloud.module.mjs +43 -36
  6. package/esm2022/lib/providers.mjs +45 -0
  7. package/esm2022/lib/task/task-form/components/task-form-cloud/task-form-cloud.component.mjs +3 -18
  8. package/esm2022/lib/task/task-form/components/user-task-cloud/user-task-cloud.component.mjs +4 -10
  9. package/esm2022/lib/task/task-list/task-list-cloud.module.mjs +3 -25
  10. package/esm2022/public-api.mjs +2 -2
  11. package/fesm2022/adf-process-services-cloud.mjs +271 -536
  12. package/fesm2022/adf-process-services-cloud.mjs.map +1 -1
  13. package/lib/form/components/form-cloud.component.d.ts +1 -9
  14. package/lib/form/components/form-cloud.component.scss +0 -4
  15. package/lib/form/form-cloud.module.d.ts +16 -18
  16. package/lib/process/start-process/components/start-process-cloud.component.d.ts +1 -9
  17. package/lib/process-services-cloud.module.d.ts +32 -22
  18. package/lib/providers.d.ts +36 -0
  19. package/lib/task/task-form/components/task-form-cloud/task-form-cloud.component.d.ts +1 -9
  20. package/lib/task/task-form/components/user-task-cloud/user-task-cloud.component.d.ts +1 -6
  21. package/lib/task/task-form/components/user-task-cloud/user-task-cloud.component.scss +0 -4
  22. package/package.json +8 -21
  23. package/public-api.d.ts +1 -1
  24. package/esm2022/lib/rich-text-editor/editorjs-config.mjs +0 -101
  25. package/esm2022/lib/rich-text-editor/index.mjs +0 -18
  26. package/esm2022/lib/rich-text-editor/public-api.mjs +0 -19
  27. package/esm2022/lib/rich-text-editor/rich-text-editor.component.mjs +0 -80
  28. package/esm2022/lib/rich-text-editor/rich-text-editor.module.mjs +0 -33
  29. package/lib/rich-text-editor/editorjs-config.d.ts +0 -78
  30. package/lib/rich-text-editor/index.d.ts +0 -17
  31. package/lib/rich-text-editor/public-api.d.ts +0 -18
  32. package/lib/rich-text-editor/rich-text-editor.component.d.ts +0 -36
  33. package/lib/rich-text-editor/rich-text-editor.component.scss +0 -32
  34. package/lib/rich-text-editor/rich-text-editor.module.d.ts +0 -8
@@ -24,7 +24,6 @@ import { MatDialog } from '@angular/material/dialog';
24
24
  import { FormCloudDisplayModeConfiguration } from '../../services/form-fields.interfaces';
25
25
  import { FormCloudSpinnerService } from '../services/spinner/form-cloud-spinner.service';
26
26
  import { DisplayModeService } from '../services/display-mode.service';
27
- import { MatCheckboxChange } from '@angular/material/checkbox';
28
27
  import * as i0 from "@angular/core";
29
28
  export declare const FORM_CLOUD_FIELD_VALIDATORS_TOKEN: InjectionToken<FormFieldValidator[]>;
30
29
  export declare class FormCloudComponent extends FormBaseComponent implements OnChanges, OnInit {
@@ -42,10 +41,6 @@ export declare class FormCloudComponent extends FormBaseComponent implements OnC
42
41
  data: TaskVariableCloud[];
43
42
  /** The available display configurations for the form */
44
43
  displayModeConfigurations: FormCloudDisplayModeConfiguration[];
45
- /** Toggle rendering of the `Open next task` checkbox. */
46
- showNextTaskCheckbox: boolean;
47
- /** Whether the `Open next task` checkbox is checked by default or not. */
48
- isNextTaskCheckboxChecked: boolean;
49
44
  /** Toggle rendering of the `Complete` button. */
50
45
  showCompleteButton: boolean;
51
46
  /** Emitted when the form is submitted with the `Save` or custom outcomes. */
@@ -62,8 +57,6 @@ export declare class FormCloudComponent extends FormBaseComponent implements OnC
62
57
  displayModeOn: EventEmitter<FormCloudDisplayModeConfiguration>;
63
58
  /** Emitted when a display mode configuration is turned off. */
64
59
  displayModeOff: EventEmitter<FormCloudDisplayModeConfiguration>;
65
- /** Emitted when the `Open next task` checkbox was toggled. */
66
- nextTaskCheckboxCheckedChanged: EventEmitter<MatCheckboxChange>;
67
60
  protected subscriptions: Subscription[];
68
61
  nodeId: string;
69
62
  formCloudRepresentationJSON: any;
@@ -117,7 +110,6 @@ export declare class FormCloudComponent extends FormBaseComponent implements OnC
117
110
  switchToDisplayMode(newDisplayMode?: string): void;
118
111
  findDisplayConfiguration(displayMode?: string): FormCloudDisplayModeConfiguration;
119
112
  loadInjectedFieldValidators(injectedFieldValidators: FormFieldValidator[]): void;
120
- onNextTaskCheckboxCheckedChanged(event: MatCheckboxChange): void;
121
113
  static ɵfac: i0.ɵɵFactoryDeclaration<FormCloudComponent, [{ optional: true; }]>;
122
- static ɵcmp: i0.ɵɵComponentDeclaration<FormCloudComponent, "adf-cloud-form", never, { "appName": { "alias": "appName"; "required": false; }; "appVersion": { "alias": "appVersion"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "processInstanceId": { "alias": "processInstanceId"; "required": false; }; "taskId": { "alias": "taskId"; "required": false; }; "data": { "alias": "data"; "required": false; }; "displayModeConfigurations": { "alias": "displayModeConfigurations"; "required": false; }; "showNextTaskCheckbox": { "alias": "showNextTaskCheckbox"; "required": false; }; "isNextTaskCheckboxChecked": { "alias": "isNextTaskCheckboxChecked"; "required": false; }; "showCompleteButton": { "alias": "showCompleteButton"; "required": false; }; }, { "formSaved": "formSaved"; "formCompleted": "formCompleted"; "formLoaded": "formLoaded"; "formDataRefreshed": "formDataRefreshed"; "formContentClicked": "formContentClicked"; "displayModeOn": "displayModeOn"; "displayModeOff": "displayModeOff"; "nextTaskCheckboxCheckedChanged": "nextTaskCheckboxCheckedChanged"; }, never, ["[empty-form]", "adf-cloud-form-custom-outcomes"], true, never>;
114
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormCloudComponent, "adf-cloud-form", never, { "appName": { "alias": "appName"; "required": false; }; "appVersion": { "alias": "appVersion"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "processInstanceId": { "alias": "processInstanceId"; "required": false; }; "taskId": { "alias": "taskId"; "required": false; }; "data": { "alias": "data"; "required": false; }; "displayModeConfigurations": { "alias": "displayModeConfigurations"; "required": false; }; "showCompleteButton": { "alias": "showCompleteButton"; "required": false; }; }, { "formSaved": "formSaved"; "formCompleted": "formCompleted"; "formLoaded": "formLoaded"; "formDataRefreshed": "formDataRefreshed"; "formContentClicked": "formContentClicked"; "displayModeOn": "displayModeOn"; "displayModeOff": "displayModeOff"; }, never, ["[empty-form]", "adf-cloud-form-custom-outcomes"], true, never>;
123
115
  }
@@ -19,10 +19,6 @@
19
19
  display: flex;
20
20
  position: relative;
21
21
  }
22
-
23
- .adf-card-actions-spacer {
24
- flex: 1 1 auto;
25
- }
26
22
  }
27
23
 
28
24
  &-fullscreen-container {
@@ -11,28 +11,26 @@ import { RadioButtonsCloudWidgetComponent } from './components/widgets/radio-but
11
11
  import { FilePropertiesTableCloudComponent } from './components/widgets/attach-file/file-properties-table/file-properties-table-cloud.component';
12
12
  import { FileViewerWidgetComponent } from './components/widgets/file-viewer/file-viewer.widget';
13
13
  import { DisplayRichTextWidgetComponent } from './components/widgets/display-rich-text/display-rich-text.widget';
14
- import { RichTextEditorComponent } from '../rich-text-editor';
15
14
  import { FormSpinnerComponent } from './components/spinner/form-spinner.component';
16
15
  import * as i0 from "@angular/core";
17
- import * as i1 from "../rich-text-editor/rich-text-editor.component";
18
- import * as i2 from "./components/spinner/form-spinner.component";
19
- import * as i3 from "./components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer-wrapper.component";
20
- import * as i4 from "./components/widgets/properties-viewer/properties-viewer.widget";
21
- import * as i5 from "./components/widgets/display-rich-text/display-rich-text.widget";
22
- import * as i6 from "./components/widgets/file-viewer/file-viewer.widget";
23
- import * as i7 from "./components/widgets/attach-file/file-properties-table/file-properties-table-cloud.component";
24
- import * as i8 from "./components/form-cloud-custom-outcomes.component";
25
- import * as i9 from "./components/form-definition-selector-cloud.component";
26
- import * as i10 from "./components/widgets/radio-buttons/radio-buttons-cloud.widget";
27
- import * as i11 from "./components/widgets/attach-file/attach-file-cloud-widget.component";
28
- import * as i12 from "./components/widgets/upload/upload-cloud.widget";
29
- import * as i13 from "./components/widgets/people/people-cloud.widget";
30
- import * as i14 from "./components/widgets/group/group-cloud.widget";
31
- import * as i15 from "./components/form-cloud.component";
32
- export declare const FORM_CLOUD_DIRECTIVES: readonly [typeof RichTextEditorComponent, typeof FormSpinnerComponent, typeof PropertiesViewerWrapperComponent, typeof PropertiesViewerWidgetComponent, typeof DisplayRichTextWidgetComponent, typeof FileViewerWidgetComponent, typeof FilePropertiesTableCloudComponent, typeof FormCustomOutcomesComponent, typeof FormDefinitionSelectorCloudComponent, typeof RadioButtonsCloudWidgetComponent, typeof AttachFileCloudWidgetComponent, typeof UploadCloudWidgetComponent, typeof PeopleCloudWidgetComponent, typeof GroupCloudWidgetComponent, typeof FormCloudComponent];
16
+ import * as i1 from "./components/spinner/form-spinner.component";
17
+ import * as i2 from "./components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer-wrapper.component";
18
+ import * as i3 from "./components/widgets/properties-viewer/properties-viewer.widget";
19
+ import * as i4 from "./components/widgets/display-rich-text/display-rich-text.widget";
20
+ import * as i5 from "./components/widgets/file-viewer/file-viewer.widget";
21
+ import * as i6 from "./components/widgets/attach-file/file-properties-table/file-properties-table-cloud.component";
22
+ import * as i7 from "./components/form-cloud-custom-outcomes.component";
23
+ import * as i8 from "./components/form-definition-selector-cloud.component";
24
+ import * as i9 from "./components/widgets/radio-buttons/radio-buttons-cloud.widget";
25
+ import * as i10 from "./components/widgets/attach-file/attach-file-cloud-widget.component";
26
+ import * as i11 from "./components/widgets/upload/upload-cloud.widget";
27
+ import * as i12 from "./components/widgets/people/people-cloud.widget";
28
+ import * as i13 from "./components/widgets/group/group-cloud.widget";
29
+ import * as i14 from "./components/form-cloud.component";
30
+ export declare const FORM_CLOUD_DIRECTIVES: readonly [typeof FormSpinnerComponent, typeof PropertiesViewerWrapperComponent, typeof PropertiesViewerWidgetComponent, typeof DisplayRichTextWidgetComponent, typeof FileViewerWidgetComponent, typeof FilePropertiesTableCloudComponent, typeof FormCustomOutcomesComponent, typeof FormDefinitionSelectorCloudComponent, typeof RadioButtonsCloudWidgetComponent, typeof AttachFileCloudWidgetComponent, typeof UploadCloudWidgetComponent, typeof PeopleCloudWidgetComponent, typeof GroupCloudWidgetComponent, typeof FormCloudComponent];
33
31
  /** @deprecated use ...FORM_CLOUD_DIRECTIVES instead */
34
32
  export declare class FormCloudModule {
35
33
  static ɵfac: i0.ɵɵFactoryDeclaration<FormCloudModule, never>;
36
- static ɵmod: i0.ɵɵNgModuleDeclaration<FormCloudModule, never, [typeof i1.RichTextEditorComponent, typeof i2.FormSpinnerComponent, typeof i3.PropertiesViewerWrapperComponent, typeof i4.PropertiesViewerWidgetComponent, typeof i5.DisplayRichTextWidgetComponent, typeof i6.FileViewerWidgetComponent, typeof i7.FilePropertiesTableCloudComponent, typeof i8.FormCustomOutcomesComponent, typeof i9.FormDefinitionSelectorCloudComponent, typeof i10.RadioButtonsCloudWidgetComponent, typeof i11.AttachFileCloudWidgetComponent, typeof i12.UploadCloudWidgetComponent, typeof i13.PeopleCloudWidgetComponent, typeof i14.GroupCloudWidgetComponent, typeof i15.FormCloudComponent], [typeof i1.RichTextEditorComponent, typeof i2.FormSpinnerComponent, typeof i3.PropertiesViewerWrapperComponent, typeof i4.PropertiesViewerWidgetComponent, typeof i5.DisplayRichTextWidgetComponent, typeof i6.FileViewerWidgetComponent, typeof i7.FilePropertiesTableCloudComponent, typeof i8.FormCustomOutcomesComponent, typeof i9.FormDefinitionSelectorCloudComponent, typeof i10.RadioButtonsCloudWidgetComponent, typeof i11.AttachFileCloudWidgetComponent, typeof i12.UploadCloudWidgetComponent, typeof i13.PeopleCloudWidgetComponent, typeof i14.GroupCloudWidgetComponent, typeof i15.FormCloudComponent]>;
34
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FormCloudModule, never, [typeof i1.FormSpinnerComponent, typeof i2.PropertiesViewerWrapperComponent, typeof i3.PropertiesViewerWidgetComponent, typeof i4.DisplayRichTextWidgetComponent, typeof i5.FileViewerWidgetComponent, typeof i6.FilePropertiesTableCloudComponent, typeof i7.FormCustomOutcomesComponent, typeof i8.FormDefinitionSelectorCloudComponent, typeof i9.RadioButtonsCloudWidgetComponent, typeof i10.AttachFileCloudWidgetComponent, typeof i11.UploadCloudWidgetComponent, typeof i12.PeopleCloudWidgetComponent, typeof i13.GroupCloudWidgetComponent, typeof i14.FormCloudComponent], [typeof i1.FormSpinnerComponent, typeof i2.PropertiesViewerWrapperComponent, typeof i3.PropertiesViewerWidgetComponent, typeof i4.DisplayRichTextWidgetComponent, typeof i5.FileViewerWidgetComponent, typeof i6.FilePropertiesTableCloudComponent, typeof i7.FormCustomOutcomesComponent, typeof i8.FormDefinitionSelectorCloudComponent, typeof i9.RadioButtonsCloudWidgetComponent, typeof i10.AttachFileCloudWidgetComponent, typeof i11.UploadCloudWidgetComponent, typeof i12.PeopleCloudWidgetComponent, typeof i13.GroupCloudWidgetComponent, typeof i14.FormCloudComponent]>;
37
35
  static ɵinj: i0.ɵɵInjectorDeclaration<FormCloudModule>;
38
36
  }
@@ -24,7 +24,6 @@ import { Observable } from 'rxjs';
24
24
  import { ProcessDefinitionCloud } from '../../../models/process-definition-cloud.model';
25
25
  import { TaskVariableCloud } from '../../../form/models/task-variable-cloud.model';
26
26
  import { FormCloudDisplayModeConfiguration } from '../../../services/form-fields.interfaces';
27
- import { MatCheckboxChange } from '@angular/material/checkbox';
28
27
  import * as i0 from "@angular/core";
29
28
  export declare class StartProcessCloudComponent implements OnChanges, OnInit {
30
29
  private translateService;
@@ -52,10 +51,6 @@ export declare class StartProcessCloudComponent implements OnChanges, OnInit {
52
51
  * (start process event can have assigned form)
53
52
  */
54
53
  displayModeConfigurations: FormCloudDisplayModeConfiguration[];
55
- /** Toggle rendering of the `Open next task` checkbox. */
56
- showNextTaskCheckbox: boolean;
57
- /** Whether the `Open next task` checkbox is checked by default or not. */
58
- isNextTaskCheckboxChecked: boolean;
59
54
  /** Emitted when the process is successfully started. */
60
55
  success: EventEmitter<ProcessInstanceCloud>;
61
56
  /** Emitted when the starting process is cancelled */
@@ -66,8 +61,6 @@ export declare class StartProcessCloudComponent implements OnChanges, OnInit {
66
61
  formContentClicked: EventEmitter<ContentLinkModel>;
67
62
  /** Emitted when process definition selection changes. */
68
63
  processDefinitionSelection: EventEmitter<ProcessDefinitionCloud>;
69
- /** Emitted when the `Open next task` checkbox was toggled. */
70
- nextTaskCheckboxCheckedChanged: EventEmitter<MatCheckboxChange>;
71
64
  processDefinitionList: ProcessDefinitionCloud[];
72
65
  processDefinitionCurrent?: ProcessDefinitionCloud;
73
66
  errorMessageId: string;
@@ -135,7 +128,6 @@ export declare class StartProcessCloudComponent implements OnChanges, OnInit {
135
128
  processDefinitionSelectionChanged(processDefinition: ProcessDefinitionCloud): void;
136
129
  setDefaultProcessName(processDefinitionName: string): void;
137
130
  getDefaultProcessName(processNameFormat: string, processInstance?: ProcessInstanceCloud): string;
138
- onNextTaskCheckboxCheckedChanged(event: MatCheckboxChange): void;
139
131
  static ɵfac: i0.ɵɵFactoryDeclaration<StartProcessCloudComponent, never>;
140
- static ɵcmp: i0.ɵɵComponentDeclaration<StartProcessCloudComponent, "adf-cloud-start-process", never, { "appName": { "alias": "appName"; "required": false; }; "maxNameLength": { "alias": "maxNameLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "processDefinitionName": { "alias": "processDefinitionName"; "required": false; }; "variables": { "alias": "variables"; "required": false; }; "values": { "alias": "values"; "required": false; }; "showSelectProcessDropdown": { "alias": "showSelectProcessDropdown"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; }; "displayModeConfigurations": { "alias": "displayModeConfigurations"; "required": false; }; "showNextTaskCheckbox": { "alias": "showNextTaskCheckbox"; "required": false; }; "isNextTaskCheckboxChecked": { "alias": "isNextTaskCheckboxChecked"; "required": false; }; }, { "success": "success"; "cancel": "cancel"; "error": "error"; "formContentClicked": "formContentClicked"; "processDefinitionSelection": "processDefinitionSelection"; "nextTaskCheckboxCheckedChanged": "nextTaskCheckboxCheckedChanged"; }, never, never, true, never>;
132
+ static ɵcmp: i0.ɵɵComponentDeclaration<StartProcessCloudComponent, "adf-cloud-start-process", never, { "appName": { "alias": "appName"; "required": false; }; "maxNameLength": { "alias": "maxNameLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "processDefinitionName": { "alias": "processDefinitionName"; "required": false; }; "variables": { "alias": "variables"; "required": false; }; "values": { "alias": "values"; "required": false; }; "showSelectProcessDropdown": { "alias": "showSelectProcessDropdown"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; }; "displayModeConfigurations": { "alias": "displayModeConfigurations"; "required": false; }; }, { "success": "success"; "cancel": "cancel"; "error": "error"; "formContentClicked": "formContentClicked"; "processDefinitionSelection": "processDefinitionSelection"; }, never, never, true, never>;
141
133
  }
@@ -16,7 +16,6 @@
16
16
  */
17
17
  import { ModuleWithProviders } from '@angular/core';
18
18
  import { PreferenceCloudServiceInterface } from './services/public-api';
19
- import { RichTextEditorComponent } from './rich-text-editor';
20
19
  import { PeopleCloudComponent } from './people/components/people-cloud.component';
21
20
  import * as i0 from "@angular/core";
22
21
  import * as i1 from "./process/process-cloud.module";
@@ -24,30 +23,41 @@ import * as i2 from "./task/task-cloud.module";
24
23
  import * as i3 from "./group/components/group-cloud.component";
25
24
  import * as i4 from "./app/components/app-list-cloud/app-list-cloud.component";
26
25
  import * as i5 from "./app/components/app-details-cloud/app-details-cloud.component";
27
- import * as i6 from "./rich-text-editor/rich-text-editor.component";
28
- import * as i7 from "./form/components/spinner/form-spinner.component";
29
- import * as i8 from "./form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer-wrapper.component";
30
- import * as i9 from "./form/components/widgets/properties-viewer/properties-viewer.widget";
31
- import * as i10 from "./form/components/widgets/display-rich-text/display-rich-text.widget";
32
- import * as i11 from "./form/components/widgets/file-viewer/file-viewer.widget";
33
- import * as i12 from "./form/components/widgets/attach-file/file-properties-table/file-properties-table-cloud.component";
34
- import * as i13 from "./form/components/form-cloud-custom-outcomes.component";
35
- import * as i14 from "./form/components/form-definition-selector-cloud.component";
36
- import * as i15 from "./form/components/widgets/radio-buttons/radio-buttons-cloud.widget";
37
- import * as i16 from "./form/components/widgets/attach-file/attach-file-cloud-widget.component";
38
- import * as i17 from "./form/components/widgets/upload/upload-cloud.widget";
39
- import * as i18 from "./form/components/widgets/people/people-cloud.widget";
40
- import * as i19 from "./form/components/widgets/group/group-cloud.widget";
41
- import * as i20 from "./form/components/form-cloud.component";
42
- import * as i21 from "./task/task-form/components/user-task-cloud-buttons/user-task-cloud-buttons.component";
43
- import * as i22 from "./task/task-form/components/task-form-cloud/task-form-cloud.component";
44
- import * as i23 from "./task/task-form/components/user-task-cloud/user-task-cloud.component";
45
- import * as i24 from "./people/components/people-cloud.component";
46
- export declare const PROCESS_SERVICES_CLOUD_DIRECTIVES: readonly [typeof import("@alfresco/adf-process-services-cloud").AppListCloudComponent, typeof import("@alfresco/adf-process-services-cloud").AppDetailsCloudComponent, typeof RichTextEditorComponent, typeof import("@alfresco/adf-process-services-cloud").FormSpinnerComponent, typeof import("@alfresco/adf-process-services-cloud").PropertiesViewerWrapperComponent, typeof import("@alfresco/adf-process-services-cloud").PropertiesViewerWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").DisplayRichTextWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").FileViewerWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").FilePropertiesTableCloudComponent, typeof import("@alfresco/adf-process-services-cloud").FormCustomOutcomesComponent, typeof import("@alfresco/adf-process-services-cloud").FormDefinitionSelectorCloudComponent, typeof import("@alfresco/adf-process-services-cloud").RadioButtonsCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").AttachFileCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").UploadCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").PeopleCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").GroupCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").FormCloudComponent, typeof import("@alfresco/adf-process-services-cloud").UserTaskCloudButtonsComponent, typeof import("@alfresco/adf-process-services-cloud").TaskFormCloudComponent, typeof import("@alfresco/adf-process-services-cloud").UserTaskCloudComponent, typeof PeopleCloudComponent, typeof RichTextEditorComponent];
26
+ import * as i6 from "./form/components/spinner/form-spinner.component";
27
+ import * as i7 from "./form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer-wrapper.component";
28
+ import * as i8 from "./form/components/widgets/properties-viewer/properties-viewer.widget";
29
+ import * as i9 from "./form/components/widgets/display-rich-text/display-rich-text.widget";
30
+ import * as i10 from "./form/components/widgets/file-viewer/file-viewer.widget";
31
+ import * as i11 from "./form/components/widgets/attach-file/file-properties-table/file-properties-table-cloud.component";
32
+ import * as i12 from "./form/components/form-cloud-custom-outcomes.component";
33
+ import * as i13 from "./form/components/form-definition-selector-cloud.component";
34
+ import * as i14 from "./form/components/widgets/radio-buttons/radio-buttons-cloud.widget";
35
+ import * as i15 from "./form/components/widgets/attach-file/attach-file-cloud-widget.component";
36
+ import * as i16 from "./form/components/widgets/upload/upload-cloud.widget";
37
+ import * as i17 from "./form/components/widgets/people/people-cloud.widget";
38
+ import * as i18 from "./form/components/widgets/group/group-cloud.widget";
39
+ import * as i19 from "./form/components/form-cloud.component";
40
+ import * as i20 from "./task/task-form/components/user-task-cloud-buttons/user-task-cloud-buttons.component";
41
+ import * as i21 from "./task/task-form/components/task-form-cloud/task-form-cloud.component";
42
+ import * as i22 from "./task/task-form/components/user-task-cloud/user-task-cloud.component";
43
+ import * as i23 from "./people/components/people-cloud.component";
44
+ export declare const PROCESS_SERVICES_CLOUD_DIRECTIVES: readonly [typeof import("@alfresco/adf-process-services-cloud").AppListCloudComponent, typeof import("@alfresco/adf-process-services-cloud").AppDetailsCloudComponent, typeof import("@alfresco/adf-process-services-cloud").FormSpinnerComponent, typeof import("@alfresco/adf-process-services-cloud").PropertiesViewerWrapperComponent, typeof import("@alfresco/adf-process-services-cloud").PropertiesViewerWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").DisplayRichTextWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").FileViewerWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").FilePropertiesTableCloudComponent, typeof import("@alfresco/adf-process-services-cloud").FormCustomOutcomesComponent, typeof import("@alfresco/adf-process-services-cloud").FormDefinitionSelectorCloudComponent, typeof import("@alfresco/adf-process-services-cloud").RadioButtonsCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").AttachFileCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").UploadCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").PeopleCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").GroupCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").FormCloudComponent, typeof import("@alfresco/adf-process-services-cloud").UserTaskCloudButtonsComponent, typeof import("@alfresco/adf-process-services-cloud").TaskFormCloudComponent, typeof import("@alfresco/adf-process-services-cloud").UserTaskCloudComponent, typeof PeopleCloudComponent];
45
+ /**
46
+ * @deprecated this module is deprecated and will be removed in the future versions
47
+ *
48
+ * Instead, import the standalone components directly, or use the following provider API to replicate the behaviour:
49
+ *
50
+ * providers: [
51
+ * provideTranslations('adf-process-services-cloud', 'assets/adf-process-services-cloud')
52
+ * provideCloudPreferences()
53
+ * provideCloudFormRenderer(),
54
+ * { provide: TASK_LIST_CLOUD_TOKEN, useClass: TaskListCloudService }
55
+ * ]
56
+ */
47
57
  export declare class ProcessServicesCloudModule {
48
58
  static forRoot(filterPreferenceServiceInstance?: PreferenceCloudServiceInterface, listPreferenceServiceInstance?: PreferenceCloudServiceInterface): ModuleWithProviders<ProcessServicesCloudModule>;
49
59
  static forChild(): ModuleWithProviders<ProcessServicesCloudModule>;
50
60
  static ɵfac: i0.ɵɵFactoryDeclaration<ProcessServicesCloudModule, never>;
51
- static ɵmod: i0.ɵɵNgModuleDeclaration<ProcessServicesCloudModule, never, [typeof i1.ProcessCloudModule, typeof i2.TaskCloudModule, typeof i3.GroupCloudComponent, typeof i4.AppListCloudComponent, typeof i5.AppDetailsCloudComponent, typeof i6.RichTextEditorComponent, typeof i7.FormSpinnerComponent, typeof i8.PropertiesViewerWrapperComponent, typeof i9.PropertiesViewerWidgetComponent, typeof i10.DisplayRichTextWidgetComponent, typeof i11.FileViewerWidgetComponent, typeof i12.FilePropertiesTableCloudComponent, typeof i13.FormCustomOutcomesComponent, typeof i14.FormDefinitionSelectorCloudComponent, typeof i15.RadioButtonsCloudWidgetComponent, typeof i16.AttachFileCloudWidgetComponent, typeof i17.UploadCloudWidgetComponent, typeof i18.PeopleCloudWidgetComponent, typeof i19.GroupCloudWidgetComponent, typeof i20.FormCloudComponent, typeof i21.UserTaskCloudButtonsComponent, typeof i22.TaskFormCloudComponent, typeof i23.UserTaskCloudComponent, typeof i24.PeopleCloudComponent, typeof i6.RichTextEditorComponent], [typeof i1.ProcessCloudModule, typeof i2.TaskCloudModule, typeof i3.GroupCloudComponent, typeof i4.AppListCloudComponent, typeof i5.AppDetailsCloudComponent, typeof i6.RichTextEditorComponent, typeof i7.FormSpinnerComponent, typeof i8.PropertiesViewerWrapperComponent, typeof i9.PropertiesViewerWidgetComponent, typeof i10.DisplayRichTextWidgetComponent, typeof i11.FileViewerWidgetComponent, typeof i12.FilePropertiesTableCloudComponent, typeof i13.FormCustomOutcomesComponent, typeof i14.FormDefinitionSelectorCloudComponent, typeof i15.RadioButtonsCloudWidgetComponent, typeof i16.AttachFileCloudWidgetComponent, typeof i17.UploadCloudWidgetComponent, typeof i18.PeopleCloudWidgetComponent, typeof i19.GroupCloudWidgetComponent, typeof i20.FormCloudComponent, typeof i21.UserTaskCloudButtonsComponent, typeof i22.TaskFormCloudComponent, typeof i23.UserTaskCloudComponent, typeof i24.PeopleCloudComponent, typeof i6.RichTextEditorComponent]>;
61
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProcessServicesCloudModule, never, [typeof i1.ProcessCloudModule, typeof i2.TaskCloudModule, typeof i3.GroupCloudComponent, typeof i4.AppListCloudComponent, typeof i5.AppDetailsCloudComponent, typeof i6.FormSpinnerComponent, typeof i7.PropertiesViewerWrapperComponent, typeof i8.PropertiesViewerWidgetComponent, typeof i9.DisplayRichTextWidgetComponent, typeof i10.FileViewerWidgetComponent, typeof i11.FilePropertiesTableCloudComponent, typeof i12.FormCustomOutcomesComponent, typeof i13.FormDefinitionSelectorCloudComponent, typeof i14.RadioButtonsCloudWidgetComponent, typeof i15.AttachFileCloudWidgetComponent, typeof i16.UploadCloudWidgetComponent, typeof i17.PeopleCloudWidgetComponent, typeof i18.GroupCloudWidgetComponent, typeof i19.FormCloudComponent, typeof i20.UserTaskCloudButtonsComponent, typeof i21.TaskFormCloudComponent, typeof i22.UserTaskCloudComponent, typeof i23.PeopleCloudComponent], [typeof i1.ProcessCloudModule, typeof i2.TaskCloudModule, typeof i3.GroupCloudComponent, typeof i4.AppListCloudComponent, typeof i5.AppDetailsCloudComponent, typeof i6.FormSpinnerComponent, typeof i7.PropertiesViewerWrapperComponent, typeof i8.PropertiesViewerWidgetComponent, typeof i9.DisplayRichTextWidgetComponent, typeof i10.FileViewerWidgetComponent, typeof i11.FilePropertiesTableCloudComponent, typeof i12.FormCustomOutcomesComponent, typeof i13.FormDefinitionSelectorCloudComponent, typeof i14.RadioButtonsCloudWidgetComponent, typeof i15.AttachFileCloudWidgetComponent, typeof i16.UploadCloudWidgetComponent, typeof i17.PeopleCloudWidgetComponent, typeof i18.GroupCloudWidgetComponent, typeof i19.FormCloudComponent, typeof i20.UserTaskCloudButtonsComponent, typeof i21.TaskFormCloudComponent, typeof i22.UserTaskCloudComponent, typeof i23.PeopleCloudComponent]>;
52
62
  static ɵinj: i0.ɵɵInjectorDeclaration<ProcessServicesCloudModule>;
53
63
  }
@@ -0,0 +1,36 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { PreferenceCloudServiceInterface } from './services/preference-cloud.interface';
18
+ import { Provider } from '@angular/core';
19
+ /**
20
+ * Provides preferences service for the process services cloud components
21
+ *
22
+ * @param opts Optional settings
23
+ * @param opts.filterPreferenceServiceInstance Custom filter instance for `PROCESS_FILTERS_SERVICE_TOKEN` and `TASK_FILTERS_SERVICE_TOKEN` (default: LocalPreferenceCloudService)
24
+ * @param opts.listPreferenceServiceInstance Custom filter instance for `PROCESS_LISTS_PREFERENCES_SERVICE_TOKEN` and `TASK_LIST_PREFERENCES_SERVICE_TOKEN` (default: LocalPreferenceCloudService)
25
+ * @returns list of providers
26
+ */
27
+ export declare function provideCloudPreferences(opts?: {
28
+ filterPreferenceServiceInstance?: PreferenceCloudServiceInterface;
29
+ listPreferenceServiceInstance?: PreferenceCloudServiceInterface;
30
+ }): Provider[];
31
+ /**
32
+ * Provides form rendering services for process cloud components
33
+ *
34
+ * @returns list of providers
35
+ */
36
+ export declare function provideCloudFormRenderer(): Provider[];
@@ -20,7 +20,6 @@ import { FormCloudComponent } from '../../../../form/components/form-cloud.compo
20
20
  import { FormCloudDisplayModeConfiguration } from '../../../../services/form-fields.interfaces';
21
21
  import { TaskCloudService } from '../../../services/task-cloud.service';
22
22
  import { TaskDetailsCloudModel } from '../../../models/task-details-cloud.model';
23
- import { MatCheckboxChange } from '@angular/material/checkbox';
24
23
  import * as i0 from "@angular/core";
25
24
  export declare class TaskFormCloudComponent {
26
25
  private taskCloudService;
@@ -51,10 +50,6 @@ export declare class TaskFormCloudComponent {
51
50
  displayModeConfigurations: FormCloudDisplayModeConfiguration[];
52
51
  /** Task details. */
53
52
  taskDetails: TaskDetailsCloudModel;
54
- /** Toggle rendering of the `Open next task` checkbox. */
55
- showNextTaskCheckbox: boolean;
56
- /** Whether the `Open next task` checkbox is checked by default or not. */
57
- isNextTaskCheckboxChecked: boolean;
58
53
  /** Emitted when the form is saved. */
59
54
  formSaved: EventEmitter<FormModel>;
60
55
  /** Emitted when the form is submitted with the `Complete` outcome. */
@@ -80,8 +75,6 @@ export declare class TaskFormCloudComponent {
80
75
  displayModeOn: EventEmitter<FormCloudDisplayModeConfiguration>;
81
76
  /** Emitted when a display mode configuration is turned off. */
82
77
  displayModeOff: EventEmitter<FormCloudDisplayModeConfiguration>;
83
- /** Emitted when the `Open next task` checkbox was toggled. */
84
- nextTaskCheckboxCheckedChanged: EventEmitter<MatCheckboxChange>;
85
78
  adfCloudForm: FormCloudComponent;
86
79
  loading: boolean;
87
80
  constructor(taskCloudService: TaskCloudService, formRenderingService: FormRenderingService);
@@ -105,7 +98,6 @@ export declare class TaskFormCloudComponent {
105
98
  switchToDisplayMode(newDisplayMode?: string): void;
106
99
  onDisplayModeOn(displayModeConfiguration: FormCloudDisplayModeConfiguration): void;
107
100
  onDisplayModeOff(displayModeConfiguration: FormCloudDisplayModeConfiguration): void;
108
- onNextTaskCheckboxCheckedChanged(event: MatCheckboxChange): void;
109
101
  static ɵfac: i0.ɵɵFactoryDeclaration<TaskFormCloudComponent, never>;
110
- static ɵcmp: i0.ɵɵComponentDeclaration<TaskFormCloudComponent, "adf-cloud-task-form", never, { "appName": { "alias": "appName"; "required": false; }; "candidateUsers": { "alias": "candidateUsers"; "required": false; }; "candidateGroups": { "alias": "candidateGroups"; "required": false; }; "taskId": { "alias": "taskId"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showRefreshButton": { "alias": "showRefreshButton"; "required": false; }; "showValidationIcon": { "alias": "showValidationIcon"; "required": false; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; }; "showCompleteButton": { "alias": "showCompleteButton"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "displayModeConfigurations": { "alias": "displayModeConfigurations"; "required": false; }; "taskDetails": { "alias": "taskDetails"; "required": false; }; "showNextTaskCheckbox": { "alias": "showNextTaskCheckbox"; "required": false; }; "isNextTaskCheckboxChecked": { "alias": "isNextTaskCheckboxChecked"; "required": false; }; }, { "formSaved": "formSaved"; "formCompleted": "formCompleted"; "taskCompleted": "taskCompleted"; "taskClaimed": "taskClaimed"; "taskUnclaimed": "taskUnclaimed"; "cancelClick": "cancelClick"; "error": "error"; "formContentClicked": "formContentClicked"; "executeOutcome": "executeOutcome"; "displayModeOn": "displayModeOn"; "displayModeOff": "displayModeOff"; "nextTaskCheckboxCheckedChanged": "nextTaskCheckboxCheckedChanged"; }, never, never, true, never>;
102
+ static ɵcmp: i0.ɵɵComponentDeclaration<TaskFormCloudComponent, "adf-cloud-task-form", never, { "appName": { "alias": "appName"; "required": false; }; "candidateUsers": { "alias": "candidateUsers"; "required": false; }; "candidateGroups": { "alias": "candidateGroups"; "required": false; }; "taskId": { "alias": "taskId"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showRefreshButton": { "alias": "showRefreshButton"; "required": false; }; "showValidationIcon": { "alias": "showValidationIcon"; "required": false; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; }; "showCompleteButton": { "alias": "showCompleteButton"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "displayModeConfigurations": { "alias": "displayModeConfigurations"; "required": false; }; "taskDetails": { "alias": "taskDetails"; "required": false; }; }, { "formSaved": "formSaved"; "formCompleted": "formCompleted"; "taskCompleted": "taskCompleted"; "taskClaimed": "taskClaimed"; "taskUnclaimed": "taskUnclaimed"; "cancelClick": "cancelClick"; "error": "error"; "formContentClicked": "formContentClicked"; "executeOutcome": "executeOutcome"; "displayModeOn": "displayModeOn"; "displayModeOff": "displayModeOff"; }, never, never, true, never>;
111
103
  }
@@ -41,7 +41,7 @@ export declare class UserTaskCloudComponent implements OnInit, OnChanges {
41
41
  showCancelButton: boolean;
42
42
  /** Toggle rendering of the `Complete` button. */
43
43
  showCompleteButton: boolean;
44
- /** Toggle rendering of the `Open next task` checkbox. */
44
+ /** Toggle rendering of the `Open next task` checkbox (for screens only). */
45
45
  showNextTaskCheckbox: boolean;
46
46
  /** Whether the `Open next task` checkbox is checked by default or not. */
47
47
  isNextTaskCheckboxChecked: boolean;
@@ -87,11 +87,6 @@ export declare class UserTaskCloudComponent implements OnInit, OnChanges {
87
87
  readonly Screen: "screen";
88
88
  readonly None: "";
89
89
  };
90
- /**
91
- * The `Open next task` feature is currently disabled for forms only.
92
- * See https://hyland.atlassian.net/browse/AAE-34514 for further details.
93
- */
94
- readonly nextTaskCheckboxForFormsActivated = false;
95
90
  private taskCloudService;
96
91
  private readonly destroyRef;
97
92
  ngOnChanges(changes: SimpleChanges): void;
@@ -4,10 +4,6 @@
4
4
  > div {
5
5
  height: 100%;
6
6
  }
7
-
8
- .adf-card-actions-spacer {
9
- flex: 1 1 auto;
10
- }
11
7
  }
12
8
 
13
9
  .adf-user-task-cloud-spinner {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@alfresco/adf-process-services-cloud",
3
3
  "description": "Alfresco ADF process services cloud",
4
- "version": "8.1.0-16346981764",
4
+ "version": "8.1.0-16472253724",
5
5
  "author": "Hyland Software, Inc. and its affiliates",
6
6
  "repository": {
7
7
  "type": "git",
@@ -10,22 +10,6 @@
10
10
  "bugs": {
11
11
  "url": "https://github.com/Alfresco/alfresco-ng2-components/issues"
12
12
  },
13
- "dependencies": {
14
- "@editorjs/code": "2.9.0",
15
- "@editorjs/editorjs": "^2.28.2",
16
- "@editorjs/header": "2.8.1",
17
- "@editorjs/inline-code": "1.5.0",
18
- "@editorjs/list": "1.9.0",
19
- "@editorjs/marker": "1.4.0",
20
- "@editorjs/paragraph": "^2.11.6",
21
- "@editorjs/underline": "1.1.0",
22
- "editorjs-html": "4.0.5",
23
- "editorjs-paragraph-with-alignment": "3.0.0",
24
- "editorjs-text-alignment-blocktune": "^1.0.3",
25
- "editorjs-text-color-plugin": "1.13.1",
26
- "@valano/change-font-size": "1.0.0",
27
- "tslib": "^2.3.0"
28
- },
29
13
  "peerDependencies": {
30
14
  "@angular/animations": ">=14.1.3",
31
15
  "@angular/cdk": ">=14.1.2",
@@ -37,9 +21,9 @@
37
21
  "@angular/platform-browser": ">=14.1.3",
38
22
  "@angular/platform-browser-dynamic": ">=14.1.3",
39
23
  "@angular/router": ">=14.1.3",
40
- "@alfresco/js-api": ">=9.1.0-16346981764",
41
- "@alfresco/adf-core": ">=8.1.0-16346981764",
42
- "@alfresco/adf-content-services": ">=8.1.0-16346981764",
24
+ "@alfresco/js-api": ">=9.1.0-16472253724",
25
+ "@alfresco/adf-core": ">=8.1.0-16472253724",
26
+ "@alfresco/adf-content-services": ">=8.1.0-16472253724",
43
27
  "@apollo/client": ">=3.7.2",
44
28
  "@ngx-translate/core": ">=14.0.0",
45
29
  "apollo-angular": ">=4.0.1"
@@ -65,5 +49,8 @@
65
49
  "default": "./fesm2022/adf-process-services-cloud.mjs"
66
50
  }
67
51
  },
68
- "sideEffects": false
52
+ "sideEffects": false,
53
+ "dependencies": {
54
+ "tslib": "^2.3.0"
55
+ }
69
56
  }
package/public-api.d.ts CHANGED
@@ -22,7 +22,6 @@ export * from './lib/group/public-api';
22
22
  export * from './lib/people/public-api';
23
23
  export * from './lib/form/public-api';
24
24
  export * from './lib/services/public-api';
25
- export * from './lib/rich-text-editor/public-api';
26
25
  export * from './lib/screen/public-api';
27
26
  export * from './lib/types';
28
27
  export * from './lib/common/index';
@@ -37,3 +36,4 @@ export * from './lib/models/process-instance-variable.model';
37
36
  export * from './lib/models/variable-definition';
38
37
  export * from './lib/models/date-format-cloud.model';
39
38
  export * from './lib/models/process-variable-filter.model';
39
+ export * from './lib/providers';
@@ -1,101 +0,0 @@
1
- /*!
2
- * @license
3
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing, software
12
- * distributed under the License is distributed on an "AS IS" BASIS,
13
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- * See the License for the specific language governing permissions and
15
- * limitations under the License.
16
- */
17
- /** Plugin import */
18
- import CodeTool from '@editorjs/code';
19
- import Header from '@editorjs/header';
20
- import Paragraph from '@editorjs/paragraph';
21
- import InlineCode from '@editorjs/inline-code';
22
- import List from '@editorjs/list';
23
- import Marker from '@editorjs/marker';
24
- import Underline from '@editorjs/underline';
25
- import ChangeFontSize from '@valano/change-font-size';
26
- import ColorPlugin from 'editorjs-text-color-plugin';
27
- import AlignmentTuneTool from 'editorjs-text-alignment-blocktune';
28
- export const editorJsConfig = {
29
- autofocus: true,
30
- logLevel: 'ERROR',
31
- tools: {
32
- underline: {
33
- class: Underline,
34
- shortcut: 'CMD+U'
35
- },
36
- header: {
37
- class: Header,
38
- inlineToolbar: true,
39
- tunes: ['anyTuneName']
40
- },
41
- paragraph: {
42
- class: Paragraph,
43
- inlineToolbar: true,
44
- tunes: ['anyTuneName']
45
- },
46
- list: {
47
- class: List,
48
- inlineToolbar: true,
49
- config: {
50
- defaultStyle: 'unordered'
51
- }
52
- },
53
- Color: {
54
- class: ColorPlugin,
55
- config: {
56
- customPicker: true,
57
- colorCollections: [
58
- '#FF1300',
59
- '#ffa500',
60
- '#9C27B0',
61
- '#673AB7',
62
- '#3F51B5',
63
- '#0070FF',
64
- '#03A9F4',
65
- '#00BCD4',
66
- '#5f9ea0',
67
- '#4CAF50',
68
- '#8BC34A',
69
- '#CDDC39',
70
- '#FFF',
71
- '#000',
72
- '#c0c0c0',
73
- '#808080',
74
- '#800000'
75
- ],
76
- defaultColor: '#FF1300',
77
- type: 'text'
78
- }
79
- },
80
- Marker: {
81
- class: Marker,
82
- shortcut: 'CMD+M'
83
- },
84
- 'Increase/Decrease font size': {
85
- class: ChangeFontSize,
86
- config: {
87
- cssClass: 'plus20pc',
88
- buttonIcon: '<span class="material-icons">format_size</span>'
89
- }
90
- },
91
- inlineCode: {
92
- class: InlineCode,
93
- shortcut: 'CMD+SHIFT+M'
94
- },
95
- anyTuneName: {
96
- class: AlignmentTuneTool
97
- },
98
- code: CodeTool
99
- }
100
- };
101
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdG9yanMtY29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGliL3Byb2Nlc3Mtc2VydmljZXMtY2xvdWQvc3JjL2xpYi9yaWNoLXRleHQtZWRpdG9yL2VkaXRvcmpzLWNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Ozs7Ozs7O0dBZUc7QUFFSCxvQkFBb0I7QUFDcEIsT0FBTyxRQUFRLE1BQU0sZ0JBQWdCLENBQUM7QUFDdEMsT0FBTyxNQUFNLE1BQU0sa0JBQWtCLENBQUM7QUFDdEMsT0FBTyxTQUFTLE1BQU0scUJBQXFCLENBQUM7QUFDNUMsT0FBTyxVQUFVLE1BQU0sdUJBQXVCLENBQUM7QUFDL0MsT0FBTyxJQUFJLE1BQU0sZ0JBQWdCLENBQUM7QUFDbEMsT0FBTyxNQUFNLE1BQU0sa0JBQWtCLENBQUM7QUFDdEMsT0FBTyxTQUFTLE1BQU0scUJBQXFCLENBQUM7QUFDNUMsT0FBTyxjQUFjLE1BQU0sMEJBQTBCLENBQUM7QUFDdEQsT0FBTyxXQUFXLE1BQU0sNEJBQTRCLENBQUM7QUFDckQsT0FBTyxpQkFBaUIsTUFBTSxtQ0FBbUMsQ0FBQztBQUVsRSxNQUFNLENBQUMsTUFBTSxjQUFjLEdBQUc7SUFDMUIsU0FBUyxFQUFFLElBQUk7SUFDZixRQUFRLEVBQUUsT0FBTztJQUNqQixLQUFLLEVBQUU7UUFDSCxTQUFTLEVBQUU7WUFDUCxLQUFLLEVBQUUsU0FBUztZQUNoQixRQUFRLEVBQUUsT0FBTztTQUNwQjtRQUNELE1BQU0sRUFBRTtZQUNKLEtBQUssRUFBRSxNQUFNO1lBQ2IsYUFBYSxFQUFFLElBQUk7WUFDbkIsS0FBSyxFQUFFLENBQUMsYUFBYSxDQUFDO1NBQ3pCO1FBQ0QsU0FBUyxFQUFFO1lBQ1AsS0FBSyxFQUFFLFNBQVM7WUFDaEIsYUFBYSxFQUFFLElBQUk7WUFDbkIsS0FBSyxFQUFFLENBQUMsYUFBYSxDQUFDO1NBQ3pCO1FBQ0QsSUFBSSxFQUFFO1lBQ0YsS0FBSyxFQUFFLElBQUk7WUFDWCxhQUFhLEVBQUUsSUFBSTtZQUNuQixNQUFNLEVBQUU7Z0JBQ0osWUFBWSxFQUFFLFdBQVc7YUFDNUI7U0FDSjtRQUNELEtBQUssRUFBRTtZQUNILEtBQUssRUFBRSxXQUFXO1lBQ2xCLE1BQU0sRUFBRTtnQkFDSixZQUFZLEVBQUUsSUFBSTtnQkFDbEIsZ0JBQWdCLEVBQUU7b0JBQ2QsU0FBUztvQkFDVCxTQUFTO29CQUNULFNBQVM7b0JBQ1QsU0FBUztvQkFDVCxTQUFTO29CQUNULFNBQVM7b0JBQ1QsU0FBUztvQkFDVCxTQUFTO29CQUNULFNBQVM7b0JBQ1QsU0FBUztvQkFDVCxTQUFTO29CQUNULFNBQVM7b0JBQ1QsTUFBTTtvQkFDTixNQUFNO29CQUNOLFNBQVM7b0JBQ1QsU0FBUztvQkFDVCxTQUFTO2lCQUNaO2dCQUNELFlBQVksRUFBRSxTQUFTO2dCQUN2QixJQUFJLEVBQUUsTUFBTTthQUNmO1NBQ0o7UUFDRCxNQUFNLEVBQUU7WUFDSixLQUFLLEVBQUUsTUFBTTtZQUNiLFFBQVEsRUFBRSxPQUFPO1NBQ3BCO1FBQ0QsNkJBQTZCLEVBQUU7WUFDM0IsS0FBSyxFQUFFLGNBQWM7WUFDckIsTUFBTSxFQUFFO2dCQUNKLFFBQVEsRUFBRSxVQUFVO2dCQUNwQixVQUFVLEVBQUUsaURBQWlEO2FBQ2hFO1NBQ0o7UUFDRCxVQUFVLEVBQUU7WUFDUixLQUFLLEVBQUUsVUFBVTtZQUNqQixRQUFRLEVBQUUsYUFBYTtTQUMxQjtRQUNELFdBQVcsRUFBRTtZQUNULEtBQUssRUFBRSxpQkFBaUI7U0FDM0I7UUFDRCxJQUFJLEVBQUUsUUFBUTtLQUNqQjtDQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKiFcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgwqkgMjAwNS0yMDI1IEh5bGFuZCBTb2Z0d2FyZSwgSW5jLiBhbmQgaXRzIGFmZmlsaWF0ZXMuIEFsbCByaWdodHMgcmVzZXJ2ZWQuXG4gKlxuICogTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMCAodGhlIFwiTGljZW5zZVwiKTtcbiAqIHlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2Ugd2l0aCB0aGUgTGljZW5zZS5cbiAqIFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGljZW5zZSBhdFxuICpcbiAqICAgICBodHRwOi8vd3d3LmFwYWNoZS5vcmcvbGljZW5zZXMvTElDRU5TRS0yLjBcbiAqXG4gKiBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IgYWdyZWVkIHRvIGluIHdyaXRpbmcsIHNvZnR3YXJlXG4gKiBkaXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBvbiBhbiBcIkFTIElTXCIgQkFTSVMsXG4gKiBXSVRIT1VUIFdBUlJBTlRJRVMgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1wbGllZC5cbiAqIFNlZSB0aGUgTGljZW5zZSBmb3IgdGhlIHNwZWNpZmljIGxhbmd1YWdlIGdvdmVybmluZyBwZXJtaXNzaW9ucyBhbmRcbiAqIGxpbWl0YXRpb25zIHVuZGVyIHRoZSBMaWNlbnNlLlxuICovXG5cbi8qKiBQbHVnaW4gaW1wb3J0ICovXG5pbXBvcnQgQ29kZVRvb2wgZnJvbSAnQGVkaXRvcmpzL2NvZGUnO1xuaW1wb3J0IEhlYWRlciBmcm9tICdAZWRpdG9yanMvaGVhZGVyJztcbmltcG9ydCBQYXJhZ3JhcGggZnJvbSAnQGVkaXRvcmpzL3BhcmFncmFwaCc7XG5pbXBvcnQgSW5saW5lQ29kZSBmcm9tICdAZWRpdG9yanMvaW5saW5lLWNvZGUnO1xuaW1wb3J0IExpc3QgZnJvbSAnQGVkaXRvcmpzL2xpc3QnO1xuaW1wb3J0IE1hcmtlciBmcm9tICdAZWRpdG9yanMvbWFya2VyJztcbmltcG9ydCBVbmRlcmxpbmUgZnJvbSAnQGVkaXRvcmpzL3VuZGVybGluZSc7XG5pbXBvcnQgQ2hhbmdlRm9udFNpemUgZnJvbSAnQHZhbGFuby9jaGFuZ2UtZm9udC1zaXplJztcbmltcG9ydCBDb2xvclBsdWdpbiBmcm9tICdlZGl0b3Jqcy10ZXh0LWNvbG9yLXBsdWdpbic7XG5pbXBvcnQgQWxpZ25tZW50VHVuZVRvb2wgZnJvbSAnZWRpdG9yanMtdGV4dC1hbGlnbm1lbnQtYmxvY2t0dW5lJztcblxuZXhwb3J0IGNvbnN0IGVkaXRvckpzQ29uZmlnID0ge1xuICAgIGF1dG9mb2N1czogdHJ1ZSxcbiAgICBsb2dMZXZlbDogJ0VSUk9SJyxcbiAgICB0b29sczoge1xuICAgICAgICB1bmRlcmxpbmU6IHtcbiAgICAgICAgICAgIGNsYXNzOiBVbmRlcmxpbmUsXG4gICAgICAgICAgICBzaG9ydGN1dDogJ0NNRCtVJ1xuICAgICAgICB9LFxuICAgICAgICBoZWFkZXI6IHtcbiAgICAgICAgICAgIGNsYXNzOiBIZWFkZXIsXG4gICAgICAgICAgICBpbmxpbmVUb29sYmFyOiB0cnVlLFxuICAgICAgICAgICAgdHVuZXM6IFsnYW55VHVuZU5hbWUnXVxuICAgICAgICB9LFxuICAgICAgICBwYXJhZ3JhcGg6IHtcbiAgICAgICAgICAgIGNsYXNzOiBQYXJhZ3JhcGgsXG4gICAgICAgICAgICBpbmxpbmVUb29sYmFyOiB0cnVlLFxuICAgICAgICAgICAgdHVuZXM6IFsnYW55VHVuZU5hbWUnXVxuICAgICAgICB9LFxuICAgICAgICBsaXN0OiB7XG4gICAgICAgICAgICBjbGFzczogTGlzdCxcbiAgICAgICAgICAgIGlubGluZVRvb2xiYXI6IHRydWUsXG4gICAgICAgICAgICBjb25maWc6IHtcbiAgICAgICAgICAgICAgICBkZWZhdWx0U3R5bGU6ICd1bm9yZGVyZWQnXG4gICAgICAgICAgICB9XG4gICAgICAgIH0sXG4gICAgICAgIENvbG9yOiB7XG4gICAgICAgICAgICBjbGFzczogQ29sb3JQbHVnaW4sXG4gICAgICAgICAgICBjb25maWc6IHtcbiAgICAgICAgICAgICAgICBjdXN0b21QaWNrZXI6IHRydWUsXG4gICAgICAgICAgICAgICAgY29sb3JDb2xsZWN0aW9uczogW1xuICAgICAgICAgICAgICAgICAgICAnI0ZGMTMwMCcsXG4gICAgICAgICAgICAgICAgICAgICcjZmZhNTAwJyxcbiAgICAgICAgICAgICAgICAgICAgJyM5QzI3QjAnLFxuICAgICAgICAgICAgICAgICAgICAnIzY3M0FCNycsXG4gICAgICAgICAgICAgICAgICAgICcjM0Y1MUI1JyxcbiAgICAgICAgICAgICAgICAgICAgJyMwMDcwRkYnLFxuICAgICAgICAgICAgICAgICAgICAnIzAzQTlGNCcsXG4gICAgICAgICAgICAgICAgICAgICcjMDBCQ0Q0JyxcbiAgICAgICAgICAgICAgICAgICAgJyM1ZjllYTAnLFxuICAgICAgICAgICAgICAgICAgICAnIzRDQUY1MCcsXG4gICAgICAgICAgICAgICAgICAgICcjOEJDMzRBJyxcbiAgICAgICAgICAgICAgICAgICAgJyNDRERDMzknLFxuICAgICAgICAgICAgICAgICAgICAnI0ZGRicsXG4gICAgICAgICAgICAgICAgICAgICcjMDAwJyxcbiAgICAgICAgICAgICAgICAgICAgJyNjMGMwYzAnLFxuICAgICAgICAgICAgICAgICAgICAnIzgwODA4MCcsXG4gICAgICAgICAgICAgICAgICAgICcjODAwMDAwJ1xuICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgZGVmYXVsdENvbG9yOiAnI0ZGMTMwMCcsXG4gICAgICAgICAgICAgICAgdHlwZTogJ3RleHQnXG4gICAgICAgICAgICB9XG4gICAgICAgIH0sXG4gICAgICAgIE1hcmtlcjoge1xuICAgICAgICAgICAgY2xhc3M6IE1hcmtlcixcbiAgICAgICAgICAgIHNob3J0Y3V0OiAnQ01EK00nXG4gICAgICAgIH0sXG4gICAgICAgICdJbmNyZWFzZS9EZWNyZWFzZSBmb250IHNpemUnOiB7XG4gICAgICAgICAgICBjbGFzczogQ2hhbmdlRm9udFNpemUsXG4gICAgICAgICAgICBjb25maWc6IHtcbiAgICAgICAgICAgICAgICBjc3NDbGFzczogJ3BsdXMyMHBjJyxcbiAgICAgICAgICAgICAgICBidXR0b25JY29uOiAnPHNwYW4gY2xhc3M9XCJtYXRlcmlhbC1pY29uc1wiPmZvcm1hdF9zaXplPC9zcGFuPidcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSxcbiAgICAgICAgaW5saW5lQ29kZToge1xuICAgICAgICAgICAgY2xhc3M6IElubGluZUNvZGUsXG4gICAgICAgICAgICBzaG9ydGN1dDogJ0NNRCtTSElGVCtNJ1xuICAgICAgICB9LFxuICAgICAgICBhbnlUdW5lTmFtZToge1xuICAgICAgICAgICAgY2xhc3M6IEFsaWdubWVudFR1bmVUb29sXG4gICAgICAgIH0sXG4gICAgICAgIGNvZGU6IENvZGVUb29sXG4gICAgfVxufTtcbiJdfQ==
@@ -1,18 +0,0 @@
1
- /*!
2
- * @license
3
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing, software
12
- * distributed under the License is distributed on an "AS IS" BASIS,
13
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- * See the License for the specific language governing permissions and
15
- * limitations under the License.
16
- */
17
- export * from './public-api';
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWIvcHJvY2Vzcy1zZXJ2aWNlcy1jbG91ZC9zcmMvbGliL3JpY2gtdGV4dC1lZGl0b3IvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7Ozs7OztHQWVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKiFcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgwqkgMjAwNS0yMDI1IEh5bGFuZCBTb2Z0d2FyZSwgSW5jLiBhbmQgaXRzIGFmZmlsaWF0ZXMuIEFsbCByaWdodHMgcmVzZXJ2ZWQuXG4gKlxuICogTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMCAodGhlIFwiTGljZW5zZVwiKTtcbiAqIHlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2Ugd2l0aCB0aGUgTGljZW5zZS5cbiAqIFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGljZW5zZSBhdFxuICpcbiAqICAgICBodHRwOi8vd3d3LmFwYWNoZS5vcmcvbGljZW5zZXMvTElDRU5TRS0yLjBcbiAqXG4gKiBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IgYWdyZWVkIHRvIGluIHdyaXRpbmcsIHNvZnR3YXJlXG4gKiBkaXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBvbiBhbiBcIkFTIElTXCIgQkFTSVMsXG4gKiBXSVRIT1VUIFdBUlJBTlRJRVMgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1wbGllZC5cbiAqIFNlZSB0aGUgTGljZW5zZSBmb3IgdGhlIHNwZWNpZmljIGxhbmd1YWdlIGdvdmVybmluZyBwZXJtaXNzaW9ucyBhbmRcbiAqIGxpbWl0YXRpb25zIHVuZGVyIHRoZSBMaWNlbnNlLlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -1,19 +0,0 @@
1
- /*!
2
- * @license
3
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing, software
12
- * distributed under the License is distributed on an "AS IS" BASIS,
13
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- * See the License for the specific language governing permissions and
15
- * limitations under the License.
16
- */
17
- export * from './rich-text-editor.component';
18
- export * from './rich-text-editor.module';
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYi9wcm9jZXNzLXNlcnZpY2VzLWNsb3VkL3NyYy9saWIvcmljaC10ZXh0LWVkaXRvci9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7Ozs7Ozs7Ozs7R0FlRztBQUVILGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYywyQkFBMkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qIVxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCDCqSAyMDA1LTIwMjUgSHlsYW5kIFNvZnR3YXJlLCBJbmMuIGFuZCBpdHMgYWZmaWxpYXRlcy4gQWxsIHJpZ2h0cyByZXNlcnZlZC5cbiAqXG4gKiBMaWNlbnNlZCB1bmRlciB0aGUgQXBhY2hlIExpY2Vuc2UsIFZlcnNpb24gMi4wICh0aGUgXCJMaWNlbnNlXCIpO1xuICogeW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxuICogWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0XG4gKlxuICogICAgIGh0dHA6Ly93d3cuYXBhY2hlLm9yZy9saWNlbnNlcy9MSUNFTlNFLTIuMFxuICpcbiAqIFVubGVzcyByZXF1aXJlZCBieSBhcHBsaWNhYmxlIGxhdyBvciBhZ3JlZWQgdG8gaW4gd3JpdGluZywgc29mdHdhcmVcbiAqIGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSBMaWNlbnNlIGlzIGRpc3RyaWJ1dGVkIG9uIGFuIFwiQVMgSVNcIiBCQVNJUyxcbiAqIFdJVEhPVVQgV0FSUkFOVElFUyBPUiBDT05ESVRJT05TIE9GIEFOWSBLSU5ELCBlaXRoZXIgZXhwcmVzcyBvciBpbXBsaWVkLlxuICogU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFuZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZFxuICogbGltaXRhdGlvbnMgdW5kZXIgdGhlIExpY2Vuc2UuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9yaWNoLXRleHQtZWRpdG9yLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3JpY2gtdGV4dC1lZGl0b3IubW9kdWxlJztcbiJdfQ==