tnx-shared 5.3.42 → 5.3.43
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 +4 -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/common-search-form/common-search-form.component.d.ts.map +1 -1
- package/esm2015/components/common-search-form/common-search-form.component.js +5 -3
- package/fesm2015/tnx-shared.js +4 -2
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -33559,8 +33559,10 @@
|
|
|
33559
33559
|
column.showLabel = false;
|
|
33560
33560
|
column.mdWidth = _this.mdWidth;
|
|
33561
33561
|
column['placeholder'] = column.label;
|
|
33562
|
-
if (!(column instanceof TextControlSchema) || column instanceof NumberRangeControlSchema) {
|
|
33563
|
-
column.
|
|
33562
|
+
if (!(column instanceof TextControlSchema) || column instanceof NumberRangeControlSchema || column instanceof DropdownControlSchema) {
|
|
33563
|
+
column.onAfterChanged = function (evt) {
|
|
33564
|
+
_this.handleSearch(null, evt.control.field);
|
|
33565
|
+
};
|
|
33564
33566
|
}
|
|
33565
33567
|
if (column instanceof NumberRangeControlSchema) {
|
|
33566
33568
|
_this.lstNumberRangeControl.push(column.field);
|