@sumaris-net/ngx-components 0.26.5 → 0.26.6

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": "0.26.5",
4
+ "version": "0.26.6",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -3,7 +3,13 @@ import { ModalController } from '@ionic/angular';
3
3
  import { PlatformService } from '../../core/services/platform.service';
4
4
  import { LocalSettingsService } from '../../core/services/local-settings.service';
5
5
  import { TranslateService } from '@ngx-translate/core';
6
- export declare class AppHelpModal {
6
+ export interface AppHelpModalOptions {
7
+ title?: string;
8
+ markdownContent?: string;
9
+ docUrl?: string;
10
+ showError?: boolean;
11
+ }
12
+ export declare class AppHelpModal implements AppHelpModalOptions {
7
13
  protected injector: Injector;
8
14
  protected viewCtrl: ModalController;
9
15
  protected platform: PlatformService;
@@ -107,6 +107,7 @@ export declare class MatAutocompleteField implements OnInit, InputElement, OnDes
107
107
  onDropButtonClick: EventEmitter<UIEvent>;
108
108
  onKeydownEscape: EventEmitter<any>;
109
109
  onKeyupEnter: EventEmitter<any>;
110
+ onKeydownTab: EventEmitter<any>;
110
111
  matSelect: MatSelect;
111
112
  matInputText: ElementRef;
112
113
  matAutocomplete: MatAutocomplete;