ga-toasts 2.0.0 → 2.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 +67 -7
- package/dist/ga-toasts.css +61 -7
- package/dist/ga-toasts.global.js +1 -555
- package/dist/index.cjs +1117 -1389
- package/dist/index.d.cts +118 -45
- package/dist/index.d.ts +118 -45
- package/dist/index.js +1117 -1390
- package/package.json +18 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ga-toasts",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Modern, accessible, dependency-free toast notifications for the web.
|
|
3
|
+
"version": "2.1.0",
|
|
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",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -11,9 +11,14 @@
|
|
|
11
11
|
"style": "./dist/ga-toasts.css",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
"import": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"require": {
|
|
19
|
+
"types": "./dist/index.d.cts",
|
|
20
|
+
"default": "./dist/index.cjs"
|
|
21
|
+
}
|
|
17
22
|
},
|
|
18
23
|
"./style.css": "./dist/ga-toasts.css",
|
|
19
24
|
"./ga-toasts.css": "./dist/ga-toasts.css",
|
|
@@ -48,6 +53,14 @@
|
|
|
48
53
|
"a11y",
|
|
49
54
|
"dark-mode",
|
|
50
55
|
"ui",
|
|
56
|
+
"theme",
|
|
57
|
+
"themeable",
|
|
58
|
+
"customizable",
|
|
59
|
+
"swipe",
|
|
60
|
+
"rtl",
|
|
61
|
+
"promise",
|
|
62
|
+
"confirm",
|
|
63
|
+
"zero-dependency",
|
|
51
64
|
"ga-toasts"
|
|
52
65
|
],
|
|
53
66
|
"author": "Harshad Pindoriya",
|