toastify-pro 1.0.3 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -5
- package/package.json +42 -2
package/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
# 🎉 Toastify Pro
|
|
2
|
-
|
|
3
1
|
<div align="center">
|
|
4
2
|
|
|
5
3
|
<img src="https://abhipotter.github.io/toastify-pro/assets/logo/logo.png" alt="Toastify Pro Logo" width="100" height="100"/>
|
|
6
|
-
<
|
|
4
|
+
<h1> 🚀 Quick Start - Install Toastify Pro (JavaScript Toast Notifications) </h1>
|
|
7
5
|
|
|
8
6
|
**A modern, lightweight, and highly customizable toast notification library**
|
|
9
7
|
|
|
@@ -38,7 +36,7 @@ npm install toastify-pro
|
|
|
38
36
|
|
|
39
37
|
#### CDN (Browser)
|
|
40
38
|
```html
|
|
41
|
-
<script src="https://cdn.jsdelivr.net/npm/toastify-pro@1.0
|
|
39
|
+
<script src="https://cdn.jsdelivr.net/npm/toastify-pro@1.1.0/dist/toastify-pro.umd.min.js"></script>
|
|
42
40
|
```
|
|
43
41
|
|
|
44
42
|
### 🔨 Basic Usage
|
|
@@ -64,7 +62,7 @@ toast.light('Light themed message');
|
|
|
64
62
|
<html>
|
|
65
63
|
<head>
|
|
66
64
|
<title>Toastify Pro Example</title>
|
|
67
|
-
<script src="https://cdn.jsdelivr.net/npm/toastify-pro@1.0
|
|
65
|
+
<script src="https://cdn.jsdelivr.net/npm/toastify-pro@1.1.0/dist/toastify-pro.umd.min.js"></script>
|
|
68
66
|
</head>
|
|
69
67
|
<body>
|
|
70
68
|
<button onclick="showToast()">Show Toast</button>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "toastify-pro",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "A lightweight customizable toast notification library",
|
|
5
5
|
"main": "dist/toastify-pro.umd.js",
|
|
6
6
|
"module": "dist/toastify-pro.esm.js",
|
|
@@ -11,9 +11,49 @@
|
|
|
11
11
|
],
|
|
12
12
|
"keywords": [
|
|
13
13
|
"toast",
|
|
14
|
+
"toaster",
|
|
15
|
+
"toastify",
|
|
16
|
+
"toastify-pro",
|
|
14
17
|
"notification",
|
|
18
|
+
"notifications",
|
|
19
|
+
"popup",
|
|
20
|
+
"alert",
|
|
21
|
+
"snackbar",
|
|
22
|
+
"toast message",
|
|
23
|
+
"message",
|
|
24
|
+
"ui",
|
|
25
|
+
"ux",
|
|
26
|
+
"frontend",
|
|
15
27
|
"javascript",
|
|
16
|
-
"
|
|
28
|
+
"typescript",
|
|
29
|
+
"vanilla js",
|
|
30
|
+
"framework agnostic",
|
|
31
|
+
"web",
|
|
32
|
+
"web app",
|
|
33
|
+
"react",
|
|
34
|
+
"react toast",
|
|
35
|
+
"react notifications",
|
|
36
|
+
"vue",
|
|
37
|
+
"vue toast",
|
|
38
|
+
"angular",
|
|
39
|
+
"angular toast",
|
|
40
|
+
"svelte",
|
|
41
|
+
"svelte toast",
|
|
42
|
+
"jquery",
|
|
43
|
+
"jquery toast",
|
|
44
|
+
"bootstrap toast",
|
|
45
|
+
"tailwind",
|
|
46
|
+
"material ui",
|
|
47
|
+
"sweetalert alternative",
|
|
48
|
+
"toastr alternative",
|
|
49
|
+
"react-toastify alternative",
|
|
50
|
+
"lightweight",
|
|
51
|
+
"minimal",
|
|
52
|
+
"library",
|
|
53
|
+
"esm",
|
|
54
|
+
"umd",
|
|
55
|
+
"cdn",
|
|
56
|
+
"open source"
|
|
17
57
|
],
|
|
18
58
|
"author": "Abhishek Potter",
|
|
19
59
|
"license": "MIT",
|