Socket
Socket
Sign inDemoInstall

@floating-ui/react

Package Overview
Dependencies
Maintainers
0
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@floating-ui/react

Floating UI for React


Version published
Weekly downloads
3.1M
increased by7.35%
Maintainers
0
Weekly downloads
 
Created

What is @floating-ui/react?

The @floating-ui/react package is a library for creating floating elements that can be positioned next to a given reference element. It is commonly used for tooltips, popovers, dropdowns, and similar components. The library provides a set of hooks and utilities to manage the positioning and behavior of these floating elements in a React application.

What are @floating-ui/react's main functionalities?

Positioning Tooltips

This code demonstrates how to use @floating-ui/react to position a tooltip above a reference button, with an offset and the ability to flip based on available space.

import {useFloating, offset, flip} from '@floating-ui/react';

function Tooltip() {
  const {x, y, reference, floating, strategy} = useFloating({
    placement: 'top',
    middleware: [offset(10), flip()]
  });

  return (
    <>
      <button ref={reference}>Reference Element</button>
      <div ref={floating} style={{
        position: strategy,
        top: y ?? '',
        left: x ?? ''
      }}>Floating Content</div>
    </>
  );
}

Creating Popovers

This example shows how to create a popover component positioned to the right of a reference element, including shifting to stay within the viewport and an arrow pointing to the reference.

import {useFloating, shift, arrow} from '@floating-ui/react';

function Popover({referenceElement}) {
  const {x, y, floating, strategy, middlewareData} = useFloating({
    placement: 'right-start',
    middleware: [shift(), arrow({element: arrowElement})]
  });

  return (
    <div ref={floating} style={{
      position: strategy,
      top: y ?? '',
      left: x ?? ''
    }}>
      Popover Content
      <div ref={arrowElement} style={{
        position: 'absolute',
        [middlewareData.arrow.x != null ? 'left' : 'top']: middlewareData.arrow.x ?? middlewareData.arrow.y
      }} />
    </div>
  );
}

Other packages similar to @floating-ui/react

Keywords

FAQs

Package last updated on 25 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc