ps-toolkit-ui 1.7.16 → 1.7.17
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 +5 -0
- 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/components/form/plaque/select/form.plaque.select.component.js +6 -1
- package/fesm2015/ps-toolkit-ui.js +5 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -4392,8 +4392,13 @@
|
|
|
4392
4392
|
};
|
|
4393
4393
|
this.inp.setSearch = function (s) {
|
|
4394
4394
|
var p = s ? s.split('_') : null;
|
|
4395
|
+
console.log(p);
|
|
4395
4396
|
if (p && p.length === 4) {
|
|
4396
4397
|
setTimeout(function () {
|
|
4398
|
+
console.log(p[0]);
|
|
4399
|
+
console.log(p[1]);
|
|
4400
|
+
console.log(p[2]);
|
|
4401
|
+
console.log(p[3]);
|
|
4397
4402
|
_this.part1.setValue(p[0], false);
|
|
4398
4403
|
_this.part2.setValue(p[1], false);
|
|
4399
4404
|
_this.part3.setValue(p[2], false);
|