ps-toolkit-ui 0.0.83 → 0.0.84
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 +4 -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/login/login.component.js +5 -1
- package/fesm2015/ps-toolkit-ui.js +4 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -6697,6 +6697,8 @@
|
|
|
6697
6697
|
sendCodeForm.subName = 'SendCodeSubTitle';
|
|
6698
6698
|
this.mobile = new InputClass(this.config.environment, this.l, 'Mobile', 'fad fa-mobile-alt', exports.InputType.Mobile, 'm-b-10 h-45', '', true, 4, 50);
|
|
6699
6699
|
sendCodeForm.onSuccess = function () {
|
|
6700
|
+
console.log(_this.l('LoginSmsSubTitle', _this.mobile.data()));
|
|
6701
|
+
console.log(_this.login.steps);
|
|
6700
6702
|
loginForm_1.subName = _this.l('LoginSmsSubTitle', _this.mobile.data());
|
|
6701
6703
|
_this.mobile.type = exports.InputType.Hidden;
|
|
6702
6704
|
code_1.progress.start();
|
|
@@ -6760,10 +6762,12 @@
|
|
|
6760
6762
|
};
|
|
6761
6763
|
var loginStep = new LoginStepClass(loginForm_1);
|
|
6762
6764
|
loginStep.show = function () {
|
|
6765
|
+
console.log('loginStep.show');
|
|
6763
6766
|
_this.login.active = 0;
|
|
6764
6767
|
};
|
|
6765
6768
|
var sendCodeStep = new LoginStepClass(sendCodeForm);
|
|
6766
6769
|
sendCodeStep.show = function () {
|
|
6770
|
+
console.log('sendCodeStep.show');
|
|
6767
6771
|
_this.login.active = 1;
|
|
6768
6772
|
};
|
|
6769
6773
|
this.login.steps.unshift(loginStep);
|