ps-toolkit-ui 1.18.7 → 1.18.9
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 +3 -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/select/form.select.component.js +4 -1
- package/fesm2015/ps-toolkit-ui.js +3 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -6258,6 +6258,8 @@
|
|
|
6258
6258
|
if (isEdit === void 0) { isEdit = false; }
|
|
6259
6259
|
this.inp.error = null;
|
|
6260
6260
|
var va = this.getValue(v);
|
|
6261
|
+
console.log(this.inp.options, 'this.inp.optionsthis.inp.optionsthis.inp.optionsthis.inp.options');
|
|
6262
|
+
console.log(this.inp.options.find(function (x) { return x.value === v; }), 'this.inp.options.findthis.inp.options.findthis.inp.options.find');
|
|
6261
6263
|
if (this.inp.multiple) {
|
|
6262
6264
|
this.toggle(va);
|
|
6263
6265
|
this.inp.search = '';
|
|
@@ -6265,6 +6267,7 @@
|
|
|
6265
6267
|
else {
|
|
6266
6268
|
this.inp.value = v;
|
|
6267
6269
|
this.inp.search = va ? (((this.inp.type !== exports.InputType.SelectSearch && this.inp.type !== exports.InputType.Select) || va.search) ? va.search : va.name) : '';
|
|
6270
|
+
console.log(va, 'vavavavavavavaa');
|
|
6268
6271
|
console.log(this.inp.value, 'this.inp.valuethis.inp.valuethis.inp.valuethis.inp.value');
|
|
6269
6272
|
console.log(this.inp.search, 'this.inp.searchthis.inp.searchthis.inp.searchthis.inp.search');
|
|
6270
6273
|
}
|