vyrn 1.7.1 → 1.8.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/LICENSE.md +1 -1
- package/README.md +2 -2
- package/package.json +6 -6
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
To start using the library, install it in your project:
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install
|
|
8
|
+
npm install vyrn
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Add `<Toaster />` to your app, it will be the place where all your toasts will be rendered.
|
|
12
12
|
After that you can use `toast()` from anywhere in your app.
|
|
13
13
|
|
|
14
14
|
```jsx
|
|
15
|
-
import { Toaster, toast } from '
|
|
15
|
+
import { Toaster, toast } from 'vyrn';
|
|
16
16
|
|
|
17
17
|
// ...
|
|
18
18
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vyrn",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.8.0",
|
|
4
|
+
"description": "Vyrn is a lightweight, performant, and accessible toast library for React.",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"snackbar",
|
|
31
31
|
"message"
|
|
32
32
|
],
|
|
33
|
-
"author": "
|
|
33
|
+
"author": "vyrn",
|
|
34
34
|
"license": "MIT",
|
|
35
|
-
"homepage": "https://
|
|
35
|
+
"homepage": "https://google.com",
|
|
36
36
|
"repository": {
|
|
37
37
|
"type": "git",
|
|
38
|
-
"url": "git+https://github.com/
|
|
38
|
+
"url": "git+https://github.com/"
|
|
39
39
|
},
|
|
40
40
|
"bugs": {
|
|
41
|
-
"url": "https://github.com/
|
|
41
|
+
"url": "https://github.com/"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@playwright/test": "^1.30.0",
|