tnx-shared 5.3.182 → 5.3.183
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/tnx-shared.umd.js +5 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/classes/base/data-form-base.d.ts.map +1 -1
- package/esm2015/classes/base/data-form-base.js +6 -1
- package/fesm2015/tnx-shared.js +5 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -19067,6 +19067,9 @@
|
|
|
19067
19067
|
DataFormBase.prototype.showMessageAfterInsert = function (isSuccess, error) {
|
|
19068
19068
|
if (isSuccess === void 0) { isSuccess = false; }
|
|
19069
19069
|
if (isSuccess) {
|
|
19070
|
+
if (!this.messageInsertSuccess) {
|
|
19071
|
+
this.messageInsertSuccess = this._translateService.instant('MESSAGE.INSERT_DATA_SUCCESS');
|
|
19072
|
+
}
|
|
19070
19073
|
if (this.messageInsertSuccess) {
|
|
19071
19074
|
this._notifierService.showSuccess(this.messageInsertSuccess);
|
|
19072
19075
|
}
|
|
@@ -19078,6 +19081,8 @@
|
|
|
19078
19081
|
DataFormBase.prototype.showMessageAfterUpdate = function (isSuccess, error) {
|
|
19079
19082
|
if (isSuccess === void 0) { isSuccess = false; }
|
|
19080
19083
|
if (isSuccess) {
|
|
19084
|
+
if (!this.messageUpdateSuccess)
|
|
19085
|
+
this.messageUpdateSuccess = this._translateService.instant('MESSAGE.UPDATE_DATA_SUCCESS');
|
|
19081
19086
|
if (this.messageUpdateSuccess) {
|
|
19082
19087
|
this._notifierService.showSuccess(this.messageUpdateSuccess);
|
|
19083
19088
|
}
|