@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.
@@ -18686,8 +18686,8 @@
18686
18686
  * Wait form is idle (not loading)
18687
18687
  * @param opts
18688
18688
  */
18689
- AppForm.prototype.waitIdle = function (opts) {
18690
- return AppFormUtils.waitIdle(this, opts);
18689
+ AppForm.prototype.waitIdle = function () {
18690
+ return AppFormUtils.waitIdle(this);
18691
18691
  };
18692
18692
  /* -- protected methods -- */
18693
18693
  AppForm.prototype.registerSubscription = function (sub) {
@@ -25652,11 +25652,11 @@
25652
25652
  AppEntityEditor.prototype.computeUsageMode = function (data) {
25653
25653
  return this.settings.isUsageMode('FIELD') ? 'FIELD' : 'DESK';
25654
25654
  };
25655
- AppEntityEditor.prototype.waitWhilePending = function (opts) {
25655
+ AppEntityEditor.prototype.waitWhilePending = function () {
25656
25656
  return __awaiter(this, void 0, void 0, function () {
25657
25657
  return __generator(this, function (_a) {
25658
25658
  switch (_a.label) {
25659
- case 0: return [4 /*yield*/, AppFormUtils.waitWhilePending(this, opts)];
25659
+ case 0: return [4 /*yield*/, AppFormUtils.waitWhilePending(this)];
25660
25660
  case 1: return [2 /*return*/, _a.sent()];
25661
25661
  }
25662
25662
  });