This package provides the Web Component built in StencilJS which provides a UI for simpler usage of the SDK.

This component is based on the one provided in the [`blinkid-in-browser-sdk`](https://www.npmjs.com/package/@microblink/blinkid-in-browser-sdk) ([readme for UI](https://github.com/BlinkID/blinkid-in-browser/blob/master/ui/README.md)), but is also preconfigured for easier usage for image capturing, and has improved TS types.

It also uses `@microblink/docver-in-browser-sdk` as a peer dependency, meaning you don't need to explicitly install it.

<!-- TODO: link to example -->

Usage example:

```ts
// main.js
import "@microblink/docver-in-browser-web-component";
```

```html
<blinkid-in-browser
  engine-location="https://localhost:3000/resources"
  license-key="YOUR_LICENCE_KEY"
></blinkid-in-browser>

<script src="path/to/main.js" />
```

For an example you can run, check the `apps/example-ui-stencil` example in the GitHub repository <!-- TODO  -->
