@c8y/ngx-components 1018.0.45 → 1018.0.46
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/core/file-picker-new/file-picker-new.component.d.ts +1 -1
- package/esm2020/core/file-picker-new/file-picker-new.component.mjs +4 -2
- package/fesm2015/c8y-ngx-components.mjs +3 -1
- package/fesm2015/c8y-ngx-components.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components.mjs +3 -1
- package/fesm2020/c8y-ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -20437,8 +20437,10 @@ class FilePickerNewComponent {
|
|
|
20437
20437
|
this.afterValueChanged();
|
|
20438
20438
|
}
|
|
20439
20439
|
filesSelected(ev) {
|
|
20440
|
-
const
|
|
20440
|
+
const inputElement = ev.target;
|
|
20441
|
+
const files = Array.from(inputElement.files);
|
|
20441
20442
|
this.droppedFiles.push(...files);
|
|
20443
|
+
inputElement.value = null;
|
|
20442
20444
|
this.afterValueChanged();
|
|
20443
20445
|
}
|
|
20444
20446
|
deleteAt(index) {
|