ps-toolkit-ui 1.7.0 → 1.7.3
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 +6 -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/date/form.date.component.js +6 -6
- package/esm2015/lib/components/form/index/form.component.js +2 -1
- package/fesm2015/ps-toolkit-ui.js +6 -5
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3873,8 +3873,6 @@
|
|
|
3873
3873
|
FormDateComponent.prototype.onKeyUp = function (e) {
|
|
3874
3874
|
this.inp.error = null;
|
|
3875
3875
|
this.inp.value = null;
|
|
3876
|
-
console.log('onKeyUp this.cSearch => ', this.cSearch);
|
|
3877
|
-
console.log('onKeyUp e.target.value => ', e.target.value);
|
|
3878
3876
|
if (this.cSearch !== e.target.value) {
|
|
3879
3877
|
this.cSearch = e.target.value;
|
|
3880
3878
|
if (this.inp.search !== '' && this.inp.search !== null) {
|
|
@@ -3882,7 +3880,6 @@
|
|
|
3882
3880
|
if (v.isValid() && this.inp.search.length <= 10) {
|
|
3883
3881
|
this.active = v;
|
|
3884
3882
|
this.inp.value = this.active.format('jYYYY/jMM/jDD');
|
|
3885
|
-
console.log('onKeyUp this.inp.value => ', this.inp.value);
|
|
3886
3883
|
this.setDate();
|
|
3887
3884
|
if (this.inp.onChange) {
|
|
3888
3885
|
this.inp.onChange(this.inp);
|
|
@@ -3902,8 +3899,6 @@
|
|
|
3902
3899
|
};
|
|
3903
3900
|
FormDateComponent.prototype.onFocusOut = function () {
|
|
3904
3901
|
$__namespace(this.inputDiv.nativeElement).removeClass('top');
|
|
3905
|
-
console.log('onFocusOut this.inp.value => ', this.inp.value);
|
|
3906
|
-
console.log('onFocusOut this.inp.search => ', this.inp.search);
|
|
3907
3902
|
this.inp.search = this.inp.value;
|
|
3908
3903
|
this.state = 'day';
|
|
3909
3904
|
};
|
|
@@ -3932,6 +3927,11 @@
|
|
|
3932
3927
|
this.cSearch = this.inp.search;
|
|
3933
3928
|
setTimeout(function () {
|
|
3934
3929
|
$__namespace(_this.inputDiv.nativeElement).removeClass('top');
|
|
3930
|
+
console.log('#######');
|
|
3931
|
+
console.log(_this.inForm);
|
|
3932
|
+
console.log(_this.inp.value);
|
|
3933
|
+
console.log(_this.inp.search);
|
|
3934
|
+
console.log('#######');
|
|
3935
3935
|
_this.changeIndex.emit('Tab');
|
|
3936
3936
|
if (!_this.inForm) {
|
|
3937
3937
|
$__namespace(_this.inputBase.nativeElement).blur();
|
|
@@ -4327,6 +4327,7 @@
|
|
|
4327
4327
|
}
|
|
4328
4328
|
if (next >= 0 && next < this.form.inputs.length) {
|
|
4329
4329
|
setTimeout(function () {
|
|
4330
|
+
console.log(_this.form.inputs[next]);
|
|
4330
4331
|
_this.form.inputs[next].focus(true);
|
|
4331
4332
|
}, 1);
|
|
4332
4333
|
}
|