@omiu/dialog-extention
TypeScript icon, indicating that this package has built-in type declarations

0.0.8 • Public • Published

DialogExtention

Pop alert, confirm or prompt in the middle of the page

Import

import '@omiu/dialog-extention'

Or use script tag to ref it.

<script src="https://unpkg.com/@omiu/dialog-extention"></script>

Usage

Omiu.alert({
  msg: 'Simple Message',
  title: 'Msg',
  confirmButtonText: 'OK',
  onConfirm: function () {
    console.log('ok')
  }
})

Omiu.confirm({
  msg: 'Simple Message',
  title: 'Msg',
  cancelButtonText: 'Cancel',
  confirmButtonText: 'OK',
  onCancel: function () {

  },
  onConfirm: function () {
    console.log('ok')
  }
})

Omiu.prompt({
  msg: 'Simple Message',
  title: 'Msg',
  cancelButtonText: 'Cancel',
  confirmButtonText: 'OK',
  onCancel: function () {

  },
  onConfirm: function (val) {
    console.log(val)
  }
})

Versions

Current Tags

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

Version History

Package Sidebar

Install

npm i @omiu/dialog-extention

Homepage

omijs.org

Weekly Downloads

1

Version

0.0.8

License

MIT

Unpacked Size

266 kB

Total Files

10

Last publish

Collaborators

  • dntzhang