File uploader

Component for uploading any file type with built-in validation and image optimization.

Finder component

Single file upload: Image only

dropconfig = { clickable: true, maxFiles: 5, // Set the maximum number of files to upload. addRemoveLinks: true, };
<!-- Single file upload: Image only + Cropped + Resized (Profile picture) -->
<dropzone [config]="dropconfig" class="file-uploader file-uploader-grid bg-secondary border-light dropzone_sec" [message]="'Click or drag images here to upload'"></dropzone>

<!-- Light skin -->
<dropzone class="file-uploader border-light bg-faded-light" [config]="dropconfig"  [message]="'Click or drag images here to upload' "></dropzone>
Top