zek 16.0.15 → 16.0.17
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
2
2
|
import { PrintType } from '../models/print.model';
|
|
3
3
|
import { CoreComponent } from './core.component';
|
|
4
|
-
import { BooleanInput } from './types';
|
|
4
|
+
import { BooleanInput, StringInput } from './types';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class BaseComponent<TModel = any> extends CoreComponent {
|
|
7
7
|
protected readonly route: ActivatedRoute;
|
|
@@ -17,7 +17,7 @@ export declare class BaseComponent<TModel = any> extends CoreComponent {
|
|
|
17
17
|
protected getQueryParam(name: string): string | null;
|
|
18
18
|
protected navigateReturnUrl(): void;
|
|
19
19
|
cancel(): void;
|
|
20
|
-
downloadFile(blob: Blob | null, fileName: string, type:
|
|
20
|
+
downloadFile(blob: Blob | null, fileName: string, type: StringInput): void;
|
|
21
21
|
print(id?: number | null, printType?: PrintType): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent<any>, never>;
|
|
23
23
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseComponent<any>, never, never, { "readOnly": { "alias": "readOnly"; "required": false; }; "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare class Base64Helper {
|
|
2
|
-
static
|
|
3
|
-
static
|
|
2
|
+
static utf8ToBase64String(str: string): string;
|
|
3
|
+
static base64StringToUtf8(str: string): string;
|
|
4
|
+
static base64StringToBlob(str: string, type?: string): Blob;
|
|
4
5
|
}
|