@sumaris-net/ngx-components 1.20.6 → 1.20.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "1.20.6",
4
+ "version": "1.20.7",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -6,6 +6,7 @@ export declare class CsvUtils {
6
6
  headers?: string[];
7
7
  separator?: string;
8
8
  encoding?: string;
9
+ type?: string;
9
10
  }): void;
10
11
  static parseFile(file: File, opts?: {
11
12
  separator?: string;
@@ -10,4 +10,9 @@ export declare class FilesUtils {
10
10
  static UTF8_BOM_CHAR: Uint8Array;
11
11
  static showUploadPopover<T>(popoverController: PopoverController, event: UIEvent, opts: UploadFilePopoverOptions<T>): Promise<OverlayEventDetail<UploadFile<T>[]>>;
12
12
  static readAsText(file: File, encoding?: string): Observable<FileEvent<string>>;
13
+ static writeTextToFile(content: string, opts?: {
14
+ filename?: string;
15
+ encoding?: string;
16
+ type?: string;
17
+ }): void;
13
18
  }