@resolveio/client-lib-core 21.6.29 → 21.6.30
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
|
@@ -2623,7 +2623,7 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
|
|
|
2623
2623
|
private runLogsQuery;
|
|
2624
2624
|
private runLocalLogsQuery;
|
|
2625
2625
|
selectType(type: string): void;
|
|
2626
|
-
icon(type: any): "danger" | "
|
|
2626
|
+
icon(type: any): "danger" | "info" | "success" | "primary" | "secondary";
|
|
2627
2627
|
removeAllLogs(): void;
|
|
2628
2628
|
toDate(value: any, isEnd?: boolean): Date;
|
|
2629
2629
|
createPickerValue(date: Date, secondOverride?: any): {
|
|
@@ -3151,7 +3151,8 @@ declare class FileUploadComponent extends BaseComponent implements OnInit, OnDes
|
|
|
3151
3151
|
private _services;
|
|
3152
3152
|
private _ds;
|
|
3153
3153
|
private _http;
|
|
3154
|
-
|
|
3154
|
+
private _zone;
|
|
3155
|
+
constructor(_resize: ResizeService, _services: ProviderService, _ds: DialogService, _http: HttpClient, _zone: NgZone);
|
|
3155
3156
|
files: FileModel[];
|
|
3156
3157
|
allowDelete: boolean;
|
|
3157
3158
|
allowReplace: boolean;
|
|
@@ -3231,7 +3232,7 @@ interface CanComponentDeactivate {
|
|
|
3231
3232
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
3232
3233
|
}
|
|
3233
3234
|
declare class CanDeactivateGuard {
|
|
3234
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
3235
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
3235
3236
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
3236
3237
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
3237
3238
|
}
|