@eqproject/eqp-attachments 2.10.0 → 3.0.1
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 +1 -0
- package/{esm2020 → esm2022}/eqproject-eqp-attachments.mjs +4 -4
- package/esm2022/lib/eqp-attachments.component.mjs +1096 -0
- package/{esm2020 → esm2022}/lib/eqp-attachments.module.mjs +43 -43
- package/esm2022/lib/helpers/attachment.helper.mjs +66 -0
- package/{esm2020 → esm2022}/lib/interfaces/IAttachment.mjs +11 -11
- package/{esm2020 → esm2022}/lib/interfaces/IOptions.mjs +1 -1
- package/{esm2020 → esm2022}/lib/modules/material.module.mjs +231 -231
- package/{esm2020 → esm2022}/lib/services/eqp-attachment-dialog.service.mjs +103 -103
- package/{esm2020 → esm2022}/lib/services/eqp-attachment.service.mjs +23 -23
- package/{esm2020 → esm2022}/public-api.mjs +9 -9
- package/fesm2022/eqproject-eqp-attachments.mjs +1565 -0
- package/fesm2022/eqproject-eqp-attachments.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/eqp-attachments.component.d.ts +319 -314
- package/lib/eqp-attachments.module.d.ts +13 -13
- package/lib/helpers/attachment.helper.d.ts +20 -20
- package/lib/interfaces/IAttachment.d.ts +21 -21
- package/lib/interfaces/IOptions.d.ts +11 -11
- package/lib/modules/material.module.d.ts +37 -37
- package/lib/services/eqp-attachment-dialog.service.d.ts +31 -31
- package/lib/services/eqp-attachment.service.d.ts +7 -7
- package/package.json +15 -20
- package/public-api.d.ts +6 -6
- package/esm2020/lib/eqp-attachments.component.mjs +0 -1060
- package/esm2020/lib/helpers/attachment.helper.mjs +0 -66
- package/fesm2015/eqproject-eqp-attachments.mjs +0 -1531
- package/fesm2015/eqproject-eqp-attachments.mjs.map +0 -1
- package/fesm2020/eqproject-eqp-attachments.mjs +0 -1528
- package/fesm2020/eqproject-eqp-attachments.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -99,6 +99,7 @@ export class AppModule {}
|
|
|
99
99
|
| [singleAttachmentDragAndDrop] | `boolean` | `false` | no | In the case of single attachment management, it allows you to establish if the drag and drop is included for the upload of the file (default: false) |
|
|
100
100
|
| [cropOptions] | `Array<CropOptionEnum>` | `[]` | no | Array of options to include during the crop of a file |
|
|
101
101
|
| [allowedTypes] | `Array<AttachmentType>` | `[ AttachmentType.FILE, AttachmentType.LINK ]` | no | Array to establish what type of attachments can be loaded |
|
|
102
|
+
| [cropDialogClass] | `string` | no | It allows you to establish the css class of the image cropper (It needs the ::ng-deep pseudo-class) |
|
|
102
103
|
|
|
103
104
|
|
|
104
105
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public-api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
5
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXFwcm9qZWN0LWVxcC1hdHRhY2htZW50cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2VxcC1hdHRhY2htZW50cy9zcmMvZXFwcm9qZWN0LWVxcC1hdHRhY2htZW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|