@gravitee/ui-particles-angular 12.3.0-gio-form-selection-inline-375f403 → 12.3.0-gio-form-selection-inline-307980e
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/esm2022/gio-asciidoctor/gio-asciidoctor.component.mjs +6 -9
- package/esm2022/lib/gio-prismjs/gio-prismjs.service.mjs +4 -2
- package/fesm2022/gravitee-ui-particles-angular-gio-asciidoctor.mjs +4 -7
- package/fesm2022/gravitee-ui-particles-angular-gio-asciidoctor.mjs.map +1 -1
- package/fesm2022/gravitee-ui-particles-angular.mjs +2 -0
- package/fesm2022/gravitee-ui-particles-angular.mjs.map +1 -1
- package/gio-asciidoctor/gio-asciidoctor.component.d.ts +2 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ElementRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
3
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
4
4
|
import { GioPrismJsService } from '@gravitee/ui-particles-angular';
|
|
@@ -10,7 +10,6 @@ export declare class GioAsciidoctorComponent implements OnChanges, OnDestroy {
|
|
|
10
10
|
private readonly sanitizer;
|
|
11
11
|
private readonly elementRef;
|
|
12
12
|
private readonly httpClient;
|
|
13
|
-
private readonly changeDetectorRef;
|
|
14
13
|
private readonly appId;
|
|
15
14
|
content?: string;
|
|
16
15
|
src?: string;
|
|
@@ -18,7 +17,7 @@ export declare class GioAsciidoctorComponent implements OnChanges, OnDestroy {
|
|
|
18
17
|
private asciidoctor$;
|
|
19
18
|
private unsubscribe$;
|
|
20
19
|
private _uniqueId;
|
|
21
|
-
constructor(gioAsciidoctorService: GioAsciidoctorService, gioPrismJsService: GioPrismJsService, sanitizer: DomSanitizer, elementRef: ElementRef, httpClient: HttpClient,
|
|
20
|
+
constructor(gioAsciidoctorService: GioAsciidoctorService, gioPrismJsService: GioPrismJsService, sanitizer: DomSanitizer, elementRef: ElementRef, httpClient: HttpClient, appId: string);
|
|
22
21
|
ngOnChanges(changes: SimpleChanges): void;
|
|
23
22
|
ngOnDestroy(): void;
|
|
24
23
|
private render;
|
package/package.json
CHANGED