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

@marcinfilip/input-dropdown

v1.0.1

Published

Simple dropdown positioning library for input/textarea elements

Readme

Input Dropdown

A lightweight dropdown positioning library for input and textarea elements.

Features

  • Width matching - Dropdown width automatically matches the reference input/textarea
  • Auto-flip - Flips to top when there's not enough space below
  • Auto-update - Repositions on scroll, resize, and element size changes
  • Lightweight - No dependencies, ~2KB minified

Installation

npm install input-dropdown

Usage

Basic Usage

import { computePosition, applyPosition } from 'input-dropdown';

const input = document.querySelector('input');
const dropdown = document.querySelector('.dropdown');

const position = computePosition(input, dropdown, {
  placement: 'bottom',
  offset: 4,
});

applyPosition(dropdown, position);

With Auto-Update

import { computePosition, applyPosition, autoUpdate } from 'input-dropdown';

const input = document.querySelector('input');
const dropdown = document.querySelector('.dropdown');

const cleanup = autoUpdate(input, dropdown, () => {
  const position = computePosition(input, dropdown, {
    placement: 'bottom',
    offset: 4,
  });
  applyPosition(dropdown, position);
});

// Call cleanup when done
cleanup();

Using createDropdown Helper

import { createDropdown } from 'input-dropdown';

const input = document.querySelector('input');
const dropdown = document.querySelector('.dropdown');

const instance = createDropdown(input, dropdown, {
  placement: 'bottom',
  offset: 4,
  flipOnOverflow: true,
});

// Show/hide the dropdown
instance.show();
instance.hide();

// Check visibility
console.log(instance.isVisible());

// Manual update
instance.update();

// Cleanup
instance.destroy();

API

computePosition(reference, floating, config?)

Computes the position for the dropdown.

Parameters:

  • reference - The input or textarea element
  • floating - The dropdown element
  • config - Optional configuration object
    • placement - 'bottom' | 'top' (default: 'bottom')
    • offset - Spacing in pixels (default: 0)
    • flipOnOverflow - Flip placement when overflow detected (default: true)

Returns: Position object with x, y, width, and placement.

applyPosition(floating, position)

Applies the computed position to the dropdown element.

autoUpdate(reference, floating, update, options?)

Automatically updates position on scroll/resize.

Options:

  • ancestorScroll - Update on ancestor scroll (default: true)
  • ancestorResize - Update on ancestor resize (default: true)
  • elementResize - Update on element resize (default: true)

Returns: Cleanup function.

createDropdown(reference, floating, config?)

Creates a dropdown instance with show/hide controls.

Returns: DropdownInstance with methods:

  • show() - Show and start auto-updating
  • hide() - Hide and stop auto-updating
  • update() - Manually update position
  • destroy() - Cleanup all listeners
  • isVisible() - Check if dropdown is visible

Development

# Install dependencies
npm install

# Build
npm run build

# Run demo
npm run demo

License

MIT