ps-toolkit-ui 1.5.9 → 1.5.10
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 +8 -3
- 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 +9 -4
- package/fesm2015/ps-toolkit-ui.js +8 -3
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -4693,6 +4693,10 @@
|
|
|
4693
4693
|
if (p === 'Part1') {
|
|
4694
4694
|
if (a === 'Tab' || a === 'Enter') {
|
|
4695
4695
|
this.part3.focus();
|
|
4696
|
+
if (this.inp.type === exports.InputType.SelectAutoCompletePlaqueF) {
|
|
4697
|
+
this.loadOptions();
|
|
4698
|
+
console.log('loadOptions');
|
|
4699
|
+
}
|
|
4696
4700
|
}
|
|
4697
4701
|
else if (a === 'ShiftTab' || a === 'ShiftEnter') {
|
|
4698
4702
|
this.changeIndex.emit('ShiftTab');
|
|
@@ -4704,12 +4708,13 @@
|
|
|
4704
4708
|
}
|
|
4705
4709
|
else if (a === 'ShiftTab' || a === 'ShiftEnter') {
|
|
4706
4710
|
this.part1.focus();
|
|
4711
|
+
if (this.inp.type === exports.InputType.SelectAutoCompletePlaqueF) {
|
|
4712
|
+
this.loadOptions();
|
|
4713
|
+
console.log('loadOptions');
|
|
4714
|
+
}
|
|
4707
4715
|
}
|
|
4708
4716
|
}
|
|
4709
4717
|
}
|
|
4710
|
-
if (this.inp.type === exports.InputType.SelectAutoCompletePlaqueF) {
|
|
4711
|
-
this.loadOptions();
|
|
4712
|
-
}
|
|
4713
4718
|
};
|
|
4714
4719
|
FormPlaqueSelectComponent.prototype.getSearch = function () {
|
|
4715
4720
|
return this.inp.type === exports.InputType.SelectAutoCompletePlaque ?
|