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

@blorkfield/blork-tabs

v0.5.0

Published

A framework-agnostic tab/panel management system with snapping and docking

Downloads

304

Readme

@blorkfield/blork-tabs

A framework-agnostic tab/panel management system with snapping and docking capabilities.

Features

  • Panel Snapping - Panels snap together to form linked chains
  • Anchor Docking - Dock panels to predefined screen positions
  • Drag Modes - Drag entire groups or detach individual panels
  • Collapse/Expand - Panels can be collapsed with automatic repositioning
  • Pin - Pin panels to prevent dragging and opt out of auto-hide
  • Auto-Hide - Panels can hide after inactivity and show on interaction
  • Event System - Subscribe to drag, snap, and collapse events
  • Fully Typed - Complete TypeScript support
  • Framework Agnostic - Works with plain DOM or any framework
  • Customizable - CSS variables for easy theming

Installation

npm install @blorkfield/blork-tabs

Quick Start

import { TabManager } from '@blorkfield/blork-tabs';
import '@blorkfield/blork-tabs/styles.css';

// Create the tab manager
const manager = new TabManager({
  snapThreshold: 50,
  panelGap: 0,
  panelMargin: 16,
});

// Create panels programmatically
manager.addPanel({
  id: 'settings',
  title: 'Settings',
  content: '<div>Settings content here</div>',
});

manager.addPanel({
  id: 'tools',
  title: 'Tools',
  content: '<div>Tools content here</div>',
});

// Or register existing DOM elements
manager.registerPanel('my-panel', document.getElementById('my-panel'), {
  dragHandle: document.getElementById('my-panel-header'),
  collapseButton: document.getElementById('my-panel-collapse'),
  contentWrapper: document.getElementById('my-panel-content'),
});

// Position panels and create snap chains
// positionPanelsFromRight takes IDs right-to-left; createSnapChain takes them left-to-right
manager.positionPanelsFromRight(['tools', 'settings']);
manager.createSnapChain(['settings', 'tools']);

// Listen to events
manager.on('snap:panel', ({ movingPanels, targetPanel, side }) => {
  console.log(`Panels snapped to ${side} of ${targetPanel.id}`);
});

Configuration

const manager = new TabManager({
  // Distance threshold for panel-to-panel snapping (default: 50)
  snapThreshold: 50,

  // Gap between snapped panels (default: 0)
  panelGap: 0,

  // Margin from window edges (default: 16)
  panelMargin: 16,

  // Distance threshold for anchor snapping (default: 80)
  anchorThreshold: 80,

  // Default panel width for calculations (default: 300)
  defaultPanelWidth: 300,

  // Container element (default: document.body)
  container: document.body,

  // Auto-create default anchors (default: true)
  initializeDefaultAnchors: true,

  // CSS class prefix (default: 'blork-tabs')
  classPrefix: 'blork-tabs',

  // Whether panels start hidden (default: false)
  startHidden: false,

  // Milliseconds before auto-hiding on inactivity (default: undefined = no auto-hide)
  autoHideDelay: undefined,
});

Panel Configuration

Each panel accepts the following options via addPanel(config):

manager.addPanel({
  id: 'my-panel',           // Required. Unique identifier.
  title: 'My Panel',        // Header text.
  width: 300,               // Panel width in px (default: 300).
  initialPosition: { x: 100, y: 100 },  // Starting position. Auto-placed if omitted.
  content: '<div>...</div>', // HTML string or HTMLElement for the content area.

  // Collapse
  startCollapsed: true,     // Whether the panel starts collapsed (default: true).
  collapsible: true,        // Show collapse button (default: true).

  // Pin
  pinnable: false,          // Show pin button in header (default: false).
  startPinned: false,       // Initial pin state (default: false).

  // Drag
  draggable: true,          // Allow dragging (default: true).
  detachable: true,         // Show detach grip for single-panel drag (default: true).

  // Auto-hide overrides (see Auto-Hide section)
  startHidden: false,       // Override global startHidden for this panel.
  autoHideDelay: undefined, // Override global autoHideDelay (0 = disable auto-hide).

  // Z-index
  zIndex: 1000,             // Default z-index (default: 1000).
  dragZIndex: 1002,         // Z-index while dragging (default: 1002).
});

API Reference

TabManager

Panel Management

  • addPanel(config) - Create a new panel
  • addDebugPanel(config) - Create a debug panel with logging interface
  • registerPanel(id, element, options) - Register existing DOM element
  • removePanel(id) - Remove a panel
  • getPanel(id) - Get panel by ID
  • getAllPanels() - Get all panels

Snap Chain Management

  • getSnapChain(panelId) - Get all panels in same chain
  • snap(leftPanelId, rightPanelId) - Manually snap two panels
  • detach(panelId) - Detach panel from chain
  • createSnapChain(panelIds) - Create chain from panel IDs (left-to-right order)
  • updatePositions() - Recalculate snapped positions

Positioning

positionPanelsFromRight and positionPanelsFromLeft take panel IDs in opposite orders:

  • positionPanelsFromRight(panelIds, gap?) — first ID is placed at the right edge, rest go leftward. Pass IDs right-to-left.
  • positionPanelsFromLeft(panelIds, gap?) — first ID is placed at the left edge, rest go rightward. Pass IDs left-to-right.

Because createSnapChain uses left-to-right order, you'll typically reverse the array between the two calls:

// Visual order left-to-right: properties, tools, settings
manager.positionPanelsFromRight(['settings', 'tools', 'properties']); // right-to-left
manager.createSnapChain(['properties', 'tools', 'settings']);          // left-to-right

Anchors

  • addAnchor(config) - Add custom anchor
  • addPresetAnchor(preset) - Add preset anchor
  • removeAnchor(id) - Remove anchor
  • getAnchors() - Get all anchors

Auto-Hide

  • show(panelId) - Show a hidden panel
  • hide(panelId) - Hide a panel
  • isHidden(panelId) - Check if panel is hidden

Events

  • on(event, listener) - Subscribe to event
  • off(event, listener) - Unsubscribe from event

Events

| Event | Description | |-------|-------------| | panel:added | Panel was added | | panel:removed | Panel was removed | | drag:start | Drag operation started | | drag:move | Panel being dragged | | drag:end | Drag operation ended | | snap:panel | Panels snapped together | | snap:anchor | Panels snapped to anchor | | panel:detached | Panel detached from chain | | panel:pin | Panel pinned/unpinned | | panel:collapse | Panel collapsed/expanded | | panel:show | Panel became visible (auto-hide) | | panel:hide | Panel became hidden (auto-hide) |

Drag Modes

Each panel header has two drag zones:

  • Detach grip (small handle on the left of the header) — drags only that panel. It is detached from its snap chain and moved independently.
  • Title / header area — drags the entire connected snap chain as a group.

Set detachable: false to hide the grip and make the header always drag the group.

Pinning

Pinning locks a panel in place and exempts it from auto-hide. Enable the pin button with pinnable: true:

manager.addPanel({
  id: 'hud',
  title: 'HUD',
  pinnable: true,
  startPinned: true,   // start already pinned
  autoHideDelay: 5000, // pin will override this
});

What pinning does

  • Prevents dragging — a pinned panel cannot be moved, even when dragging its header.
  • Immune to auto-hide — a pinned panel is always visible regardless of the autoHideDelay. Pinning cancels any pending hide timer and shows the panel if it was hidden. Unpinning restarts the timer.
  • Splits snap chains on drag — if a pinned panel sits in the middle of a chain and you drag a neighbour, the chain severs at the pin boundary. Only the panels on the same side as the grabbed panel move; the pinned panel and everything beyond it stay put.
// Chain: A — B — [P pinned] — C — D
// Grabbing B moves [A, B] and severs the B↔P bond.
// Grabbing C moves [C, D] and severs the P↔C bond.

Events

manager.on('panel:pin', ({ panel, isPinned }) => {
  console.log(`${panel.id} is now ${isPinned ? 'pinned' : 'unpinned'}`);
});

Multi-Section Panel Content

When creating panels with multiple sections (like a command menu with categories), put all sections within a single content string. Do not use multiple panels or multiple content wrappers—this breaks scrolling and causes content cutoff.

Correct approach:

manager.addPanel({
  id: 'command-menu',
  title: 'Commands',
  content: `
    <div style="margin-bottom: 12px;">
      <div style="font-size: 11px; font-weight: 600; color: #4a90d9; padding: 4px 8px; text-transform: uppercase;">File</div>
      <div>New File</div>
      <div>Open...</div>
      <div>Save</div>
    </div>
    <div style="margin-bottom: 12px;">
      <div style="font-size: 11px; font-weight: 600; color: #4a90d9; padding: 4px 8px; text-transform: uppercase;">Edit</div>
      <div>Undo</div>
      <div>Redo</div>
      <div>Cut</div>
    </div>
    <div>
      <div style="font-size: 11px; font-weight: 600; color: #4a90d9; padding: 4px 8px; text-transform: uppercase;">View</div>
      <div>Zoom In</div>
      <div>Zoom Out</div>
    </div>
  `,
});

The panel content area has a max-height (default 20vh) with overflow-y: auto, so long content scrolls properly. Splitting sections across multiple content wrappers defeats this behavior.

Auto-Hide

Panels can automatically hide after a period of inactivity and reappear when the user interacts with the page. This is useful for OBS overlays or any interface where you want panels to get out of the way.

Configuration

Auto-hide has two independent options:

  • startHidden - Whether the panel starts invisible (default: false)
  • autoHideDelay - Milliseconds before hiding after inactivity (default: undefined = no auto-hide)

These can be set globally on the TabManager or per-panel:

// Global: all panels hide after 3 seconds of inactivity
const manager = new TabManager({
  autoHideDelay: 3000,
  startHidden: true,
});

// Per-panel overrides
manager.addPanel({
  id: 'always-visible',
  title: 'Always Visible',
  autoHideDelay: 0,  // Disable auto-hide for this panel
});

manager.addPanel({
  id: 'quick-hide',
  title: 'Quick Hide',
  autoHideDelay: 1000,  // This panel hides faster
  startHidden: false,   // But starts visible
});

Behavior Matrix

| startHidden | autoHideDelay | Behavior | |-------------|---------------|----------| | false | undefined | Normal - always visible | | true | undefined | Starts hidden, shows on activity, never hides again | | false | 3000 | Starts visible, hides after 3s of inactivity | | true | 3000 | Starts hidden, shows on activity, hides after 3s of inactivity |

Pin interaction

Pinning a panel overrides auto-hide entirely for that panel — it stays visible regardless of inactivity. Unpinning re-enables the timer. Each panel is tracked independently; pinning one panel in a group has no effect on its neighbours.

Events

manager.on('panel:show', ({ panel, trigger }) => {
  // trigger: 'activity' (user interaction) or 'api' (programmatic)
  console.log(`${panel.id} is now visible`);
});

manager.on('panel:hide', ({ panel, trigger }) => {
  // trigger: 'timeout' (auto-hide delay) or 'api' (programmatic)
  console.log(`${panel.id} is now hidden`);
});

Programmatic Control

manager.hide('my-panel');  // Hide immediately
manager.show('my-panel');  // Show immediately
manager.isHidden('my-panel');  // Check visibility

Debug Panel

A plug-and-play debug panel for in-browser event logging—useful for OBS browser sources and other environments without console access.

Creating a Debug Panel

import { TabManager } from '@blorkfield/blork-tabs';

const manager = new TabManager();

// Create a debug panel
const debug = manager.addDebugPanel({
  id: 'debug',
  title: 'Event Log',        // optional, default: 'Debug'
  width: 300,                // optional, default: 300
  maxEntries: 50,            // optional, default: 50
  showTimestamps: true,      // optional, default: false
  showClearButton: true,     // optional, default: true
  startCollapsed: true,      // optional, default: true
  initialPosition: { x: 16, y: 16 },
});

Logging Events

Log events with different severity levels, each with distinct color coding:

// Info/Log level - blue (accent color)
debug.log('event-name', { some: 'data' });
debug.info('connection', { status: 'connected' });

// Warning level - yellow
debug.warn('cache', { message: 'Cache expired, refreshing...' });

// Error level - red
debug.error('request', { code: 500, message: 'Server error' });

// Clear all entries
debug.clear();

Features

  • Pre-styled monospace container - Optimized for log readability
  • Color-coded log levels - Blue for info, yellow for warnings, red for errors
  • Auto-scroll - Automatically scrolls to show latest entries
  • Entry limit - Configurable max entries with FIFO removal of oldest
  • Timestamps - Optional timestamp display for each entry
  • Hover glow effect - Border lights up with accent color on hover
  • Enlarge on hover - Hover for 5 seconds to expand to 75% of screen with 2x text size
  • Modal backdrop - Enlarged view has a backdrop; click × or backdrop to close
  • Standard panel features - Drag, snap, collapse, auto-hide all work

Enlarged View Behavior

The debug panel has a special "focus mode" for reading logs:

  1. Hover for configurable delay → Panel enlarges to 75% of screen with doubled text size (default: 5 seconds, configurable via hoverDelay)
  2. Mouse can move freely → Panel stays enlarged, won't close on mouse leave
  3. Click × or backdrop → Returns to normal size

The × button is only visible when enlarged. Set hoverDelay: 0 to disable the enlarge feature entirely.

Auto-hide interaction: When hovering a debug panel that has auto-hide enabled, the auto-hide timer is paused so the panel won't disappear before the hover-to-enlarge triggers.

Configuration Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | maxEntries | number | 50 | Maximum log entries before oldest are removed | | showTimestamps | boolean | false | Show timestamps on each entry | | hoverDelay | number | 5000 | Milliseconds to hover before enlarging (0 = disable) |

Plus all standard PanelConfig options (id, title, width, initialPosition, startCollapsed, etc.)

Accessing the Underlying Panel

// The debug panel interface includes access to the panel state
debug.panel;  // PanelState - for advanced manipulation

Embeddable Debug Log

You can embed a debug log inside any panel or container element using createDebugLog():

const manager = new TabManager();

// Create a panel with custom content
const panel = manager.addPanel({
  id: 'my-panel',
  title: 'My Panel',
  content: '<div id="my-content">Some content</div>',
});

// Add a debug log section to the panel
const logSection = document.createElement('div');
panel.contentWrapper.appendChild(logSection);

// Create the embedded debug log (shares hover-to-enlarge with standalone panels)
const embeddedLog = manager.createDebugLog(logSection, {
  maxEntries: 20,
  showTimestamps: true,
  hoverDelay: 3000,  // 3 second hover delay (0 to disable, default: 5000)
});

// Use it like a regular debug panel
embeddedLog.log('event', { data: 'value' });
embeddedLog.info('status', { connected: true });
embeddedLog.warn('warning', { message: 'Low memory' });
embeddedLog.error('error', { code: 500 });
embeddedLog.clear();

The embedded log supports the same hover-to-enlarge behavior as the standalone debug panel.

CSS Customization

Override CSS variables to customize appearance:

:root {
  --blork-tabs-panel-bg: #1a1a2e;
  --blork-tabs-panel-border: 1px solid #2a2a4a;
  --blork-tabs-panel-radius: 8px;
  --blork-tabs-panel-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --blork-tabs-header-bg: #2a2a4a;
  --blork-tabs-header-color: #e0e0e0;
  --blork-tabs-content-bg: #1a1a2e;
  --blork-tabs-content-max-height: 20vh;
  --blork-tabs-accent: #4a90d9;
}

For light theme, add blork-tabs-light class to container:

<body class="blork-tabs-light">

License

MIT