0.1.8 • Published 1 year ago

react-modalicious v0.1.8

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

React-Modalicious

React-Modalicious is a lightweight and customizable modal notification library designed specifically for React applications. It allows developers to integrate modals and notifications with minimal setup and configuration easily.

Features

  • Easy to use and integrate into React projects
  • Customizable themes (light and dark)
  • Simple API for creating modals and notifications
  • Support for multiple notifications
  • Lightweight and dependency-free

Technologies

React Nodejs Javascript Typescript HTML CSS3 Tailwind VSCode Git

Getting Started

Installation

$ npm install react-modalicious
$ yarn add react-modalicious

Usage

  import React from 'react';
  import {ModalContainer, modal} from 'react-modalicious';
  import 'react-modalicious/ReactModalicious.css';
  
  function App(){
  
      const options = {
          theme: "light",
      }
  
      const notify = () => modal("Wow so easy!", options);
  
      return (
          <div className="App">
              <ModalContainer/>
              <button onClick={notify}>Show Notification 1</button>
          </div>
      );
  
  }
  
  export default App;

Roadmap

  • Add Notification Generation
  • Add Customizability for Notifications
  • Add types of Modals
  • Create forms, logins, and other modal types
  • Customizability for other types of modals
  • Multi-Modals

Demo

Documentation

Release Notes

You can find the release note for the latest release here

You can browse them all here

License

Licensed under MIT

0.1.8

1 year ago

0.1.7

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago