@alfresco/adf-process-services-cloud 8.4.0-17436326136 → 8.4.0-17462271089
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.
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import { OnInit } from '@angular/core';
|
|
17
|
+
import { InjectionToken, OnInit } from '@angular/core';
|
|
18
18
|
import { WidgetComponent, FormService } from '@alfresco/adf-core';
|
|
19
|
-
import {
|
|
19
|
+
import { RichTextParserService } from '../../../services/rich-text-parser.service';
|
|
20
20
|
import * as i0 from "@angular/core";
|
|
21
|
+
export declare const RICH_TEXT_PARSER_TOKEN: InjectionToken<RichTextParserService>;
|
|
21
22
|
export declare class DisplayRichTextWidgetComponent extends WidgetComponent implements OnInit {
|
|
22
|
-
|
|
23
|
+
parsedHTML: string | Error;
|
|
24
|
+
private readonly richTextParserService;
|
|
23
25
|
private readonly sanitizer;
|
|
24
|
-
|
|
25
|
-
private static readonly CUSTOM_PARSER;
|
|
26
|
-
constructor(formService: FormService, sanitizer: DomSanitizer);
|
|
26
|
+
constructor(formService: FormService);
|
|
27
27
|
ngOnInit(): void;
|
|
28
28
|
private sanitizeHtmlContent;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<DisplayRichTextWidgetComponent, never>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export interface OutputData {
|
|
3
|
+
version?: string;
|
|
4
|
+
time?: number;
|
|
5
|
+
blocks: any[];
|
|
6
|
+
}
|
|
7
|
+
export declare class RichTextParserService {
|
|
8
|
+
private static readonly CUSTOM_PARSER;
|
|
9
|
+
parse(richText: OutputData): string | Error;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RichTextParserService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RichTextParserService>;
|
|
12
|
+
}
|
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.4.0-
|
|
4
|
+
"version": "8.4.0-17462271089",
|
|
5
5
|
"author": "Hyland Software, Inc. and its affiliates",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"@angular/platform-browser": ">=14.1.3",
|
|
22
22
|
"@angular/platform-browser-dynamic": ">=14.1.3",
|
|
23
23
|
"@angular/router": ">=14.1.3",
|
|
24
|
-
"@alfresco/js-api": ">=9.4.0-
|
|
25
|
-
"@alfresco/adf-core": ">=8.4.0-
|
|
26
|
-
"@alfresco/adf-content-services": ">=8.4.0-
|
|
24
|
+
"@alfresco/js-api": ">=9.4.0-17462271089",
|
|
25
|
+
"@alfresco/adf-core": ">=8.4.0-17462271089",
|
|
26
|
+
"@alfresco/adf-content-services": ">=8.4.0-17462271089",
|
|
27
27
|
"@apollo/client": ">=3.7.2",
|
|
28
28
|
"@ngx-translate/core": ">=14.0.0",
|
|
29
29
|
"apollo-angular": ">=4.0.1"
|