npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@microblink/blinkid-ux-manager

v7.7.2

Published

BlinkID UX Manager provides user feedback based on the blinkid process results.

Readme

@microblink/blinkid-ux-manager

This package provides user experience management and feedback UI for the BlinkID browser SDK. It parses results from @microblink/blinkid-core and guides the user through the scanning process, controlling @microblink/camera-manager as needed.

Features

  • Smart UI State Management: Provides both headless and UI components for user feedback during scanning
  • Camera Integration: Integrates with BlinkID Core and Camera Manager
  • Haptic Feedback: Built-in haptic feedback support for enhanced user experience on mobile devices
  • Document Filtering: Advanced document class filtering capabilities
  • Timeout Management: Configurable scanning timeouts with automatic state management
  • Localization Support: Multi-language support with customizable strings
  • Explicit Teardown: destroy() method for deterministic resource cleanup
  • UI State Inspection: uiStateKey (stabilized, visible state) and mappedUiStateKey (latest raw candidate before stabilization) getters

Overview

  • Provides both headless and UI components for user feedback during scanning.
  • Integrates with BlinkID Core and Camera Manager.
  • Includes haptic feedback system for mobile devices.
  • Used by @microblink/blinkid and can be used directly for custom UI integrations.

Installation

Install from npm using your preferred package manager:

npm install @microblink/blinkid-ux-manager
# or
yarn add @microblink/blinkid-ux-manager
# or
pnpm add @microblink/blinkid-ux-manager

Haptic Feedback

The UX Manager includes a comprehensive haptic feedback system that provides tactile responses during the document scanning process. This feature is primarily designed for Android devices using Chrome browser, where it works reliably to enhance the scanning experience.

Haptic Feedback Types

| Event | Duration | Type | Description | | ------------------ | -------- | ----- | --------------------------------------------- | | First Side Success | 100ms | Short | When the first side of an ID card is captured | | Final Success | 300ms | Long | When document scanning is completed | | Error States | 100ms | Short | Quality issues (blur, glare, positioning) | | Error Dialogs | 300ms | Long | Timeout or critical errors | | Flashlight Toggle | 100ms | Short | When camera flashlight is activated | | Warning States | 100ms | Short | During sensing phases (with 1s cooldown) |

Haptic Feedback Usage

import {
  createBlinkIdUxManager,
  HapticFeedbackManager,
} from "@microblink/blinkid-ux-manager";

// Create UX Manager (haptic feedback enabled by default)
const uxManager = await createBlinkIdUxManager(cameraManager, scanningSession);

// Check if haptic feedback is supported
if (uxManager.isHapticFeedbackSupported()) {
  console.log("Device supports haptic feedback");
}

// Enable/disable haptic feedback
uxManager.setHapticFeedbackEnabled(true); // Enable
uxManager.setHapticFeedbackEnabled(false); // Disable

// Access haptic manager directly for manual control
const hapticManager = uxManager.getHapticFeedbackManager();
hapticManager.triggerShort(); // 100ms vibration for short feedback
hapticManager.triggerLong(); // 300ms vibration for long feedback
hapticManager.stop(); // Stop all vibration

Browser Compatibility

⚠️ Important: Haptic feedback uses the Web Vibration API, which has limited browser support:

| Browser | Support | | ------- | ------- | | Chrome for Android | ✅ Supported | | Firefox for Android | ✅ Supported | | Safari (iOS) | ❌ Not supported | | Desktop browsers | ❌ Not supported |

The API is designed primarily for Android devices using Chrome, where it works reliably. On unsupported platforms isHapticFeedbackSupported() returns false and vibration calls are silently ignored.

Usage

You can use @microblink/blinkid-ux-manager directly in your project for advanced or custom integrations. For most use cases, use @microblink/blinkid for a simpler setup.

Creating the UX Manager

Use the async createBlinkIdUxManager factory — direct constructor instantiation is not supported:

import { createBlinkIdUxManager } from "@microblink/blinkid-ux-manager";

const uxManager = await createBlinkIdUxManager(cameraManager, scanningSession);

// When done, release resources explicitly
uxManager.destroy();

Inspecting UI State

Two getters provide visibility into the current UI state:

  • uxManager.uiStateKey — the stabilized, visible state key (what the UI shows)
  • uxManager.mappedUiStateKey — the latest raw candidate key from the detector before stabilization (useful for debugging)

Note: Starting in v7.7.0, the manager automatically advances through intermediate transition states after PAGE_CAPTURED (e.g. PAGE_CAPTURED → FLIP_CARD → INTRO_BACK_PAGE for two-sided IDs). Integrations that depend on exact UI-state key sequences should account for these chained transitions.

Configuring Help Tooltip Delays

Tooltip delays can be configured via FeedbackUiOptions when creating the feedback UI:

createBlinkIdFeedbackUi(uxManager, cameraUi, {
  showHelpTooltipTimeout: 15000, // ms before tooltip appears
});

Deprecated: The setHelpTooltipShowDelay and setHelpTooltipHideDelay methods on BlinkIdUxManager are deprecated. Prefer configuring delays through FeedbackUiOptions instead.

See the example apps in the apps/examples directory in the GitHub repository for full usage details.

Development

To build the package locally:

  1. Install dependencies in the monorepo root:

    pnpm install
  2. Build the package:

    pnpm build
  3. Run tests:

    pnpm test

The output files will be available in the dist/ and types/ directories.

Internationalization

You can customize UI strings when creating the feedback UI:

createBlinkIdFeedbackUi(uxManager, cameraUi, {
   localizationStrings: {
      scan_the_barcode: "Please scan the barcode"
   }
});

Provided Translations


You can import any of these files directly or use them as a starting point for your own localization.