@slushman/react-modal
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

@slushman/react-modal

Adds a simple modal for React projects. Uses the HTML dialog element underneath.

Installation

Install with your preferred package manager.

yarn add @slushman/react-modal
or
npm install @slushman/react-modal

Dependencies

  • React
  • css.gg
  • Tailwind

Example usage

import { Modal, useModal } from '@slushman/react-modal'

const { isVisible, toggleModal } = useModal();

<Modal isOpen={isVisible} onClose={toggleModal}>
  {modal content goes here}
</Modal>

Props

classes

Optional object to customize the Tailwind classes on each element. The options are:

  • dialog
  • wrapper
  • header
  • title
  • button
  • closeIcon

closeButtonAriaLabel

Optional accessibility label for the close button. The default label is "Close". This label is hidden in the UI.

isOpen

Required boolean prop to determine if the modal should be displayed in the UI. Managing the modal happens in your project.

onClose

Required function called when the modal closes. Should be part of managing the state of the modal.

title

Optional modal title, displayed at the top of the modal.

type

Optional style of the modal. The options are:

  • standard (default)
  • full
  • confirmation

Full makes the modal full screen. Confirmation is not currently supported.

Readme

Keywords

none

Package Sidebar

Install

npm i @slushman/react-modal

Weekly Downloads

1

Version

1.2.0

License

MIT

Unpacked Size

186 kB

Total Files

8

Last publish

Collaborators

  • chriswilcoxson