cloud-ide-element 1.1.142 → 1.1.145
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/index.d.ts
CHANGED
|
@@ -2765,15 +2765,18 @@ declare class CurrencyService {
|
|
|
2765
2765
|
* Directive to display images from file manager by ID
|
|
2766
2766
|
* Usage: <img cideEleFileImage [fileId]="yourFileId" [altText]="'Image'" class="your-css-classes" />
|
|
2767
2767
|
*/
|
|
2768
|
-
declare class CideEleFileImageDirective implements OnInit, OnDestroy {
|
|
2768
|
+
declare class CideEleFileImageDirective implements OnInit, OnDestroy, OnChanges {
|
|
2769
2769
|
fileId: string | null;
|
|
2770
2770
|
altText: string;
|
|
2771
2771
|
private readonly fileManagerService;
|
|
2772
2772
|
private readonly elementRef;
|
|
2773
2773
|
private readonly destroyRef;
|
|
2774
|
+
private previousFileId;
|
|
2774
2775
|
ngOnInit(): void;
|
|
2776
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2775
2777
|
ngOnDestroy(): void;
|
|
2776
2778
|
private loadImage;
|
|
2779
|
+
private clearImage;
|
|
2777
2780
|
private displayImage;
|
|
2778
2781
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CideEleFileImageDirective, never>;
|
|
2779
2782
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CideEleFileImageDirective, "[cideEleFileImage]", never, { "fileId": { "alias": "fileId"; "required": false; }; "altText": { "alias": "altText"; "required": false; }; }, {}, never, never, true, never>;
|