0.2.1 • Published 1 year ago

tnotification v0.2.1

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

Tnotification

is a library for simple alert messages

Installation

Install tnotification as 'umd', 'module' or 'common' (Requiere css)

  <link rel="stylesheet" href="/dist/style.css">
  <script src="/dist/tnotification.umd.cjs"></script>
  or
  import tnotification from '/dist/tnotification';
  or
  const tnotification = require('/dist/tnotification');

Usage/Examples

tnotification({
    data: {
        title: "Hello world",
        content: "Lorem input Lorem input Lorem input Lorem input Lorem",
        type: "info"
    },
    position: "bottomleft"
});

Options

tnotification({
    data: {
        title: "Hello world",
        content: "Lorem input Lorem input Lorem input Lorem input Lorem",
        type: "info"
    },
    position: "bottomleft"
});
  • data.title = (String) title notification "default value is "" "
  • data.content = (String) text content notification "default value is "" "
  • data.type = (String) type of notification "error|warning|success|info" "default value is "info""
  • data.timeout = (Number) time for delete notification in ms "default value is "8 seconds"
  • data.removeEmpty = (Boolean) remove wrapper if it empty "default value is "false""
  • data.style = (String) add custom styles by style attribute

  • postition = "bottomleft | bottomcenter | bottomright | topleft | topcenter | topright"

Authors

takeshi code

License

MIT

0.1.0

2 years ago

0.2.1

1 year ago

0.2.0

1 year ago

0.0.0

2 years ago