ps-toolkit-ui 1.3.52 → 1.3.53
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 +3 -0
- 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/select/form.select.component.js +4 -1
- package/fesm2015/ps-toolkit-ui.js +3 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -5111,6 +5111,7 @@
|
|
|
5111
5111
|
var code = e.keyCode || e.which;
|
|
5112
5112
|
if (code === 9) {
|
|
5113
5113
|
e.preventDefault();
|
|
5114
|
+
console.log('00000 onKeyDown');
|
|
5114
5115
|
this.cI(e.shiftKey ? 'ShiftTab' : 'Tab');
|
|
5115
5116
|
}
|
|
5116
5117
|
else if (code === 13) {
|
|
@@ -5123,6 +5124,7 @@
|
|
|
5123
5124
|
this.selectOption(h.value);
|
|
5124
5125
|
}
|
|
5125
5126
|
else {
|
|
5127
|
+
console.log('00000else onKeyDown');
|
|
5126
5128
|
this.cI('Tab');
|
|
5127
5129
|
}
|
|
5128
5130
|
}
|
|
@@ -5203,6 +5205,7 @@
|
|
|
5203
5205
|
}
|
|
5204
5206
|
}
|
|
5205
5207
|
if (!isEdit && !this.inp.multiple) {
|
|
5208
|
+
console.log('00000 selectOption');
|
|
5206
5209
|
this.cI('Tab');
|
|
5207
5210
|
}
|
|
5208
5211
|
};
|