Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@microblink/blinkid-in-browser-sdk

Package Overview
Dependencies
Maintainers
0
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microblink/blinkid-in-browser-sdk - npm Package Compare versions

Comparing version 6.10.1 to 6.11.0

types/Recognizers/BlinkID/Generic/DependentInfo.d.ts

2

package.json
{
"name": "@microblink/blinkid-in-browser-sdk",
"version": "6.10.1",
"version": "6.11.0",
"description": "A simple ID scanning library for WebAssembly-enabled browsers.",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/BlinkID/blinkid-in-browser",

# BlinkID In-browser SDK
## How to run this repo?
Test this repo quickly on your machine (assuming you have Node and Git installed) by doing the following steps:
- clone [this](https://github.com/BlinkID/blinkid-in-browser) repo by running `git clone https://github.com/BlinkID/blinkid-in-browser` in your Terminal
- run `cd blinkid-in-browser/examples/getting-started && npm install && npm run dev`
- get the license at [Microblink DevHub](https://developer.microblink.com/) and add it to the `LICENSE` variable in the `main.js` file in the `examples/getting-started` folder
- open [http://localhost:5173/](http://localhost:5173/)
- port may be different in your case, check the output of the `npm run dev` command noted above
- point your ID towards the camera
If you prefer a short, 3 minute, video for running this project, feel free to check it out [here](https://www.youtube.com/watch?v=c0ZA8af9oBc).
If you want to recreate this project from scratch, step by step, please check out this tutorial: [Integrating ID Scanning and Extraction In Web Apps With BlinkID SDK](examples/getting-started/).
---
[![Build Status](https://travis-ci.org/BlinkID/blinkid-in-browser.svg?branch=master)](https://travis-ci.org/BlinkID/blinkid-in-browser) [![npm version](https://badge.fury.io/js/%40microblink%2Fblinkid-in-browser-sdk.svg)](https://badge.fury.io/js/%40microblink%2Fblinkid-in-browser-sdk)
BlinkID In-browser SDK enables scanning of various identity documents, including driving licenses, national identity cards, passports and others. The SDK provides real-time in-browser data extraction, without any need for sending images to servers for processing.

@@ -12,13 +30,7 @@

1. [BlinkID SDK with built-in UI](https://blinkid.github.io/blinkid-in-browser/ui/demo.html)
* See what the bare UI looks like at [Codepen](https://codepen.io/microblink/pen/GRZGQab)
2. [Scan the front side of an identity document with a web camera](https://blinkid.github.io/blinkid-in-browser/examples/blinkid-camera/javascript/index.html)
* See example at [Codepen](https://codepen.io/microblink/pen/gOPJoRp)
3. [Scan the front side of an identity document by uploading its image](https://blinkid.github.io/blinkid-in-browser/examples/blinkid-file/javascript/index.html)
* See example at [Codepen](https://codepen.io/microblink/pen/ExPzzda)
4. [Scan both sides of an identity document with a web camera](https://blinkid.github.io/blinkid-in-browser/examples/multi-side/javascript/index.html)
* See example at [Codepen](https://codepen.io/microblink/pen/BajeeMx)
5. [Scan both sides of an identity document by uploading its image](https://blinkid.github.io/blinkid-in-browser/examples/multi-side-file/javascript/index.html)
* See example at [Codepen](https://codepen.io/microblink/pen/MWboMrr)
6. [Scan barcode from an identity document from web camera](https://blinkid.github.io/blinkid-in-browser/examples/idbarcode/javascript/index.html)
* See example at [Codepen](https://codepen.io/microblink/pen/NWxVVJO)

@@ -32,2 +44,3 @@ To see the source code of the above examples, check out the [examples directory](examples). If you'd like to run examples of the UI component, either through the browser or locally, see the [ui/examples](ui/examples) directory.

- [BlinkID In-browser SDK](#blinkid-in-browser-sdk)
- [How to run this repo?](#how-to-run-this-repo)
- [Table of contents](#table-of-contents)

@@ -34,0 +47,0 @@ - [ Components of SDK](#-components-of-sdk)

@@ -9,3 +9,4 @@ /**

Cyrillic = 2,
Count = 3
Greek = 3,
Count = 4
}

@@ -16,2 +16,3 @@ /**

import { StrictnessLevel } from "./StrictnessLevel";
import { DependentInfo } from "./DependentInfo";
import { CameraFrameResult, ExtensionFactors, FaceImageOptions, FullDocumentImageOptions, ImageResult, SignatureImageOptions } from "../ImageOptions";

@@ -363,2 +364,22 @@ import { MrzResult } from "../MRTD/MrtdStructures";

readonly visaType: StringResult;
/**
* The manufacturing year.
*/
readonly manufacturingYear: StringResult;
/**
* The vehicle type.
*/
readonly vehicleType: StringResult;
/**
* The eligibility category.
*/
readonly eligibilityCategory: StringResult;
/**
* The specific document validity.
*/
readonly specificDocumentValidity: StringResult;
/**
* The dependents info.
*/
readonly dependentsInfo: Array<DependentInfo>;
}

@@ -365,0 +386,0 @@ /**

@@ -419,3 +419,4 @@ /**

ALAGOAS = 138,
COUNT = 139
BANGSAMORO = 139,
COUNT = 140
}

@@ -494,3 +495,9 @@ export declare enum DocumentType {

SIS_ID = 70,
COUNT = 71
ASIC_CARD = 71,
BIDOON_CARD = 72,
INTERIM_HEALTH_INSURANCE_CARD = 73,
NON_VOTER_ID = 74,
RECIPROCAL_HEALTH_INSURANCE_CARD = 75,
VEHICLE_REGISTRATION = 76,
COUNT = 77
}

@@ -48,4 +48,12 @@ /**

ResidencePermitType = 41,
ManufacturingYear = 42,
VehicleType = 43,
DependentDateOfBirth = 44,
DependentSex = 45,
DependentDocumentNumber = 46,
DependentFullName = 47,
EligibilityCategory = 48,
SpecificDocumentValidity = 49,
/** Number of possible field types. */
Count = 42
Count = 50
}

@@ -25,8 +25,11 @@ /**

readonly latin?: string;
readonly greek?: string;
readonly arabicLocation: Rectangle | undefined;
readonly cyrillicLocation: Rectangle | undefined;
readonly latinLocation: Rectangle | undefined;
readonly greekLocation: Rectangle | undefined;
readonly arabicSide: DocumentSide | undefined;
readonly cyrillicSide: DocumentSide | undefined;
readonly latinSide: DocumentSide | undefined;
readonly greekSide: DocumentSide | undefined;
}

@@ -6,2 +6,3 @@ /**

import { DateResult, StringResult } from "./GenericResultStructures";
import { DependentInfo } from "./DependentInfo";
/**

@@ -73,12 +74,22 @@ * VIZResult contains data extracted from the Visual Inspection Zone.

readonly bloodType: StringResult;
/** Subtype of a document */
/** Subtype of a document. */
readonly documentSubtype: StringResult;
/** Whether the result is empty */
/** Whether the result is empty. */
readonly empty: boolean;
/** Remarks on a document */
/** Remarks on a document. */
readonly remarks: StringResult;
/** Type of residence permit */
/** Type of residence permit. */
readonly residencePermitType: StringResult;
/** Type of visa */
/** Type of visa. */
readonly visaType: StringResult;
/** The manufacturing year. */
readonly manufacturingYear: StringResult;
/** The vehicle type. */
readonly vehicleType: StringResult;
/** The eligibility category. */
readonly eligibilityCategory: StringResult;
/** The specific document validity. */
readonly specificDocumentValidity: StringResult;
/** The dependents info. */
readonly dependentsInfo: Array<DependentInfo>;
}

@@ -1,1 +0,1 @@

import{p as e,b as a}from"./p-4d18f253.js";export{s as setNonce}from"./p-4d18f253.js";(()=>{const a=import.meta.url,o={};return""!==a&&(o.resourcesUrl=new URL(".",a).href),e(o)})().then((e=>a([["p-7dffd99d",[[1,"mb-tooltip",{show:[4],message:[1],arrowPosition:[1,"arrow-position"],showWarningIcon:[4,"show-warning-icon"],showInfoIcon:[4,"show-info-icon"],textAlign:[1,"text-align"],containerWidth:[1,"container-width"]}]]],["p-58ec64e7",[[1,"blinkid-in-browser",{allowHelloMessage:[4,"allow-hello-message"],engineLocation:[1,"engine-location"],workerLocation:[1,"worker-location"],licenseKey:[1,"license-key"],wasmType:[1,"wasm-type"],blinkIdVariant:[1,"blink-id-variant"],rawRecognizers:[1,"recognizers"],recognizers:[16],recognizerOptions:[16],recognitionTimeout:[2,"recognition-timeout"],recognitionPauseTimeout:[2,"recognition-pause-timeout"],cameraExperienceStateDurations:[16],enableDrag:[4,"enable-drag"],hideFeedback:[4,"hide-feedback"],hideLoadingAndErrorUi:[4,"hide-loading-and-error-ui"],scanFromCamera:[4,"scan-from-camera"],scanFromImage:[4,"scan-from-image"],thoroughScanFromImage:[4,"thorough-scan-from-image"],galleryOverlayType:[1,"gallery-overlay-type"],galleryDropType:[1,"gallery-drop-type"],showActionLabels:[4,"show-action-labels"],showModalWindows:[4,"show-modal-windows"],showCameraFeedbackBarcodeMessage:[4,"show-camera-feedback-barcode-message"],rawTranslations:[1,"translations"],translations:[16],iconCameraDefault:[1,"icon-camera-default"],iconCameraActive:[1,"icon-camera-active"],iconGalleryDefault:[1,"icon-gallery-default"],iconGalleryActive:[1,"icon-gallery-active"],iconInvalidFormat:[1,"icon-invalid-format"],iconSpinnerScreenLoading:[1,"icon-spinner-screen-loading"],iconSpinnerFromGalleryExperience:[1,"icon-spinner-from-gallery-experience"],iconGalleryScanningCompleted:[1,"icon-gallery-scanning-completed"],cameraId:[1,"camera-id"],allowHelpScreensFab:[4,"allow-help-screens-fab"],allowHelpScreensOnboarding:[4,"allow-help-screens-onboarding"],allowHelpScreensOnboardingPerpetuity:[4,"allow-help-screens-onboarding-perpetuity"],helpScreensTooltipPauseTimeout:[2,"help-screens-tooltip-pause-timeout"],pingProxyUrl:[1,"ping-proxy-url"],setUiState:[64],startCameraScan:[64],startImageScan:[64],startMultiSideImageScan:[64],setUiMessage:[64],getProductIntegrationInfo:[64]}],[1,"mb-component",{allowHelloMessage:[4,"allow-hello-message"],engineLocation:[1,"engine-location"],workerLocation:[1,"worker-location"],licenseKey:[1,"license-key"],wasmType:[1025,"wasm-type"],blinkIdVariant:[1,"blink-id-variant"],recognizers:[1040],recognizerOptions:[1040],recognitionTimeout:[2,"recognition-timeout"],recognitionPauseTimeout:[2,"recognition-pause-timeout"],cameraExperienceStateDurations:[16],includeSuccessFrame:[4,"include-success-frame"],enableDrag:[4,"enable-drag"],hideLoadingAndErrorUi:[4,"hide-loading-and-error-ui"],rtl:[4],scanFromCamera:[4,"scan-from-camera"],scanFromImage:[4,"scan-from-image"],thoroughScanFromImage:[4,"thorough-scan-from-image"],galleryOverlayType:[1,"gallery-overlay-type"],galleryDropType:[1,"gallery-drop-type"],showActionLabels:[4,"show-action-labels"],showModalWindows:[4,"show-modal-windows"],showCameraFeedbackBarcodeMessage:[4,"show-camera-feedback-barcode-message"],showScanningLine:[4,"show-scanning-line"],iconCameraDefault:[1,"icon-camera-default"],iconCameraActive:[1,"icon-camera-active"],iconGalleryDefault:[1,"icon-gallery-default"],iconDragAndDropGalleryDefault:[1,"icon-drag-and-drop-gallery-default"],iconDragAndDropWarningDefault:[1,"icon-drag-and-drop-warning-default"],iconGalleryActive:[1,"icon-gallery-active"],iconInvalidFormat:[1,"icon-invalid-format"],iconSpinnerScreenLoading:[1,"icon-spinner-screen-loading"],iconSpinnerFromGalleryExperience:[1,"icon-spinner-from-gallery-experience"],iconGalleryScanningCompleted:[1,"icon-gallery-scanning-completed"],sdkService:[16],translationService:[16],cameraId:[1,"camera-id"],allowHelpScreens:[4,"allow-help-screens"],allowHelpScreensFab:[4,"allow-help-screens-fab"],allowHelpScreensOnboarding:[4,"allow-help-screens-onboarding"],allowHelpScreensOnboardingPerpetuity:[4,"allow-help-screens-onboarding-perpetuity"],helpScreensTooltipPauseTimeout:[2,"help-screens-tooltip-pause-timeout"],pingProxyUrl:[1,"ping-proxy-url"],galleryExperienceModalErrorWindowVisible:[32],clearIsCameraActive:[32],apiProcessStatusVisible:[32],apiProcessStatusState:[32],startCameraScan:[64],startImageScan:[64],startMultiSideImageScan:[64],setUiState:[64]},[[8,"keyup","handleKeyUp"]]],[1,"mb-container"],[1,"mb-feedback",{visible:[4],paragraphClassName:[32],paragraphValue:[32],show:[64]}],[1,"mb-camera-experience",{type:[1],cameraExperienceStateDurations:[16],showOverlay:[4,"show-overlay"],translationService:[16],apiState:[1,"api-state"],cameraFlipped:[1028,"camera-flipped"],showScanningLine:[4,"show-scanning-line"],showCameraFeedbackBarcodeMessage:[4,"show-camera-feedback-barcode-message"],clearIsCameraActive:[4,"clear-is-camera-active"],allowHelpScreens:[4,"allow-help-screens"],allowHelpScreensFab:[4,"allow-help-screens-fab"],allowHelpScreensOnboarding:[4,"allow-help-screens-onboarding"],allowHelpScreensOnboardingPerpetuity:[4,"allow-help-screens-onboarding-perpetuity"],helpScreensTooltipPauseTimeout:[2,"help-screens-tooltip-pause-timeout"],cameraCursorBarcodeClassName:[32],cameraCursorIdentityCardClassName:[32],scanningLineBarcodeClassName:[32],cameraMessageIdentityCardContent:[32],cameraMessageIdentityCardClassName:[32],setActiveCamera:[64],populateCameraDevices:[64],setCameraFlipState:[64],initializeHelpScreens:[64],openHelpScreensOnboarding:[64],terminateHelpScreens:[64],setState:[64],resetState:[64]}],[1,"mb-api-process-status",{visible:[4],state:[1],translationService:[16]}],[1,"mb-button",{clickHandler:[16],disabled:[4],visible:[4],selected:[4],imageSrcDefault:[1,"image-src-default"],imageSrcActive:[1,"image-src-active"],imageAlt:[1,"image-alt"],label:[1],buttonTitle:[1,"button-title"]}],[1,"mb-completed",{icon:[1]}],[1,"mb-image-box",{boxTitle:[1,"box-title"],anchorText:[1,"anchor-text"],clear:[64]}],[1,"mb-screen",{visible:[4]}],[1,"mb-spinner",{icon:[1],size:[1]}],[1,"mb-help",{allow:[4],allowFab:[4,"allow-fab"],allowOnboarding:[4,"allow-onboarding"],allowOnboardingPerpetuity:[4,"allow-onboarding-perpetuity"],tooltipPauseTimeout:[2,"tooltip-pause-timeout"],translationService:[16],isInitialized:[32],isTooltipShownHover:[32],isTooltipShownTimer:[32],isModalShown:[32],activeStepIndex:[32],initialize:[64],openOnboarding:[64],openHelpScreens:[64],close:[64],terminate:[64]}],[1,"mb-camera-toolbar",{showClose:[4,"show-close"],clearIsCameraActive:[4,"clear-is-camera-active"],enableCameraFlip:[4,"enable-camera-flip"],cameraFlipped:[4,"camera-flipped"],showCloseButton:[32],isDesktop:[32],setActiveCamera:[64],populateCameraDevices:[64]},[[2,"setIsCameraActive","handleSetIsCameraActive"]]],[1,"mb-button-classic",{inverted:[4],quit:[4],disabled:[4],preventDefault:[4,"prevent-default"],clickHandler:[16]}],[1,"mb-camera-selection",{clearIsCameraActive:[4,"clear-is-camera-active"],activeCamera:[32],cameraList:[32],isListVisible:[32],setActiveCamera:[64],populateCameraDevices:[64]}],[1,"mb-overlay",{fullscreen:[4],visible:[4]}],[1,"mb-progress-tracker",{size:[2],current:[2]}],[1,"mb-tooltip-advanced",{show:[4],message:[1],arrowPosition:[1,"arrow-position"],textAlign:[1,"text-align"]}],[1,"mb-modal",{visible:[4],elevated:[4],centered:[4],modalTitle:[1,"modal-title"],content:[1],contentCentered:[4,"content-centered"],showBackButton:[4,"show-back-button"],hideFooter:[4,"hide-footer"],hideCloseButton:[4,"hide-close-button"]}]]]],e)));
import{p as e,b as a}from"./p-4d18f253.js";export{s as setNonce}from"./p-4d18f253.js";(()=>{const a=import.meta.url,o={};return""!==a&&(o.resourcesUrl=new URL(".",a).href),e(o)})().then((e=>a([["p-7dffd99d",[[1,"mb-tooltip",{show:[4],message:[1],arrowPosition:[1,"arrow-position"],showWarningIcon:[4,"show-warning-icon"],showInfoIcon:[4,"show-info-icon"],textAlign:[1,"text-align"],containerWidth:[1,"container-width"]}]]],["p-2cedd708",[[1,"blinkid-in-browser",{allowHelloMessage:[4,"allow-hello-message"],engineLocation:[1,"engine-location"],workerLocation:[1,"worker-location"],licenseKey:[1,"license-key"],wasmType:[1,"wasm-type"],blinkIdVariant:[1,"blink-id-variant"],rawRecognizers:[1,"recognizers"],recognizers:[16],recognizerOptions:[16],recognitionTimeout:[2,"recognition-timeout"],recognitionPauseTimeout:[2,"recognition-pause-timeout"],cameraExperienceStateDurations:[16],enableDrag:[4,"enable-drag"],hideFeedback:[4,"hide-feedback"],hideLoadingAndErrorUi:[4,"hide-loading-and-error-ui"],scanFromCamera:[4,"scan-from-camera"],scanFromImage:[4,"scan-from-image"],thoroughScanFromImage:[4,"thorough-scan-from-image"],galleryOverlayType:[1,"gallery-overlay-type"],galleryDropType:[1,"gallery-drop-type"],showActionLabels:[4,"show-action-labels"],showModalWindows:[4,"show-modal-windows"],showCameraFeedbackBarcodeMessage:[4,"show-camera-feedback-barcode-message"],rawTranslations:[1,"translations"],translations:[16],iconCameraDefault:[1,"icon-camera-default"],iconCameraActive:[1,"icon-camera-active"],iconGalleryDefault:[1,"icon-gallery-default"],iconGalleryActive:[1,"icon-gallery-active"],iconInvalidFormat:[1,"icon-invalid-format"],iconSpinnerScreenLoading:[1,"icon-spinner-screen-loading"],iconSpinnerFromGalleryExperience:[1,"icon-spinner-from-gallery-experience"],iconGalleryScanningCompleted:[1,"icon-gallery-scanning-completed"],cameraId:[1,"camera-id"],allowHelpScreensFab:[4,"allow-help-screens-fab"],allowHelpScreensOnboarding:[4,"allow-help-screens-onboarding"],allowHelpScreensOnboardingPerpetuity:[4,"allow-help-screens-onboarding-perpetuity"],helpScreensTooltipPauseTimeout:[2,"help-screens-tooltip-pause-timeout"],pingProxyUrl:[1,"ping-proxy-url"],setUiState:[64],startCameraScan:[64],startImageScan:[64],startMultiSideImageScan:[64],setUiMessage:[64],getProductIntegrationInfo:[64]}],[1,"mb-component",{allowHelloMessage:[4,"allow-hello-message"],engineLocation:[1,"engine-location"],workerLocation:[1,"worker-location"],licenseKey:[1,"license-key"],wasmType:[1025,"wasm-type"],blinkIdVariant:[1,"blink-id-variant"],recognizers:[1040],recognizerOptions:[1040],recognitionTimeout:[2,"recognition-timeout"],recognitionPauseTimeout:[2,"recognition-pause-timeout"],cameraExperienceStateDurations:[16],includeSuccessFrame:[4,"include-success-frame"],enableDrag:[4,"enable-drag"],hideLoadingAndErrorUi:[4,"hide-loading-and-error-ui"],rtl:[4],scanFromCamera:[4,"scan-from-camera"],scanFromImage:[4,"scan-from-image"],thoroughScanFromImage:[4,"thorough-scan-from-image"],galleryOverlayType:[1,"gallery-overlay-type"],galleryDropType:[1,"gallery-drop-type"],showActionLabels:[4,"show-action-labels"],showModalWindows:[4,"show-modal-windows"],showCameraFeedbackBarcodeMessage:[4,"show-camera-feedback-barcode-message"],showScanningLine:[4,"show-scanning-line"],iconCameraDefault:[1,"icon-camera-default"],iconCameraActive:[1,"icon-camera-active"],iconGalleryDefault:[1,"icon-gallery-default"],iconDragAndDropGalleryDefault:[1,"icon-drag-and-drop-gallery-default"],iconDragAndDropWarningDefault:[1,"icon-drag-and-drop-warning-default"],iconGalleryActive:[1,"icon-gallery-active"],iconInvalidFormat:[1,"icon-invalid-format"],iconSpinnerScreenLoading:[1,"icon-spinner-screen-loading"],iconSpinnerFromGalleryExperience:[1,"icon-spinner-from-gallery-experience"],iconGalleryScanningCompleted:[1,"icon-gallery-scanning-completed"],sdkService:[16],translationService:[16],cameraId:[1,"camera-id"],allowHelpScreens:[4,"allow-help-screens"],allowHelpScreensFab:[4,"allow-help-screens-fab"],allowHelpScreensOnboarding:[4,"allow-help-screens-onboarding"],allowHelpScreensOnboardingPerpetuity:[4,"allow-help-screens-onboarding-perpetuity"],helpScreensTooltipPauseTimeout:[2,"help-screens-tooltip-pause-timeout"],pingProxyUrl:[1,"ping-proxy-url"],galleryExperienceModalErrorWindowVisible:[32],clearIsCameraActive:[32],apiProcessStatusVisible:[32],apiProcessStatusState:[32],startCameraScan:[64],startImageScan:[64],startMultiSideImageScan:[64],setUiState:[64]},[[8,"keyup","handleKeyUp"]]],[1,"mb-container"],[1,"mb-feedback",{visible:[4],paragraphClassName:[32],paragraphValue:[32],show:[64]}],[1,"mb-camera-experience",{type:[1],cameraExperienceStateDurations:[16],showOverlay:[4,"show-overlay"],translationService:[16],apiState:[1,"api-state"],cameraFlipped:[1028,"camera-flipped"],showScanningLine:[4,"show-scanning-line"],showCameraFeedbackBarcodeMessage:[4,"show-camera-feedback-barcode-message"],clearIsCameraActive:[4,"clear-is-camera-active"],allowHelpScreens:[4,"allow-help-screens"],allowHelpScreensFab:[4,"allow-help-screens-fab"],allowHelpScreensOnboarding:[4,"allow-help-screens-onboarding"],allowHelpScreensOnboardingPerpetuity:[4,"allow-help-screens-onboarding-perpetuity"],helpScreensTooltipPauseTimeout:[2,"help-screens-tooltip-pause-timeout"],cameraCursorBarcodeClassName:[32],cameraCursorIdentityCardClassName:[32],scanningLineBarcodeClassName:[32],cameraMessageIdentityCardContent:[32],cameraMessageIdentityCardClassName:[32],setActiveCamera:[64],populateCameraDevices:[64],setCameraFlipState:[64],initializeHelpScreens:[64],openHelpScreensOnboarding:[64],terminateHelpScreens:[64],setState:[64],resetState:[64]}],[1,"mb-api-process-status",{visible:[4],state:[1],translationService:[16]}],[1,"mb-button",{clickHandler:[16],disabled:[4],visible:[4],selected:[4],imageSrcDefault:[1,"image-src-default"],imageSrcActive:[1,"image-src-active"],imageAlt:[1,"image-alt"],label:[1],buttonTitle:[1,"button-title"]}],[1,"mb-completed",{icon:[1]}],[1,"mb-image-box",{boxTitle:[1,"box-title"],anchorText:[1,"anchor-text"],clear:[64]}],[1,"mb-screen",{visible:[4]}],[1,"mb-spinner",{icon:[1],size:[1]}],[1,"mb-help",{allow:[4],allowFab:[4,"allow-fab"],allowOnboarding:[4,"allow-onboarding"],allowOnboardingPerpetuity:[4,"allow-onboarding-perpetuity"],tooltipPauseTimeout:[2,"tooltip-pause-timeout"],translationService:[16],isInitialized:[32],isTooltipShownHover:[32],isTooltipShownTimer:[32],isModalShown:[32],activeStepIndex:[32],initialize:[64],openOnboarding:[64],openHelpScreens:[64],close:[64],terminate:[64]}],[1,"mb-camera-toolbar",{showClose:[4,"show-close"],clearIsCameraActive:[4,"clear-is-camera-active"],enableCameraFlip:[4,"enable-camera-flip"],cameraFlipped:[4,"camera-flipped"],showCloseButton:[32],isDesktop:[32],setActiveCamera:[64],populateCameraDevices:[64]},[[2,"setIsCameraActive","handleSetIsCameraActive"]]],[1,"mb-button-classic",{inverted:[4],quit:[4],disabled:[4],preventDefault:[4,"prevent-default"],clickHandler:[16]}],[1,"mb-camera-selection",{clearIsCameraActive:[4,"clear-is-camera-active"],activeCamera:[32],cameraList:[32],isListVisible:[32],setActiveCamera:[64],populateCameraDevices:[64]}],[1,"mb-overlay",{fullscreen:[4],visible:[4]}],[1,"mb-progress-tracker",{size:[2],current:[2]}],[1,"mb-tooltip-advanced",{show:[4],message:[1],arrowPosition:[1,"arrow-position"],textAlign:[1,"text-align"]}],[1,"mb-modal",{visible:[4],elevated:[4],centered:[4],modalTitle:[1,"modal-title"],content:[1],contentCentered:[4,"content-centered"],showBackButton:[4,"show-back-button"],hideFooter:[4,"hide-footer"],hideCloseButton:[4,"hide-close-button"]}]]]],e)));

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc