ga-toasts 2.1.0 โ 2.1.2
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 +6 -1
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
Modern, accessible, **dependency-free** toast notifications for the web.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/ga-toasts)
|
|
6
|
+
[](https://bundlephobia.com/package/ga-toasts)
|
|
6
7
|
[](#typescript)
|
|
7
8
|
[](#)
|
|
8
9
|
[](./LICENSE)
|
|
@@ -16,7 +17,11 @@ Modern, accessible, **dependency-free** toast notifications for the web.
|
|
|
16
17
|
- ๐งต **Framework-agnostic** โ use it in React, Vue, Svelte, plain HTML, or on the server (SSR-safe no-op).
|
|
17
18
|
- ๐ฆ **First-class TypeScript** โ types ship in the box.
|
|
18
19
|
|
|
19
|
-
**Live demo:** https://
|
|
20
|
+
**Live demo:** https://gatoasts.vercel.app/
|
|
21
|
+
|
|
22
|
+
<!-- Tip: a short screen-capture GIF here is the single biggest lever for GitHub stars & click-through.
|
|
23
|
+
Record the live demo, save it as images/demo.gif, then uncomment the line below:
|
|
24
|
+
 -->
|
|
20
25
|
|
|
21
26
|
---
|
|
22
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ga-toasts",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Modern, accessible, dependency-free toast notifications for the web. Fully themeable (createToaster + design tokens), stacked animations, 7 types, 9 positions, dark mode, swipe-to-dismiss, and first-class TypeScript support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"gen": "node scripts/gen-styles.mjs",
|
|
37
37
|
"build": "npm run gen && tsup",
|
|
38
|
+
"build:site": "npm run build && node scripts/build-site.mjs",
|
|
38
39
|
"dev": "npm run gen && tsup --watch",
|
|
39
40
|
"test": "npm run gen && vitest run",
|
|
40
41
|
"test:watch": "npm run gen && vitest",
|
|
@@ -43,6 +44,10 @@
|
|
|
43
44
|
"keywords": [
|
|
44
45
|
"toast",
|
|
45
46
|
"toasts",
|
|
47
|
+
"toast notifications",
|
|
48
|
+
"javascript toast",
|
|
49
|
+
"toast notification library",
|
|
50
|
+
"toastify alternative",
|
|
46
51
|
"notification",
|
|
47
52
|
"notifications",
|
|
48
53
|
"snackbar",
|
|
@@ -65,7 +70,7 @@
|
|
|
65
70
|
],
|
|
66
71
|
"author": "Harshad Pindoriya",
|
|
67
72
|
"license": "MIT",
|
|
68
|
-
"homepage": "https://
|
|
73
|
+
"homepage": "https://gatoasts.vercel.app/",
|
|
69
74
|
"repository": {
|
|
70
75
|
"type": "git",
|
|
71
76
|
"url": "git+https://github.com/harshad-pindoriya/gatoasts.git"
|