aura-toast 0.1.0 → 0.2.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 +10 -2
- package/package.json +10 -6
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# AuraToast
|
|
1
|
+
# AuraToast: Premium React Toast & Notification Manager
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A high-performance npm package for React toast notifications with a stunning glassmorphism design and a strict "single-toast-at-a-time" constraint.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -10,6 +10,14 @@ A premium npm package for a toast manager with a unique glassmorphism design and
|
|
|
10
10
|
- ⚛️ **React Ready**: Comes with first-class React support (`AuraProvider`, `useAuraToast`).
|
|
11
11
|
- 🎨 **Highly Customizable**: Uses CSS variables for easy theme adjustments.
|
|
12
12
|
|
|
13
|
+
## Why AuraToast?
|
|
14
|
+
|
|
15
|
+
In a world of cluttered notification stacks, **AuraToast** takes a "less is more" approach. It's built for developers who want:
|
|
16
|
+
- **Focus**: The single-toast constraint ensures users are never overwhelmed.
|
|
17
|
+
- **Aesthetics**: Premium glassmorphism UI that fits modern, high-end applications.
|
|
18
|
+
- **Lightweight**: Zero-dependency core with first-class React support.
|
|
19
|
+
- **Performance**: Optimized for speed and smooth transitions.
|
|
20
|
+
|
|
13
21
|
## Installation
|
|
14
22
|
|
|
15
23
|
```bash
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aura-toast",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Premium
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Premium React toast notifications with glassmorphism design. Lightweight, customizable, and enforces a single-toast constraint for clean UI.",
|
|
5
5
|
"main": "dist/aura-toast.cjs.js",
|
|
6
6
|
"module": "dist/aura-toast.es.js",
|
|
7
7
|
"style": "dist/style.css",
|
|
@@ -17,11 +17,15 @@
|
|
|
17
17
|
"preview": "vite preview"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
|
-
"toast",
|
|
21
|
-
"notification",
|
|
20
|
+
"react-toast",
|
|
21
|
+
"toast-notification",
|
|
22
|
+
"react-component",
|
|
22
23
|
"glassmorphism",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
24
|
+
"snackbar",
|
|
25
|
+
"alert",
|
|
26
|
+
"notification",
|
|
27
|
+
"ui-library",
|
|
28
|
+
"premium-ui"
|
|
25
29
|
],
|
|
26
30
|
"author": "DamiCode",
|
|
27
31
|
"license": "MIT",
|