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

qrlayout-ui

v1.0.1

Published

Visual designer and UI components for QR layout generation

Readme

qrlayout-ui

A framework-agnostic, embeddable UI for designing sticker layouts with QR codes. Part of the QR Layout Tool.

🚀 Live Demo

QR Layout Designer Screenshot

Features

  • Framework Independent: Built with vanilla TypeScript, works with React, Vue, Angular, Svelte, or plain HTML/JS.
  • Drag & Drop Designer: Visual placement of text and QR code elements.
  • Data Binding: Bind fields like {{name}} or {{id}} from your entity schemas.
  • Rich Text Styling: Customize font size, weight, and alignment (horizontal/vertical).
  • Auto-Join Fields: Set a "Field Separator" (e.g., |) on QR elements to automatically join variables (e.g. {{id}}{{name}} becomes ID|NAME).
  • Dark Mode: Built-in support for light and dark themes.
  • Flexible Units: Design in millimeters (mm), centimeters (cm), inches (in), or pixels (px).
  • Export: Get the final layout JSON for storage.

Installation

npm install qrlayout-ui qrlayout-core

Usage

This library is exposed as a class QRLayoutDesigner that can be mounted into any HTML element. It also re-exports StickerPrinter for rendering layouts without the UI.

1. Import Styles

Make sure to import the CSS file in your project entry point:

import "qrlayout-ui/style.css";

2. Styling the Container

The designer expects its parent container to have a defined width and height. If the container has zero height, the designer will not be visible.

For a full-screen experience, you can use the following CSS:

.designer-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

3. Basic Setup

import { QRLayoutDesigner } from "qrlayout-ui";

const container = document.getElementById("my-designer-container");

const designer = new QRLayoutDesigner({
    element: container,
    
    // Optional: Provide Schemas for data binding
    entitySchemas: {
        employee: {
            label: "Employee",
            fields: [
                { name: "name", label: "Full Name" },
                { name: "id", label: "Employee ID" }
            ],
            sampleData: { name: "Vishal Naik", id: "12345" } // Used for preview
        }
    },

    // Optional: Load an existing layout
    initialLayout: {
        id: "1",
        name: "My Layout",
        targetEntity: "employee",
        width: 100,
        height: 60,
        unit: "mm",
        backgroundColor: "#ffffff",
        elements: []
    },

    onSave: (layout) => {
        console.log("Layout saved:", layout);
        // Save to your backend here
    }
});

3. Cleanup

When unmounting your component (e.g., in React's useEffect return or Vue's onUnmounted):

designer.destroy();

Props / Options

| Option | Type | Description | |---|---|---| | element | HTMLElement | Required. The DOM element to mount the designer into. | | entitySchemas | Record<string, Schema> | Definitions for data entities. Allows users to pick fields (like {{name}}) to bind to text/QR elements. | | initialLayout | StickerLayout | The initial layout state to load. | | onSave | (layout) => void | Callback triggered when the "Save Layout" button is clicked. |

Integration Examples

Since qrlayout-ui is framework-agnostic, it can be easily integrated into any setup.

1. React (TypeScript)

import { useEffect, useRef } from 'react';
import { QRLayoutDesigner } from 'qrlayout-ui';
import 'qrlayout-ui/style.css';

const MyDesigner = () => {
  const containerRef = useRef<HTMLDivElement>(null);

  useEffect(() => {
    if (!containerRef.current) return;

    const designer = new QRLayoutDesigner({
      element: containerRef.current,
      onSave: (data) => console.log('Saved Layout:', data)
    });

    return () => designer.destroy();
  }, []);

  return <div ref={containerRef} style={{ width: '100%', height: '800px' }} />;
};

export default MyDesigner;

2. Vue 3 (Composition API)

<script setup>
import { onMounted, onUnmounted, ref } from 'vue';
import { QRLayoutDesigner } from 'qrlayout-ui';
import 'qrlayout-ui/style.css';

const container = ref(null);
let designer = null;

onMounted(() => {
  designer = new QRLayoutDesigner({
    element: container.value,
    onSave: (data) => console.log('Saved:', data)
  });
});

onUnmounted(() => {
  if (designer) designer.destroy();
});
</script>

<template>
  <div ref="container" style="width: 100%; height: 800px;"></div>
</template>

3. Vanilla JavaScript / HTML

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="node_modules/qrlayout-ui/dist/style.css">
</head>
<body>
    <div id="designer" style="width: 100%; height: 800px;"></div>

    <script type="module">
        import { QRLayoutDesigner } from 'qrlayout-ui';
        
        const designer = new QRLayoutDesigner({
            element: document.getElementById('designer'),
            onSave: (data) => console.log('Saved:', data)
        });
    </script>
</body>
</html>