@ekyc_qoobiss/qbs-ect-cmp 3.6.32 → 3.6.34
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/dist/cjs/agreement-check_19.cjs.entry.js +3 -3
- package/dist/collection/components/common/selfie-tilt/selfie-tilt.js +1 -2
- package/dist/collection/components/flow/mobile-redirect/mobile-redirect.js +1 -1
- package/dist/esm/agreement-check_19.entry.js +3 -3
- package/dist/qbs-ect-cmp/{p-ad31d837.entry.js → p-c50db7e7.entry.js} +1 -1
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -1
- package/dist/types/models/ITranslationValues.d.ts +2 -1
- package/package.json +1 -1
|
@@ -5541,7 +5541,7 @@ function v4(options, buf, offset) {
|
|
|
5541
5541
|
}
|
|
5542
5542
|
|
|
5543
5543
|
const name = "@ekyc_qoobiss/qbs-ect-cmp";
|
|
5544
|
-
const version$1 = "3.6.
|
|
5544
|
+
const version$1 = "3.6.34";
|
|
5545
5545
|
const description = "Person Identification Component";
|
|
5546
5546
|
const main = "./dist/index.cjs.js";
|
|
5547
5547
|
const module$1 = "./dist/index.js";
|
|
@@ -8890,7 +8890,7 @@ const MobileRedirect = class {
|
|
|
8890
8890
|
ev.target.value = this.contact;
|
|
8891
8891
|
}
|
|
8892
8892
|
render() {
|
|
8893
|
-
return (index.h("div", { class: "container" }, index.h("div", { class: "row" }, index.h("div", { hidden: this.waitingMobile }, index.h("div", { class: "text-center" }, index.h("p", { class: "font-size-2" }, this.infoTextTop)), index.h("div", { class: "qr-canvas align-center" }, index.h("img", { src: this.qrCode })), index.h("div", { class: "text-center" }, index.h("p", { class: "font-size-2" }, this.infoTextBottom)), index.h("div", { class: "input-container mb-15" }, index.h("label", { class: "font-size-18 mb-1 color-red", hidden: this.invalidValue == false }, index.h("b", null, this.translations.MobileRedirectValues.Validation)), index.h("input", { type: "text", id: "codeInput", class: "main-input", disabled: this.prefilledPhone, value: this.contact, onInput: ev => this.handleChangeContact(ev) })), index.h("div", { class: "pos-relative" }, index.h("div", { class: "btn-buletin" }, index.h("button", { class: "main-button", onClick: () => this.buttonClick() },
|
|
8893
|
+
return (index.h("div", { class: "container" }, index.h("div", { class: "row" }, index.h("div", { hidden: this.waitingMobile }, index.h("div", { class: "text-center" }, index.h("p", { class: "font-size-2" }, this.infoTextTop)), index.h("div", { class: "qr-canvas align-center" }, index.h("img", { src: this.qrCode })), index.h("div", { class: "text-center" }, index.h("p", { class: "font-size-2" }, this.infoTextBottom)), index.h("div", { class: "input-container mb-15" }, index.h("label", { class: "font-size-18 mb-1 color-red", hidden: this.invalidValue == false }, index.h("b", null, this.translations.MobileRedirectValues.Validation)), index.h("input", { type: "text", id: "codeInput", class: "main-input", disabled: this.prefilledPhone, value: this.contact, onInput: ev => this.handleChangeContact(ev) })), index.h("div", { class: "pos-relative" }, index.h("div", { class: "btn-buletin" }, index.h("button", { class: "main-button", onClick: () => this.buttonClick() }, this.translations.MobileRedirectValues.Send), index.h("p", { class: "main-text font-size-18 text-right mb-0" }, this.translations.GlobalValues.FooterText)))), index.h("div", { hidden: this.waitingMobile == false }, index.h("div", { class: "text-center" }, index.h("p", { class: "font-size-2" }, this.infoTextTop))))));
|
|
8894
8894
|
}
|
|
8895
8895
|
};
|
|
8896
8896
|
MobileRedirect.style = mobileRedirectCss;
|
|
@@ -9353,7 +9353,7 @@ const SelfieTilt = class {
|
|
|
9353
9353
|
async componentDidLoad() {
|
|
9354
9354
|
this.mainStream = Stream.getInstance(VerificationMode.Tilt);
|
|
9355
9355
|
await this.baseComponent.logStep(TranslationUtils.FlowSteps.SelfieTilt, TranslationUtils.FlowMoments.Initialized);
|
|
9356
|
-
this.titleMesage = this.translations.SelfieCaptureValues.FacePoseMapping[
|
|
9356
|
+
this.titleMesage = this.translations.SelfieCaptureValues.FacePoseMapping[this.mainStream.facePose];
|
|
9357
9357
|
this.demoEnded = false;
|
|
9358
9358
|
this.demoVideo.src = TranslationUtils.SelfieCaptureValues.FacePoseDemoMapping[this.mainStream.facePose];
|
|
9359
9359
|
this.demoVideo.play();
|
|
@@ -8,7 +8,6 @@ import store from '../../../helpers/store';
|
|
|
8
8
|
import { BaseComponent } from '../../base-component';
|
|
9
9
|
import { FlowMoments, FlowSteps } from '../../../models/FlowSteps';
|
|
10
10
|
import { VerificationMode } from '../../../models/IVerificationMode';
|
|
11
|
-
import { FacePose } from '../../../libs/FaceML5Detector/FacePose';
|
|
12
11
|
import { Translations } from '../../../helpers/TranslationUtils';
|
|
13
12
|
export class SelfieTilt {
|
|
14
13
|
// @State() private animationPath: string;
|
|
@@ -51,7 +50,7 @@ export class SelfieTilt {
|
|
|
51
50
|
async componentDidLoad() {
|
|
52
51
|
this.mainStream = Stream.getInstance(VerificationMode.Tilt);
|
|
53
52
|
await this.baseComponent.logStep(FlowSteps.SelfieTilt, FlowMoments.Initialized);
|
|
54
|
-
this.titleMesage = this.translations.SelfieCaptureValues.FacePoseMapping[
|
|
53
|
+
this.titleMesage = this.translations.SelfieCaptureValues.FacePoseMapping[this.mainStream.facePose];
|
|
55
54
|
this.demoEnded = false;
|
|
56
55
|
this.demoVideo.src = SelfieCaptureValues.FacePoseDemoMapping[this.mainStream.facePose];
|
|
57
56
|
this.demoVideo.play();
|
|
@@ -98,7 +98,7 @@ export class MobileRedirect {
|
|
|
98
98
|
ev.target.value = this.contact;
|
|
99
99
|
}
|
|
100
100
|
render() {
|
|
101
|
-
return (h("div", { class: "container" }, h("div", { class: "row" }, h("div", { hidden: this.waitingMobile }, h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextTop)), h("div", { class: "qr-canvas align-center" }, h("img", { src: this.qrCode })), h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextBottom)), h("div", { class: "input-container mb-15" }, h("label", { class: "font-size-18 mb-1 color-red", hidden: this.invalidValue == false }, h("b", null, this.translations.MobileRedirectValues.Validation)), h("input", { type: "text", id: "codeInput", class: "main-input", disabled: this.prefilledPhone, value: this.contact, onInput: ev => this.handleChangeContact(ev) })), h("div", { class: "pos-relative" }, h("div", { class: "btn-buletin" }, h("button", { class: "main-button", onClick: () => this.buttonClick() },
|
|
101
|
+
return (h("div", { class: "container" }, h("div", { class: "row" }, h("div", { hidden: this.waitingMobile }, h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextTop)), h("div", { class: "qr-canvas align-center" }, h("img", { src: this.qrCode })), h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextBottom)), h("div", { class: "input-container mb-15" }, h("label", { class: "font-size-18 mb-1 color-red", hidden: this.invalidValue == false }, h("b", null, this.translations.MobileRedirectValues.Validation)), h("input", { type: "text", id: "codeInput", class: "main-input", disabled: this.prefilledPhone, value: this.contact, onInput: ev => this.handleChangeContact(ev) })), h("div", { class: "pos-relative" }, h("div", { class: "btn-buletin" }, h("button", { class: "main-button", onClick: () => this.buttonClick() }, this.translations.MobileRedirectValues.Send), h("p", { class: "main-text font-size-18 text-right mb-0" }, this.translations.GlobalValues.FooterText)))), h("div", { hidden: this.waitingMobile == false }, h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextTop))))));
|
|
102
102
|
}
|
|
103
103
|
static get is() { return "mobile-redirect"; }
|
|
104
104
|
static get originalStyleUrls() {
|
|
@@ -5537,7 +5537,7 @@ function v4(options, buf, offset) {
|
|
|
5537
5537
|
}
|
|
5538
5538
|
|
|
5539
5539
|
const name = "@ekyc_qoobiss/qbs-ect-cmp";
|
|
5540
|
-
const version$1 = "3.6.
|
|
5540
|
+
const version$1 = "3.6.34";
|
|
5541
5541
|
const description = "Person Identification Component";
|
|
5542
5542
|
const main = "./dist/index.cjs.js";
|
|
5543
5543
|
const module = "./dist/index.js";
|
|
@@ -8886,7 +8886,7 @@ const MobileRedirect = class {
|
|
|
8886
8886
|
ev.target.value = this.contact;
|
|
8887
8887
|
}
|
|
8888
8888
|
render() {
|
|
8889
|
-
return (h("div", { class: "container" }, h("div", { class: "row" }, h("div", { hidden: this.waitingMobile }, h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextTop)), h("div", { class: "qr-canvas align-center" }, h("img", { src: this.qrCode })), h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextBottom)), h("div", { class: "input-container mb-15" }, h("label", { class: "font-size-18 mb-1 color-red", hidden: this.invalidValue == false }, h("b", null, this.translations.MobileRedirectValues.Validation)), h("input", { type: "text", id: "codeInput", class: "main-input", disabled: this.prefilledPhone, value: this.contact, onInput: ev => this.handleChangeContact(ev) })), h("div", { class: "pos-relative" }, h("div", { class: "btn-buletin" }, h("button", { class: "main-button", onClick: () => this.buttonClick() },
|
|
8889
|
+
return (h("div", { class: "container" }, h("div", { class: "row" }, h("div", { hidden: this.waitingMobile }, h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextTop)), h("div", { class: "qr-canvas align-center" }, h("img", { src: this.qrCode })), h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextBottom)), h("div", { class: "input-container mb-15" }, h("label", { class: "font-size-18 mb-1 color-red", hidden: this.invalidValue == false }, h("b", null, this.translations.MobileRedirectValues.Validation)), h("input", { type: "text", id: "codeInput", class: "main-input", disabled: this.prefilledPhone, value: this.contact, onInput: ev => this.handleChangeContact(ev) })), h("div", { class: "pos-relative" }, h("div", { class: "btn-buletin" }, h("button", { class: "main-button", onClick: () => this.buttonClick() }, this.translations.MobileRedirectValues.Send), h("p", { class: "main-text font-size-18 text-right mb-0" }, this.translations.GlobalValues.FooterText)))), h("div", { hidden: this.waitingMobile == false }, h("div", { class: "text-center" }, h("p", { class: "font-size-2" }, this.infoTextTop))))));
|
|
8890
8890
|
}
|
|
8891
8891
|
};
|
|
8892
8892
|
MobileRedirect.style = mobileRedirectCss;
|
|
@@ -9349,7 +9349,7 @@ const SelfieTilt = class {
|
|
|
9349
9349
|
async componentDidLoad() {
|
|
9350
9350
|
this.mainStream = Stream.getInstance(VerificationMode.Tilt);
|
|
9351
9351
|
await this.baseComponent.logStep(FlowSteps.SelfieTilt, FlowMoments.Initialized);
|
|
9352
|
-
this.titleMesage = this.translations.SelfieCaptureValues.FacePoseMapping[
|
|
9352
|
+
this.titleMesage = this.translations.SelfieCaptureValues.FacePoseMapping[this.mainStream.facePose];
|
|
9353
9353
|
this.demoEnded = false;
|
|
9354
9354
|
this.demoVideo.src = SelfieCaptureValues.FacePoseDemoMapping[this.mainStream.facePose];
|
|
9355
9355
|
this.demoVideo.play();
|