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.
@@ -4624,11 +4624,7 @@
4624
4624
  };
4625
4625
  FormPlaqueSelectComponent.prototype.onKeyDown = function (e) {
4626
4626
  var code = e.keyCode || e.which;
4627
- if (code === 9) {
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.value = v;
4661
- this.inp.search = va ? va.search : '';
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);