tnx-shared 5.3.228 → 5.3.230
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 +7 -1
- 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/list-base.d.ts +1 -0
- package/classes/base/list-base.d.ts.map +1 -1
- package/esm2015/classes/base/list-base.js +7 -1
- package/esm2015/components/common-search-form/common-search-form.component.js +2 -2
- package/fesm2015/tnx-shared.js +7 -1
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/tnx-shared.metadata.json +1 -1
|
@@ -27564,6 +27564,12 @@
|
|
|
27564
27564
|
this.onBeforeCancel();
|
|
27565
27565
|
this.showDetailForm = false;
|
|
27566
27566
|
};
|
|
27567
|
+
// #endregion
|
|
27568
|
+
// eslint-disable-next-line spaced-comment
|
|
27569
|
+
//#endregion
|
|
27570
|
+
ListBase.prototype.deepClone = function (data) {
|
|
27571
|
+
return JSON.parse(JSON.stringify(data));
|
|
27572
|
+
};
|
|
27567
27573
|
return ListBase;
|
|
27568
27574
|
}(ComponentBaseWithButton));
|
|
27569
27575
|
ListBase.decorators = [
|
|
@@ -32118,7 +32124,7 @@
|
|
|
32118
32124
|
else {
|
|
32119
32125
|
this.setting.schema = this.genFormSchema(columnFilters);
|
|
32120
32126
|
}
|
|
32121
|
-
this.isDisableOpenFull = this.setting.schema.length <=
|
|
32127
|
+
this.isDisableOpenFull = (this.setting.schema.length <= Math.round(12 / (this.parentSetting.mdWidthCommonSearch))) && !this._commonService.isMobile();
|
|
32122
32128
|
_super.prototype.ngOnInit.call(this);
|
|
32123
32129
|
if (Object.keys(this.defaultValues).length) {
|
|
32124
32130
|
this.handleSearch();
|