@ekyc_qoobiss/qbs-ect-cmp 3.6.41 → 3.6.42

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.
@@ -5286,7 +5286,7 @@ function v4(options, buf, offset) {
5286
5286
  }
5287
5287
 
5288
5288
  const name = "@ekyc_qoobiss/qbs-ect-cmp";
5289
- const version$1 = "3.6.41";
5289
+ const version$1 = "3.6.42";
5290
5290
  const description = "Person Identification Component";
5291
5291
  const main = "./dist/index.cjs.js";
5292
5292
  const module$1 = "./dist/index.js";
@@ -9037,7 +9037,7 @@ const UserLiveness = class {
9037
9037
  }
9038
9038
  componentWillLoad() {
9039
9039
  if (TranslationUtils.state.flowStatus == TranslationUtils.FlowStatus.LIVENESS) {
9040
- this.baseComponent = new BaseComponent(TranslationUtils.FlowSteps.Selfie);
9040
+ this.currentStep = TranslationUtils.FlowSteps.Selfie;
9041
9041
  this.flow = {
9042
9042
  capture: {
9043
9043
  fileName: 'selfie.png',
@@ -9049,7 +9049,7 @@ const UserLiveness = class {
9049
9049
  };
9050
9050
  }
9051
9051
  else if (TranslationUtils.state.flowStatus == TranslationUtils.FlowStatus.LIVENESSGESTURE) {
9052
- this.baseComponent = new BaseComponent(TranslationUtils.FlowSteps.SelfieTilt);
9052
+ this.currentStep = TranslationUtils.FlowSteps.SelfieTilt;
9053
9053
  this.flow = {
9054
9054
  capture: {
9055
9055
  fileName: '',
@@ -9060,6 +9060,7 @@ const UserLiveness = class {
9060
9060
  howToDone: false,
9061
9061
  };
9062
9062
  }
9063
+ this.baseComponent = new BaseComponent(this.currentStep);
9063
9064
  this.baseComponent.setEventEmitter(this.apiErrorEvent);
9064
9065
  }
9065
9066
  howToDoneEvent() {
@@ -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() {
@@ -5282,7 +5282,7 @@ function v4(options, buf, offset) {
5282
5282
  }
5283
5283
 
5284
5284
  const name = "@ekyc_qoobiss/qbs-ect-cmp";
5285
- const version$1 = "3.6.41";
5285
+ const version$1 = "3.6.42";
5286
5286
  const description = "Person Identification Component";
5287
5287
  const main = "./dist/index.cjs.js";
5288
5288
  const module = "./dist/index.js";
@@ -9033,7 +9033,7 @@ const UserLiveness = class {
9033
9033
  }
9034
9034
  componentWillLoad() {
9035
9035
  if (state.flowStatus == FlowStatus.LIVENESS) {
9036
- this.baseComponent = new BaseComponent(FlowSteps.Selfie);
9036
+ this.currentStep = FlowSteps.Selfie;
9037
9037
  this.flow = {
9038
9038
  capture: {
9039
9039
  fileName: 'selfie.png',
@@ -9045,7 +9045,7 @@ const UserLiveness = class {
9045
9045
  };
9046
9046
  }
9047
9047
  else if (state.flowStatus == FlowStatus.LIVENESSGESTURE) {
9048
- this.baseComponent = new BaseComponent(FlowSteps.SelfieTilt);
9048
+ this.currentStep = FlowSteps.SelfieTilt;
9049
9049
  this.flow = {
9050
9050
  capture: {
9051
9051
  fileName: '',
@@ -9056,6 +9056,7 @@ const UserLiveness = class {
9056
9056
  howToDone: false,
9057
9057
  };
9058
9058
  }
9059
+ this.baseComponent = new BaseComponent(this.currentStep);
9059
9060
  this.baseComponent.setEventEmitter(this.apiErrorEvent);
9060
9061
  }
9061
9062
  howToDoneEvent() {