ps-toolkit-ui 1.6.82 → 1.6.83
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 +11 -11
- 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 +12 -12
- package/fesm2015/ps-toolkit-ui.js +11 -11
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -5038,10 +5038,10 @@
|
|
|
5038
5038
|
if (p === 'Part1') {
|
|
5039
5039
|
if (a === 'Tab' || a === 'Enter') {
|
|
5040
5040
|
if (this.part2.data() != null) {
|
|
5041
|
-
this.part3.focus();
|
|
5041
|
+
this.part3.focus(true);
|
|
5042
5042
|
}
|
|
5043
5043
|
else {
|
|
5044
|
-
this.part2.focus();
|
|
5044
|
+
this.part2.focus(true);
|
|
5045
5045
|
}
|
|
5046
5046
|
}
|
|
5047
5047
|
else if (a === 'ShiftTab' || a === 'ShiftEnter') {
|
|
@@ -5050,22 +5050,22 @@
|
|
|
5050
5050
|
}
|
|
5051
5051
|
else if (p === 'Part2') {
|
|
5052
5052
|
if (a === 'Tab' || a === 'Enter') {
|
|
5053
|
-
this.part3.focus();
|
|
5053
|
+
this.part3.focus(true);
|
|
5054
5054
|
}
|
|
5055
5055
|
else if (a === 'ShiftTab' || a === 'ShiftEnter') {
|
|
5056
|
-
this.part1.focus();
|
|
5056
|
+
this.part1.focus(true);
|
|
5057
5057
|
}
|
|
5058
5058
|
}
|
|
5059
5059
|
else if (p === 'Part3') {
|
|
5060
5060
|
if (a === 'Tab' || a === 'Enter') {
|
|
5061
|
-
this.part4.focus();
|
|
5061
|
+
this.part4.focus(true);
|
|
5062
5062
|
}
|
|
5063
5063
|
else if (a === 'ShiftTab' || a === 'ShiftEnter') {
|
|
5064
5064
|
if (this.part2.data() != null) {
|
|
5065
|
-
this.part1.focus();
|
|
5065
|
+
this.part1.focus(true);
|
|
5066
5066
|
}
|
|
5067
5067
|
else {
|
|
5068
|
-
this.part2.focus();
|
|
5068
|
+
this.part2.focus(true);
|
|
5069
5069
|
}
|
|
5070
5070
|
}
|
|
5071
5071
|
}
|
|
@@ -5074,14 +5074,14 @@
|
|
|
5074
5074
|
this.changeIndex.emit('Tab');
|
|
5075
5075
|
}
|
|
5076
5076
|
else if (a === 'ShiftTab' || a === 'ShiftEnter') {
|
|
5077
|
-
this.part3.focus();
|
|
5077
|
+
this.part3.focus(true);
|
|
5078
5078
|
}
|
|
5079
5079
|
}
|
|
5080
5080
|
}
|
|
5081
5081
|
else if (this.inp.type === exports.InputType.PlaqueM || this.inp.type === exports.InputType.PlaqueF) {
|
|
5082
5082
|
if (p === 'Part1') {
|
|
5083
5083
|
if (a === 'Tab' || a === 'Enter') {
|
|
5084
|
-
this.part3.focus();
|
|
5084
|
+
this.part3.focus(true);
|
|
5085
5085
|
}
|
|
5086
5086
|
else if (a === 'ShiftTab' || a === 'ShiftEnter') {
|
|
5087
5087
|
this.changeIndex.emit('ShiftTab');
|
|
@@ -5092,7 +5092,7 @@
|
|
|
5092
5092
|
this.changeIndex.emit('Tab');
|
|
5093
5093
|
}
|
|
5094
5094
|
else if (a === 'ShiftTab' || a === 'ShiftEnter') {
|
|
5095
|
-
this.part1.focus();
|
|
5095
|
+
this.part1.focus(true);
|
|
5096
5096
|
}
|
|
5097
5097
|
}
|
|
5098
5098
|
}
|
|
@@ -5110,7 +5110,7 @@
|
|
|
5110
5110
|
FormPlaqueComponent.prototype.onFocusIn = function (e) {
|
|
5111
5111
|
if (e === void 0) { e = null; }
|
|
5112
5112
|
if (e == null || !(e.screenX && e.screenX !== 0 && e.screenY && e.screenY !== 0)) {
|
|
5113
|
-
this.part1.focus();
|
|
5113
|
+
this.part1.focus(true);
|
|
5114
5114
|
}
|
|
5115
5115
|
};
|
|
5116
5116
|
FormPlaqueComponent.prototype.onKeyDown = function (e) {
|