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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-resizable-layout

v0.7.2

Published

Lightweight, accessible headless React component and hook for drag-and-drop resizable layouts.

Downloads

29,034

Readme

react-resizable-layout

npm version MIT License minziggped size dependencies count tree shaking

A lightweight, accessible headless React component and hook for drag-and-drop resizable layouts.

Hero Image

Edit react-resizable-layout

Storybook Demo

Features

  • 📦 Lightweight
  • 🕳 Headless
  • 🫶🏽 Accessible
  • 🤏 Drag and Drop Support
  • ⌨️ Keyboard Support
  • 🫙 Zero Dependencies

Installation

Install from npm:

# Using npm
npm install react-resizable-layout

# Using Yarn
yarn add react-resizable-layout

Usage

Resizable component

import Resizable from 'react-resizable-layout';

<Resizable axis={'x'}>
  {({ position, separatorProps }) => (
    <div className="wrapper">
      <div className="left-block" style={{ width: position }} />
      <YourSeparatorComponent {...separatorProps} />
      <div className="right-block" />
    </div>
  )}
</Resizable>

useResizable hook

import { useResizable } from 'react-resizable-layout';

const Component = () => {
  const { position, separatorProps } = useResizable({
    axis: 'x',
  })

  return (
    <div className="wrapper">
      <div className="left-block" style={{ width: position }} />
      <YourSeparatorComponent {...separatorProps} />
      <div className="right-block" />
    </div>
  )
}

Aria Props

The following attributes are added to separatorProps in accordance with W3C.
https://www.w3.org/TR/wai-aria-1.2/#separator

| Attribute | Value | |------------------|--------------------------------| | role | 'separator' | | aria-valuenow | position | | aria-valuemin | props.min | | aria-valuemax | props.max | | aria-orientation | 'vertical' or 'horizontal' | | aria-disabled | props.disabled |

Configuration

Common Props

| Name | Type | Default | Required | Description | |---------------|-------------------------|----------|----------|---------------------------------------------------------------------------| | axis | 'x' or 'y' | - | ◯ | Resize direction | | containerRef | ReactRef | - | - | Reference to container for calculating position | | disabled | boolean | false | - | Disable resize | | initial | number | 0 | - | Initial size | | min | number | 0 | - | Minimum size | | max | number | Infinity | - | Maximum size | | reverse | boolean | false | - | If true, returns position of the opposite side | | step | number | 10 | - | Pixel steps when operating with keyboard | | shiftStep | number | 50 | - | Pixel steps when operating with keyboard while holding down the shift key | | onResizeStart | function | - | - | Callback on resize start | | onResizeEnd | function | - | - | Callback on resize end |

Resizable component children args

useResizable hook returns same.

| Name | Type | Description | |----------------|----------|----------------------------------------------------------------| | position | number | Separator's position (Width for 'x' axis, height for 'y' axis) | | endPosition | number | Separator's position at end of drag | | isDragging | boolean | True if dragging | | separatorProps | object | Separator's props like onPointerDown | | setPosition | function | Set separator's position |

About keyboard support

The following keyboard operations are supported.

| Key | Operation | |-----------------------------------|---------------------------------------------| | Arrow (,,,) | Move the separator by 10px (default) | | Shift + Arrow (,,,) | Move the separator by 50px (default) | | Enter | Reset the separator to the initial position |

About mouse support

Double-click on the separator to return it to its initial position.

Contribution

Feel free to open an issue or make a pull request.

License

Distributed under the MIT License. See LICENSE for more information.