@posiwise/shared-components 0.0.130 → 0.0.131
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.
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Type } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LazyLoadingService {
|
|
5
|
+
/**
|
|
6
|
+
* Lazy load the Image Cropper component
|
|
7
|
+
*/
|
|
8
|
+
loadImageCropper(): Observable<Type<any>>;
|
|
9
|
+
/**
|
|
10
|
+
* Lazy load the Date Range Picker component
|
|
11
|
+
*/
|
|
12
|
+
loadDateRangePicker(): Observable<Type<any>>;
|
|
13
|
+
/**
|
|
14
|
+
* Lazy load the Date Range Picker module
|
|
15
|
+
*/
|
|
16
|
+
loadDateRangePickerModule(): Observable<any>;
|
|
17
|
+
/**
|
|
18
|
+
* Lazy load the Image Cropper module
|
|
19
|
+
*/
|
|
20
|
+
loadImageCropperModule(): Observable<any>;
|
|
21
|
+
/**
|
|
22
|
+
* Lazy load PrimeNG components with static imports to avoid webpack warnings
|
|
23
|
+
*/
|
|
24
|
+
loadPrimeNGComponent(componentName: string): Observable<Type<any>>;
|
|
25
|
+
/**
|
|
26
|
+
* Lazy load Quill Editor
|
|
27
|
+
*/
|
|
28
|
+
loadQuillEditor(): Observable<any>;
|
|
29
|
+
/**
|
|
30
|
+
* Lazy load Emoji Picker
|
|
31
|
+
*/
|
|
32
|
+
loadEmojiPicker(): Observable<any>;
|
|
33
|
+
/**
|
|
34
|
+
* Lazy load FontAwesome
|
|
35
|
+
*/
|
|
36
|
+
loadFontAwesome(): Observable<any>;
|
|
37
|
+
/**
|
|
38
|
+
* Lazy load Sentry (using the correct package)
|
|
39
|
+
*/
|
|
40
|
+
loadSentry(): Observable<any>;
|
|
41
|
+
/**
|
|
42
|
+
* Lazy load Heavy Utilities (Lodash, Crypto-js, Moment)
|
|
43
|
+
*/
|
|
44
|
+
loadHeavyUtils(): Observable<any>;
|
|
45
|
+
/**
|
|
46
|
+
* Lazy load Crypto Utils
|
|
47
|
+
*/
|
|
48
|
+
loadCryptoUtils(): Observable<any>;
|
|
49
|
+
/**
|
|
50
|
+
* Lazy load Moment
|
|
51
|
+
*/
|
|
52
|
+
loadMoment(): Observable<any>;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LazyLoadingService, never>;
|
|
54
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LazyLoadingService>;
|
|
55
|
+
}
|