@f5xc-salesdemos/docs-theme 2.0.3 → 2.0.4
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/components/LinkCard.astro +1 -1
- package/components/MarkdownContent.astro +1 -1
- package/components/SiteTitle.astro +1 -1
- package/config.ts +11 -11
- package/package.json +1 -1
- package/route-middleware.ts +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
import StarlightVideosMarkdownContent from 'starlight-videos/components/MarkdownContent.astro';
|
|
3
2
|
import ImageZoom from 'starlight-image-zoom/components/ImageZoom.astro';
|
|
3
|
+
import StarlightVideosMarkdownContent from 'starlight-videos/components/MarkdownContent.astro';
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<ImageZoom />
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
import { logos } from 'virtual:starlight/user-images';
|
|
3
2
|
import config from 'virtual:starlight/user-config';
|
|
3
|
+
import { logos } from 'virtual:starlight/user-images';
|
|
4
4
|
|
|
5
5
|
const docsHome = process.env.DOCS_HOME || 'https://f5xc-salesdemos.github.io/docs/';
|
|
6
6
|
const { siteTitle } = Astro.locals.starlightRoute;
|
package/config.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { defineConfig } from 'astro/config';
|
|
2
|
-
import type { AstroIntegration } from 'astro';
|
|
3
|
-
import starlight from '@astrojs/starlight';
|
|
4
1
|
import react from '@astrojs/react';
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
2
|
+
import starlight from '@astrojs/starlight';
|
|
3
|
+
import type { StarlightPlugin } from '@astrojs/starlight/types';
|
|
4
|
+
import type { AstroIntegration } from 'astro';
|
|
5
|
+
import { defineConfig } from 'astro/config';
|
|
9
6
|
import starlightHeadingBadges from 'starlight-heading-badges';
|
|
10
|
-
import
|
|
11
|
-
import starlightPageActions from 'starlight-page-actions';
|
|
12
|
-
import { starlightIconsPlugin } from 'starlight-plugin-icons';
|
|
7
|
+
import starlightImageZoom from 'starlight-image-zoom';
|
|
13
8
|
import starlightLlmsTxt from 'starlight-llms-txt';
|
|
14
9
|
import starlightMegaMenu from 'starlight-mega-menu';
|
|
15
|
-
import
|
|
10
|
+
import starlightPageActions from 'starlight-page-actions';
|
|
11
|
+
import { starlightIconsPlugin } from 'starlight-plugin-icons';
|
|
12
|
+
import starlightScrollToTop from 'starlight-scroll-to-top';
|
|
13
|
+
import starlightVideosPlugin from 'starlight-videos';
|
|
14
|
+
import f5xcDocsTheme from './index.ts';
|
|
15
|
+
import remarkMermaid from './src/plugins/remark-mermaid.mjs';
|
|
16
16
|
import { resolveIcon } from './src/utils/resolve-icon.ts';
|
|
17
17
|
|
|
18
18
|
interface MegaMenuItem {
|
package/package.json
CHANGED
package/route-middleware.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineRouteMiddleware } from '@astrojs/starlight/route-data';
|
|
2
1
|
import type { StarlightRouteData } from '@astrojs/starlight/route-data';
|
|
2
|
+
import { defineRouteMiddleware } from '@astrojs/starlight/route-data';
|
|
3
3
|
|
|
4
4
|
type SidebarEntry = StarlightRouteData['sidebar'][number];
|
|
5
5
|
|