@sumaris-net/ngx-components 1.20.36 → 1.20.37

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.
@@ -20081,7 +20081,12 @@
20081
20081
  this._$loading.unsubscribe();
20082
20082
  };
20083
20083
  AppForm.prototype.cancel = function () {
20084
- this.onCancel.emit();
20084
+ return __awaiter(this, void 0, void 0, function () {
20085
+ return __generator(this, function (_b) {
20086
+ this.onCancel.emit();
20087
+ return [2 /*return*/];
20088
+ });
20089
+ });
20085
20090
  };
20086
20091
  /**
20087
20092
  *
@@ -21521,7 +21526,12 @@
21521
21526
  }
21522
21527
  };
21523
21528
  AuthForm.prototype.cancel = function () {
21524
- this.onCancel.emit();
21529
+ return __awaiter(this, void 0, void 0, function () {
21530
+ return __generator(this, function (_a) {
21531
+ this.onCancel.emit();
21532
+ return [2 /*return*/];
21533
+ });
21534
+ });
21525
21535
  };
21526
21536
  AuthForm.prototype.doSubmit = function (event) {
21527
21537
  return __awaiter(this, void 0, void 0, function () {
@@ -22540,8 +22550,12 @@
22540
22550
  });
22541
22551
  return __awaiter(this, void 0, void 0, function () {
22542
22552
  return __generator(this, function (_c) {
22543
- _super.cancel.call(this);
22544
- return [2 /*return*/];
22553
+ switch (_c.label) {
22554
+ case 0: return [4 /*yield*/, _super.cancel.call(this)];
22555
+ case 1:
22556
+ _c.sent();
22557
+ return [2 /*return*/];
22558
+ }
22545
22559
  });
22546
22560
  });
22547
22561
  };
@@ -28508,6 +28522,10 @@
28508
28522
  this.markForCheck();
28509
28523
  }
28510
28524
  };
28525
+ AppTabEditor.prototype.realignInkBar = function () {
28526
+ var _a;
28527
+ (_a = this.tabGroup) === null || _a === void 0 ? void 0 : _a.realignInkBar();
28528
+ };
28511
28529
  AppTabEditor.prototype.onTabChange = function (event, queryTabIndexParamName) {
28512
28530
  queryTabIndexParamName = queryTabIndexParamName || this.queryTabIndexParamName;
28513
28531
  if (!queryTabIndexParamName || !this.route)