ps-toolkit-ui 1.7.10 → 1.7.11
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 +5 -5
- 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 +6 -6
- package/fesm2015/ps-toolkit-ui.js +5 -5
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -4482,6 +4482,7 @@
|
|
|
4482
4482
|
this.part1.displayLabel = this.part2.displayLabel = this.part3.displayLabel = this.part4.displayLabel = false;
|
|
4483
4483
|
this.part1.placeholder = this.part2.placeholder = this.part3.placeholder = this.part4.placeholder = null;
|
|
4484
4484
|
this.part1.onChange = function (v) {
|
|
4485
|
+
console.log('this.part1.onChange', v, v.length);
|
|
4485
4486
|
_this.inp.error = null;
|
|
4486
4487
|
_this.inp.value = null;
|
|
4487
4488
|
if (v.length === 2 && _this.inp.type === exports.InputType.SelectAutoCompletePlaque) {
|
|
@@ -4494,6 +4495,7 @@
|
|
|
4494
4495
|
}
|
|
4495
4496
|
};
|
|
4496
4497
|
this.part2.onChange = function (v) {
|
|
4498
|
+
console.log('this.part2.onChange', v, v.length);
|
|
4497
4499
|
_this.inp.error = null;
|
|
4498
4500
|
_this.inp.value = null;
|
|
4499
4501
|
if (v.length === 1) {
|
|
@@ -4506,6 +4508,7 @@
|
|
|
4506
4508
|
}
|
|
4507
4509
|
};
|
|
4508
4510
|
this.part3.onChange = function (v) {
|
|
4511
|
+
console.log('this.part3.onChange', v, v.length);
|
|
4509
4512
|
_this.inp.error = null;
|
|
4510
4513
|
_this.inp.value = null;
|
|
4511
4514
|
if (v.length === 3 && _this.inp.type === exports.InputType.SelectAutoCompletePlaque) {
|
|
@@ -4525,6 +4528,7 @@
|
|
|
4525
4528
|
}
|
|
4526
4529
|
};
|
|
4527
4530
|
this.part4.onChange = function (v) {
|
|
4531
|
+
console.log('this.part4.onChange', v, v.length);
|
|
4528
4532
|
_this.inp.error = null;
|
|
4529
4533
|
_this.inp.value = null;
|
|
4530
4534
|
if (v.length === 2) {
|
|
@@ -4624,11 +4628,7 @@
|
|
|
4624
4628
|
};
|
|
4625
4629
|
FormPlaqueSelectComponent.prototype.onKeyDown = function (e) {
|
|
4626
4630
|
var code = e.keyCode || e.which;
|
|
4627
|
-
if (code ===
|
|
4628
|
-
e.preventDefault();
|
|
4629
|
-
this.cI(e.shiftKey ? 'ShiftTab' : 'Tab');
|
|
4630
|
-
}
|
|
4631
|
-
else if (code === 13) {
|
|
4631
|
+
if (code === 13) {
|
|
4632
4632
|
e.preventDefault();
|
|
4633
4633
|
if (this.open) {
|
|
4634
4634
|
var h = this.getSelectedHover();
|