@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.
- package/bundles/sumaris-net.ngx-components.umd.js +22 -4
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/account/account.js +2 -2
- package/esm2015/src/app/core/auth/form/form-auth.js +4 -2
- package/esm2015/src/app/core/form/editor.class.js +5 -1
- package/esm2015/src/app/core/form/entity-editor-modal.class.js +1 -1
- package/esm2015/src/app/core/form/entity-editor.class.js +1 -1
- package/esm2015/src/app/core/form/form.class.js +4 -2
- package/fesm2015/sumaris-net.ngx-components.js +11 -3
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/auth/form/form-auth.d.ts +1 -1
- package/src/app/core/form/editor.class.d.ts +14 -1
- package/src/app/core/form/entity-editor.class.d.ts +6 -2
- package/src/app/core/form/form.class.d.ts +1 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -20081,7 +20081,12 @@
|
|
|
20081
20081
|
this._$loading.unsubscribe();
|
|
20082
20082
|
};
|
|
20083
20083
|
AppForm.prototype.cancel = function () {
|
|
20084
|
-
this
|
|
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
|
|
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
|
-
|
|
22544
|
-
|
|
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)
|