astro-accelerator 4.0.4 → 4.0.5
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/package.json +6 -6
- package/public/css/main.css +1189 -0
- package/public/css/vars.css +89 -0
- package/public/js/main.js +66 -0
- package/public/js/modules/animation.js +69 -0
- package/public/js/modules/click-blocks.js +42 -0
- package/public/js/modules/code-blocks.js +59 -0
- package/public/js/modules/detail-tabs.js +194 -0
- package/public/js/modules/events.js +19 -0
- package/public/js/modules/external-links.js +20 -0
- package/public/js/modules/figures.js +28 -0
- package/public/js/modules/focus.js +76 -0
- package/public/js/modules/headers.js +21 -0
- package/public/js/modules/input-type.js +53 -0
- package/public/js/modules/nav-mobile.js +159 -0
- package/public/js/modules/nav-sticky.js +56 -0
- package/public/js/modules/query.js +41 -0
- package/public/js/modules/resizing.js +43 -0
- package/public/js/modules/search-dialog.js +69 -0
- package/public/js/modules/share.js +31 -0
- package/public/js/modules/string.js +77 -0
- package/public/js/modules/toc.js +82 -0
- package/public/js/modules/youtube.js +44 -0
- package/public/js/search.js +616 -0
- package/src/themes/accelerator/components/ArticleList.astro +90 -0
- package/src/themes/accelerator/components/Authors.astro +65 -0
- package/src/themes/accelerator/components/AuthorsMini.astro +41 -0
- package/src/themes/accelerator/components/Breadcrumbs.astro +53 -0
- package/src/themes/accelerator/components/Copyright.astro +28 -0
- package/src/themes/accelerator/components/Footer.astro +37 -0
- package/src/themes/accelerator/components/FooterItem.astro +31 -0
- package/src/themes/accelerator/components/Header.astro +46 -0
- package/src/themes/accelerator/components/HtmlHead.astro +60 -0
- package/src/themes/accelerator/components/Navigation.astro +34 -0
- package/src/themes/accelerator/components/NavigationBar.astro +33 -0
- package/src/themes/accelerator/components/NavigationItem.astro +40 -0
- package/src/themes/accelerator/components/PagingLinks.astro +36 -0
- package/src/themes/accelerator/components/RecentlyUpdated.astro +38 -0
- package/src/themes/accelerator/components/Related.astro +87 -0
- package/src/themes/accelerator/components/SkipLinks.astro +29 -0
- package/src/themes/accelerator/components/TableOfContents.astro +46 -0
- package/src/themes/accelerator/components/Taxonomy.astro +53 -0
- package/src/themes/accelerator/layouts/Author.astro +27 -0
- package/src/themes/accelerator/layouts/Default.astro +83 -0
- package/src/themes/accelerator/layouts/Redirect.astro +29 -0
- package/src/themes/accelerator/layouts/Search.astro +48 -0
- package/src/themes/accelerator/utilities/Languages.ts +21 -0
- package/src/themes/accelerator/utilities/custom-markdown.mjs +142 -0
- package/src/themes/accelerator/utilities/default-layout.mjs +7 -0
- package/src/themes/accelerator/utilities/img.mjs +142 -0
- package/src/themes/accelerator/utilities/language.json +117 -0
- package/src/themes/accelerator/utilities/stats.mjs +44 -0
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.0.
|
|
2
|
+
"version": "4.0.5",
|
|
3
3
|
"author": "Steve Fenton",
|
|
4
4
|
"name": "astro-accelerator",
|
|
5
5
|
"description": "A super-lightweight, accessible, SEO-friendly starter project for Astro",
|
|
@@ -67,14 +67,14 @@
|
|
|
67
67
|
"src/pages/sitemap.xml.ts",
|
|
68
68
|
"src/pages/report/*",
|
|
69
69
|
"src/layouts/*",
|
|
70
|
-
"src/themes/accelerator/components
|
|
71
|
-
"src/themes/accelerator/layouts
|
|
72
|
-
"src/themes/accelerator/utilities
|
|
70
|
+
"src/themes/accelerator/components/*",
|
|
71
|
+
"src/themes/accelerator/layouts/*",
|
|
72
|
+
"src/themes/accelerator/utilities/*",
|
|
73
73
|
"src/data/*",
|
|
74
74
|
"public/img/astro-lighthouse.png",
|
|
75
75
|
"public/icons/**/*",
|
|
76
|
-
"public/css
|
|
77
|
-
"public/js
|
|
76
|
+
"public/css/*",
|
|
77
|
+
"public/js/*"
|
|
78
78
|
],
|
|
79
79
|
"pnpm": {
|
|
80
80
|
"overrides": {
|