0.2.1 • Published 4 years ago

yesno-dialog v0.2.1

Weekly downloads
47
License
MIT
Repository
github
Last release
4 years ago

Javascript yes no dialog

Build status License

Tiny customizable vanilla js confirm dialog

Install

npm install --save yesno-dialog

Usage

import yesno from "yesno-dialog";

showCatButton.addEventListener('click', async () => {
  const yes = await yesno()
  if (yes) // show the cat
})

Js yes no dialog example

Customization

import yesno from "yesno-dialog";

showCatButton.addEventListener('click', async () => {
  const yes = await yesno({
    labelYes: "Yep",
    labelNo: "Nope",
    bodyText: "Sure?"
  })
  if (yes) // show the cat
})
.jsyesnodialog {
  --color: #e91e63;
}

Js yes no dialog customize

Codesandbox examples

License

MIT © SidKH

0.2.1

4 years ago

0.2.0

4 years ago

0.1.4

4 years ago

0.1.5

4 years ago

0.1.2

4 years ago

0.1.3

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago