@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.6.29",
3
+ "version": "21.6.30",
4
4
  "dependencies": {
5
5
  "ngx-ui-tour-core": "^16.0.0",
6
6
  "tslib": "^2.3.0"
@@ -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" | "success" | "info" | "primary" | "secondary";
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
- constructor(_resize: ResizeService, _services: ProviderService, _ds: DialogService, _http: HttpClient);
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 | Observable<boolean> | Promise<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
  }