d9-toast 1.2.20 → 1.2.21
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 +12 -0
- package/dist/toast.css +1 -1
- package/package.json +10 -1
package/README.md
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|

|
|
6
6
|

|
|
7
7
|

|
|
8
|
+
[](https://rzp.io/rzp/eVnJ0oP)
|
|
9
|
+
|
|
8
10
|
|
|
9
11
|
A lightweight, customizable toast notification library for React applications.
|
|
10
12
|
|
|
@@ -235,6 +237,16 @@ MIT © [Athul / D9 Coder]
|
|
|
235
237
|
|
|
236
238
|
---
|
|
237
239
|
|
|
240
|
+
## ❤️ Support My Work
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
Donate here → https://rzp.io/rzp/eVnJ0oP
|
|
245
|
+
|
|
246
|
+
[](https://rzp.io/rzp/eVnJ0oP)
|
|
247
|
+
|
|
248
|
+
---
|
|
249
|
+
|
|
238
250
|
**Quick Links:**
|
|
239
251
|
- [Report an Issue](https://github.com/psathul073/d9-toast/issues)
|
|
240
252
|
- [View Source](https://github.com/psathul073/d9-toast)
|
package/dist/toast.css
CHANGED
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
border-radius: 8px;
|
|
68
68
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
69
69
|
font-family: cursive;
|
|
70
|
+
font-size: smaller;
|
|
70
71
|
transition: all 0.3s ease-in;
|
|
71
72
|
will-change: transform, opacity;
|
|
72
73
|
}
|
|
@@ -94,7 +95,6 @@
|
|
|
94
95
|
display: inline-flex;
|
|
95
96
|
align-items: center;
|
|
96
97
|
gap: 8px;
|
|
97
|
-
font-size: 0.9rem;
|
|
98
98
|
font-weight: 500;
|
|
99
99
|
}
|
|
100
100
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "d9-toast",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.21",
|
|
4
4
|
"description": "Customizable toast notifications for React",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -19,10 +19,19 @@
|
|
|
19
19
|
"react": ">=17",
|
|
20
20
|
"react-dom": ">=17"
|
|
21
21
|
},
|
|
22
|
+
"funding": {
|
|
23
|
+
"type": "donation",
|
|
24
|
+
"url": "https://rzp.io/rzp/eVnJ0oP"
|
|
25
|
+
},
|
|
22
26
|
"keywords": [
|
|
23
27
|
"react",
|
|
24
28
|
"toast",
|
|
29
|
+
"react-component",
|
|
30
|
+
"push",
|
|
31
|
+
"alert",
|
|
32
|
+
"message",
|
|
25
33
|
"notifications",
|
|
34
|
+
"d9-toast",
|
|
26
35
|
"ui"
|
|
27
36
|
],
|
|
28
37
|
"license": "MIT",
|