@worktile/theia 20.1.0-next.4 → 20.1.0-next.6
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/fesm2022/worktile-theia.mjs +35 -1
- package/fesm2022/worktile-theia.mjs.map +1 -1
- package/index.d.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2901,6 +2901,7 @@ declare class TheImage extends TheBaseElement<ImageElement, Editor> implements O
|
|
|
2901
2901
|
private dragable;
|
|
2902
2902
|
private layoutToolbarRef;
|
|
2903
2903
|
private imagePluginOptions;
|
|
2904
|
+
private imageLoadedCacheHeightTimer;
|
|
2904
2905
|
get isOpen(): boolean;
|
|
2905
2906
|
get imageBindingWidth(): number;
|
|
2906
2907
|
imageContent: ElementRef;
|
|
@@ -2912,8 +2913,12 @@ declare class TheImage extends TheBaseElement<ImageElement, Editor> implements O
|
|
|
2912
2913
|
buildImageEntry(newElement: ImageElement, thumbUrl: string, originUrl: string): void;
|
|
2913
2914
|
ngOnInit(): void;
|
|
2914
2915
|
ngAfterViewInit(): void;
|
|
2916
|
+
afterViewInit(): void;
|
|
2915
2917
|
onContextChange(): void;
|
|
2916
2918
|
ngOnDestroy(): void;
|
|
2919
|
+
private cacheImageHeight;
|
|
2920
|
+
private setImageMinHeight;
|
|
2921
|
+
private clearMinHeight;
|
|
2917
2922
|
private setImagePluginOptions;
|
|
2918
2923
|
private setDisablePreview;
|
|
2919
2924
|
private setImageFileItem;
|