@veloceapps/sdk 8.0.0-111 → 8.0.0-113

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloceapps/sdk",
3
- "version": "8.0.0-111",
3
+ "version": "8.0.0-113",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "~15.2.0",
@@ -1,4 +1,4 @@
1
- import { ContextService } from '@veloceapps/sdk/core';
1
+ import { ContextService, RuntimeSettingsService } from '@veloceapps/sdk/core';
2
2
  import { DialogService } from 'primeng/dynamicdialog';
3
3
  import { Observable } from 'rxjs';
4
4
  import { FlowDialogConfig } from '../components/dialog/dialog.types';
@@ -6,7 +6,8 @@ import * as i0 from "@angular/core";
6
6
  export declare class FlowDialogService {
7
7
  private dialogService;
8
8
  private contextService;
9
- constructor(dialogService: DialogService, contextService: ContextService);
9
+ private runtimeSettings;
10
+ constructor(dialogService: DialogService, contextService: ContextService, runtimeSettings: RuntimeSettingsService);
10
11
  show(config: FlowDialogConfig): Observable<boolean>;
11
12
  showEmptyCartDialog(): Observable<boolean>;
12
13
  showReadonlyModeDialog(): Observable<boolean>;
@@ -21,6 +22,7 @@ export declare class FlowDialogService {
21
22
  showDocgenReadonlyDialog(): Observable<boolean>;
22
23
  showDocgenOutsideShoppingCartDialog(): Observable<boolean>;
23
24
  showDocgenUnsavedChangesDialog(): Observable<boolean>;
25
+ showTermsLimitReachedDialog(): Observable<boolean>;
24
26
  showDialog(dialog: keyof Omit<FlowDialogService, 'show' | 'constructor'>): Observable<boolean>;
25
27
  static ɵfac: i0.ɵɵFactoryDeclaration<FlowDialogService, never>;
26
28
  static ɵprov: i0.ɵɵInjectableDeclaration<FlowDialogService>;