@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/bundles/ngx-sumaris-components.umd.js +4 -4
- package/bundles/ngx-sumaris-components.umd.js.map +1 -1
- package/bundles/ngx-sumaris-components.umd.min.js +1 -1
- package/bundles/ngx-sumaris-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/form/entity-editor.class.js +3 -3
- package/esm2015/src/app/core/form/form.class.js +3 -3
- package/fesm2015/ngx-sumaris-components.js +4 -4
- package/fesm2015/ngx-sumaris-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/entity-editor.class.d.ts +1 -4
- package/src/app/core/form/form.class.d.ts +1 -4
package/package.json
CHANGED
|
@@ -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(
|
|
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(
|
|
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;
|