@eqproject/eqp-attachments 2.0.3 → 2.0.5
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/README.md +3 -0
- package/esm2020/lib/eqp-attachments.component.mjs +21 -23
- package/fesm2015/eqproject-eqp-attachments.mjs +20 -22
- package/fesm2015/eqproject-eqp-attachments.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-attachments.mjs +20 -22
- package/fesm2020/eqproject-eqp-attachments.mjs.map +1 -1
- package/lib/eqp-attachments.component.d.ts +1 -3
- package/package.json +1 -1
|
@@ -7,7 +7,6 @@ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
|
7
7
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
8
8
|
import { HttpClient } from '@angular/common/http';
|
|
9
9
|
import { IOptions } from './interfaces/IOptions';
|
|
10
|
-
import { ScriptService } from 'ngx-script-loader';
|
|
11
10
|
import { EqpAttachmentService } from './services/eqp-attachment.service';
|
|
12
11
|
import * as i0 from "@angular/core";
|
|
13
12
|
export declare class EqpAttachmentsComponent implements OnInit {
|
|
@@ -17,7 +16,6 @@ export declare class EqpAttachmentsComponent implements OnInit {
|
|
|
17
16
|
private http;
|
|
18
17
|
private cd;
|
|
19
18
|
private eqpAttachmentService;
|
|
20
|
-
private scriptLoaderService;
|
|
21
19
|
/**
|
|
22
20
|
* Se TRUE allora nasconde la colonna per le azioni sull'allegato (nel caso "multipleAttachment" è TRUE).
|
|
23
21
|
*/
|
|
@@ -208,7 +206,7 @@ export declare class EqpAttachmentsComponent implements OnInit {
|
|
|
208
206
|
dialogPreview: TemplateRef<any>;
|
|
209
207
|
imageFile: File;
|
|
210
208
|
addingLinkMode: boolean;
|
|
211
|
-
constructor(dialog: MatDialog, formBuilder: FormBuilder, sanitizer: DomSanitizer, http: HttpClient, cd: ChangeDetectorRef, eqpAttachmentService: EqpAttachmentService
|
|
209
|
+
constructor(dialog: MatDialog, formBuilder: FormBuilder, sanitizer: DomSanitizer, http: HttpClient, cd: ChangeDetectorRef, eqpAttachmentService: EqpAttachmentService);
|
|
212
210
|
ngOnInit(): Promise<void>;
|
|
213
211
|
reloadData(): void;
|
|
214
212
|
checkAttachmentImage(): void;
|