@eqproject/eqp-attachments 3.0.0 → 3.0.2

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.
Files changed (51) hide show
  1. package/{esm2020 → esm2022}/eqproject-eqp-attachments.mjs +4 -4
  2. package/esm2022/lib/directives/eqp-common/dynamic-loader/dynamic-loader.directive.mjs +53 -0
  3. package/esm2022/lib/directives/eqp-common/eqp-common.service.mjs +78 -0
  4. package/esm2022/lib/directives/eqp-common/index.mjs +10 -0
  5. package/esm2022/lib/directives/eqp-common/models/base-field.model.mjs +57 -0
  6. package/esm2022/lib/directives/eqp-common/models/common-enum.model.mjs +8 -0
  7. package/esm2022/lib/directives/eqp-common/models/config-column.model.mjs +116 -0
  8. package/esm2022/lib/directives/eqp-common/models/filterConfig.model.mjs +318 -0
  9. package/esm2022/lib/directives/eqp-common/models/filterField.model.mjs +254 -0
  10. package/esm2022/lib/directives/eqp-common/models/form.model.mjs +168 -0
  11. package/esm2022/lib/directives/eqp-common/models/linqFilterResult.model.mjs +73 -0
  12. package/esm2022/lib/directives/eqp-common/models/tableColumn-field.model.mjs +107 -0
  13. package/esm2022/lib/eqp-attachments.component.mjs +1096 -0
  14. package/{esm2020 → esm2022}/lib/eqp-attachments.module.mjs +43 -43
  15. package/esm2022/lib/helpers/attachment.helper.mjs +66 -0
  16. package/{esm2020 → esm2022}/lib/interfaces/IAttachment.mjs +11 -11
  17. package/{esm2020 → esm2022}/lib/interfaces/IOptions.mjs +1 -1
  18. package/{esm2020 → esm2022}/lib/modules/material.module.mjs +231 -231
  19. package/{esm2020 → esm2022}/lib/services/eqp-attachment-dialog.service.mjs +103 -103
  20. package/{esm2020 → esm2022}/lib/services/eqp-attachment.service.mjs +23 -23
  21. package/{esm2020 → esm2022}/public-api.mjs +9 -9
  22. package/fesm2022/eqproject-eqp-attachments.mjs +2730 -0
  23. package/fesm2022/eqproject-eqp-attachments.mjs.map +1 -0
  24. package/index.d.ts +5 -5
  25. package/lib/directives/eqp-common/dynamic-loader/dynamic-loader.directive.d.ts +17 -0
  26. package/lib/directives/eqp-common/eqp-common.service.d.ts +21 -0
  27. package/lib/directives/eqp-common/index.d.ts +9 -0
  28. package/lib/directives/eqp-common/models/base-field.model.d.ts +52 -0
  29. package/lib/directives/eqp-common/models/common-enum.model.d.ts +6 -0
  30. package/lib/directives/eqp-common/models/config-column.model.d.ts +113 -0
  31. package/lib/directives/eqp-common/models/filterConfig.model.d.ts +264 -0
  32. package/lib/directives/eqp-common/models/filterField.model.d.ts +144 -0
  33. package/lib/directives/eqp-common/models/form.model.d.ts +129 -0
  34. package/lib/directives/eqp-common/models/linqFilterResult.model.d.ts +58 -0
  35. package/lib/directives/eqp-common/models/tableColumn-field.model.d.ts +31 -0
  36. package/lib/eqp-attachments.component.d.ts +319 -318
  37. package/lib/eqp-attachments.module.d.ts +13 -13
  38. package/lib/helpers/attachment.helper.d.ts +20 -20
  39. package/lib/interfaces/IAttachment.d.ts +21 -21
  40. package/lib/interfaces/IOptions.d.ts +11 -11
  41. package/lib/modules/material.module.d.ts +37 -37
  42. package/lib/services/eqp-attachment-dialog.service.d.ts +31 -31
  43. package/lib/services/eqp-attachment.service.d.ts +7 -7
  44. package/package.json +5 -11
  45. package/public-api.d.ts +6 -6
  46. package/esm2020/lib/eqp-attachments.component.mjs +0 -1064
  47. package/esm2020/lib/helpers/attachment.helper.mjs +0 -66
  48. package/fesm2015/eqproject-eqp-attachments.mjs +0 -1535
  49. package/fesm2015/eqproject-eqp-attachments.mjs.map +0 -1
  50. package/fesm2020/eqproject-eqp-attachments.mjs +0 -1532
  51. package/fesm2020/eqproject-eqp-attachments.mjs.map +0 -1
@@ -1,13 +1,13 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./eqp-attachments.component";
3
- import * as i2 from "./modules/material.module";
4
- import * as i3 from "@angular/forms";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "ngx-image-cropper";
7
- import * as i6 from "@eqproject/eqp-table";
8
- import * as i7 from "ngx-file-drop";
9
- export declare class EqpAttachmentsModule {
10
- static ɵfac: i0.ɵɵFactoryDeclaration<EqpAttachmentsModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<EqpAttachmentsModule, [typeof i1.EqpAttachmentsComponent], [typeof i2.MaterialModule, typeof i3.FormsModule, typeof i4.CommonModule, typeof i3.ReactiveFormsModule, typeof i5.ImageCropperModule, typeof i6.EqpTableModule, typeof i7.NgxFileDropModule], [typeof i1.EqpAttachmentsComponent]>;
12
- static ɵinj: i0.ɵɵInjectorDeclaration<EqpAttachmentsModule>;
13
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./eqp-attachments.component";
3
+ import * as i2 from "./modules/material.module";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "ngx-image-cropper";
7
+ import * as i6 from "@eqproject/eqp-table";
8
+ import * as i7 from "ngx-file-drop";
9
+ export declare class EqpAttachmentsModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<EqpAttachmentsModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<EqpAttachmentsModule, [typeof i1.EqpAttachmentsComponent], [typeof i2.MaterialModule, typeof i3.FormsModule, typeof i4.CommonModule, typeof i3.ReactiveFormsModule, typeof i5.ImageCropperModule, typeof i6.EqpTableModule, typeof i7.NgxFileDropModule], [typeof i1.EqpAttachmentsComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<EqpAttachmentsModule>;
13
+ }
@@ -1,20 +1,20 @@
1
- import * as i0 from "@angular/core";
2
- export declare class AttachmentHelperService {
3
- static readonly imageMimeTypes: string[];
4
- static readonly fileExtensionIcon: any;
5
- static readonly dropboxCredentials: any;
6
- constructor();
7
- /**
8
- * Restituisce TRUE se il mime type passato nel parametro corrisponde ad un mime type di un'immagine
9
- * @param mimeType Mime Type da verificare
10
- */
11
- static checkImageFromMimeType(mimeType: string): boolean;
12
- /**
13
- * In base all'estensione passata come parametro, restituisce la FontAwesome corretta da utilizzare.
14
- * Se l'estensione non viene trovata nella costante riportata dentro common.model.ts restituisce un icona standard
15
- * @param extension Estensione del file per cui restituire l'icona corretta
16
- */
17
- static getIconFromFileExtensione(extension: string): string;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<AttachmentHelperService, never>;
19
- static ɵprov: i0.ɵɵInjectableDeclaration<AttachmentHelperService>;
20
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class AttachmentHelperService {
3
+ static readonly imageMimeTypes: string[];
4
+ static readonly fileExtensionIcon: any;
5
+ static readonly dropboxCredentials: any;
6
+ constructor();
7
+ /**
8
+ * Restituisce TRUE se il mime type passato nel parametro corrisponde ad un mime type di un'immagine
9
+ * @param mimeType Mime Type da verificare
10
+ */
11
+ static checkImageFromMimeType(mimeType: string): boolean;
12
+ /**
13
+ * In base all'estensione passata come parametro, restituisce la FontAwesome corretta da utilizzare.
14
+ * Se l'estensione non viene trovata nella costante riportata dentro common.model.ts restituisce un icona standard
15
+ * @param extension Estensione del file per cui restituire l'icona corretta
16
+ */
17
+ static getIconFromFileExtensione(extension: string): string;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AttachmentHelperService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<AttachmentHelperService>;
20
+ }
@@ -1,21 +1,21 @@
1
- export interface IAttachmentDTO {
2
- ID: number | string;
3
- FileName?: string;
4
- FileContentType?: string;
5
- FileExtension?: string;
6
- FilePath?: string;
7
- AttachmentType?: AttachmentType;
8
- FileDataBase64?: string;
9
- IsImage?: boolean;
10
- FileThumbnailBase64?: string;
11
- TrustedUrl?: any;
12
- }
13
- export declare enum AttachmentType {
14
- FILE = 1,
15
- LINK = 2,
16
- DROPBOX = 3
17
- }
18
- export declare enum CropOptionEnum {
19
- ROTATE = 1,
20
- FLIP = 2
21
- }
1
+ export interface IAttachmentDTO {
2
+ ID: number | string;
3
+ FileName?: string;
4
+ FileContentType?: string;
5
+ FileExtension?: string;
6
+ FilePath?: string;
7
+ AttachmentType?: AttachmentType;
8
+ FileDataBase64?: string;
9
+ IsImage?: boolean;
10
+ FileThumbnailBase64?: string;
11
+ TrustedUrl?: any;
12
+ }
13
+ export declare enum AttachmentType {
14
+ FILE = 1,
15
+ LINK = 2,
16
+ DROPBOX = 3
17
+ }
18
+ export declare enum CropOptionEnum {
19
+ ROTATE = 1,
20
+ FLIP = 2
21
+ }
@@ -1,11 +1,11 @@
1
- /**
2
- * Interfaccia presa dal pacchetto "browser-image-compression" per specificare le opzioni di compressione
3
- */
4
- export interface IOptions {
5
- /** @default Number.POSITIVE_INFINITY */
6
- maxSizeMB?: number;
7
- /** @default undefined */
8
- maxWidthOrHeight?: number;
9
- /** @default false */
10
- useWebWorker?: boolean;
11
- }
1
+ /**
2
+ * Interfaccia presa dal pacchetto "browser-image-compression" per specificare le opzioni di compressione
3
+ */
4
+ export interface IOptions {
5
+ /** @default Number.POSITIVE_INFINITY */
6
+ maxSizeMB?: number;
7
+ /** @default undefined */
8
+ maxWidthOrHeight?: number;
9
+ /** @default false */
10
+ useWebWorker?: boolean;
11
+ }
@@ -1,37 +1,37 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/material/checkbox";
3
- import * as i2 from "@angular/material/button";
4
- import * as i3 from "@angular/material/input";
5
- import * as i4 from "@angular/material/autocomplete";
6
- import * as i5 from "@angular/material/datepicker";
7
- import * as i6 from "@angular/material/form-field";
8
- import * as i7 from "@angular/material/radio";
9
- import * as i8 from "@angular/material/select";
10
- import * as i9 from "@angular/material/slider";
11
- import * as i10 from "@angular/material/slide-toggle";
12
- import * as i11 from "@angular/material/menu";
13
- import * as i12 from "@angular/material/sidenav";
14
- import * as i13 from "@angular/material/toolbar";
15
- import * as i14 from "@angular/material/list";
16
- import * as i15 from "@angular/material/grid-list";
17
- import * as i16 from "@angular/material/card";
18
- import * as i17 from "@angular/material/stepper";
19
- import * as i18 from "@angular/material/tabs";
20
- import * as i19 from "@angular/material/expansion";
21
- import * as i20 from "@angular/material/button-toggle";
22
- import * as i21 from "@angular/material/chips";
23
- import * as i22 from "@angular/material/icon";
24
- import * as i23 from "@angular/material/progress-spinner";
25
- import * as i24 from "@angular/material/progress-bar";
26
- import * as i25 from "@angular/material/dialog";
27
- import * as i26 from "@angular/material/tooltip";
28
- import * as i27 from "@angular/material/snack-bar";
29
- import * as i28 from "@angular/material/table";
30
- import * as i29 from "@angular/material/sort";
31
- import * as i30 from "@angular/material/paginator";
32
- import * as i31 from "@angular/material/core";
33
- export declare class MaterialModule {
34
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
35
- static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.MatCheckboxModule, typeof i2.MatButtonModule, typeof i3.MatInputModule, typeof i4.MatAutocompleteModule, typeof i5.MatDatepickerModule, typeof i6.MatFormFieldModule, typeof i7.MatRadioModule, typeof i8.MatSelectModule, typeof i9.MatSliderModule, typeof i10.MatSlideToggleModule, typeof i11.MatMenuModule, typeof i12.MatSidenavModule, typeof i13.MatToolbarModule, typeof i14.MatListModule, typeof i15.MatGridListModule, typeof i16.MatCardModule, typeof i17.MatStepperModule, typeof i18.MatTabsModule, typeof i19.MatExpansionModule, typeof i20.MatButtonToggleModule, typeof i21.MatChipsModule, typeof i22.MatIconModule, typeof i23.MatProgressSpinnerModule, typeof i24.MatProgressBarModule, typeof i25.MatDialogModule, typeof i26.MatTooltipModule, typeof i27.MatSnackBarModule, typeof i28.MatTableModule, typeof i29.MatSortModule, typeof i30.MatPaginatorModule, typeof i5.MatDatepickerModule, typeof i31.MatNativeDateModule], [typeof i1.MatCheckboxModule, typeof i2.MatButtonModule, typeof i3.MatInputModule, typeof i4.MatAutocompleteModule, typeof i5.MatDatepickerModule, typeof i6.MatFormFieldModule, typeof i7.MatRadioModule, typeof i8.MatSelectModule, typeof i9.MatSliderModule, typeof i10.MatSlideToggleModule, typeof i11.MatMenuModule, typeof i12.MatSidenavModule, typeof i13.MatToolbarModule, typeof i14.MatListModule, typeof i15.MatGridListModule, typeof i16.MatCardModule, typeof i17.MatStepperModule, typeof i18.MatTabsModule, typeof i19.MatExpansionModule, typeof i20.MatButtonToggleModule, typeof i21.MatChipsModule, typeof i22.MatIconModule, typeof i23.MatProgressSpinnerModule, typeof i24.MatProgressBarModule, typeof i25.MatDialogModule, typeof i26.MatTooltipModule, typeof i27.MatSnackBarModule, typeof i28.MatTableModule, typeof i29.MatSortModule, typeof i30.MatPaginatorModule]>;
36
- static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
37
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/material/checkbox";
3
+ import * as i2 from "@angular/material/button";
4
+ import * as i3 from "@angular/material/input";
5
+ import * as i4 from "@angular/material/autocomplete";
6
+ import * as i5 from "@angular/material/datepicker";
7
+ import * as i6 from "@angular/material/form-field";
8
+ import * as i7 from "@angular/material/radio";
9
+ import * as i8 from "@angular/material/select";
10
+ import * as i9 from "@angular/material/slider";
11
+ import * as i10 from "@angular/material/slide-toggle";
12
+ import * as i11 from "@angular/material/menu";
13
+ import * as i12 from "@angular/material/sidenav";
14
+ import * as i13 from "@angular/material/toolbar";
15
+ import * as i14 from "@angular/material/list";
16
+ import * as i15 from "@angular/material/grid-list";
17
+ import * as i16 from "@angular/material/card";
18
+ import * as i17 from "@angular/material/stepper";
19
+ import * as i18 from "@angular/material/tabs";
20
+ import * as i19 from "@angular/material/expansion";
21
+ import * as i20 from "@angular/material/button-toggle";
22
+ import * as i21 from "@angular/material/chips";
23
+ import * as i22 from "@angular/material/icon";
24
+ import * as i23 from "@angular/material/progress-spinner";
25
+ import * as i24 from "@angular/material/progress-bar";
26
+ import * as i25 from "@angular/material/dialog";
27
+ import * as i26 from "@angular/material/tooltip";
28
+ import * as i27 from "@angular/material/snack-bar";
29
+ import * as i28 from "@angular/material/table";
30
+ import * as i29 from "@angular/material/sort";
31
+ import * as i30 from "@angular/material/paginator";
32
+ import * as i31 from "@angular/material/core";
33
+ export declare class MaterialModule {
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
35
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.MatCheckboxModule, typeof i2.MatButtonModule, typeof i3.MatInputModule, typeof i4.MatAutocompleteModule, typeof i5.MatDatepickerModule, typeof i6.MatFormFieldModule, typeof i7.MatRadioModule, typeof i8.MatSelectModule, typeof i9.MatSliderModule, typeof i10.MatSlideToggleModule, typeof i11.MatMenuModule, typeof i12.MatSidenavModule, typeof i13.MatToolbarModule, typeof i14.MatListModule, typeof i15.MatGridListModule, typeof i16.MatCardModule, typeof i17.MatStepperModule, typeof i18.MatTabsModule, typeof i19.MatExpansionModule, typeof i20.MatButtonToggleModule, typeof i21.MatChipsModule, typeof i22.MatIconModule, typeof i23.MatProgressSpinnerModule, typeof i24.MatProgressBarModule, typeof i25.MatDialogModule, typeof i26.MatTooltipModule, typeof i27.MatSnackBarModule, typeof i28.MatTableModule, typeof i29.MatSortModule, typeof i30.MatPaginatorModule, typeof i5.MatDatepickerModule, typeof i31.MatNativeDateModule], [typeof i1.MatCheckboxModule, typeof i2.MatButtonModule, typeof i3.MatInputModule, typeof i4.MatAutocompleteModule, typeof i5.MatDatepickerModule, typeof i6.MatFormFieldModule, typeof i7.MatRadioModule, typeof i8.MatSelectModule, typeof i9.MatSliderModule, typeof i10.MatSlideToggleModule, typeof i11.MatMenuModule, typeof i12.MatSidenavModule, typeof i13.MatToolbarModule, typeof i14.MatListModule, typeof i15.MatGridListModule, typeof i16.MatCardModule, typeof i17.MatStepperModule, typeof i18.MatTabsModule, typeof i19.MatExpansionModule, typeof i20.MatButtonToggleModule, typeof i21.MatChipsModule, typeof i22.MatIconModule, typeof i23.MatProgressSpinnerModule, typeof i24.MatProgressBarModule, typeof i25.MatDialogModule, typeof i26.MatTooltipModule, typeof i27.MatSnackBarModule, typeof i28.MatTableModule, typeof i29.MatSortModule, typeof i30.MatPaginatorModule]>;
36
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
37
+ }
@@ -1,31 +1,31 @@
1
- import * as i0 from "@angular/core";
2
- export declare class EqpAttachmentDialogService {
3
- constructor();
4
- /**
5
- * Mostra uno sweet alert di tipo ERROR con il messaggio passato come parametro.
6
- * @param message Messaggio d'errore da mostrare nello sweetalert
7
- * @param title Titolo dello sweetalert (di default mostra 'Errore')
8
- */
9
- static Error(message: string | string[], title?: string): void;
10
- /**
11
- * Mostra uno sweetalert di tipo CONFIRM con il messaggio passato come parametro e se viene premuto
12
- * CONFERMA lancia la funzione di callback passata come parametro
13
- * @param message Messaggio da mostrare nello sweetalert
14
- * @param title Titolo dello sweetalert (di default mostra 'Info')
15
- */
16
- static Confirm(message: string | string[], confirmCallback: any, isWarning?: boolean, title?: string, customWidth?: string): void;
17
- /**
18
- * Mostra uno sweetalert di tipo INFO con il messaggio passato come parametro
19
- * @param message Messaggio da mostrare nello sweetalert
20
- * @param title Titolo dello sweetalert (di default mostra 'Info')
21
- */
22
- static Info(message: string, title?: string, isToast?: boolean): void;
23
- /**
24
- * Mostra uno sweetalert di tipo WARNING con il messaggio passato come parametro
25
- * @param message Messaggio da mostrare nello sweetalert
26
- * @param title Titolo dello sweetalert (di default mostra 'Attenzione!')
27
- */
28
- static Warning(message: string | string[], title?: string, isToast?: boolean): void;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<EqpAttachmentDialogService, never>;
30
- static ɵprov: i0.ɵɵInjectableDeclaration<EqpAttachmentDialogService>;
31
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class EqpAttachmentDialogService {
3
+ constructor();
4
+ /**
5
+ * Mostra uno sweet alert di tipo ERROR con il messaggio passato come parametro.
6
+ * @param message Messaggio d'errore da mostrare nello sweetalert
7
+ * @param title Titolo dello sweetalert (di default mostra 'Errore')
8
+ */
9
+ static Error(message: string | string[], title?: string): void;
10
+ /**
11
+ * Mostra uno sweetalert di tipo CONFIRM con il messaggio passato come parametro e se viene premuto
12
+ * CONFERMA lancia la funzione di callback passata come parametro
13
+ * @param message Messaggio da mostrare nello sweetalert
14
+ * @param title Titolo dello sweetalert (di default mostra 'Info')
15
+ */
16
+ static Confirm(message: string | string[], confirmCallback: any, isWarning?: boolean, title?: string, customWidth?: string): void;
17
+ /**
18
+ * Mostra uno sweetalert di tipo INFO con il messaggio passato come parametro
19
+ * @param message Messaggio da mostrare nello sweetalert
20
+ * @param title Titolo dello sweetalert (di default mostra 'Info')
21
+ */
22
+ static Info(message: string, title?: string, isToast?: boolean): void;
23
+ /**
24
+ * Mostra uno sweetalert di tipo WARNING con il messaggio passato come parametro
25
+ * @param message Messaggio da mostrare nello sweetalert
26
+ * @param title Titolo dello sweetalert (di default mostra 'Attenzione!')
27
+ */
28
+ static Warning(message: string | string[], title?: string, isToast?: boolean): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<EqpAttachmentDialogService, never>;
30
+ static ɵprov: i0.ɵɵInjectableDeclaration<EqpAttachmentDialogService>;
31
+ }
@@ -1,7 +1,7 @@
1
- import * as i0 from "@angular/core";
2
- export declare class EqpAttachmentService {
3
- constructor();
4
- loadDropboxScript(): void;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<EqpAttachmentService, never>;
6
- static ɵprov: i0.ɵɵInjectableDeclaration<EqpAttachmentService>;
7
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class EqpAttachmentService {
3
+ constructor();
4
+ loadDropboxScript(): void;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<EqpAttachmentService, never>;
6
+ static ɵprov: i0.ɵɵInjectableDeclaration<EqpAttachmentService>;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eqproject/eqp-attachments",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "Dynamic attachments component - Angular Material based",
5
5
  "author": {
6
6
  "name": "EqProject"
@@ -19,11 +19,7 @@
19
19
  "sweetalert2": "^11.10.1",
20
20
  "tslib": "^2.6.2"
21
21
  },
22
- "module": "fesm2015/eqproject-eqp-attachments.mjs",
23
- "es2020": "fesm2020/eqproject-eqp-attachments.mjs",
24
- "esm2020": "esm2020/eqproject-eqp-attachments.mjs",
25
- "fesm2020": "fesm2020/eqproject-eqp-attachments.mjs",
26
- "fesm2015": "fesm2015/eqproject-eqp-attachments.mjs",
22
+ "module": "fesm2022/eqproject-eqp-attachments.mjs",
27
23
  "typings": "index.d.ts",
28
24
  "exports": {
29
25
  "./package.json": {
@@ -31,11 +27,9 @@
31
27
  },
32
28
  ".": {
33
29
  "types": "./index.d.ts",
34
- "esm2020": "./esm2020/eqproject-eqp-attachments.mjs",
35
- "es2020": "./fesm2020/eqproject-eqp-attachments.mjs",
36
- "es2015": "./fesm2015/eqproject-eqp-attachments.mjs",
37
- "node": "./fesm2015/eqproject-eqp-attachments.mjs",
38
- "default": "./fesm2020/eqproject-eqp-attachments.mjs"
30
+ "esm2022": "./esm2022/eqproject-eqp-attachments.mjs",
31
+ "esm": "./esm2022/eqproject-eqp-attachments.mjs",
32
+ "default": "./fesm2022/eqproject-eqp-attachments.mjs"
39
33
  }
40
34
  },
41
35
  "sideEffects": false
package/public-api.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- export * from './lib/eqp-attachments.component';
2
- export * from './lib/eqp-attachments.module';
3
- export * from './lib/interfaces/IAttachment';
4
- export * from './lib/interfaces/IOptions';
5
- export * from './lib/helpers/attachment.helper';
6
- export * from './lib/services/eqp-attachment-dialog.service';
1
+ export * from './lib/eqp-attachments.component';
2
+ export * from './lib/eqp-attachments.module';
3
+ export * from './lib/interfaces/IAttachment';
4
+ export * from './lib/interfaces/IOptions';
5
+ export * from './lib/helpers/attachment.helper';
6
+ export * from './lib/services/eqp-attachment-dialog.service';