ga-toasts 1.0.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/.htaccess +75 -0
- package/README.md +554 -0
- package/REDIRECT_SETUP.md +149 -0
- package/ga-toasts.d.ts +99 -0
- package/images/gennie_logo.png +0 -0
- package/index.html +1034 -0
- package/package.json +23 -0
- package/robots.txt +54 -0
- package/sitemap.xml +47 -0
- package/src/demo.css +698 -0
- package/src/demo.js +467 -0
- package/src/toasts.css +1644 -0
- package/src/toasts.js +1005 -0
- package/src/variables.css +480 -0
- package/vercel.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ga-toasts",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Modern, accessible vanilla JavaScript toast notifications library with 15+ types, 9 positions, and rich theming.",
|
|
5
|
+
"main": "src/toasts.js",
|
|
6
|
+
"types": "ga-toasts.d.ts",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"toast",
|
|
9
|
+
"notifications",
|
|
10
|
+
"javascript",
|
|
11
|
+
"vanilla-js",
|
|
12
|
+
"ui",
|
|
13
|
+
"ga-toasts"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://harshad-pindoriya.github.io/gatoasts/"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
|
package/robots.txt
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
User-agent: *
|
|
2
|
+
Allow: /
|
|
3
|
+
|
|
4
|
+
# Sitemap location
|
|
5
|
+
Sitemap: https://ga-toasts.com/sitemap.xml
|
|
6
|
+
|
|
7
|
+
# Crawl delay (optional - helps prevent overloading server)
|
|
8
|
+
Crawl-delay: 1
|
|
9
|
+
|
|
10
|
+
# Allow all search engines to access CSS and JS files
|
|
11
|
+
Allow: /*.css
|
|
12
|
+
Allow: /*.js
|
|
13
|
+
Allow: /*.png
|
|
14
|
+
Allow: /*.jpg
|
|
15
|
+
Allow: /*.jpeg
|
|
16
|
+
Allow: /*.gif
|
|
17
|
+
Allow: /*.svg
|
|
18
|
+
Allow: /*.ico
|
|
19
|
+
Allow: /*.woff
|
|
20
|
+
Allow: /*.woff2
|
|
21
|
+
Allow: /*.ttf
|
|
22
|
+
Allow: /*.eot
|
|
23
|
+
|
|
24
|
+
# Disallow access to sensitive files
|
|
25
|
+
Disallow: /private/
|
|
26
|
+
Disallow: /admin/
|
|
27
|
+
Disallow: /*.log
|
|
28
|
+
Disallow: /*.tmp
|
|
29
|
+
Disallow: /*.bak
|
|
30
|
+
|
|
31
|
+
# Specific bot instructions
|
|
32
|
+
User-agent: Googlebot
|
|
33
|
+
Allow: /
|
|
34
|
+
|
|
35
|
+
User-agent: Bingbot
|
|
36
|
+
Allow: /
|
|
37
|
+
|
|
38
|
+
User-agent: Slurp
|
|
39
|
+
Allow: /
|
|
40
|
+
|
|
41
|
+
User-agent: DuckDuckBot
|
|
42
|
+
Allow: /
|
|
43
|
+
|
|
44
|
+
User-agent: Baiduspider
|
|
45
|
+
Allow: /
|
|
46
|
+
|
|
47
|
+
User-agent: YandexBot
|
|
48
|
+
Allow: /
|
|
49
|
+
|
|
50
|
+
User-agent: facebookexternalhit
|
|
51
|
+
Allow: /
|
|
52
|
+
|
|
53
|
+
User-agent: Twitterbot
|
|
54
|
+
Allow: /
|
package/sitemap.xml
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
|
|
5
|
+
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
|
6
|
+
|
|
7
|
+
<!-- Main page -->
|
|
8
|
+
<url>
|
|
9
|
+
<loc>https://ga-toasts.com/</loc>
|
|
10
|
+
<lastmod>2024-12-19</lastmod>
|
|
11
|
+
<changefreq>weekly</changefreq>
|
|
12
|
+
<priority>1.0</priority>
|
|
13
|
+
</url>
|
|
14
|
+
|
|
15
|
+
<!-- Documentation pages (if they exist) -->
|
|
16
|
+
<url>
|
|
17
|
+
<loc>https://ga-toasts.com/docs</loc>
|
|
18
|
+
<lastmod>2024-12-19</lastmod>
|
|
19
|
+
<changefreq>monthly</changefreq>
|
|
20
|
+
<priority>0.8</priority>
|
|
21
|
+
</url>
|
|
22
|
+
|
|
23
|
+
<!-- Examples page -->
|
|
24
|
+
<url>
|
|
25
|
+
<loc>https://ga-toasts.com/examples</loc>
|
|
26
|
+
<lastmod>2024-12-19</lastmod>
|
|
27
|
+
<changefreq>monthly</changefreq>
|
|
28
|
+
<priority>0.7</priority>
|
|
29
|
+
</url>
|
|
30
|
+
|
|
31
|
+
<!-- API reference -->
|
|
32
|
+
<url>
|
|
33
|
+
<loc>https://ga-toasts.com/api</loc>
|
|
34
|
+
<lastmod>2024-12-19</lastmod>
|
|
35
|
+
<changefreq>monthly</changefreq>
|
|
36
|
+
<priority>0.6</priority>
|
|
37
|
+
</url>
|
|
38
|
+
|
|
39
|
+
<!-- GitHub repository -->
|
|
40
|
+
<url>
|
|
41
|
+
<loc>https://github.com/ga-toasts/ga-toasts</loc>
|
|
42
|
+
<lastmod>2024-12-19</lastmod>
|
|
43
|
+
<changefreq>weekly</changefreq>
|
|
44
|
+
<priority>0.5</priority>
|
|
45
|
+
</url>
|
|
46
|
+
|
|
47
|
+
</urlset>
|