ps-toolkit-ui 1.3.73 → 1.3.76

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.
@@ -4765,7 +4765,12 @@
4765
4765
  if (this.inp.type === exports.InputType.Plaque) {
4766
4766
  if (p === 'Part1') {
4767
4767
  if (a === 'Tab' || a === 'Enter') {
4768
- this.part2.focus();
4768
+ if (this.part2.data() != null) {
4769
+ this.part3.focus();
4770
+ }
4771
+ else {
4772
+ this.part2.focus();
4773
+ }
4769
4774
  }
4770
4775
  else if (a === 'ShiftTab' || a === 'ShiftEnter') {
4771
4776
  this.changeIndex.emit('ShiftTab');
@@ -4784,7 +4789,12 @@
4784
4789
  this.part4.focus();
4785
4790
  }
4786
4791
  else if (a === 'ShiftTab' || a === 'ShiftEnter') {
4787
- this.part2.focus();
4792
+ if (this.part2.data() != null) {
4793
+ this.part1.focus();
4794
+ }
4795
+ else {
4796
+ this.part2.focus();
4797
+ }
4788
4798
  }
4789
4799
  }
4790
4800
  else if (p === 'Part4') {