@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.
@@ -1,6 +1,6 @@
1
1
  ---
2
- import Icon from './Icon.astro';
3
2
  import type { HTMLAttributes } from 'astro/types';
3
+ import Icon from './Icon.astro';
4
4
 
5
5
  interface Props extends Omit<HTMLAttributes<'a'>, 'title'> {
6
6
  title: string;
@@ -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 f5xcDocsTheme from './index.ts';
6
- import remarkMermaid from './src/plugins/remark-mermaid.mjs';
7
- import starlightScrollToTop from 'starlight-scroll-to-top';
8
- import starlightImageZoom from 'starlight-image-zoom';
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 starlightVideosPlugin from 'starlight-videos';
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 type { StarlightPlugin } from '@astrojs/starlight/types';
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@f5xc-salesdemos/docs-theme",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "F5 Distributed Cloud branded Starlight documentation theme",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -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