This package has been deprecated

Author message:

This Package was Moved. Please use @yuki0410/minimal-modal

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

2.1.1 • Public • Published

MinimalModal.js

licence npm minified size dependencies downloads

Minimal and Tiny Javascript Library for Modal Dialog


The aim of this library is to easily introduce a minimalistic modal dialog. It is a library of only about 18KB.

 

Features

Toggles aria-hidden attributes & open attributes on open and close

Closes dialog on overlay click or ESC press

Traps tab focus within the modal (Dependent on focus-trap)

Lock the scrolling outside the modal (Dependent on body-scroll-lock)

Make By Typescript

Supported for IE11+

 

Install

via npm

npm install @ohnaka0410/minimal-modal --save
// Common.JS
const MinimalModal = require('@ohnaka0410/minimal-modal');

// ESModules
import { MinimalModal } from '@ohnaka0410/minimal-modal';

via CDN direct link

<script src="https://cdn.jsdelivr.net/npm/@ohnaka0410/minimal-modal@v2.1.1/dist/minimal-modal.min.js"></script>

direct download

curl -o https://cdn.jsdelivr.net/npm/@ohnaka0410/minimal-modal@v2.1.1/dist/minimal-modal.min.js
<script src="/path/to/minimal-modal.min.js"></script>

 

Usage

automatic

MinimalModal.activate();

demo

manual

// open
const modal = document.querySelector('#someModal');
MinimalModal.show(modal);

// close
MinimalModal.close();

demo

 

Changelog

Refer to the releases page.

 

Contribution

  1. Fork the repository on GitHub
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Push your work back up to your fork
  5. Submit a Pull request so that we can review your changes

NOTE: Be sure to merge the latest from "upstream" before making a pull request!

 

Licence

This project is licensed under MIT license.

 

Created and maintained by

@ohnaka0410 🇯🇵

Package Sidebar

Install

npm i @ohnaka0410/minimal-modal

Weekly Downloads

0

Version

2.1.1

License

MIT

Unpacked Size

377 kB

Total Files

8

Last publish

Collaborators

  • ohnaka0410