@ekyc_qoobiss/qbs-ect-cmp 3.6.41 → 3.6.43

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.
@@ -4918,20 +4918,21 @@ const HowToInfo = class {
4918
4918
  this.imagePath = 'https://ekyc.blob.core.windows.net/$web/howto_id.png';
4919
4919
  this.buttonText = this.translations.HowToValues.IdButton;
4920
4920
  if (TranslationUtils.state.flowStatus == TranslationUtils.FlowStatus.IDFRONT) {
4921
- this.baseComponent = new BaseComponent(TranslationUtils.FlowSteps.CiFrontHowTo);
4921
+ this.currentStep = TranslationUtils.FlowSteps.CiFrontHowTo;
4922
4922
  this.subTitle = this.translations.HowToValues.IdSubTitileFace;
4923
4923
  }
4924
4924
  else if (TranslationUtils.state.flowStatus == TranslationUtils.FlowStatus.IDBACK) {
4925
- this.baseComponent = new BaseComponent(TranslationUtils.FlowSteps.CiBackHowTo);
4925
+ this.currentStep = TranslationUtils.FlowSteps.CiBackHowTo;
4926
4926
  this.subTitle = this.translations.HowToValues.IdSubTitileBack;
4927
4927
  }
4928
4928
  if (TranslationUtils.state.flowStatus == TranslationUtils.FlowStatus.LIVENESS) {
4929
- this.baseComponent = new BaseComponent(TranslationUtils.FlowSteps.SelfieHowTo);
4929
+ this.currentStep = TranslationUtils.FlowSteps.SelfieHowTo;
4930
4930
  this.topTitle = this.translations.HowToValues.SelfieTitile;
4931
4931
  this.subTitle = this.translations.HowToValues.SelfieSubTitile;
4932
4932
  this.imagePath = 'https://ekyc.blob.core.windows.net/$web/howto_selfie.png';
4933
4933
  this.buttonText = this.translations.HowToValues.SelfieButton;
4934
4934
  }
4935
+ this.baseComponent = new BaseComponent(this.currentStep);
4935
4936
  this.baseComponent.setEventEmitter(this.apiErrorEvent);
4936
4937
  }
4937
4938
  render() {
@@ -5286,7 +5287,7 @@ function v4(options, buf, offset) {
5286
5287
  }
5287
5288
 
5288
5289
  const name = "@ekyc_qoobiss/qbs-ect-cmp";
5289
- const version$1 = "3.6.41";
5290
+ const version$1 = "3.6.43";
5290
5291
  const description = "Person Identification Component";
5291
5292
  const main = "./dist/index.cjs.js";
5292
5293
  const module$1 = "./dist/index.js";
@@ -9037,7 +9038,7 @@ const UserLiveness = class {
9037
9038
  }
9038
9039
  componentWillLoad() {
9039
9040
  if (TranslationUtils.state.flowStatus == TranslationUtils.FlowStatus.LIVENESS) {
9040
- this.baseComponent = new BaseComponent(TranslationUtils.FlowSteps.Selfie);
9041
+ this.currentStep = TranslationUtils.FlowSteps.Selfie;
9041
9042
  this.flow = {
9042
9043
  capture: {
9043
9044
  fileName: 'selfie.png',
@@ -9049,7 +9050,7 @@ const UserLiveness = class {
9049
9050
  };
9050
9051
  }
9051
9052
  else if (TranslationUtils.state.flowStatus == TranslationUtils.FlowStatus.LIVENESSGESTURE) {
9052
- this.baseComponent = new BaseComponent(TranslationUtils.FlowSteps.SelfieTilt);
9053
+ this.currentStep = TranslationUtils.FlowSteps.SelfieTilt;
9053
9054
  this.flow = {
9054
9055
  capture: {
9055
9056
  fileName: '',
@@ -9060,6 +9061,7 @@ const UserLiveness = class {
9060
9061
  howToDone: false,
9061
9062
  };
9062
9063
  }
9064
+ this.baseComponent = new BaseComponent(this.currentStep);
9063
9065
  this.baseComponent.setEventEmitter(this.apiErrorEvent);
9064
9066
  }
9065
9067
  howToDoneEvent() {
@@ -24,20 +24,21 @@ export class HowToInfo {
24
24
  this.imagePath = 'https://ekyc.blob.core.windows.net/$web/howto_id.png';
25
25
  this.buttonText = this.translations.HowToValues.IdButton;
26
26
  if (store.flowStatus == FlowStatus.IDFRONT) {
27
- this.baseComponent = new BaseComponent(FlowSteps.CiFrontHowTo);
27
+ this.currentStep = FlowSteps.CiFrontHowTo;
28
28
  this.subTitle = this.translations.HowToValues.IdSubTitileFace;
29
29
  }
30
30
  else if (store.flowStatus == FlowStatus.IDBACK) {
31
- this.baseComponent = new BaseComponent(FlowSteps.CiBackHowTo);
31
+ this.currentStep = FlowSteps.CiBackHowTo;
32
32
  this.subTitle = this.translations.HowToValues.IdSubTitileBack;
33
33
  }
34
34
  if (store.flowStatus == FlowStatus.LIVENESS) {
35
- this.baseComponent = new BaseComponent(FlowSteps.SelfieHowTo);
35
+ this.currentStep = FlowSteps.SelfieHowTo;
36
36
  this.topTitle = this.translations.HowToValues.SelfieTitile;
37
37
  this.subTitle = this.translations.HowToValues.SelfieSubTitile;
38
38
  this.imagePath = 'https://ekyc.blob.core.windows.net/$web/howto_selfie.png';
39
39
  this.buttonText = this.translations.HowToValues.SelfieButton;
40
40
  }
41
+ this.baseComponent = new BaseComponent(this.currentStep);
41
42
  this.baseComponent.setEventEmitter(this.apiErrorEvent);
42
43
  }
43
44
  render() {
@@ -19,7 +19,7 @@ export class UserLiveness {
19
19
  }
20
20
  componentWillLoad() {
21
21
  if (store.flowStatus == FlowStatus.LIVENESS) {
22
- this.baseComponent = new BaseComponent(FlowSteps.Selfie);
22
+ this.currentStep = FlowSteps.Selfie;
23
23
  this.flow = {
24
24
  capture: {
25
25
  fileName: 'selfie.png',
@@ -31,7 +31,7 @@ export class UserLiveness {
31
31
  };
32
32
  }
33
33
  else if (store.flowStatus == FlowStatus.LIVENESSGESTURE) {
34
- this.baseComponent = new BaseComponent(FlowSteps.SelfieTilt);
34
+ this.currentStep = FlowSteps.SelfieTilt;
35
35
  this.flow = {
36
36
  capture: {
37
37
  fileName: '',
@@ -42,6 +42,7 @@ export class UserLiveness {
42
42
  howToDone: false,
43
43
  };
44
44
  }
45
+ this.baseComponent = new BaseComponent(this.currentStep);
45
46
  this.baseComponent.setEventEmitter(this.apiErrorEvent);
46
47
  }
47
48
  howToDoneEvent() {
@@ -4914,20 +4914,21 @@ const HowToInfo = class {
4914
4914
  this.imagePath = 'https://ekyc.blob.core.windows.net/$web/howto_id.png';
4915
4915
  this.buttonText = this.translations.HowToValues.IdButton;
4916
4916
  if (state.flowStatus == FlowStatus.IDFRONT) {
4917
- this.baseComponent = new BaseComponent(FlowSteps.CiFrontHowTo);
4917
+ this.currentStep = FlowSteps.CiFrontHowTo;
4918
4918
  this.subTitle = this.translations.HowToValues.IdSubTitileFace;
4919
4919
  }
4920
4920
  else if (state.flowStatus == FlowStatus.IDBACK) {
4921
- this.baseComponent = new BaseComponent(FlowSteps.CiBackHowTo);
4921
+ this.currentStep = FlowSteps.CiBackHowTo;
4922
4922
  this.subTitle = this.translations.HowToValues.IdSubTitileBack;
4923
4923
  }
4924
4924
  if (state.flowStatus == FlowStatus.LIVENESS) {
4925
- this.baseComponent = new BaseComponent(FlowSteps.SelfieHowTo);
4925
+ this.currentStep = FlowSteps.SelfieHowTo;
4926
4926
  this.topTitle = this.translations.HowToValues.SelfieTitile;
4927
4927
  this.subTitle = this.translations.HowToValues.SelfieSubTitile;
4928
4928
  this.imagePath = 'https://ekyc.blob.core.windows.net/$web/howto_selfie.png';
4929
4929
  this.buttonText = this.translations.HowToValues.SelfieButton;
4930
4930
  }
4931
+ this.baseComponent = new BaseComponent(this.currentStep);
4931
4932
  this.baseComponent.setEventEmitter(this.apiErrorEvent);
4932
4933
  }
4933
4934
  render() {
@@ -5282,7 +5283,7 @@ function v4(options, buf, offset) {
5282
5283
  }
5283
5284
 
5284
5285
  const name = "@ekyc_qoobiss/qbs-ect-cmp";
5285
- const version$1 = "3.6.41";
5286
+ const version$1 = "3.6.43";
5286
5287
  const description = "Person Identification Component";
5287
5288
  const main = "./dist/index.cjs.js";
5288
5289
  const module = "./dist/index.js";
@@ -9033,7 +9034,7 @@ const UserLiveness = class {
9033
9034
  }
9034
9035
  componentWillLoad() {
9035
9036
  if (state.flowStatus == FlowStatus.LIVENESS) {
9036
- this.baseComponent = new BaseComponent(FlowSteps.Selfie);
9037
+ this.currentStep = FlowSteps.Selfie;
9037
9038
  this.flow = {
9038
9039
  capture: {
9039
9040
  fileName: 'selfie.png',
@@ -9045,7 +9046,7 @@ const UserLiveness = class {
9045
9046
  };
9046
9047
  }
9047
9048
  else if (state.flowStatus == FlowStatus.LIVENESSGESTURE) {
9048
- this.baseComponent = new BaseComponent(FlowSteps.SelfieTilt);
9049
+ this.currentStep = FlowSteps.SelfieTilt;
9049
9050
  this.flow = {
9050
9051
  capture: {
9051
9052
  fileName: '',
@@ -9056,6 +9057,7 @@ const UserLiveness = class {
9056
9057
  howToDone: false,
9057
9058
  };
9058
9059
  }
9060
+ this.baseComponent = new BaseComponent(this.currentStep);
9059
9061
  this.baseComponent.setEventEmitter(this.apiErrorEvent);
9060
9062
  }
9061
9063
  howToDoneEvent() {