@sumaris-net/ngx-components 0.15.1 → 0.15.2

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.1",
4
+ "version": "0.15.2",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -126,10 +126,7 @@ export declare abstract class AppEntityEditor<T extends Entity<T, ID>, S extends
126
126
  protected onEntitySaved(data: T): Promise<void>;
127
127
  protected onEntityDeleted(data: T): Promise<void>;
128
128
  protected computeUsageMode(data: T): UsageMode;
129
- protected waitWhilePending(opts?: {
130
- checkPeriod?: number;
131
- timeout?: number;
132
- }): Promise<boolean>;
129
+ protected waitWhilePending(): Promise<boolean>;
133
130
  protected getValue(): Promise<T>;
134
131
  protected getJsonValueToSave(): Promise<any>;
135
132
  /**
@@ -79,10 +79,7 @@ export declare abstract class AppForm<T> implements IAppForm, OnInit, OnDestroy
79
79
  * Wait form is idle (not loading)
80
80
  * @param opts
81
81
  */
82
- waitIdle(opts?: {
83
- checkPeriod?: number;
84
- timeout?: number;
85
- }): Promise<boolean>;
82
+ waitIdle(): Promise<boolean>;
86
83
  protected registerSubscription(sub: Subscription): Subscription;
87
84
  protected registerAutocompleteField<T = any, F = any>(fieldName: string, opts?: MatAutocompleteFieldAddOptions<T, F>): MatAutocompleteFieldConfig<T, F>;
88
85
  protected markForCheck(): void;