@arsedizioni/ars-utils 18.2.233 → 18.2.235
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/ui.application/ui/components/file-input/file-input.component.mjs +2 -2
- package/esm2022/ui.application/ui/components/file-preview/file-preview.component.mjs +8 -5
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +8 -5
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +1 -1
- package/ui.application/ui/components/file-preview/file-preview.component.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { OnInit, OnDestroy } from '@angular/core';
|
|
1
|
+
import { OnInit, OnDestroy, AfterViewInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export interface FilePreviewDialogData {
|
|
4
4
|
url?: string | null;
|
|
5
5
|
embed?: boolean | null;
|
|
6
6
|
authToken?: string | null;
|
|
7
7
|
}
|
|
8
|
-
export declare class FilePreviewComponent implements OnInit, OnDestroy {
|
|
8
|
+
export declare class FilePreviewComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
9
9
|
private unsubscribe;
|
|
10
10
|
private httpClient;
|
|
11
11
|
private dialogService;
|
|
@@ -13,6 +13,7 @@ export declare class FilePreviewComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
protected url: import("@angular/core").WritableSignal<any>;
|
|
14
14
|
ngOnInit(): void;
|
|
15
15
|
ngOnDestroy(): void;
|
|
16
|
+
ngAfterViewInit(): void;
|
|
16
17
|
/**
|
|
17
18
|
* Resize
|
|
18
19
|
*/
|