tnx-shared 5.1.479 → 5.1.481
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 -4
- 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/validators.d.ts.map +1 -1
- package/classes/form-schema.d.ts +0 -1
- package/classes/form-schema.d.ts.map +1 -1
- package/components/common-search-form/common-search-form.component.d.ts.map +1 -1
- package/esm2015/classes/base/validators.js +4 -1
- package/esm2015/classes/form-schema.js +1 -2
- package/esm2015/components/common-search-form/common-search-form.component.js +1 -4
- package/fesm2015/tnx-shared.js +3 -4
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/tnx-shared.metadata.json +1 -1
|
@@ -2022,7 +2022,6 @@
|
|
|
2022
2022
|
_this.allowFilter = true;
|
|
2023
2023
|
_this.fullTextSearch = false;
|
|
2024
2024
|
_this.isInTable = true;
|
|
2025
|
-
_this.hiddenInSearch = false;
|
|
2026
2025
|
_this.separator = ', ';
|
|
2027
2026
|
_this.maxItemDisplay = 50;
|
|
2028
2027
|
_this.pageSize = 15; // Prop phải giống với dropdown
|
|
@@ -12991,6 +12990,9 @@
|
|
|
12991
12990
|
|
|
12992
12991
|
var _b, _c;
|
|
12993
12992
|
function isNotEmpty(value, control) {
|
|
12993
|
+
if (!!value && typeof (value) == 'string') {
|
|
12994
|
+
value.trim();
|
|
12995
|
+
}
|
|
12994
12996
|
if (control instanceof AddressControlSchema) {
|
|
12995
12997
|
if (value == null || value === '')
|
|
12996
12998
|
return false;
|
|
@@ -49143,9 +49145,6 @@
|
|
|
49143
49145
|
var _this = this;
|
|
49144
49146
|
var result = [];
|
|
49145
49147
|
columns.forEach(function (column) {
|
|
49146
|
-
if (column.hiddenInSearch) {
|
|
49147
|
-
return;
|
|
49148
|
-
}
|
|
49149
49148
|
if (!column.isInTable) {
|
|
49150
49149
|
_this.lstControlNotIn.push(column.field);
|
|
49151
49150
|
}
|