ngx-histaff-alpha 2.3.7 → 2.3.9
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/lib/app/app-pipes/uploaded-filename-cutoff.pipe.mjs +2 -2
- package/esm2022/lib/app/libraries/core-attachment/core-attachment/core-attachment.component.mjs +8 -8
- package/esm2022/lib/app/libraries/core-control/core-control/core-control.component.mjs +3 -3
- package/esm2022/lib/app/services/uploaded-file.service.mjs +3 -1
- package/fesm2022/ngx-histaff-alpha.mjs +11 -9
- package/fesm2022/ngx-histaff-alpha.mjs.map +1 -1
- package/lib/app/libraries/core-attachment/core-attachment/core-attachment.component.d.ts +1 -1
- package/lib/app/services/uploaded-file.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ export declare class CoreAttachmentComponent extends CoreFormControlBaseComponen
|
|
|
20
20
|
private appConfigService;
|
|
21
21
|
private uploadedFileService;
|
|
22
22
|
private renderer;
|
|
23
|
+
ngControl: NgControl;
|
|
23
24
|
assignTo: string;
|
|
24
25
|
readonly: boolean;
|
|
25
26
|
valueToShow: string;
|
|
@@ -28,7 +29,6 @@ export declare class CoreAttachmentComponent extends CoreFormControlBaseComponen
|
|
|
28
29
|
value: ICoreAttachment | null;
|
|
29
30
|
onChange: (_: ICoreAttachment | null) => void;
|
|
30
31
|
writeValue(obj: ICoreAttachment | null): void;
|
|
31
|
-
ngControl: NgControl;
|
|
32
32
|
worker: Worker;
|
|
33
33
|
rawInput: ElementRef;
|
|
34
34
|
listenerFn: () => void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class UploadedFileService {
|
|
3
3
|
constructor();
|
|
4
|
-
canPreviewAsImage(fileName: string): boolean;
|
|
4
|
+
canPreviewAsImage(fileName: string | undefined): boolean;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<UploadedFileService, never>;
|
|
6
6
|
static ɵprov: i0.ɵɵInjectableDeclaration<UploadedFileService>;
|
|
7
7
|
}
|