Skip to content

v31.13.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 24 May 00:42
· 879 commits to master since this release
c66294e

Minor Changes

  • MenuRenderer, OverflowMenu: Provide context data to onClose (#1115)

    The onClose handler now receives data to allow consumers to discern why the menu closed — either by exiting or selecting an action. See the documentation for more details.

    EXAMPLE USAGE:

    <MenuRenderer
      onClose={closeReason => {
        // ...
      }}
    />