1.7.6 • Published 12 days ago

@igloo-ui/modal v1.7.6

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
12 days ago

Modal

The Modal is an interface component positioned over the page content to emphasize new elements. It blocks standard navigation and requires interaction from the user to be dismissed.

Installation

To install @igloo-ui/modal in your project, you will need to run the following command using npm:

npm install @igloo-ui/modal

If you prefer Yarn, use the following command instead:

yarn add @igloo-ui/modal

Usage

Then to use the component in your code just import it!

import Modal from '@igloo-ui/modal';
import Button from '@igloo-ui/button';

const [show, setShow] = useState(false);

<Button appearance="secondary" onClick={() => setShow(true)}>
  open modal
</Button>;

<Modal
  title={`Modal title`}
  isDismissable
  isClosable
  isOpen={show}
  closeBtnAriaLabel={`Close`}
  onClose={() => setShow(false)}
>
  Modal content
</Modal>;

Troubleshooting

When a Dialog opens above a Modal

In this case, when you close the Dialog, the Modal closes automatically. Here is a workaround to remedy this.

To solve the problem, set the isDismissable property of the Modal to false when the Dialog component is up and then return to true when it closes.

1.7.6

12 days ago

1.7.5

25 days ago

1.7.4

27 days ago

1.7.3

1 month ago

1.7.2

2 months ago

1.7.1

2 months ago

1.7.0

2 months ago

1.6.10

3 months ago

1.6.9

3 months ago

1.6.8

3 months ago

1.6.7

3 months ago

1.6.6

3 months ago

1.6.5

3 months ago

1.6.4

3 months ago

1.6.3

3 months ago

1.6.2

3 months ago

1.6.1

3 months ago

1.6.0

4 months ago

1.5.4

4 months ago

1.5.3

5 months ago

1.5.2

5 months ago

1.5.1

5 months ago

1.5.0

5 months ago

1.4.3

5 months ago

1.4.2

6 months ago

1.3.3

9 months ago

1.4.1

7 months ago

1.3.2

10 months ago

1.4.0

8 months ago

1.3.1

11 months ago

1.2.0

1 year ago

1.1.1

1 year ago

1.2.3

1 year ago

1.2.2

1 year ago

1.3.0

1 year ago

1.2.1

1 year ago

1.1.2

1 year ago

1.0.2

1 year ago

1.1.0

1 year ago

1.0.1

2 years ago

1.0.3

1 year ago

1.0.0

2 years ago

0.2.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.0

2 years ago