ps-toolkit-ui 1.9.67 → 1.9.69
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 -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/classes/form.class.js +1 -2
- package/esm2015/lib/components/form/textbox/form.textbox.component.js +4 -2
- package/fesm2015/ps-toolkit-ui.js +3 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -1706,7 +1706,6 @@
|
|
|
1706
1706
|
var i = this.inputs.find(function (x) { return !x.disabled && x.type !== exports.InputType.Label && x.type !== exports.InputType.Hidden &&
|
|
1707
1707
|
x.type !== exports.InputType.Constant && x.type !== exports.InputType.Submit && x.type !== exports.InputType.Button && x.type !== exports.InputType.Icon &&
|
|
1708
1708
|
x.type !== exports.InputType.Check; });
|
|
1709
|
-
console.log(i);
|
|
1710
1709
|
if (i) {
|
|
1711
1710
|
i.focus();
|
|
1712
1711
|
}
|
|
@@ -5987,6 +5986,7 @@
|
|
|
5987
5986
|
_this.inp.value = v != null ? v.toString() : '';
|
|
5988
5987
|
_this.cValue = _this.inp.value;
|
|
5989
5988
|
};
|
|
5989
|
+
console.log(this.inp.focus, this.inp.name);
|
|
5990
5990
|
this.inp.focus = function (changeIndex) {
|
|
5991
5991
|
if (changeIndex === void 0) { changeIndex = false; }
|
|
5992
5992
|
_this.onFocusIn(changeIndex);
|
|
@@ -6097,13 +6097,14 @@
|
|
|
6097
6097
|
var _this = this;
|
|
6098
6098
|
if (changeIndex === void 0) { changeIndex = false; }
|
|
6099
6099
|
setTimeout(function () {
|
|
6100
|
+
console.log(_this.inputBase);
|
|
6100
6101
|
if (changeIndex) {
|
|
6101
6102
|
_this.inputBase.nativeElement.select();
|
|
6102
6103
|
}
|
|
6103
6104
|
else {
|
|
6104
6105
|
_this.inputBase.nativeElement.focus();
|
|
6105
6106
|
}
|
|
6106
|
-
});
|
|
6107
|
+
}, 1000);
|
|
6107
6108
|
};
|
|
6108
6109
|
FormTextboxComponent.prototype.onFocusOut = function (e) {
|
|
6109
6110
|
if (this.inp.onFocusOut !== null) {
|