@sumaris-net/ngx-components 1.20.25 → 1.20.26

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "1.20.25",
4
+ "version": "1.20.26",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -1,4 +1,4 @@
1
- import { ChangeDetectorRef, Injector, OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, Injector } from '@angular/core';
2
2
  import { ModalController } from '@ionic/angular';
3
3
  import { PlatformService } from '../../core/services/platform.service';
4
4
  import { LocalSettingsService } from '../../core/services/local-settings.service';
@@ -6,10 +6,10 @@ import { TranslateService } from '@ngx-translate/core';
6
6
  export interface AppHelpModalOptions {
7
7
  title?: string;
8
8
  markdownContent?: string;
9
- docUrl?: string;
9
+ markdownUrl?: string;
10
10
  showError?: boolean;
11
11
  }
12
- export declare class AppHelpModal implements AppHelpModalOptions, OnInit {
12
+ export declare class AppHelpModal implements AppHelpModalOptions {
13
13
  protected injector: Injector;
14
14
  protected viewCtrl: ModalController;
15
15
  protected platform: PlatformService;
@@ -20,11 +20,10 @@ export declare class AppHelpModal implements AppHelpModalOptions, OnInit {
20
20
  loading: boolean;
21
21
  error: string;
22
22
  title: string;
23
- markdownContent: string;
24
- docUrl: string;
25
23
  showError: boolean;
24
+ markdownContent: string;
25
+ markdownUrl: string;
26
26
  constructor(injector: Injector, viewCtrl: ModalController, platform: PlatformService, settings: LocalSettingsService, translate: TranslateService, cd: ChangeDetectorRef);
27
- ngOnInit(): void;
28
27
  close(event?: UIEvent): Promise<boolean>;
29
28
  markAsLoaded(): void;
30
29
  onLoadError(error?: string): void;