wsm-toast

1.0.14 • Public • Published

Webstudio Toast Module

This module adds alerts and notification capabilities to web apps built with Webstudio

Webstudio Module Toast

Testing and Building Module

npm i
npm run test
npm run build

Publish to NPMJS

npm publish

Importing Dependency in Webstudio

Add it to the project, this is compatible with grapesjs as well.

npm i --save wsm-toast@latest

To import in the editor add the file and include it as a Plugin

import PluginToast from "wsm-toast"

const editor = grapesjs.init({
    container: "#gjs",
    plugins: [
        PluginToast
    ],
})

Dispatch Toast Event From Other Modules In Webstudio

const event = new CustomEvent('onToast', { 
    detail: { 
        alertSeverity: "info", // info, success or error
        message: 'Message to display in toast', 
        link: 'https://google.com', // Optional link
        timeout: 5000 // Milliseconds of visibility
    }
})
 document.dispatchEvent(event)

Readme

Keywords

none

Package Sidebar

Install

npm i wsm-toast

Weekly Downloads

0

Version

1.0.14

License

MIT

Unpacked Size

31.8 kB

Total Files

18

Last publish

Collaborators

  • gianksp