Socket
Socket
Sign inDemoInstall

@hig/modal

Package Overview
Dependencies
Maintainers
4
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hig/modal

HIG Modal


Version published
Weekly downloads
518
decreased by-13.95%
Maintainers
4
Weekly downloads
 
Created
Source

Modal

A modal is an overlay that focuses the customer's attention on a single task or set of controls. It creates a mode that disables the main window but keeps it visible with the modal window as a child window in front of it. Users must interact with the modal window before they can return to the parent application.

Read more about when and how to use the Modal component on the internal wiki.

Getting started

Install the package

yarn add @hig/modal @hig/theme-context @hig/theme-data

Import the component

import Modal from '@hig/modal';

Basic usage

<Modal
  title="Remove your item?"
  open
>
  <Typography>This action is irreversible.</Typography>
  
  <Button title="Cancel" type="outline" />
  <Button title="Remove" type="outline" />
</Modal>

Styling

You will likely want to provide your own styles for the Modal body content, including positioning for Typography and Button elements. Modal has a stylesheet prop that accepts a function wherein you can modify Modal's styles. For instance

import Modal from "@hig/modal";
import Typography from "@hig/typography";
import Button from "@hig/button";
import merge from "lodash.merge";

function YourComponent() {
  // ...
  const modalStyles = styles =>
    merge(styles, {
      modal: {
        bodyContent: {
          display: "flex",
          flexDirection: "column",
          justifyContent: "space-between"
        }
      }
    })
                                      
  return (
    <Modal open title="Your title" stylesheet={modalStyles}>
      <Typography>Modal content</Typography>
      <div style={{ alignSelf: "flex-end" }}>
        <Button title="Ok" type="outline" />
      </div>
    </Modal>
  )
}

FAQs

Package last updated on 02 Aug 2019

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