tnx-shared 5.3.227 → 5.3.229
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 +3 -2
- 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/components/entity-picker/entity-picker.component.d.ts.map +1 -1
- package/esm2015/components/common-search-form/common-search-form.component.js +2 -2
- package/esm2015/components/entity-picker/entity-picker.component.js +3 -2
- package/fesm2015/tnx-shared.js +3 -2
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -32118,7 +32118,7 @@
|
|
|
32118
32118
|
else {
|
|
32119
32119
|
this.setting.schema = this.genFormSchema(columnFilters);
|
|
32120
32120
|
}
|
|
32121
|
-
this.isDisableOpenFull = this.setting.schema.length <=
|
|
32121
|
+
this.isDisableOpenFull = (this.setting.schema.length <= Math.round(12 / (this.parentSetting.mdWidthCommonSearch))) && !this._commonService.isMobile();
|
|
32122
32122
|
_super.prototype.ngOnInit.call(this);
|
|
32123
32123
|
if (Object.keys(this.defaultValues).length) {
|
|
32124
32124
|
this.handleSearch();
|
|
@@ -46683,7 +46683,8 @@
|
|
|
46683
46683
|
funcSetValueRow: column.funcSetValueRow,
|
|
46684
46684
|
dataSource: column.dataSource,
|
|
46685
46685
|
groupCode: column.groupCode,
|
|
46686
|
-
order: column.order
|
|
46686
|
+
order: column.order,
|
|
46687
|
+
sort: column.sort
|
|
46687
46688
|
});
|
|
46688
46689
|
if (column.dataType == 'custom') {
|
|
46689
46690
|
newCol.dataType = column.code;
|