@ekyc_qoobiss/qbs-ect-cmp 3.6.27 → 3.6.29
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/TranslationUtils-b918ffb1.js +346 -0
- package/dist/cjs/agreement-check_19.cjs.entry.js +9997 -0
- package/dist/cjs/index-41696e0e.js +1573 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader-dots.cjs.entry.js +19 -0
- package/dist/cjs/loader.cjs.js +22 -0
- package/dist/cjs/qbs-ect-cmp.cjs.js +23 -0
- package/dist/cjs/random-actions.cjs.entry.js +22 -0
- package/dist/collection/assets/canvas-masks/face_green.svg +8 -0
- package/dist/collection/assets/canvas-masks/face_white.svg +8 -0
- package/dist/collection/assets/canvas-masks/id_green.svg +6 -0
- package/dist/collection/assets/canvas-masks/id_white.svg +6 -0
- package/dist/collection/assets/complete.svg +4 -0
- package/dist/collection/assets/landing/device.svg +14 -0
- package/dist/collection/assets/landing/id.svg +3 -0
- package/dist/collection/assets/landing/info.svg +3 -0
- package/dist/collection/assets/landing/validation.svg +16 -0
- package/dist/collection/assets/loader.svg +29 -0
- package/dist/collection/collection-manifest.json +32 -0
- package/dist/collection/components/base-component.js +59 -0
- package/dist/collection/components/common/agreement-check/agreement-check.css +0 -0
- package/dist/collection/components/common/agreement-check/agreement-check.js +108 -0
- package/dist/collection/components/common/camera-error/camera-error.css +0 -0
- package/dist/collection/components/common/camera-error/camera-error.js +93 -0
- package/dist/collection/components/common/capture-error/capture-error.css +0 -0
- package/dist/collection/components/common/capture-error/capture-error.js +102 -0
- package/dist/collection/components/common/how-to-info/how-to-info.css +0 -0
- package/dist/collection/components/common/how-to-info/how-to-info.js +123 -0
- package/dist/collection/components/common/id-back-capture/id-back-capture.css +35 -0
- package/dist/{qbs-ect-cmp/id-back-capture.entry.js → collection/components/common/id-back-capture/id-back-capture.js} +102 -30
- package/dist/collection/components/common/id-capture/id-capture.css +35 -0
- package/dist/{qbs-ect-cmp/id-capture.entry.js → collection/components/common/id-capture/id-capture.js} +100 -28
- package/dist/collection/components/common/id-tilt/id-tilt.css +35 -0
- package/dist/{qbs-ect-cmp/id-tilt.entry.js → collection/components/common/id-tilt/id-tilt.js} +100 -28
- package/dist/collection/components/common/random-actions/random-actions.css +0 -0
- package/dist/collection/components/common/random-actions/random-actions.js +23 -0
- package/dist/collection/components/common/selfie-capture/selfie-capture.css +7 -0
- package/dist/{qbs-ect-cmp/selfie-capture.entry.js → collection/components/common/selfie-capture/selfie-capture.js} +102 -29
- package/dist/collection/components/common/selfie-tilt/selfie-tilt.css +7 -0
- package/dist/{qbs-ect-cmp/selfie-tilt.entry.js → collection/components/common/selfie-tilt/selfie-tilt.js} +103 -30
- package/dist/collection/components/controls/camera/camera.css +47 -0
- package/dist/collection/components/controls/camera/camera.js +289 -0
- package/dist/collection/components/controls/loader-dots/loader-dots.css +61 -0
- package/dist/collection/components/controls/loader-dots/loader-dots.js +18 -0
- package/dist/collection/components/flow/agreement-info/agreement-info.css +0 -0
- package/dist/collection/components/flow/agreement-info/agreement-info.js +107 -0
- package/dist/collection/components/flow/end-redirect/end-redirect.css +128 -0
- package/dist/collection/components/flow/end-redirect/end-redirect.js +48 -0
- package/dist/collection/components/flow/error-end/error-end.css +0 -0
- package/dist/collection/components/flow/error-end/error-end.js +61 -0
- package/dist/collection/components/flow/landing-validation/landing-validation.css +0 -0
- package/dist/collection/components/flow/landing-validation/landing-validation.js +124 -0
- package/dist/collection/components/flow/mobile-redirect/mobile-redirect.css +10 -0
- package/dist/collection/components/flow/mobile-redirect/mobile-redirect.js +145 -0
- package/dist/collection/components/flow/process-id/process-id.css +0 -0
- package/dist/{qbs-ect-cmp/process-id.entry.js → collection/components/flow/process-id/process-id.js} +100 -32
- package/dist/collection/components/flow/sms-code-validation/sms-code-validation.css +0 -0
- package/dist/collection/components/flow/sms-code-validation/sms-code-validation.js +141 -0
- package/dist/collection/components/flow/user-liveness/user-liveness.css +0 -0
- package/dist/{qbs-ect-cmp/user-liveness.entry.js → collection/components/flow/user-liveness/user-liveness.js} +91 -25
- package/dist/collection/components/identification-component/identification-component.css +991 -0
- package/dist/collection/components/identification-component/identification-component.js +408 -0
- package/dist/collection/global.js +0 -0
- package/dist/collection/helpers/ApiCall.js +223 -0
- package/dist/{qbs-ect-cmp/Cameras-dfbebc29.js → collection/helpers/Cameras.js} +6 -9
- package/dist/collection/helpers/DeviceDetection.js +85 -0
- package/dist/collection/helpers/Events.js +58 -0
- package/dist/collection/helpers/ML5.js +38 -0
- package/dist/collection/helpers/Stream.js +229 -0
- package/dist/collection/helpers/TranslationUtils.js +37 -0
- package/dist/collection/helpers/canvas.js +10 -0
- package/dist/collection/helpers/index.js +21 -0
- package/dist/collection/helpers/security.js +25 -0
- package/dist/collection/helpers/store.js +48 -0
- package/dist/collection/helpers/textValues.js +48 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/libs/FaceML5Detector/FaceML5Detector.js +182 -0
- package/dist/collection/libs/FaceML5Detector/FacePose.js +85 -0
- package/dist/collection/libs/IDML5Detector/IDML5Detector.js +99 -0
- package/dist/{qbs-ect-cmp/IDPose-181bcb25.js → collection/libs/IDML5Detector/IDPose.js} +2 -4
- package/dist/{qbs-ect-cmp/CaptureFlow-db5d90a4.js → collection/models/CaptureFlow.js} +4 -6
- package/dist/collection/models/FlowStatus.js +14 -0
- package/dist/collection/models/FlowSteps.js +30 -0
- package/dist/collection/models/IAbortResult.js +1 -0
- package/dist/collection/models/IAddRequest.js +1 -0
- package/dist/collection/models/IAgreement.js +1 -0
- package/dist/collection/models/ICamera.js +1 -0
- package/dist/{qbs-ect-cmp/IDevice-15ecfdeb.js → collection/models/IDevice.js} +4 -6
- package/dist/collection/models/IEctStore.js +1 -0
- package/dist/collection/models/IGeneration.js +1 -0
- package/dist/collection/models/ILinkSend.js +1 -0
- package/dist/collection/models/ILogResult.js +1 -0
- package/dist/collection/models/IOrderStatus.js +1 -0
- package/dist/collection/models/IOtpCheck.js +1 -0
- package/dist/collection/models/IOtpSend.js +1 -0
- package/dist/collection/models/ITranslationValues.js +1 -0
- package/dist/collection/models/IUploadFile.js +1 -0
- package/dist/collection/models/IVerificationMode.js +5 -0
- package/dist/collection/models/OrderStatuses.js +8 -0
- package/dist/{qbs-ect-cmp/utils-8225f0b7.js → collection/utils/utils.js} +8 -10
- package/dist/{qbs-ect-cmp/textValues-6bcc85dd.js → esm/TranslationUtils-8ceeb437.js} +84 -47
- package/dist/esm/agreement-check_19.entry.js +9975 -0
- package/dist/esm/index-cf54a432.js +1543 -0
- package/dist/esm/index.js +1 -0
- package/dist/{qbs-ect-cmp → esm}/loader-dots.entry.js +1 -1
- package/dist/esm/loader.js +18 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/qbs-ect-cmp.js +18 -0
- package/dist/{qbs-ect-cmp → esm}/random-actions.entry.js +6 -9
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/loader/cdn.js +3 -0
- package/dist/loader/index.cjs.js +3 -0
- package/dist/loader/index.d.ts +21 -0
- package/dist/loader/index.es2017.js +3 -0
- package/dist/loader/index.js +4 -0
- package/dist/loader/package.json +11 -0
- package/dist/qbs-ect-cmp/index.esm.js +0 -1
- package/dist/qbs-ect-cmp/p-054dc5b3.entry.js +1 -0
- package/dist/qbs-ect-cmp/p-473a4636.entry.js +1 -0
- package/dist/qbs-ect-cmp/p-8942656c.js +2 -0
- package/dist/qbs-ect-cmp/p-b2c9c8d7.entry.js +1373 -0
- package/dist/qbs-ect-cmp/p-e568a07c.js +1 -0
- package/dist/qbs-ect-cmp/qbs-ect-cmp.css +1 -320
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -148
- package/dist/types/components/base-component.d.ts +0 -2
- package/dist/types/components/common/agreement-check/agreement-check.d.ts +2 -0
- package/dist/types/components/common/camera-error/camera-error.d.ts +1 -0
- package/dist/types/components/common/capture-error/capture-error.d.ts +1 -0
- package/dist/types/components/common/how-to-info/how-to-info.d.ts +2 -1
- package/dist/types/components/common/id-back-capture/id-back-capture.d.ts +1 -0
- package/dist/types/components/common/id-capture/id-capture.d.ts +1 -0
- package/dist/types/components/common/id-tilt/id-tilt.d.ts +1 -0
- package/dist/types/components/common/random-actions/random-actions.d.ts +2 -2
- package/dist/types/components/common/selfie-capture/selfie-capture.d.ts +2 -1
- package/dist/types/components/common/selfie-tilt/selfie-tilt.d.ts +2 -1
- package/dist/types/components/flow/agreement-info/agreement-info.d.ts +2 -1
- package/dist/types/components/flow/end-redirect/end-redirect.d.ts +2 -1
- package/dist/types/components/flow/landing-validation/landing-validation.d.ts +1 -0
- package/dist/types/components/flow/mobile-redirect/mobile-redirect.d.ts +1 -0
- package/dist/types/components/flow/sms-code-validation/sms-code-validation.d.ts +2 -1
- package/package.json +1 -1
- package/dist/qbs-ect-cmp/ML5-657ef934.js +0 -1370
- package/dist/qbs-ect-cmp/Stream-b867a2be.js +0 -3104
- package/dist/qbs-ect-cmp/_commonjsHelpers-321aa363.js +0 -44
- package/dist/qbs-ect-cmp/agreement-check.entry.js +0 -41
- package/dist/qbs-ect-cmp/agreement-info.entry.js +0 -66
- package/dist/qbs-ect-cmp/app-globals-0f993ce5.js +0 -3
- package/dist/qbs-ect-cmp/base-component-2e490fd9.js +0 -502
- package/dist/qbs-ect-cmp/camera-comp.entry.js +0 -103
- package/dist/qbs-ect-cmp/camera-error.entry.js +0 -59
- package/dist/qbs-ect-cmp/capture-error.entry.js +0 -53
- package/dist/qbs-ect-cmp/css-shim-b7d3d95f.js +0 -4
- package/dist/qbs-ect-cmp/dom-64053c71.js +0 -73
- package/dist/qbs-ect-cmp/end-redirect.entry.js +0 -25
- package/dist/qbs-ect-cmp/error-end.entry.js +0 -19
- package/dist/qbs-ect-cmp/how-to-info.entry.js +0 -52
- package/dist/qbs-ect-cmp/identification-component.entry.js +0 -909
- package/dist/qbs-ect-cmp/index-78a05b9e.js +0 -3371
- package/dist/qbs-ect-cmp/landing-validation.entry.js +0 -90
- package/dist/qbs-ect-cmp/mobile-redirect.entry.js +0 -2984
- package/dist/qbs-ect-cmp/shadow-css-98135883.js +0 -387
- package/dist/qbs-ect-cmp/sms-code-validation.entry.js +0 -106
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as t,f as e}from"./p-8942656c.js";const s=t=>!("isConnected"in t)||t.isConnected,i=(()=>{let t;return(...e)=>{t&&clearTimeout(t),t=setTimeout((()=>{t=0,(t=>{for(let e of t.keys())t.set(e,t.get(e).filter(s))})(...e)}),2e3)}})(),n=t=>"function"==typeof t?t():t;var o;!function(t){t[t.LANDING=0]="LANDING",t[t.AGREEMENT=1]="AGREEMENT",t[t.PHONE=2]="PHONE",t[t.CODE=3]="CODE",t[t.CODEERROR=4]="CODEERROR",t[t.ID=5]="ID",t[t.LIVENESS=6]="LIVENESS",t[t.COMPLETE=7]="COMPLETE",t[t.ERROREND=8]="ERROREND",t[t.CAMERAERROR=9]="CAMERAERROR",t[t.NONE=10]="NONE"}(o||(o={}));class a{}a.IDPoseDemoMapping={0:"https://ekyc.blob.core.windows.net/$web/animations/id/id_front.mp4",1:"https://ekyc.blob.core.windows.net/$web/animations/id/id_front_tilt.mp4",2:"https://ekyc.blob.core.windows.net/$web/animations/id/id_rotate.mp4",3:"https://ekyc.blob.core.windows.net/$web/animations/id/id_back.mp4",4:"https://ekyc.blob.core.windows.net/$web/animations/id/id_back_tilt.mp4"};class r{}r.FacePoseDemoMapping={0:"https://ekyc.blob.core.windows.net/$web/animations/selfie/selfie_rotate_left.mp4",1:"https://ekyc.blob.core.windows.net/$web/animations/selfie/selfie_rotate_right.mp4",2:"https://ekyc.blob.core.windows.net/$web/animations/selfie/selfie_tilt_back.mp4",3:"https://ekyc.blob.core.windows.net/$web/animations/selfie/selfie_tilt_front.mp4",4:"https://ekyc.blob.core.windows.net/$web/animations/selfie/selfie_main.mp4"};class c{}c.FlowStatusKey="qbs-ect-flowstatus",c.RequestIdKey="qbs-ect-requestid",c.TokenKey="qbs-ect-token",c.InitialisedKey="qbs-ect-initialised",c.HasIdBackKey="qbs-ect-has-id-back",c.AgreementValidationKey="qbs-ect-agreement-validation",c.PhoneValidationKey="qbs-ect-phone-validation",c.RefreshDoneKey="qbs-ect-refresh-done";class l{constructor(){this.uriEnv="/",this.uriEnv="QA"==d.environment?"/dev_":"/",this.OtpSend=this.uriEnv+"validation/otp/send",this.OtpCheck=this.uriEnv+"validation/otp/check",this.IdentityInsert=this.uriEnv+"validation/identity/insert",this.UploadCapture=this.uriEnv+"validation/upload/capture",this.GetAgreement=this.uriEnv+"validation/agreement/content",this.GenerateAgreement=this.uriEnv+"validation/agreement/generate",this.SendLink=this.uriEnv+"validation/otp/sendlink",this.GetStatus=this.uriEnv+"validation/identity/status",this.AddLog=this.uriEnv+"validation/logs/add",this.AddStep=this.uriEnv+"validation/logs/step",this.AbortRequest=this.uriEnv+"validation/identity/abort"}}const{state:d,onChange:h}=(()=>{const s=((t,e=((t,e)=>t!==e))=>{const s=n(t);let i=new Map(Object.entries(null!=s?s:{}));const o={dispose:[],get:[],set:[],reset:[]},a=()=>{var e;i=new Map(Object.entries(null!==(e=n(t))&&void 0!==e?e:{})),o.reset.forEach((t=>t()))},r=t=>(o.get.forEach((e=>e(t))),i.get(t)),c=(t,s)=>{const n=i.get(t);e(s,n,t)&&(i.set(t,s),o.set.forEach((e=>e(t,s,n))))},l="undefined"==typeof Proxy?{}:new Proxy(s,{get:(t,e)=>r(e),ownKeys:()=>Array.from(i.keys()),getOwnPropertyDescriptor:()=>({enumerable:!0,configurable:!0}),has:(t,e)=>i.has(e),set:(t,e,s)=>(c(e,s),!0)}),d=(t,e)=>(o[t].push(e),()=>{((t,e)=>{const s=t.indexOf(e);s>=0&&(t[s]=t[t.length-1],t.length--)})(o[t],e)});return{state:l,get:r,set:c,on:d,onChange:(e,s)=>{const i=d("set",((t,i)=>{t===e&&s(i)})),o=d("reset",(()=>s(n(t)[e])));return()=>{i(),o()}},use:(...t)=>{const e=t.reduce(((t,e)=>(e.set&&t.push(d("set",e.set)),e.get&&t.push(d("get",e.get)),e.reset&&t.push(d("reset",e.reset)),e.dispose&&t.push(d("dispose",e.dispose)),t)),[]);return()=>e.forEach((t=>t()))},dispose:()=>{o.dispose.forEach((t=>t())),a()},reset:a,forceUpdate:t=>{const e=i.get(t);o.set.forEach((s=>s(t,e,e)))}}})({flowStatus:o.NONE,environment:"PROD",debug:!1,requestId:"",redirectId:"",initialised:!1,token:"",cameraIds:[],cameraId:"",hasIdBack:!1,hasSelfieGesture:!1,hasIdTilt:!1,agreementsValidation:!0,phoneValidation:!0,phoneNumber:"",apiBaseUrl:"https://apiro.id-kyc.com",device:null,langIso:"ro"},void 0);return s.use((()=>{if("function"!=typeof t)return{};const s=new Map;return{dispose:()=>s.clear(),get:e=>{const i=t();i&&((t,e,s)=>{const i=t.get(e);i?i.includes(s)||i.push(s):t.set(e,[s])})(s,e,i)},set:t=>{const n=s.get(t);n&&s.set(t,n.filter(e)),i(s)},reset:()=>{s.forEach((t=>t.forEach(e))),i(s)}}})()),s})();h("environment",(t=>{d.debug="QA"==t})),h("flowStatus",(t=>{sessionStorage.setItem(c.FlowStatusKey,o[t])})),h("token",(t=>{sessionStorage.setItem(c.TokenKey,t)})),h("requestId",(t=>{sessionStorage.setItem(c.RequestIdKey,t)})),h("initialised",(t=>{sessionStorage.setItem(c.InitialisedKey,String(t))})),h("hasIdBack",(t=>{sessionStorage.setItem(c.HasIdBackKey,String(t))})),h("agreementsValidation",(t=>{sessionStorage.setItem(c.AgreementValidationKey,String(t))})),h("phoneValidation",(t=>{sessionStorage.setItem(c.PhoneValidationKey,String(t))}));const b=new class{async getValues(){return this.values||(this.values=await this.fetchTranslations()),this.values}getLocale(t=document.body){const e=t.closest("[lang]");return e?e.lang:d.langIso}async fetchTranslations(){const t=this.getLocale(),e=JSON.parse(sessionStorage.getItem(`i18n.${t}`));if(e&&Object.keys(e).length>0)return e;try{const e=await fetch(`/i18n/${t}.json`);if(e.ok){const s=await e.json();return sessionStorage.setItem(`i18n.${t}`,JSON.stringify(s)),s}}catch(e){console.error(`Error loading locale: ${t}`,e)}}};export{l as A,o as F,a as I,c as S,b as T,r as a,d as s}
|
|
@@ -1,320 +1 @@
|
|
|
1
|
-
/* inter-cyrillic-ext-400-normal*/
|
|
2
|
-
@font-face {
|
|
3
|
-
font-family: 'Inter';
|
|
4
|
-
font-style: normal;
|
|
5
|
-
font-display: swap;
|
|
6
|
-
font-weight: 400;
|
|
7
|
-
src: url('./files/inter-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
8
|
-
unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
|
|
9
|
-
}
|
|
10
|
-
/* inter-cyrillic-400-normal*/
|
|
11
|
-
@font-face {
|
|
12
|
-
font-family: 'Inter';
|
|
13
|
-
font-style: normal;
|
|
14
|
-
font-display: swap;
|
|
15
|
-
font-weight: 400;
|
|
16
|
-
src: url('./files/inter-cyrillic-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
17
|
-
unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
|
|
18
|
-
}
|
|
19
|
-
/* inter-greek-ext-400-normal*/
|
|
20
|
-
@font-face {
|
|
21
|
-
font-family: 'Inter';
|
|
22
|
-
font-style: normal;
|
|
23
|
-
font-display: swap;
|
|
24
|
-
font-weight: 400;
|
|
25
|
-
src: url('./files/inter-greek-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
26
|
-
unicode-range: U+1F00-1FFF;
|
|
27
|
-
}
|
|
28
|
-
/* inter-greek-400-normal*/
|
|
29
|
-
@font-face {
|
|
30
|
-
font-family: 'Inter';
|
|
31
|
-
font-style: normal;
|
|
32
|
-
font-display: swap;
|
|
33
|
-
font-weight: 400;
|
|
34
|
-
src: url('./files/inter-greek-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
35
|
-
unicode-range: U+0370-03FF;
|
|
36
|
-
}
|
|
37
|
-
/* inter-vietnamese-400-normal*/
|
|
38
|
-
@font-face {
|
|
39
|
-
font-family: 'Inter';
|
|
40
|
-
font-style: normal;
|
|
41
|
-
font-display: swap;
|
|
42
|
-
font-weight: 400;
|
|
43
|
-
src: url('./files/inter-vietnamese-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
44
|
-
unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
|
|
45
|
-
}
|
|
46
|
-
/* inter-latin-ext-400-normal*/
|
|
47
|
-
@font-face {
|
|
48
|
-
font-family: 'Inter';
|
|
49
|
-
font-style: normal;
|
|
50
|
-
font-display: swap;
|
|
51
|
-
font-weight: 400;
|
|
52
|
-
src: url('./files/inter-latin-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
53
|
-
unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
|
|
54
|
-
}
|
|
55
|
-
/* inter-latin-400-normal*/
|
|
56
|
-
@font-face {
|
|
57
|
-
font-family: 'Inter';
|
|
58
|
-
font-style: normal;
|
|
59
|
-
font-display: swap;
|
|
60
|
-
font-weight: 400;
|
|
61
|
-
src: url('./files/inter-latin-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
62
|
-
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
/* inter-cyrillic-ext-900-normal*/
|
|
66
|
-
@font-face {
|
|
67
|
-
font-family: 'Inter';
|
|
68
|
-
font-style: normal;
|
|
69
|
-
font-display: swap;
|
|
70
|
-
font-weight: 900;
|
|
71
|
-
src: url('./files/inter-cyrillic-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
|
|
72
|
-
unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
|
|
73
|
-
}
|
|
74
|
-
/* inter-cyrillic-900-normal*/
|
|
75
|
-
@font-face {
|
|
76
|
-
font-family: 'Inter';
|
|
77
|
-
font-style: normal;
|
|
78
|
-
font-display: swap;
|
|
79
|
-
font-weight: 900;
|
|
80
|
-
src: url('./files/inter-cyrillic-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
|
|
81
|
-
unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
|
|
82
|
-
}
|
|
83
|
-
/* inter-greek-ext-900-normal*/
|
|
84
|
-
@font-face {
|
|
85
|
-
font-family: 'Inter';
|
|
86
|
-
font-style: normal;
|
|
87
|
-
font-display: swap;
|
|
88
|
-
font-weight: 900;
|
|
89
|
-
src: url('./files/inter-greek-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
|
|
90
|
-
unicode-range: U+1F00-1FFF;
|
|
91
|
-
}
|
|
92
|
-
/* inter-greek-900-normal*/
|
|
93
|
-
@font-face {
|
|
94
|
-
font-family: 'Inter';
|
|
95
|
-
font-style: normal;
|
|
96
|
-
font-display: swap;
|
|
97
|
-
font-weight: 900;
|
|
98
|
-
src: url('./files/inter-greek-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
|
|
99
|
-
unicode-range: U+0370-03FF;
|
|
100
|
-
}
|
|
101
|
-
/* inter-vietnamese-900-normal*/
|
|
102
|
-
@font-face {
|
|
103
|
-
font-family: 'Inter';
|
|
104
|
-
font-style: normal;
|
|
105
|
-
font-display: swap;
|
|
106
|
-
font-weight: 900;
|
|
107
|
-
src: url('./files/inter-vietnamese-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
|
|
108
|
-
unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
|
|
109
|
-
}
|
|
110
|
-
/* inter-latin-ext-900-normal*/
|
|
111
|
-
@font-face {
|
|
112
|
-
font-family: 'Inter';
|
|
113
|
-
font-style: normal;
|
|
114
|
-
font-display: swap;
|
|
115
|
-
font-weight: 900;
|
|
116
|
-
src: url('./files/inter-latin-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
|
|
117
|
-
unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
|
|
118
|
-
}
|
|
119
|
-
/* inter-latin-900-normal*/
|
|
120
|
-
@font-face {
|
|
121
|
-
font-family: 'Inter';
|
|
122
|
-
font-style: normal;
|
|
123
|
-
font-display: swap;
|
|
124
|
-
font-weight: 900;
|
|
125
|
-
src: url('./files/inter-latin-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');
|
|
126
|
-
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
/* inter-cyrillic-ext-700-normal*/
|
|
130
|
-
@font-face {
|
|
131
|
-
font-family: 'Inter';
|
|
132
|
-
font-style: normal;
|
|
133
|
-
font-display: swap;
|
|
134
|
-
font-weight: 700;
|
|
135
|
-
src: url('./files/inter-cyrillic-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
|
|
136
|
-
unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
|
|
137
|
-
}
|
|
138
|
-
/* inter-cyrillic-700-normal*/
|
|
139
|
-
@font-face {
|
|
140
|
-
font-family: 'Inter';
|
|
141
|
-
font-style: normal;
|
|
142
|
-
font-display: swap;
|
|
143
|
-
font-weight: 700;
|
|
144
|
-
src: url('./files/inter-cyrillic-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
|
|
145
|
-
unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
|
|
146
|
-
}
|
|
147
|
-
/* inter-greek-ext-700-normal*/
|
|
148
|
-
@font-face {
|
|
149
|
-
font-family: 'Inter';
|
|
150
|
-
font-style: normal;
|
|
151
|
-
font-display: swap;
|
|
152
|
-
font-weight: 700;
|
|
153
|
-
src: url('./files/inter-greek-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
|
|
154
|
-
unicode-range: U+1F00-1FFF;
|
|
155
|
-
}
|
|
156
|
-
/* inter-greek-700-normal*/
|
|
157
|
-
@font-face {
|
|
158
|
-
font-family: 'Inter';
|
|
159
|
-
font-style: normal;
|
|
160
|
-
font-display: swap;
|
|
161
|
-
font-weight: 700;
|
|
162
|
-
src: url('./files/inter-greek-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
|
|
163
|
-
unicode-range: U+0370-03FF;
|
|
164
|
-
}
|
|
165
|
-
/* inter-vietnamese-700-normal*/
|
|
166
|
-
@font-face {
|
|
167
|
-
font-family: 'Inter';
|
|
168
|
-
font-style: normal;
|
|
169
|
-
font-display: swap;
|
|
170
|
-
font-weight: 700;
|
|
171
|
-
src: url('./files/inter-vietnamese-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
|
|
172
|
-
unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
|
|
173
|
-
}
|
|
174
|
-
/* inter-latin-ext-700-normal*/
|
|
175
|
-
@font-face {
|
|
176
|
-
font-family: 'Inter';
|
|
177
|
-
font-style: normal;
|
|
178
|
-
font-display: swap;
|
|
179
|
-
font-weight: 700;
|
|
180
|
-
src: url('./files/inter-latin-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
|
|
181
|
-
unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
|
|
182
|
-
}
|
|
183
|
-
/* inter-latin-700-normal*/
|
|
184
|
-
@font-face {
|
|
185
|
-
font-family: 'Inter';
|
|
186
|
-
font-style: normal;
|
|
187
|
-
font-display: swap;
|
|
188
|
-
font-weight: 700;
|
|
189
|
-
src: url('./files/inter-latin-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');
|
|
190
|
-
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
/* inter-cyrillic-ext-600-normal*/
|
|
194
|
-
@font-face {
|
|
195
|
-
font-family: 'Inter';
|
|
196
|
-
font-style: normal;
|
|
197
|
-
font-display: swap;
|
|
198
|
-
font-weight: 600;
|
|
199
|
-
src: url('./files/inter-cyrillic-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
|
|
200
|
-
unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
|
|
201
|
-
}
|
|
202
|
-
/* inter-cyrillic-600-normal*/
|
|
203
|
-
@font-face {
|
|
204
|
-
font-family: 'Inter';
|
|
205
|
-
font-style: normal;
|
|
206
|
-
font-display: swap;
|
|
207
|
-
font-weight: 600;
|
|
208
|
-
src: url('./files/inter-cyrillic-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
|
|
209
|
-
unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
|
|
210
|
-
}
|
|
211
|
-
/* inter-greek-ext-600-normal*/
|
|
212
|
-
@font-face {
|
|
213
|
-
font-family: 'Inter';
|
|
214
|
-
font-style: normal;
|
|
215
|
-
font-display: swap;
|
|
216
|
-
font-weight: 600;
|
|
217
|
-
src: url('./files/inter-greek-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
|
|
218
|
-
unicode-range: U+1F00-1FFF;
|
|
219
|
-
}
|
|
220
|
-
/* inter-greek-600-normal*/
|
|
221
|
-
@font-face {
|
|
222
|
-
font-family: 'Inter';
|
|
223
|
-
font-style: normal;
|
|
224
|
-
font-display: swap;
|
|
225
|
-
font-weight: 600;
|
|
226
|
-
src: url('./files/inter-greek-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
|
|
227
|
-
unicode-range: U+0370-03FF;
|
|
228
|
-
}
|
|
229
|
-
/* inter-vietnamese-600-normal*/
|
|
230
|
-
@font-face {
|
|
231
|
-
font-family: 'Inter';
|
|
232
|
-
font-style: normal;
|
|
233
|
-
font-display: swap;
|
|
234
|
-
font-weight: 600;
|
|
235
|
-
src: url('./files/inter-vietnamese-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
|
|
236
|
-
unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
|
|
237
|
-
}
|
|
238
|
-
/* inter-latin-ext-600-normal*/
|
|
239
|
-
@font-face {
|
|
240
|
-
font-family: 'Inter';
|
|
241
|
-
font-style: normal;
|
|
242
|
-
font-display: swap;
|
|
243
|
-
font-weight: 600;
|
|
244
|
-
src: url('./files/inter-latin-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
|
|
245
|
-
unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
|
|
246
|
-
}
|
|
247
|
-
/* inter-latin-600-normal*/
|
|
248
|
-
@font-face {
|
|
249
|
-
font-family: 'Inter';
|
|
250
|
-
font-style: normal;
|
|
251
|
-
font-display: swap;
|
|
252
|
-
font-weight: 600;
|
|
253
|
-
src: url('./files/inter-latin-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');
|
|
254
|
-
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
/* inter-cyrillic-ext-400-normal*/
|
|
258
|
-
@font-face {
|
|
259
|
-
font-family: 'Inter';
|
|
260
|
-
font-style: normal;
|
|
261
|
-
font-display: swap;
|
|
262
|
-
font-weight: 400;
|
|
263
|
-
src: url('./files/inter-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
264
|
-
unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
|
|
265
|
-
}
|
|
266
|
-
/* inter-cyrillic-400-normal*/
|
|
267
|
-
@font-face {
|
|
268
|
-
font-family: 'Inter';
|
|
269
|
-
font-style: normal;
|
|
270
|
-
font-display: swap;
|
|
271
|
-
font-weight: 400;
|
|
272
|
-
src: url('./files/inter-cyrillic-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
273
|
-
unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
|
|
274
|
-
}
|
|
275
|
-
/* inter-greek-ext-400-normal*/
|
|
276
|
-
@font-face {
|
|
277
|
-
font-family: 'Inter';
|
|
278
|
-
font-style: normal;
|
|
279
|
-
font-display: swap;
|
|
280
|
-
font-weight: 400;
|
|
281
|
-
src: url('./files/inter-greek-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
282
|
-
unicode-range: U+1F00-1FFF;
|
|
283
|
-
}
|
|
284
|
-
/* inter-greek-400-normal*/
|
|
285
|
-
@font-face {
|
|
286
|
-
font-family: 'Inter';
|
|
287
|
-
font-style: normal;
|
|
288
|
-
font-display: swap;
|
|
289
|
-
font-weight: 400;
|
|
290
|
-
src: url('./files/inter-greek-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
291
|
-
unicode-range: U+0370-03FF;
|
|
292
|
-
}
|
|
293
|
-
/* inter-vietnamese-400-normal*/
|
|
294
|
-
@font-face {
|
|
295
|
-
font-family: 'Inter';
|
|
296
|
-
font-style: normal;
|
|
297
|
-
font-display: swap;
|
|
298
|
-
font-weight: 400;
|
|
299
|
-
src: url('./files/inter-vietnamese-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
300
|
-
unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;
|
|
301
|
-
}
|
|
302
|
-
/* inter-latin-ext-400-normal*/
|
|
303
|
-
@font-face {
|
|
304
|
-
font-family: 'Inter';
|
|
305
|
-
font-style: normal;
|
|
306
|
-
font-display: swap;
|
|
307
|
-
font-weight: 400;
|
|
308
|
-
src: url('./files/inter-latin-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
309
|
-
unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
|
|
310
|
-
}
|
|
311
|
-
/* inter-latin-400-normal*/
|
|
312
|
-
@font-face {
|
|
313
|
-
font-family: 'Inter';
|
|
314
|
-
font-style: normal;
|
|
315
|
-
font-display: swap;
|
|
316
|
-
font-weight: 400;
|
|
317
|
-
src: url('./files/inter-latin-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');
|
|
318
|
-
unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
|
|
319
|
-
}
|
|
320
|
-
|
|
1
|
+
@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-cyrillic-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-greek-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-greek-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-vietnamese-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-latin-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-latin-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-cyrillic-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-cyrillic-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-greek-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-greek-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-vietnamese-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-latin-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-latin-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-cyrillic-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-cyrillic-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-greek-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-greek-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-vietnamese-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-latin-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-latin-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-cyrillic-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-cyrillic-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-greek-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-greek-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-vietnamese-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-latin-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-latin-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-cyrillic-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-greek-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-greek-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-vietnamese-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-latin-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-latin-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
|
|
@@ -1,148 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
export { s as setNonce } from './index-78a05b9e.js';
|
|
3
|
-
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
|
-
|
|
5
|
-
/*
|
|
6
|
-
Stencil Client Patch Browser v2.22.3 | MIT Licensed | https://stenciljs.com
|
|
7
|
-
*/
|
|
8
|
-
/**
|
|
9
|
-
* Helper method for querying a `meta` tag that contains a nonce value
|
|
10
|
-
* out of a DOM's head.
|
|
11
|
-
*
|
|
12
|
-
* @param doc The DOM containing the `head` to query against
|
|
13
|
-
* @returns The content of the meta tag representing the nonce value, or `undefined` if no tag
|
|
14
|
-
* exists or the tag has no content.
|
|
15
|
-
*/
|
|
16
|
-
function queryNonceMetaTagContent(doc) {
|
|
17
|
-
var _a, _b, _c;
|
|
18
|
-
return (_c = (_b = (_a = doc.head) === null || _a === void 0 ? void 0 : _a.querySelector('meta[name="csp-nonce"]')) === null || _b === void 0 ? void 0 : _b.getAttribute('content')) !== null && _c !== void 0 ? _c : undefined;
|
|
19
|
-
}
|
|
20
|
-
const getDynamicImportFunction = (namespace) => `__sc_import_${namespace.replace(/\s|-/g, '_')}`;
|
|
21
|
-
const patchBrowser = () => {
|
|
22
|
-
// NOTE!! This fn cannot use async/await!
|
|
23
|
-
if (BUILD.isDev && !BUILD.isTesting) {
|
|
24
|
-
consoleDevInfo('Running in development mode.');
|
|
25
|
-
}
|
|
26
|
-
if (BUILD.cssVarShim) {
|
|
27
|
-
// shim css vars
|
|
28
|
-
plt.$cssShim$ = win.__cssshim;
|
|
29
|
-
}
|
|
30
|
-
if (BUILD.cloneNodeFix) {
|
|
31
|
-
// opted-in to polyfill cloneNode() for slot polyfilled components
|
|
32
|
-
patchCloneNodeFix(H.prototype);
|
|
33
|
-
}
|
|
34
|
-
if (BUILD.profile && !performance.mark) {
|
|
35
|
-
// not all browsers support performance.mark/measure (Safari 10)
|
|
36
|
-
// because the mark/measure APIs are designed to write entries to a buffer in the browser that does not exist,
|
|
37
|
-
// simply stub the implementations out.
|
|
38
|
-
// TODO(STENCIL-323): Remove this patch when support for older browsers is removed (breaking)
|
|
39
|
-
// @ts-ignore
|
|
40
|
-
performance.mark = performance.measure = () => {
|
|
41
|
-
/*noop*/
|
|
42
|
-
};
|
|
43
|
-
performance.getEntriesByName = () => [];
|
|
44
|
-
}
|
|
45
|
-
// @ts-ignore
|
|
46
|
-
const scriptElm = BUILD.scriptDataOpts || BUILD.safari10 || BUILD.dynamicImportShim
|
|
47
|
-
? Array.from(doc.querySelectorAll('script')).find((s) => new RegExp(`\/${NAMESPACE}(\\.esm)?\\.js($|\\?|#)`).test(s.src) ||
|
|
48
|
-
s.getAttribute('data-stencil-namespace') === NAMESPACE)
|
|
49
|
-
: null;
|
|
50
|
-
const importMeta = import.meta.url;
|
|
51
|
-
const opts = BUILD.scriptDataOpts ? scriptElm['data-opts'] || {} : {};
|
|
52
|
-
if (BUILD.safari10 && 'onbeforeload' in scriptElm && !history.scrollRestoration /* IS_ESM_BUILD */) {
|
|
53
|
-
// Safari < v11 support: This IF is true if it's Safari below v11.
|
|
54
|
-
// This fn cannot use async/await since Safari didn't support it until v11,
|
|
55
|
-
// however, Safari 10 did support modules. Safari 10 also didn't support "nomodule",
|
|
56
|
-
// so both the ESM file and nomodule file would get downloaded. Only Safari
|
|
57
|
-
// has 'onbeforeload' in the script, and "history.scrollRestoration" was added
|
|
58
|
-
// to Safari in v11. Return a noop then() so the async/await ESM code doesn't continue.
|
|
59
|
-
// IS_ESM_BUILD is replaced at build time so this check doesn't happen in systemjs builds.
|
|
60
|
-
return {
|
|
61
|
-
then() {
|
|
62
|
-
/* promise noop */
|
|
63
|
-
},
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
|
-
if (!BUILD.safari10 && importMeta !== '') {
|
|
67
|
-
opts.resourcesUrl = new URL('.', importMeta).href;
|
|
68
|
-
}
|
|
69
|
-
else if (BUILD.dynamicImportShim || BUILD.safari10) {
|
|
70
|
-
opts.resourcesUrl = new URL('.', new URL(scriptElm.getAttribute('data-resources-url') || scriptElm.src, win.location.href)).href;
|
|
71
|
-
if (BUILD.dynamicImportShim) {
|
|
72
|
-
patchDynamicImport(opts.resourcesUrl, scriptElm);
|
|
73
|
-
}
|
|
74
|
-
if (BUILD.dynamicImportShim && !win.customElements) {
|
|
75
|
-
// module support, but no custom elements support (Old Edge)
|
|
76
|
-
// @ts-ignore
|
|
77
|
-
return import(/* webpackChunkName: "polyfills-dom" */ './dom-64053c71.js').then(() => opts);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
return promiseResolve(opts);
|
|
81
|
-
};
|
|
82
|
-
const patchDynamicImport = (base, orgScriptElm) => {
|
|
83
|
-
const importFunctionName = getDynamicImportFunction(NAMESPACE);
|
|
84
|
-
try {
|
|
85
|
-
// test if this browser supports dynamic imports
|
|
86
|
-
// There is a caching issue in V8, that breaks using import() in Function
|
|
87
|
-
// By generating a random string, we can workaround it
|
|
88
|
-
// Check https://bugs.chromium.org/p/chromium/issues/detail?id=990810 for more info
|
|
89
|
-
win[importFunctionName] = new Function('w', `return import(w);//${Math.random()}`);
|
|
90
|
-
}
|
|
91
|
-
catch (e) {
|
|
92
|
-
// this shim is specifically for browsers that do support "esm" imports
|
|
93
|
-
// however, they do NOT support "dynamic" imports
|
|
94
|
-
// basically this code is for old Edge, v18 and below
|
|
95
|
-
const moduleMap = new Map();
|
|
96
|
-
win[importFunctionName] = (src) => {
|
|
97
|
-
var _a;
|
|
98
|
-
const url = new URL(src, base).href;
|
|
99
|
-
let mod = moduleMap.get(url);
|
|
100
|
-
if (!mod) {
|
|
101
|
-
const script = doc.createElement('script');
|
|
102
|
-
script.type = 'module';
|
|
103
|
-
script.crossOrigin = orgScriptElm.crossOrigin;
|
|
104
|
-
script.src = URL.createObjectURL(new Blob([`import * as m from '${url}'; window.${importFunctionName}.m = m;`], {
|
|
105
|
-
type: 'application/javascript',
|
|
106
|
-
}));
|
|
107
|
-
// Apply CSP nonce to the script tag if it exists
|
|
108
|
-
const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);
|
|
109
|
-
if (nonce != null) {
|
|
110
|
-
script.setAttribute('nonce', nonce);
|
|
111
|
-
}
|
|
112
|
-
mod = new Promise((resolve) => {
|
|
113
|
-
script.onload = () => {
|
|
114
|
-
resolve(win[importFunctionName].m);
|
|
115
|
-
script.remove();
|
|
116
|
-
};
|
|
117
|
-
});
|
|
118
|
-
moduleMap.set(url, mod);
|
|
119
|
-
doc.head.appendChild(script);
|
|
120
|
-
}
|
|
121
|
-
return mod;
|
|
122
|
-
};
|
|
123
|
-
}
|
|
124
|
-
};
|
|
125
|
-
const patchCloneNodeFix = (HTMLElementPrototype) => {
|
|
126
|
-
const nativeCloneNodeFn = HTMLElementPrototype.cloneNode;
|
|
127
|
-
HTMLElementPrototype.cloneNode = function (deep) {
|
|
128
|
-
if (this.nodeName === 'TEMPLATE') {
|
|
129
|
-
return nativeCloneNodeFn.call(this, deep);
|
|
130
|
-
}
|
|
131
|
-
const clonedNode = nativeCloneNodeFn.call(this, false);
|
|
132
|
-
const srcChildNodes = this.childNodes;
|
|
133
|
-
if (deep) {
|
|
134
|
-
for (let i = 0; i < srcChildNodes.length; i++) {
|
|
135
|
-
// Node.ATTRIBUTE_NODE === 2, and checking because IE11
|
|
136
|
-
if (srcChildNodes[i].nodeType !== 2) {
|
|
137
|
-
clonedNode.appendChild(srcChildNodes[i].cloneNode(true));
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
return clonedNode;
|
|
142
|
-
};
|
|
143
|
-
};
|
|
144
|
-
|
|
145
|
-
patchBrowser().then(options => {
|
|
146
|
-
globalScripts();
|
|
147
|
-
return bootstrapLazy([["identification-component",[[1,"identification-component",{"token":[1537],"order_id":[1537],"api_url":[1537],"env":[1537],"redirect_id":[1537],"phone_number":[1537],"lang_iso":[1537],"idSide":[32],"errorMessage":[32],"errorTitle":[32]},[[0,"agreementAcceptance","agreementAcceptanceEmitted"],[0,"apiError","apiErrorEmitter"],[9,"scroll","handleScroll"]]]]],["loader-dots",[[1,"loader-dots"]]],["random-actions",[[0,"random-actions"]]],["process-id",[[0,"process-id",{"captureStep":[32],"showTimeout":[32],"showInvalid":[32],"flow":[32]},[[0,"howToInfoDone","howToDone"],[0,"timeElapsed","timeElapsed"],[0,"captureErrorDone","captureErrorDone"],[0,"photoIdCapture","captureIdImage"],[0,"photoIdBackCapture","captureIdBackImage"],[0,"recordingIdCapture","capturedIdRecording"]]]]],["user-liveness",[[0,"user-liveness",{"showError":[32],"captureStep":[32],"flow":[32]},[[0,"howToInfoDone","howToDone"],[0,"timeElapsed","timeElapsed"],[0,"captureErrorDone","captureErrorDone"],[0,"photoSelfieCapture","captureSelfieImage"],[0,"recordingSelfieCapture","capturedSelfieRecording"],[0,"verificationFinished","verificationFinished"]]]]],["agreement-info",[[0,"agreement-info",{"agreementsChecked":[32],"termsChecked":[32],"openAgreements":[32],"openTerms":[32]},[[0,"agreementAcceptance","agreementAcceptanceEmitted"]]]]],["camera-error",[[0,"camera-error",{"title":[32],"description":[32],"buttonDisabled":[32],"demoVideo":[32]}]]],["end-redirect",[[0,"end-redirect"]]],["error-end",[[0,"error-end",{"message":[1],"errorTitle":[1,"error-title"]}]]],["landing-validation",[[0,"landing-validation",{"warningText":[32],"buttonDisabled":[32]}]]],["mobile-redirect",[[0,"mobile-redirect",{"infoTextTop":[32],"infoTextBottom":[32],"contact":[32],"invalidValue":[32],"waitingMobile":[32],"orderStatus":[32],"redirectLink":[32],"qrCode":[32],"prefilledPhone":[32]}]]],["sms-code-validation",[[0,"sms-code-validation",{"title":[32],"details":[32],"buttonText":[32],"phoneNumber":[32],"code":[32],"prefilledPhone":[32],"canSend":[32]}]]],["camera-comp",[[0,"camera-comp",{"modelPath":[1,"model-path"],"probabilityThreshold":[2,"probability-threshold"],"captureMode":[1,"capture-mode"]}]]],["id-back-capture",[[0,"id-back-capture",{"videoStarted":[32],"cameraSize":[32],"captureTaken":[32],"verified":[32],"titleMesage":[32],"showDemo":[32],"demoVideo":[32]},[[0,"videoStarted","eventVideoStarted"],[0,"verificationFinished","verificationFinished"],[0,"takePhoto","takePhoto"]]]]],["id-capture",[[0,"id-capture",{"videoStarted":[32],"cameraSize":[32],"captureTaken":[32],"verified":[32],"titleMesage":[32],"showDemo":[32],"demoVideo":[32]},[[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]]]],["id-tilt",[[0,"id-tilt",{"videoStarted":[32],"cameraSize":[32],"captureTaken":[32],"verified":[32],"titleMesage":[32],"showDemo":[32],"demoVideo":[32]},[[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]]]],["selfie-capture",[[0,"selfie-capture",{"videoStarted":[32],"captureTaken":[32],"verified":[32],"titleMesage":[32],"demoEnded":[32],"demoVideo":[32],"uploadingLink":[32],"captureHeight":[32],"captureWidth":[32]},[[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]]]],["selfie-tilt",[[0,"selfie-tilt",{"videoStarted":[32],"captureTaken":[32],"verified":[32],"titleMesage":[32],"demoEnded":[32],"demoVideo":[32],"uploadingLink":[32],"captureHeight":[32],"captureWidth":[32]},[[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]]]],["agreement-check",[[0,"agreement-check",{"agreementType":[1,"agreement-type"],"htmlContent":[32],"buttonEnabled":[32],"scrollClass":[32]}]]],["capture-error",[[0,"capture-error",{"type":[1],"buttonEnabled":[32],"buttonText":[32]}]]],["how-to-info",[[0,"how-to-info",{"idSide":[1,"id-side"],"topTitle":[32],"subTitle":[32],"imagePath":[32],"buttonText":[32],"buttonEnabled":[32]}]]]], options);
|
|
148
|
-
});
|
|
1
|
+
import{p as e,b as t}from"./p-8942656c.js";export{s as setNonce}from"./p-8942656c.js";(()=>{const t=import.meta.url,i={};return""!==t&&(i.resourcesUrl=new URL(".",t).href),e(i)})().then((e=>t([["p-054dc5b3",[[1,"loader-dots"]]],["p-473a4636",[[0,"random-actions"]]],["p-b2c9c8d7",[[1,"identification-component",{token:[1537],order_id:[1537],api_url:[1537],env:[1537],redirect_id:[1537],phone_number:[1537],lang_iso:[1537],idSide:[32],errorMessage:[32],errorTitle:[32]},[[0,"agreementAcceptance","agreementAcceptanceEmitted"],[0,"apiError","apiErrorEmitter"],[9,"scroll","handleScroll"]]],[0,"process-id",{captureStep:[32],showTimeout:[32],showInvalid:[32],flow:[32]},[[0,"howToInfoDone","howToDone"],[0,"timeElapsed","timeElapsed"],[0,"captureErrorDone","captureErrorDone"],[0,"photoIdCapture","captureIdImage"],[0,"photoIdBackCapture","captureIdBackImage"],[0,"recordingIdCapture","capturedIdRecording"]]],[0,"user-liveness",{showError:[32],captureStep:[32],flow:[32]},[[0,"howToInfoDone","howToDone"],[0,"timeElapsed","timeElapsed"],[0,"captureErrorDone","captureErrorDone"],[0,"photoSelfieCapture","captureSelfieImage"],[0,"recordingSelfieCapture","capturedSelfieRecording"],[0,"verificationFinished","verificationFinished"]]],[0,"agreement-info",{agreementsChecked:[32],termsChecked:[32],openAgreements:[32],openTerms:[32]},[[0,"agreementAcceptance","agreementAcceptanceEmitted"]]],[0,"camera-error",{title:[32],description:[32],buttonDisabled:[32],demoVideo:[32]}],[0,"end-redirect"],[0,"error-end",{message:[1],errorTitle:[1,"error-title"]}],[0,"landing-validation",{warningText:[32],buttonDisabled:[32]}],[0,"mobile-redirect",{infoTextTop:[32],infoTextBottom:[32],contact:[32],invalidValue:[32],waitingMobile:[32],orderStatus:[32],redirectLink:[32],qrCode:[32],prefilledPhone:[32]}],[0,"sms-code-validation",{title:[32],details:[32],buttonText:[32],phoneNumber:[32],code:[32],prefilledPhone:[32],canSend:[32]}],[0,"id-back-capture",{videoStarted:[32],cameraSize:[32],captureTaken:[32],verified:[32],titleMesage:[32],showDemo:[32],demoVideo:[32]},[[0,"videoStarted","eventVideoStarted"],[0,"verificationFinished","verificationFinished"],[0,"takePhoto","takePhoto"]]],[0,"id-capture",{videoStarted:[32],cameraSize:[32],captureTaken:[32],verified:[32],titleMesage:[32],showDemo:[32],demoVideo:[32]},[[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]],[0,"id-tilt",{videoStarted:[32],cameraSize:[32],captureTaken:[32],verified:[32],titleMesage:[32],showDemo:[32],demoVideo:[32]},[[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]],[0,"selfie-capture",{videoStarted:[32],captureTaken:[32],verified:[32],titleMesage:[32],demoEnded:[32],demoVideo:[32],uploadingLink:[32],captureHeight:[32],captureWidth:[32]},[[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]],[0,"selfie-tilt",{videoStarted:[32],captureTaken:[32],verified:[32],titleMesage:[32],demoEnded:[32],demoVideo:[32],uploadingLink:[32],captureHeight:[32],captureWidth:[32]},[[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]],[0,"agreement-check",{agreementType:[1,"agreement-type"],htmlContent:[32],buttonEnabled:[32],scrollClass:[32]}],[0,"capture-error",{type:[1],buttonEnabled:[32],buttonText:[32]}],[0,"how-to-info",{idSide:[1,"id-side"],topTitle:[32],subTitle:[32],imagePath:[32],buttonText:[32],buttonEnabled:[32]}],[0,"camera-comp",{modelPath:[1,"model-path"],probabilityThreshold:[2,"probability-threshold"],captureMode:[1,"capture-mode"]}]]]],e)));
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { EventEmitter } from '../stencil-public-runtime';
|
|
2
2
|
import { ApiCall } from '../helpers/ApiCall';
|
|
3
3
|
import { FlowMoments, FlowSteps } from '../models/FlowSteps';
|
|
4
|
-
import { TranslationValues } from '../models/ITranslationValues';
|
|
5
4
|
export declare class BaseComponent {
|
|
6
5
|
apiCall: ApiCall;
|
|
7
6
|
protected flowStep: FlowSteps;
|
|
8
7
|
private apiErrorEvent;
|
|
9
8
|
private processError;
|
|
10
|
-
translations: TranslationValues;
|
|
11
9
|
constructor(step: FlowSteps | undefined);
|
|
12
10
|
setEventEmitter(event: EventEmitter<any>): void;
|
|
13
11
|
setErrorCallback(callback: (data: any, zone: any) => void): void;
|
|
@@ -6,8 +6,10 @@ export declare class AgreementCheck {
|
|
|
6
6
|
scrollClass: string;
|
|
7
7
|
private apiCalls;
|
|
8
8
|
private baseComponent;
|
|
9
|
+
private translations;
|
|
9
10
|
constructor();
|
|
10
11
|
apiErrorEvent: EventEmitter<any>;
|
|
12
|
+
componentWillLoad(): Promise<void>;
|
|
11
13
|
componentDidLoad(): Promise<void>;
|
|
12
14
|
agreementAcceptance: EventEmitter<any>;
|
|
13
15
|
buttonClick(result: boolean): Promise<void>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
2
|
export declare class HowToInfo {
|
|
3
3
|
private baseComponent;
|
|
4
|
+
private translations;
|
|
4
5
|
idSide: string;
|
|
5
6
|
topTitle: string;
|
|
6
7
|
subTitle: string;
|
|
@@ -13,6 +14,6 @@ export declare class HowToInfo {
|
|
|
13
14
|
componentDidLoad(): Promise<void>;
|
|
14
15
|
disconnectedCallback(): Promise<void>;
|
|
15
16
|
buttonClick(): void;
|
|
16
|
-
componentWillLoad(): void
|
|
17
|
+
componentWillLoad(): Promise<void>;
|
|
17
18
|
render(): any;
|
|
18
19
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
2
|
export declare class SelfieCapture {
|
|
3
3
|
private baseComponent;
|
|
4
|
+
private translations;
|
|
4
5
|
component: HTMLElement;
|
|
5
6
|
private videoStarted;
|
|
6
7
|
private captureTaken;
|
|
@@ -16,7 +17,7 @@ export declare class SelfieCapture {
|
|
|
16
17
|
private cameras;
|
|
17
18
|
constructor();
|
|
18
19
|
eventVideoStarted(event: any): void;
|
|
19
|
-
componentWillLoad(): void
|
|
20
|
+
componentWillLoad(): Promise<void>;
|
|
20
21
|
componentDidLoad(): Promise<void>;
|
|
21
22
|
openCamera(): Promise<void>;
|
|
22
23
|
closeCamera(): void;
|