@robinmordasiewicz/f5xc-docs-theme 1.15.0 → 1.17.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/astro.config.mjs +4 -0
- package/package.json +4 -2
package/astro.config.mjs
CHANGED
|
@@ -6,6 +6,8 @@ import remarkMermaid from './src/plugins/remark-mermaid.mjs';
|
|
|
6
6
|
import starlightScrollToTop from 'starlight-scroll-to-top';
|
|
7
7
|
import starlightImageZoom from 'starlight-image-zoom';
|
|
8
8
|
import starlightHeadingBadges from 'starlight-heading-badges';
|
|
9
|
+
import starlightVideosPlugin from 'starlight-videos';
|
|
10
|
+
import starlightPageActions from 'starlight-page-actions';
|
|
9
11
|
import starlightLlmsTxt from 'starlight-llms-txt';
|
|
10
12
|
|
|
11
13
|
export default defineConfig({
|
|
@@ -30,6 +32,8 @@ export default defineConfig({
|
|
|
30
32
|
}),
|
|
31
33
|
starlightImageZoom(),
|
|
32
34
|
starlightHeadingBadges(),
|
|
35
|
+
starlightVideosPlugin(),
|
|
36
|
+
starlightPageActions(),
|
|
33
37
|
starlightLlmsTxt({
|
|
34
38
|
projectName: process.env.DOCS_TITLE || 'Documentation',
|
|
35
39
|
description: process.env.DOCS_DESCRIPTION || '',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robinmordasiewicz/f5xc-docs-theme",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"description": "F5 Distributed Cloud branded Starlight documentation theme",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,6 +50,8 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"starlight-heading-badges": "^0.6.1",
|
|
52
52
|
"starlight-image-zoom": "^0.13.2",
|
|
53
|
-
"starlight-
|
|
53
|
+
"starlight-page-actions": "^0.5.0",
|
|
54
|
+
"starlight-scroll-to-top": "^0.4.0",
|
|
55
|
+
"starlight-videos": "^0.3.1"
|
|
54
56
|
}
|
|
55
57
|
}
|