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.
- package/bundles/ps-toolkit-ui.umd.js +12 -2
- 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/form.plaque.component.js +13 -3
- package/fesm2015/ps-toolkit-ui.js +12 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
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.
|
|
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') {
|