@sumaris-net/ngx-components 0.15.2 → 0.15.3

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.15.2",
4
+ "version": "0.15.3",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -38,6 +38,7 @@ export declare abstract class AppTabEditor<T = any, ID = number, O = any> implem
38
38
  private _subscription;
39
39
  protected _enabled: boolean;
40
40
  protected _dirty: boolean;
41
+ protected _loading: boolean;
41
42
  tabCount: number;
42
43
  enableSwipe: boolean;
43
44
  tabGroupAnimationDuration: string;
@@ -46,7 +47,6 @@ export declare abstract class AppTabEditor<T = any, ID = number, O = any> implem
46
47
  selectedTabIndex: number;
47
48
  submitted: boolean;
48
49
  error: string;
49
- loading: boolean;
50
50
  queryParams: Params;
51
51
  i18nContext: {
52
52
  prefix: string;
@@ -66,6 +66,7 @@ export declare abstract class AppTabEditor<T = any, ID = number, O = any> implem
66
66
  get valid(): boolean;
67
67
  get invalid(): boolean;
68
68
  get pending(): boolean;
69
+ get loading(): boolean;
69
70
  get enabled(): boolean;
70
71
  get disabled(): boolean;
71
72
  get children(): IAppForm[];
@@ -1,4 +1,4 @@
1
1
  import { AppTable } from './table.class';
2
2
  export declare class AppTableUtils {
3
- static waitIdle(table: AppTable<any, any, any>): Promise<void>;
3
+ static waitIdle(table: AppTable<any, any, any>): Promise<any>;
4
4
  }