@bvkimball/wired-toast
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

wired toast

wired-toast

Hand-drawn sketchy toast web component.

For demo and view the complete set of wired-elememts: wiredjs.com

Usage

Add wired-toast to your project:

npm i wired-toast

Import wired-toast definition into your HTML page:

<script type="module" src="wired-toast/lib/wired-toast.js"></script>

Or into your module script:

import { WiredToast, showToast } from "wired-toast"

Use it in your web page:

<script type="module">
  import { showToast } from "wired-dialog"
  function getRandomInt(max) {
    return Math.floor(Math.random() * Math.floor(max))
  }
  let locations = ["top", "top-right", "bottom-right", "bottom", "bottom-left", "top-left"]
  showToast(`Showing toast`, 3000, locations[getRandomInt(6)])
</script>

showToast(label, duration, location) Paramaters

label - Text to display in the toast

duration - Time in milliseconds the toast is displayed before hiding. Excludes animation time, default 3000ms. 0 for infinite.

location - Text to display in the toast

WiredToast Properties

name - Unique identifier for that tab. Used for selection.

Custom CSS Variables

--wired-toast-bg Background color of the toast.

License

MIT License (c) Brian Kimball

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.5
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.5
    0
  • 0.0.4
    0
  • 0.0.3
    0

Package Sidebar

Install

npm i @bvkimball/wired-toast

Weekly Downloads

0

Version

0.0.5

License

MIT

Unpacked Size

73.6 kB

Total Files

10

Last publish

Collaborators

  • bvkimball