Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-menu-list

Package Overview
Dependencies
Maintainers
6
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-menu-list - npm Package Versions

1345

6.1.3

Diff

Changelog

Source

6.1.3 (2022-08-11)

  • Fixed issue where MenuButton closes its dropdown if the page loses and regains focus.
macil
published 7.0.3 •

Changelog

Source

7.0.3 (2021-10-06)

  • Fixed issue #35.
macil
published 6.1.2 •

Changelog

Source

6.1.2 (2021-10-06)

macil
published 7.0.2 •

Changelog

Source

7.0.2 (2021-03-27)

  • Batch React updates during all event handling.
macil
published 6.1.1 •

Changelog

Source

6.1.1 (2021-03-27)

  • Batch React updates during all event handling.
macil
published 7.0.1 •

Changelog

Source

7.0.1 (2020-09-11)

  • Use correct types for events in the Typescript definition of MenuButton's renderButton prop.
macil
published 7.0.0 •

Changelog

Source

7.0.0 (2020-09-10)

  • Breaking change: MenuButton's ButtonComponent prop was replaced with the renderButton prop. This change makes it easier to pass values down from a closure to the button element, and avoids a common mistake with the old API where a user may pass a fresh component on every render, causing React to mount a new component instance on every render.

Affected old code example:

return (
  <MenuButton
    ButtonComponent={MyButtonComponent}
    {/*...*/}
  />
);

New code example:

return (
  <MenuButton
    renderButton={(domRef, opened, onKeyDown, onMouseDown) =>
      <MyButtonComponent
        domRef={domRef}
        onKeyDown={onKeyDown}
        onMouseDown={onMouseDown}
      />
    }
    {/*...*/}
  />
);
macil
published 6.1.0 •

Changelog

Source

6.1.0 (2019-10-15)

  • Added menuParentElement prop. (#14)
  • Added buttonProps prop. (#13)
macil
published 6.0.5 •

Changelog

Source

6.0.5 (2019-08-09)

  • Fixed a bug where if the user opened a MenuButton and then released the click over the MenuButton's dropdown (which would always happen if the MenuButton had position: 'cover' passed in the positionOptions prop), the MenuButton would close the dropdown.
macil
published 6.0.4 •

Changelog

Source

6.0.4 (2019-05-31)

  • Fixed compatibility with Flow v0.100.
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