monkey-style-guide-v2 0.0.78 → 0.0.79
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/fesm2022/monkey-style-guide-v2.mjs +1 -66
- package/fesm2022/monkey-style-guide-v2.mjs.map +1 -1
- package/lib/components/download-button/download-button.component.d.ts +0 -1
- package/lib/components/tabs/tab-link.directive.d.ts +1 -1
- package/lib/services/index.d.ts +0 -1
- package/monkey-style-guide-v2-0.0.79.tgz +0 -0
- package/package.json +1 -1
- package/lib/services/file-cache.service.d.ts +0 -15
- package/monkey-style-guide-v2-0.0.78.tgz +0 -0
|
@@ -14,7 +14,6 @@ export declare class MonkeyDownloadButtonComponent {
|
|
|
14
14
|
loading: boolean;
|
|
15
15
|
tabIndex: number;
|
|
16
16
|
onChange: EventEmitter<MonkeyDownloadButtonChangeEvent>;
|
|
17
|
-
private readonly _fileCacheService;
|
|
18
17
|
protected _uid: string;
|
|
19
18
|
protected _id: string;
|
|
20
19
|
get id(): string;
|
package/lib/services/index.d.ts
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { MonkeyEcxCachedFile } from '../interfaces';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class MonkeyEcxFileCacheService {
|
|
4
|
-
private cache;
|
|
5
|
-
private readonly EXPIRATION_MS;
|
|
6
|
-
private isExpired;
|
|
7
|
-
saveFile(filename: string, blob: Blob): void;
|
|
8
|
-
hasFile(filename: string): boolean;
|
|
9
|
-
getFile(filename: string): MonkeyEcxCachedFile | null;
|
|
10
|
-
download(filename: string): void;
|
|
11
|
-
deleteFile(filename: string): void;
|
|
12
|
-
clear(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFileCacheService, never>;
|
|
14
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxFileCacheService>;
|
|
15
|
-
}
|
|
Binary file
|