ps-toolkit-ui 1.6.75 → 1.6.78
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/ps-toolkit-ui.umd.js +2 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/form.class.js +3 -2
- package/fesm2015/ps-toolkit-ui.js +2 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -1819,7 +1819,8 @@
|
|
|
1819
1819
|
}
|
|
1820
1820
|
else if (inp.type === exports.InputType.VehicleSearch) {
|
|
1821
1821
|
var ivs = _.get(d, inp.name.replace('Id', ''));
|
|
1822
|
-
var ivt = _.get(d, inp.name
|
|
1822
|
+
var ivt = _.get(d, inp.name.replace('Id', 'Type'));
|
|
1823
|
+
console.log({ Search: ivs, Value: iv, Type: ivt }, d);
|
|
1823
1824
|
inp.setValue({ Search: ivs, Value: iv, Type: ivt }, true);
|
|
1824
1825
|
}
|
|
1825
1826
|
else if (inp.type !== exports.InputType.Label || iv != null) {
|