ps-toolkit-ui 1.7.10 → 1.7.13
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 -7
- 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 +4 -8
- package/fesm2015/ps-toolkit-ui.js +3 -7
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -4624,11 +4624,7 @@
|
|
|
4624
4624
|
};
|
|
4625
4625
|
FormPlaqueSelectComponent.prototype.onKeyDown = function (e) {
|
|
4626
4626
|
var code = e.keyCode || e.which;
|
|
4627
|
-
if (code ===
|
|
4628
|
-
e.preventDefault();
|
|
4629
|
-
this.cI(e.shiftKey ? 'ShiftTab' : 'Tab');
|
|
4630
|
-
}
|
|
4631
|
-
else if (code === 13) {
|
|
4627
|
+
if (code === 13) {
|
|
4632
4628
|
e.preventDefault();
|
|
4633
4629
|
if (this.open) {
|
|
4634
4630
|
var h = this.getSelectedHover();
|
|
@@ -4657,8 +4653,8 @@
|
|
|
4657
4653
|
if (isEdit === void 0) { isEdit = false; }
|
|
4658
4654
|
this.inp.error = null;
|
|
4659
4655
|
var va = this.getValue(v);
|
|
4660
|
-
this.inp.
|
|
4661
|
-
this.inp.
|
|
4656
|
+
this.inp.setValue(v, false);
|
|
4657
|
+
this.inp.setSearch(va ? va.search : '');
|
|
4662
4658
|
this.cSearch = this.inp.search;
|
|
4663
4659
|
if (this.inp.onChange) {
|
|
4664
4660
|
this.inp.onChange(this.inp);
|