@seqera/docusaurus-preset-seqera 1.0.3 → 1.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/lib/index.js +4 -4
- package/package.json +2 -2
- package/src/index.ts +4 -4
package/lib/index.js
CHANGED
|
@@ -89,8 +89,8 @@ function getSeqeraThemeConfig(overrides = {}) {
|
|
|
89
89
|
},
|
|
90
90
|
docs: {
|
|
91
91
|
sidebar: {
|
|
92
|
-
autoCollapseCategories:
|
|
93
|
-
hideable:
|
|
92
|
+
autoCollapseCategories: false,
|
|
93
|
+
hideable: false,
|
|
94
94
|
},
|
|
95
95
|
},
|
|
96
96
|
// Typesense search configuration
|
|
@@ -197,8 +197,8 @@ function getSeqeraThemeConfig(overrides = {}) {
|
|
|
197
197
|
copyright: `Copyright © ${new Date().getFullYear()} Seqera. All rights reserved.`,
|
|
198
198
|
},
|
|
199
199
|
prism: {
|
|
200
|
-
theme:
|
|
201
|
-
darkTheme:
|
|
200
|
+
theme: prism_react_renderer_1.themes.oneLight,
|
|
201
|
+
darkTheme: prism_react_renderer_1.themes.oneDark,
|
|
202
202
|
},
|
|
203
203
|
seqera: {
|
|
204
204
|
navbar: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seqera/docusaurus-preset-seqera",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Docusaurus preset for Seqera docs",
|
|
5
5
|
"author": "Seqera docs team <education@seqera.io>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@docusaurus/theme-common": "3.9.2",
|
|
31
31
|
"@docusaurus/theme-search-algolia": "3.9.2",
|
|
32
32
|
"@docusaurus/types": "3.9.2",
|
|
33
|
-
"@seqera/docusaurus-theme-seqera": "1.0.
|
|
33
|
+
"@seqera/docusaurus-theme-seqera": "1.0.4",
|
|
34
34
|
"@tailwindcss/oxide": "^4.1.17",
|
|
35
35
|
"docusaurus-plugin-openapi-docs": "^4.5.1",
|
|
36
36
|
"docusaurus-remark-plugin-tab-blocks": "^3.1.0",
|
package/src/index.ts
CHANGED
|
@@ -136,8 +136,8 @@ export function getSeqeraThemeConfig(
|
|
|
136
136
|
},
|
|
137
137
|
docs: {
|
|
138
138
|
sidebar: {
|
|
139
|
-
autoCollapseCategories:
|
|
140
|
-
hideable:
|
|
139
|
+
autoCollapseCategories: false,
|
|
140
|
+
hideable: false,
|
|
141
141
|
},
|
|
142
142
|
},
|
|
143
143
|
// Typesense search configuration
|
|
@@ -248,8 +248,8 @@ export function getSeqeraThemeConfig(
|
|
|
248
248
|
copyright: `Copyright © ${new Date().getFullYear()} Seqera. All rights reserved.`,
|
|
249
249
|
},
|
|
250
250
|
prism: {
|
|
251
|
-
theme:
|
|
252
|
-
darkTheme:
|
|
251
|
+
theme: themes.oneLight,
|
|
252
|
+
darkTheme: themes.oneDark,
|
|
253
253
|
},
|
|
254
254
|
seqera: {
|
|
255
255
|
navbar: {
|