@elderbyte/ngx-starter 18.1.0-beta → 18.1.0-beta2
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/esm2022/lib/components/files/elder-file-select.directive.mjs +11 -10
- package/esm2022/lib/components/files/file-system-api.mjs +9 -1
- package/esm2022/lib/components/files/listing/file-listing-rx.mjs +7 -4
- package/fesm2022/elderbyte-ngx-starter.mjs +24 -12
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/components/files/elder-file-select.directive.d.ts +1 -0
- package/lib/components/files/file-system-api.d.ts +5 -1
- package/lib/components/files/listing/file-listing-rx.d.ts +1 -0
- package/package.json +1 -1
|
@@ -60,6 +60,7 @@ export declare class ElderFileSelectDirective implements OnInit, OnDestroy {
|
|
|
60
60
|
* Private methods *
|
|
61
61
|
* *
|
|
62
62
|
**************************************************************************/
|
|
63
|
+
private pushFileChanges;
|
|
63
64
|
openFilePicker(pickerOpts: FileSystemFilePickerOptions): Observable<FileEntry[]>;
|
|
64
65
|
openDirectoryPicker(pickerOpts: FileSystemDirectoryPickerOptions): Observable<FileEntry[]>;
|
|
65
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderFileSelectDirective, never>;
|
|
@@ -56,7 +56,11 @@ export declare class FileSystemApi {
|
|
|
56
56
|
* *
|
|
57
57
|
**************************************************************************/
|
|
58
58
|
static isGetAsFileSystemHandleSupported(transferItem: DataTransferItem): boolean;
|
|
59
|
-
|
|
59
|
+
/**
|
|
60
|
+
* Returns an FileSystemHandle Observable of the given DataTransferItem. The FileSystemHandle can only be accessed in the `dragstart`
|
|
61
|
+
* or `drop` event. Otherwise, it will return null!
|
|
62
|
+
*/
|
|
63
|
+
static getAsFileSystemHandle(transferItem: DataTransferItem): Observable<FileSystemHandle | null>;
|
|
60
64
|
/***************************************************************************
|
|
61
65
|
* *
|
|
62
66
|
* File Picker *
|