@seqera/docusaurus-theme-seqera 1.0.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.
Files changed (327) hide show
  1. package/README.md +26 -0
  2. package/package.json +66 -0
  3. package/src/getSwizzleConfig.ts +433 -0
  4. package/src/index.ts +154 -0
  5. package/src/inlineScripts.ts +95 -0
  6. package/src/inlineSvgSprites.ts +7 -0
  7. package/src/main-styles.css +322 -0
  8. package/src/nprogress.css +36 -0
  9. package/src/nprogress.ts +27 -0
  10. package/src/options.ts +503 -0
  11. package/src/prism-include-languages.ts +6 -0
  12. package/src/styles/api.css +42 -0
  13. package/src/styles/typography.css +342 -0
  14. package/src/theme/Admonition/Icon/Danger.tsx +15 -0
  15. package/src/theme/Admonition/Icon/Info.tsx +15 -0
  16. package/src/theme/Admonition/Icon/Note.tsx +15 -0
  17. package/src/theme/Admonition/Icon/Tip.tsx +15 -0
  18. package/src/theme/Admonition/Icon/Warning.tsx +15 -0
  19. package/src/theme/Admonition/Layout/index.tsx +53 -0
  20. package/src/theme/Admonition/Layout/styles.module.css +39 -0
  21. package/src/theme/Admonition/Type/Caution.tsx +34 -0
  22. package/src/theme/Admonition/Type/Danger.tsx +32 -0
  23. package/src/theme/Admonition/Type/Info.tsx +32 -0
  24. package/src/theme/Admonition/Type/Note.tsx +32 -0
  25. package/src/theme/Admonition/Type/Tip.tsx +32 -0
  26. package/src/theme/Admonition/Type/Warning.tsx +32 -0
  27. package/src/theme/Admonition/Types.tsx +33 -0
  28. package/src/theme/Admonition/index.tsx +23 -0
  29. package/src/theme/AdmonitionVersioned/AddedInVersion.tsx +14 -0
  30. package/src/theme/AdmonitionVersioned/AdmonitionVersioned.tsx +66 -0
  31. package/src/theme/AdmonitionVersioned/ChangedInVersion.tsx +14 -0
  32. package/src/theme/AdmonitionVersioned/DeprecatedInVersion.tsx +15 -0
  33. package/src/theme/AdmonitionVersioned/getStableVersion.ts +30 -0
  34. package/src/theme/AdmonitionVersioned/index.ts +1 -0
  35. package/src/theme/AdmonitionVersioned/stableVersions.ts +119 -0
  36. package/src/theme/AnnouncementBar/CloseButton/index.tsx +24 -0
  37. package/src/theme/AnnouncementBar/CloseButton/styles.module.css +6 -0
  38. package/src/theme/AnnouncementBar/Content/index.tsx +21 -0
  39. package/src/theme/AnnouncementBar/Content/styles.module.css +12 -0
  40. package/src/theme/AnnouncementBar/index.tsx +37 -0
  41. package/src/theme/AnnouncementBar/styles.module.css +57 -0
  42. package/src/theme/BackToTopButton/index.tsx +30 -0
  43. package/src/theme/BackToTopButton/styles.module.css +39 -0
  44. package/src/theme/Blog/Components/Author/Socials/index.tsx +75 -0
  45. package/src/theme/Blog/Components/Author/Socials/styles.module.css +34 -0
  46. package/src/theme/Blog/Components/Author/index.tsx +98 -0
  47. package/src/theme/Blog/Components/Author/styles.module.css +69 -0
  48. package/src/theme/Blog/Pages/BlogAuthorsListPage/index.tsx +57 -0
  49. package/src/theme/Blog/Pages/BlogAuthorsListPage/styles.module.css +6 -0
  50. package/src/theme/Blog/Pages/BlogAuthorsPostsPage/index.tsx +77 -0
  51. package/src/theme/BlogArchivePage/index.tsx +102 -0
  52. package/src/theme/BlogLayout/index.tsx +31 -0
  53. package/src/theme/BlogListPage/StructuredData/index.tsx +17 -0
  54. package/src/theme/BlogListPage/index.tsx +57 -0
  55. package/src/theme/BlogListPaginator/index.tsx +47 -0
  56. package/src/theme/BlogPostItem/Container/index.tsx +11 -0
  57. package/src/theme/BlogPostItem/Content/index.tsx +23 -0
  58. package/src/theme/BlogPostItem/Footer/ReadMoreLink/index.tsx +39 -0
  59. package/src/theme/BlogPostItem/Footer/index.tsx +85 -0
  60. package/src/theme/BlogPostItem/Header/Authors/index.tsx +49 -0
  61. package/src/theme/BlogPostItem/Header/Authors/styles.module.css +15 -0
  62. package/src/theme/BlogPostItem/Header/Info/index.tsx +77 -0
  63. package/src/theme/BlogPostItem/Header/Info/styles.module.css +5 -0
  64. package/src/theme/BlogPostItem/Header/Title/index.tsx +20 -0
  65. package/src/theme/BlogPostItem/Header/Title/styles.module.css +14 -0
  66. package/src/theme/BlogPostItem/Header/index.tsx +16 -0
  67. package/src/theme/BlogPostItem/index.tsx +27 -0
  68. package/src/theme/BlogPostItems/index.tsx +25 -0
  69. package/src/theme/BlogPostPage/Metadata/index.tsx +39 -0
  70. package/src/theme/BlogPostPage/StructuredData/index.tsx +16 -0
  71. package/src/theme/BlogPostPage/index.tsx +74 -0
  72. package/src/theme/BlogPostPaginator/index.tsx +46 -0
  73. package/src/theme/BlogSidebar/Content/index.tsx +52 -0
  74. package/src/theme/BlogSidebar/Desktop/index.tsx +52 -0
  75. package/src/theme/BlogSidebar/Desktop/styles.module.css +46 -0
  76. package/src/theme/BlogSidebar/Mobile/index.tsx +47 -0
  77. package/src/theme/BlogSidebar/Mobile/styles.module.css +5 -0
  78. package/src/theme/BlogSidebar/index.tsx +19 -0
  79. package/src/theme/BlogTagsListPage/index.tsx +33 -0
  80. package/src/theme/BlogTagsPostsPage/index.tsx +68 -0
  81. package/src/theme/CodeBlock/Buttons/Button/index.tsx +14 -0
  82. package/src/theme/CodeBlock/Buttons/CopyButton/index.tsx +82 -0
  83. package/src/theme/CodeBlock/Buttons/CopyButton/styles.module.css +42 -0
  84. package/src/theme/CodeBlock/Buttons/WordWrapButton/index.tsx +40 -0
  85. package/src/theme/CodeBlock/Buttons/WordWrapButton/styles.module.css +10 -0
  86. package/src/theme/CodeBlock/Buttons/index.tsx +27 -0
  87. package/src/theme/CodeBlock/Buttons/styles.module.css +32 -0
  88. package/src/theme/CodeBlock/Container/index.tsx +27 -0
  89. package/src/theme/CodeBlock/Container/styles.module.css +9 -0
  90. package/src/theme/CodeBlock/Content/Element.tsx +24 -0
  91. package/src/theme/CodeBlock/Content/String.tsx +37 -0
  92. package/src/theme/CodeBlock/Content/index.tsx +79 -0
  93. package/src/theme/CodeBlock/Content/styles.module.css +30 -0
  94. package/src/theme/CodeBlock/Layout/index.tsx +29 -0
  95. package/src/theme/CodeBlock/Layout/styles.module.css +22 -0
  96. package/src/theme/CodeBlock/Line/Token/index.tsx +13 -0
  97. package/src/theme/CodeBlock/Line/index.tsx +61 -0
  98. package/src/theme/CodeBlock/Line/styles.module.css +47 -0
  99. package/src/theme/CodeBlock/Title/index.tsx +10 -0
  100. package/src/theme/CodeBlock/index.tsx +40 -0
  101. package/src/theme/CodeInline/index.tsx +11 -0
  102. package/src/theme/ColorModeToggle/index.tsx +140 -0
  103. package/src/theme/ColorModeToggle/styles.module.css +35 -0
  104. package/src/theme/ContentVisibility/Draft/index.tsx +22 -0
  105. package/src/theme/ContentVisibility/Unlisted/index.tsx +37 -0
  106. package/src/theme/ContentVisibility/index.tsx +20 -0
  107. package/src/theme/Details/index.tsx +21 -0
  108. package/src/theme/Details/styles.module.css +8 -0
  109. package/src/theme/DocBreadcrumbs/Items/Home/index.tsx +29 -0
  110. package/src/theme/DocBreadcrumbs/Items/Home/styles.module.css +9 -0
  111. package/src/theme/DocBreadcrumbs/StructuredData/index.tsx +19 -0
  112. package/src/theme/DocBreadcrumbs/index.tsx +98 -0
  113. package/src/theme/DocBreadcrumbs/styles.module.css +14 -0
  114. package/src/theme/DocCard/index.tsx +133 -0
  115. package/src/theme/DocCard/styles.module.css +29 -0
  116. package/src/theme/DocCardList/index.tsx +43 -0
  117. package/src/theme/DocCardList/styles.module.css +9 -0
  118. package/src/theme/DocCategoryGeneratedIndexPage/index.tsx +68 -0
  119. package/src/theme/DocCategoryGeneratedIndexPage/styles.module.css +13 -0
  120. package/src/theme/DocItem/Content/index.tsx +43 -0
  121. package/src/theme/DocItem/Footer/index.tsx +51 -0
  122. package/src/theme/DocItem/Layout/index.tsx +66 -0
  123. package/src/theme/DocItem/Layout/styles.module.css +12 -0
  124. package/src/theme/DocItem/Metadata/index.tsx +17 -0
  125. package/src/theme/DocItem/Paginator/index.tsx +20 -0
  126. package/src/theme/DocItem/TOC/Desktop/index.tsx +19 -0
  127. package/src/theme/DocItem/TOC/Mobile/index.tsx +22 -0
  128. package/src/theme/DocItem/TOC/Mobile/styles.module.css +26 -0
  129. package/src/theme/DocItem/index.tsx +23 -0
  130. package/src/theme/DocPaginator/index.tsx +46 -0
  131. package/src/theme/DocRoot/Layout/Main/index.tsx +31 -0
  132. package/src/theme/DocRoot/Layout/Main/styles.module.css +23 -0
  133. package/src/theme/DocRoot/Layout/Sidebar/ExpandButton/index.tsx +36 -0
  134. package/src/theme/DocRoot/Layout/Sidebar/ExpandButton/styles.module.css +29 -0
  135. package/src/theme/DocRoot/Layout/Sidebar/index.tsx +79 -0
  136. package/src/theme/DocRoot/Layout/Sidebar/styles.module.css +34 -0
  137. package/src/theme/DocRoot/Layout/index.tsx +32 -0
  138. package/src/theme/DocRoot/Layout/styles.module.css +11 -0
  139. package/src/theme/DocRoot/index.tsx +29 -0
  140. package/src/theme/DocSidebar/Desktop/CollapseButton/index.tsx +34 -0
  141. package/src/theme/DocSidebar/Desktop/CollapseButton/styles.module.css +42 -0
  142. package/src/theme/DocSidebar/Desktop/Content/index.tsx +56 -0
  143. package/src/theme/DocSidebar/Desktop/Content/styles.module.css +18 -0
  144. package/src/theme/DocSidebar/Desktop/index.tsx +36 -0
  145. package/src/theme/DocSidebar/Desktop/styles.module.css +39 -0
  146. package/src/theme/DocSidebar/Mobile/index.tsx +49 -0
  147. package/src/theme/DocSidebar/index.tsx +25 -0
  148. package/src/theme/DocSidebarItem/Category/index.tsx +309 -0
  149. package/src/theme/DocSidebarItem/Category/styles.module.css +35 -0
  150. package/src/theme/DocSidebarItem/Html/index.tsx +30 -0
  151. package/src/theme/DocSidebarItem/Html/styles.module.css +8 -0
  152. package/src/theme/DocSidebarItem/Link/index.tsx +62 -0
  153. package/src/theme/DocSidebarItem/Link/styles.module.css +13 -0
  154. package/src/theme/DocSidebarItem/index.tsx +19 -0
  155. package/src/theme/DocSidebarItems/index.tsx +24 -0
  156. package/src/theme/DocTagDocListPage/index.tsx +113 -0
  157. package/src/theme/DocTagsListPage/index.tsx +52 -0
  158. package/src/theme/DocVersionBadge/index.tsx +29 -0
  159. package/src/theme/DocVersionBanner/index.tsx +171 -0
  160. package/src/theme/DocVersionRoot/index.tsx +46 -0
  161. package/src/theme/DocsRoot/index.tsx +17 -0
  162. package/src/theme/EditMetaRow/index.tsx +31 -0
  163. package/src/theme/EditMetaRow/styles.module.css +19 -0
  164. package/src/theme/EditThisPage/index.tsx +21 -0
  165. package/src/theme/ErrorPageContent.tsx +38 -0
  166. package/src/theme/Footer/Copyright/index.tsx +15 -0
  167. package/src/theme/Footer/Layout/index.tsx +42 -0
  168. package/src/theme/Footer/LinkItem/index.tsx +31 -0
  169. package/src/theme/Footer/Links/MultiColumn/index.tsx +53 -0
  170. package/src/theme/Footer/Links/Simple/index.tsx +38 -0
  171. package/src/theme/Footer/Links/index.tsx +16 -0
  172. package/src/theme/Footer/Logo/index.tsx +41 -0
  173. package/src/theme/Footer/Logo/styles.module.css +11 -0
  174. package/src/theme/Footer/index.tsx +28 -0
  175. package/src/theme/Heading/index.tsx +50 -0
  176. package/src/theme/Heading/styles.module.css +17 -0
  177. package/src/theme/Homepage/index.tsx +178 -0
  178. package/src/theme/Icon/AI/index.tsx +21 -0
  179. package/src/theme/Icon/AWS/index.tsx +22 -0
  180. package/src/theme/Icon/Arrow/index.tsx +15 -0
  181. package/src/theme/Icon/Azure/index.tsx +28 -0
  182. package/src/theme/Icon/Changelog/index.tsx +26 -0
  183. package/src/theme/Icon/ChatBubble/index.tsx +29 -0
  184. package/src/theme/Icon/ChatBubbles/index.tsx +42 -0
  185. package/src/theme/Icon/Close/index.tsx +21 -0
  186. package/src/theme/Icon/Cog/index.tsx +45 -0
  187. package/src/theme/Icon/Copy/index.tsx +15 -0
  188. package/src/theme/Icon/DarkMode/index.tsx +15 -0
  189. package/src/theme/Icon/Edit/index.tsx +24 -0
  190. package/src/theme/Icon/Edit/styles.module.css +6 -0
  191. package/src/theme/Icon/Envelope/index.tsx +33 -0
  192. package/src/theme/Icon/ExternalLink/index.tsx +30 -0
  193. package/src/theme/Icon/ExternalLink/styles.module.css +5 -0
  194. package/src/theme/Icon/Fusion/index.tsx +32 -0
  195. package/src/theme/Icon/GoogleCloud/index.tsx +56 -0
  196. package/src/theme/Icon/Home/index.tsx +15 -0
  197. package/src/theme/Icon/Language/index.tsx +24 -0
  198. package/src/theme/Icon/LightMode/index.tsx +15 -0
  199. package/src/theme/Icon/MCP/index.tsx +84 -0
  200. package/src/theme/Icon/Menu/index.tsx +29 -0
  201. package/src/theme/Icon/MultiQC/index.tsx +25 -0
  202. package/src/theme/Icon/Nextflow/index.tsx +25 -0
  203. package/src/theme/Icon/QuestionMark/index.tsx +46 -0
  204. package/src/theme/Icon/SeqeraCloud/index.tsx +35 -0
  205. package/src/theme/Icon/SeqeraEnterprise/index.tsx +372 -0
  206. package/src/theme/Icon/SeqeraLogo/index.tsx +22 -0
  207. package/src/theme/Icon/ServiceStatus/index.tsx +101 -0
  208. package/src/theme/Icon/Sidebar/index.tsx +8 -0
  209. package/src/theme/Icon/Socials/Bluesky/index.tsx +23 -0
  210. package/src/theme/Icon/Socials/Bluesky/styles.module.css +9 -0
  211. package/src/theme/Icon/Socials/Default/index.tsx +28 -0
  212. package/src/theme/Icon/Socials/Email/index.tsx +23 -0
  213. package/src/theme/Icon/Socials/GitHub/index.tsx +24 -0
  214. package/src/theme/Icon/Socials/GitHub/styles.module.css +9 -0
  215. package/src/theme/Icon/Socials/Instagram/index.tsx +23 -0
  216. package/src/theme/Icon/Socials/Instagram/styles.module.css +9 -0
  217. package/src/theme/Icon/Socials/LinkedIn/index.tsx +23 -0
  218. package/src/theme/Icon/Socials/LinkedIn/styles.module.css +9 -0
  219. package/src/theme/Icon/Socials/Mastodon/index.tsx +40 -0
  220. package/src/theme/Icon/Socials/StackOverflow/index.tsx +25 -0
  221. package/src/theme/Icon/Socials/Threads/index.tsx +25 -0
  222. package/src/theme/Icon/Socials/Threads/styles.module.css +9 -0
  223. package/src/theme/Icon/Socials/Twitch/index.tsx +32 -0
  224. package/src/theme/Icon/Socials/Twitter/index.tsx +22 -0
  225. package/src/theme/Icon/Socials/X/index.tsx +24 -0
  226. package/src/theme/Icon/Socials/X/styles.module.css +9 -0
  227. package/src/theme/Icon/Socials/YouTube/index.tsx +22 -0
  228. package/src/theme/Icon/Success/index.tsx +15 -0
  229. package/src/theme/Icon/SystemColorMode/index.tsx +15 -0
  230. package/src/theme/Icon/Wave/index.tsx +32 -0
  231. package/src/theme/Icon/WordWrap/index.tsx +15 -0
  232. package/src/theme/LastUpdated/index.tsx +91 -0
  233. package/src/theme/Layout/Provider/index.tsx +26 -0
  234. package/src/theme/Layout/index.tsx +59 -0
  235. package/src/theme/Layout/styles.module.css +23 -0
  236. package/src/theme/Logo/index.tsx +78 -0
  237. package/src/theme/MDXComponents/A/index.tsx +16 -0
  238. package/src/theme/MDXComponents/Button/index.tsx +43 -0
  239. package/src/theme/MDXComponents/Code.tsx +26 -0
  240. package/src/theme/MDXComponents/Details.tsx +26 -0
  241. package/src/theme/MDXComponents/Heading.tsx +9 -0
  242. package/src/theme/MDXComponents/Img/index.tsx +23 -0
  243. package/src/theme/MDXComponents/Img/styles.module.css +5 -0
  244. package/src/theme/MDXComponents/Li.tsx +17 -0
  245. package/src/theme/MDXComponents/Pre.tsx +10 -0
  246. package/src/theme/MDXComponents/Ul/index.tsx +25 -0
  247. package/src/theme/MDXComponents/Ul/styles.module.css +9 -0
  248. package/src/theme/MDXComponents/index.tsx +47 -0
  249. package/src/theme/MDXContent/index.tsx +10 -0
  250. package/src/theme/MDXPage/index.tsx +87 -0
  251. package/src/theme/MDXPage/styles.module.css +5 -0
  252. package/src/theme/Mermaid.tsx +11 -0
  253. package/src/theme/Navbar/ColorModeToggle/index.tsx +29 -0
  254. package/src/theme/Navbar/ColorModeToggle/styles.module.css +5 -0
  255. package/src/theme/Navbar/Content/index.tsx +152 -0
  256. package/src/theme/Navbar/Content/styles.module.css +19 -0
  257. package/src/theme/Navbar/Layout/index.tsx +59 -0
  258. package/src/theme/Navbar/Layout/styles.module.css +9 -0
  259. package/src/theme/Navbar/Logo/index.tsx +14 -0
  260. package/src/theme/Navbar/MobileSidebar/Header/index.tsx +37 -0
  261. package/src/theme/Navbar/MobileSidebar/Layout/index.tsx +72 -0
  262. package/src/theme/Navbar/MobileSidebar/Layout/styles.module.css +11 -0
  263. package/src/theme/Navbar/MobileSidebar/PrimaryMenu/index.tsx +90 -0
  264. package/src/theme/Navbar/MobileSidebar/SecondaryMenu/index.tsx +34 -0
  265. package/src/theme/Navbar/MobileSidebar/Toggle/index.tsx +25 -0
  266. package/src/theme/Navbar/MobileSidebar/index.tsx +28 -0
  267. package/src/theme/Navbar/Search/index.tsx +15 -0
  268. package/src/theme/Navbar/Search/styles.module.css +22 -0
  269. package/src/theme/Navbar/Submenu/SubmenuLinks.tsx +136 -0
  270. package/src/theme/Navbar/Submenu/index.tsx +84 -0
  271. package/src/theme/Navbar/Submenu/styles.module.css +82 -0
  272. package/src/theme/Navbar/index.tsx +13 -0
  273. package/src/theme/NavbarItem/ComponentTypes.tsx +27 -0
  274. package/src/theme/NavbarItem/DefaultNavbarItem/Desktop/index.tsx +29 -0
  275. package/src/theme/NavbarItem/DefaultNavbarItem/Mobile/index.tsx +18 -0
  276. package/src/theme/NavbarItem/DefaultNavbarItem/index.tsx +23 -0
  277. package/src/theme/NavbarItem/DocNavbarItem.tsx +38 -0
  278. package/src/theme/NavbarItem/DocSidebarNavbarItem.tsx +33 -0
  279. package/src/theme/NavbarItem/DocsVersionDropdownNavbarItem.tsx +189 -0
  280. package/src/theme/NavbarItem/DocsVersionNavbarItem.tsx +22 -0
  281. package/src/theme/NavbarItem/DropdownNavbarItem/Desktop/index.tsx +81 -0
  282. package/src/theme/NavbarItem/DropdownNavbarItem/Mobile/index.tsx +161 -0
  283. package/src/theme/NavbarItem/DropdownNavbarItem/Mobile/styles.module.css +5 -0
  284. package/src/theme/NavbarItem/DropdownNavbarItem/index.tsx +14 -0
  285. package/src/theme/NavbarItem/HtmlNavbarItem.tsx +27 -0
  286. package/src/theme/NavbarItem/LocaleDropdownNavbarItem/index.tsx +128 -0
  287. package/src/theme/NavbarItem/LocaleDropdownNavbarItem/styles.module.css +6 -0
  288. package/src/theme/NavbarItem/NavbarNavLink.tsx +69 -0
  289. package/src/theme/NavbarItem/SearchNavbarItem.tsx +21 -0
  290. package/src/theme/NavbarItem/index.tsx +23 -0
  291. package/src/theme/NotFound/Content/index.tsx +34 -0
  292. package/src/theme/NotFound/index.tsx +22 -0
  293. package/src/theme/PaginatorNavLink/index.tsx +21 -0
  294. package/src/theme/SearchBar.tsx +8 -0
  295. package/src/theme/SearchMetadata/index.tsx +38 -0
  296. package/src/theme/SiteMetadata/index.tsx +153 -0
  297. package/src/theme/SkipToContent/index.tsx +9 -0
  298. package/src/theme/SkipToContent/styles.module.css +16 -0
  299. package/src/theme/TOC/index.tsx +26 -0
  300. package/src/theme/TOC/styles.module.css +23 -0
  301. package/src/theme/TOCCollapsible/CollapseButton/index.tsx +30 -0
  302. package/src/theme/TOCCollapsible/CollapseButton/styles.module.css +27 -0
  303. package/src/theme/TOCCollapsible/index.tsx +42 -0
  304. package/src/theme/TOCCollapsible/styles.module.css +26 -0
  305. package/src/theme/TOCInline/index.tsx +25 -0
  306. package/src/theme/TOCInline/styles.module.css +7 -0
  307. package/src/theme/TOCItems/Tree.tsx +40 -0
  308. package/src/theme/TOCItems/index.tsx +56 -0
  309. package/src/theme/TabItem/index.tsx +22 -0
  310. package/src/theme/TabItem/styles.module.css +5 -0
  311. package/src/theme/Tabs/index.tsx +167 -0
  312. package/src/theme/Tabs/styles.module.css +9 -0
  313. package/src/theme/Tag/index.tsx +30 -0
  314. package/src/theme/Tag/styles.module.css +65 -0
  315. package/src/theme/TagsListByLetter/index.tsx +40 -0
  316. package/src/theme/TagsListByLetter/styles.module.css +6 -0
  317. package/src/theme/TagsListInline/index.tsx +30 -0
  318. package/src/theme/TagsListInline/styles.module.css +10 -0
  319. package/src/theme/ThemeProvider/TitleFormatter/index.tsx +22 -0
  320. package/src/theme/ThemeProvider/index.tsx +9 -0
  321. package/src/theme/ThemedImage/index.tsx +21 -0
  322. package/src/theme/ThemedImage/styles.module.css +13 -0
  323. package/src/theme/pages/Home/index.tsx +19 -0
  324. package/src/theme/prism-include-languages.ts +39 -0
  325. package/src/theme-seqera.d.ts +2277 -0
  326. package/src/translations.ts +240 -0
  327. package/tailwind.config.js +7 -0
@@ -0,0 +1,32 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/Fusion';
3
+
4
+ export default function IconFusion(props: Props): ReactNode {
5
+ return (
6
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
7
+ <g clipPath="url(#clip0_15_775)">
8
+ <path
9
+ d="M11.4826 19.5763C7.69536 19.3247 4.6608 16.2825 4.42272 12.4915H0C0.24576 18.7276 5.24928 23.7407 11.4826 23.9999V19.5763Z"
10
+ fill="currentColor"
11
+ />
12
+ <path
13
+ d="M4.42368 11.4826C4.6752 7.69536 7.71744 4.6608 11.5085 4.42272V0C5.27232 0.24576 0.2592 5.24928 0 11.4826H4.42368Z"
14
+ fill="currentColor"
15
+ />
16
+ <path
17
+ d="M19.5764 12.5173C19.3249 16.3045 16.2826 19.3391 12.4916 19.5772V23.9999C18.7277 23.7541 23.7409 18.7506 24.0001 12.5173H19.5764Z"
18
+ fill="currentColor"
19
+ />
20
+ <path
21
+ d="M12.5175 4.42368C16.3047 4.6752 19.3392 7.71744 19.5773 11.5085H24C23.7543 5.27232 18.7507 0.2592 12.5175 0V4.42368Z"
22
+ fill="currentColor"
23
+ />
24
+ </g>
25
+ <defs>
26
+ <clipPath id="clip0_15_775">
27
+ <rect width="24" height="24" fill="white" />
28
+ </clipPath>
29
+ </defs>
30
+ </svg>
31
+ );
32
+ }
@@ -0,0 +1,56 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/GoogleCloud';
3
+
4
+ export default function IconGoogleCloud({
5
+ lightFill = '#160F26',
6
+ darkFill = '#FFFFFF',
7
+ ...props
8
+ }: Props): ReactNode {
9
+ return (
10
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
11
+ <g clipPath="url(#clip0_5816_73083)">
12
+ <path
13
+ d="M19.7618 9.93455C19.6158 8.61717 19.1302 7.36027 18.3527 6.28687L15.8542 8.78528L15.7043 8.94518C16.0075 9.53929 16.1651 10.197 16.164 10.864C16.1657 11.5203 16.0116 12.1676 15.7143 12.7528C15.675 12.8266 15.6544 12.9089 15.6544 12.9926C15.6544 13.0763 15.675 13.1586 15.7143 13.2325C15.7606 13.3048 15.824 13.3646 15.899 13.4065C15.974 13.4483 16.0582 13.4709 16.1441 13.4723H17.9929C18.4533 13.5064 18.8837 13.7134 19.1979 14.0516C19.512 14.3899 19.6866 14.8345 19.6866 15.2961C19.6866 15.7578 19.512 16.2024 19.1979 16.5406C18.8837 16.8789 18.4533 17.0859 17.9929 17.12H12.9961V20.7677H18.5126C19.8571 20.7727 21.1563 20.2821 22.1618 19.3896C23.1674 18.4971 23.8088 17.2653 23.9634 15.9297C24.1179 14.5941 23.7749 13.2484 22.9998 12.1498C22.2247 11.0511 21.0719 10.2767 19.7618 9.97451V9.93455Z"
14
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
15
+ style={{
16
+ '--icon-stroke': lightFill,
17
+ '--icon-stroke-dark': darkFill,
18
+ } as React.CSSProperties}
19
+ />
20
+ <path
21
+ d="M6.66101 17.9793L4.3125 20.3278C5.01971 20.589 5.76721 20.7242 6.5211 20.7275H11.5179V17.0798H7.56044L6.66101 17.9793Z"
22
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
23
+ style={{
24
+ '--icon-stroke': lightFill,
25
+ '--icon-stroke-dark': darkFill,
26
+ } as React.CSSProperties}
27
+ />
28
+ <path
29
+ d="M6.51916 6.19695C7.49008 6.19381 8.45292 6.3735 9.35735 6.72662C9.63011 6.83212 9.89699 6.95221 10.1569 7.08639C10.7259 6.79488 11.3564 6.64409 11.9957 6.64667C13.0306 6.64381 14.029 7.0289 14.7939 7.72598L17.3723 5.14762C16.5663 4.37917 15.6045 3.79284 14.5522 3.42831C13.4999 3.06379 12.3816 2.92958 11.2729 3.03476C10.1643 3.13994 9.09109 3.48206 8.12612 4.03797C7.16114 4.59388 6.32684 5.3506 5.67969 6.25691C5.95825 6.22203 6.23847 6.20202 6.51916 6.19695Z"
30
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
31
+ style={{
32
+ '--icon-stroke': lightFill,
33
+ '--icon-stroke-dark': darkFill,
34
+ } as React.CSSProperties}
35
+ />
36
+ <path
37
+ d="M2.89286 19.6285L5.60114 16.9202C5.17123 16.7655 4.78447 16.5104 4.47309 16.1761C4.16171 15.8417 3.9347 15.4378 3.81098 14.998C3.68725 14.5582 3.67039 14.0952 3.76179 13.6475C3.85319 13.1999 4.05021 12.7805 4.33645 12.4244C4.62269 12.0683 4.98985 11.7857 5.40738 11.6002C5.82491 11.4147 6.28072 11.3316 6.73685 11.3579C7.19298 11.3841 7.63624 11.519 8.02972 11.7512C8.4232 11.9834 8.75551 12.3063 8.99898 12.6929C9.03928 12.7575 9.09328 12.8125 9.15718 12.8539C9.22108 12.8954 9.29331 12.9223 9.36875 12.9327H9.41872C9.48575 12.9337 9.55227 12.9209 9.61416 12.8951C9.67605 12.8693 9.73198 12.8311 9.77849 12.7828L11.6773 10.884C11.7574 10.7928 11.8016 10.6756 11.8016 10.5542C11.8016 10.4329 11.7574 10.3156 11.6773 10.2244C10.94 9.27523 9.95412 8.54881 8.82909 8.12578C8.09295 7.8404 7.31008 7.69467 6.52056 7.69605C5.91564 7.69704 5.31373 7.7811 4.7317 7.9459C3.53573 8.28639 2.46217 8.96199 1.63778 9.89292C0.813388 10.8239 0.272592 11.9712 0.079248 13.1996C-0.114096 14.428 0.0480873 15.686 0.546647 16.8252C1.04521 17.9643 1.85932 18.9371 2.89286 19.6285Z"
38
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
39
+ style={{
40
+ '--icon-stroke': lightFill,
41
+ '--icon-stroke-dark': darkFill,
42
+ } as React.CSSProperties}
43
+ />
44
+ </g>
45
+ <defs>
46
+ <clipPath id="clip0_5816_73083">
47
+ <rect width="24" height="24" className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
48
+ style={{
49
+ '--icon-stroke': lightFill,
50
+ '--icon-stroke-dark': darkFill,
51
+ } as React.CSSProperties} />
52
+ </clipPath>
53
+ </defs>
54
+ </svg>
55
+ );
56
+ }
@@ -0,0 +1,15 @@
1
+
2
+
3
+ import React, {type ReactNode} from 'react';
4
+ import type {Props} from '@theme/Icon/Home';
5
+
6
+ export default function IconHome(props: Props): ReactNode {
7
+ return (
8
+ <svg viewBox="0 0 24 24" {...props}>
9
+ <path
10
+ d="M10 19v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ );
15
+ }
@@ -0,0 +1,24 @@
1
+
2
+
3
+ import React, {type ReactNode} from 'react';
4
+ import type {Props} from '@theme/Icon/Language';
5
+
6
+ export default function IconLanguage({
7
+ width = 20,
8
+ height = 20,
9
+ ...props
10
+ }: Props): ReactNode {
11
+ return (
12
+ <svg
13
+ viewBox="0 0 24 24"
14
+ width={width}
15
+ height={height}
16
+ aria-hidden
17
+ {...props}>
18
+ <path
19
+ fill="currentColor"
20
+ d="M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z"
21
+ />
22
+ </svg>
23
+ );
24
+ }
@@ -0,0 +1,15 @@
1
+
2
+
3
+ import React, {type ReactNode} from 'react';
4
+ import type {Props} from '@theme/Icon/LightMode';
5
+
6
+ export default function IconLightMode(props: Props): ReactNode {
7
+ return (
8
+ <svg viewBox="0 0 24 24" width={24} height={24} {...props}>
9
+ <path
10
+ fill="currentColor"
11
+ d="M12,9c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S10.35,9,12,9 M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5 S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1 s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0 c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95 c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41 L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41 s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06 c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z"
12
+ />
13
+ </svg>
14
+ );
15
+ }
@@ -0,0 +1,84 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/MCP';
3
+
4
+ export default function IconMCP({
5
+ lightFill = '#160F26',
6
+ darkFill = '#FFFFFF',
7
+ ...props
8
+ }: Props): ReactNode {
9
+ return (
10
+ <svg
11
+ width="19"
12
+ height="23"
13
+ viewBox="0 0 19 23"
14
+ fill="none"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ {...props}>
17
+ <path
18
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
19
+ style={
20
+ {
21
+ '--icon-stroke': lightFill,
22
+ '--icon-stroke-dark': darkFill,
23
+ } as React.CSSProperties
24
+ }
25
+ d="M18.5 20.5V2.5L14 4.5H5L0.5 2.5V20.5"
26
+ strokeMiterlimit="10"
27
+ strokeLinecap="round"
28
+ strokeLinejoin="round"
29
+ />
30
+ <path
31
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
32
+ style={
33
+ {
34
+ '--icon-stroke': lightFill,
35
+ '--icon-stroke-dark': darkFill,
36
+ } as React.CSSProperties
37
+ }
38
+ d="M18.5 8.5L14 10.5H5L0.5 8.5"
39
+ strokeMiterlimit="10"
40
+ strokeLinecap="round"
41
+ strokeLinejoin="round"
42
+ />
43
+ <path
44
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
45
+ style={
46
+ {
47
+ '--icon-stroke': lightFill,
48
+ '--icon-stroke-dark': darkFill,
49
+ } as React.CSSProperties
50
+ }
51
+ d="M18.5 14.5L14 16.5H5L0.5 14.5"
52
+ strokeMiterlimit="10"
53
+ strokeLinecap="round"
54
+ strokeLinejoin="round"
55
+ />
56
+ <path
57
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
58
+ style={
59
+ {
60
+ '--icon-stroke': lightFill,
61
+ '--icon-stroke-dark': darkFill,
62
+ } as React.CSSProperties
63
+ }
64
+ d="M18.5 20.5L14 22.5H5L0.5 20.5"
65
+ strokeMiterlimit="10"
66
+ strokeLinecap="round"
67
+ strokeLinejoin="round"
68
+ />
69
+ <path
70
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
71
+ style={
72
+ {
73
+ '--icon-stroke': lightFill,
74
+ '--icon-stroke-dark': darkFill,
75
+ } as React.CSSProperties
76
+ }
77
+ d="M0.5 2.5L5 0.5H14L18.5 2.5"
78
+ strokeMiterlimit="10"
79
+ strokeLinecap="round"
80
+ strokeLinejoin="round"
81
+ />
82
+ </svg>
83
+ );
84
+ }
@@ -0,0 +1,29 @@
1
+
2
+
3
+ import React, {type ReactNode} from 'react';
4
+ import type {Props} from '@theme/Icon/Menu';
5
+
6
+ export default function IconMenu({
7
+ width = 30,
8
+ height = 30,
9
+ className,
10
+ ...restProps
11
+ }: Props): ReactNode {
12
+ return (
13
+ <svg
14
+ className={className}
15
+ width={width}
16
+ height={height}
17
+ viewBox="0 0 30 30"
18
+ aria-hidden="true"
19
+ {...restProps}>
20
+ <path
21
+ stroke="currentColor"
22
+ strokeLinecap="round"
23
+ strokeMiterlimit="10"
24
+ strokeWidth="2"
25
+ d="M4 7h22M4 15h22M4 23h22"
26
+ />
27
+ </svg>
28
+ );
29
+ }
@@ -0,0 +1,25 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/MultiQC';
3
+
4
+ export default function IconMultiQC(props: Props): ReactNode {
5
+ return (
6
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
7
+ <path
8
+ d="M4.42368 11.4826C4.6752 7.69536 7.71744 4.6608 11.5085 4.42272V0C5.27232 0.24576 0.2592 5.24928 0 11.4826H4.42368Z"
9
+ fill="currentColor"
10
+ />
11
+ <path
12
+ d="M11.4826 19.5764C7.69536 19.3249 4.6608 16.2826 4.42272 12.4916H0C0.24576 18.7277 5.24928 23.7409 11.4826 24.0001V19.5764Z"
13
+ fill="currentColor"
14
+ />
15
+ <path
16
+ d="M12.5175 4.42368C16.3047 4.6752 19.3392 7.71744 19.5773 11.5085H24C23.7543 5.27232 18.7507 0.2592 12.5175 0V4.42368Z"
17
+ fill="currentColor"
18
+ />
19
+ <path
20
+ d="M24 19.5764C20.2128 19.3249 17.1783 16.2826 16.9402 12.4916H12.5175C12.7632 18.7277 17.7667 23.7409 24 24.0001V19.5764Z"
21
+ fill="currentColor"
22
+ />
23
+ </svg>
24
+ );
25
+ }
@@ -0,0 +1,25 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/Nextflow';
3
+
4
+ export default function IconNextflow(props: Props): ReactNode {
5
+ return (
6
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
7
+ <path
8
+ d="M0 4.42368C3.7872 4.6752 6.82176 7.71744 7.05984 11.5085H11.4826C11.2368 5.27232 6.23328 0.2592 0 0V4.42368Z"
9
+ fill="currentColor"
10
+ />
11
+ <path
12
+ d="M7.0848 12.5175C6.83328 16.3047 3.79104 19.3392 0 19.5773V24C6.23616 23.7543 11.2493 18.7507 11.5085 12.5175H7.0848Z"
13
+ fill="currentColor"
14
+ />
15
+ <path
16
+ d="M16.9153 11.4826C17.1668 7.69536 20.209 4.6608 24.0001 4.42272V0C17.7639 0.24576 12.7508 5.24928 12.4916 11.4826H16.9153Z"
17
+ fill="currentColor"
18
+ />
19
+ <path
20
+ d="M24 19.5764C20.2128 19.3249 17.1783 16.2826 16.9402 12.4916H12.5175C12.7632 18.7277 17.7667 23.7409 24 24.0001V19.5764Z"
21
+ fill="currentColor"
22
+ />
23
+ </svg>
24
+ );
25
+ }
@@ -0,0 +1,46 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/QuestionMark';
3
+
4
+ export default function IconQuestionMark({
5
+ lightFill = '#160F26',
6
+ darkFill = '#FFFFFF',
7
+ ...props
8
+ }: Props): ReactNode {
9
+ return (
10
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
11
+ <path
12
+ d="M12.5 14.5V13L15.5 11V7.5L11.5 4.75L7.5 7.25V9.5L11.5 7L13.5 8.5V10L10.5 12V14.5H12.5Z"
13
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
14
+ style={{
15
+ '--icon-stroke': lightFill,
16
+ '--icon-stroke-dark': darkFill,
17
+ } as React.CSSProperties}
18
+ strokeMiterlimit="10"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ <path
23
+ d="M11.5 16.5L10 18L11.5 19.5L12.999 18L11.499 16.5H11.5Z"
24
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
25
+ style={{
26
+ '--icon-stroke': lightFill,
27
+ '--icon-stroke-dark': darkFill,
28
+ } as React.CSSProperties}
29
+ strokeMiterlimit="10"
30
+ strokeLinecap="round"
31
+ strokeLinejoin="round"
32
+ />
33
+ <path
34
+ d="M21.5 18L11.5 23.5L1.5 18V7L11.5 1.5L21.5 7V18Z"
35
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
36
+ style={{
37
+ '--icon-stroke': lightFill,
38
+ '--icon-stroke-dark': darkFill,
39
+ } as React.CSSProperties}
40
+ strokeMiterlimit="10"
41
+ strokeLinecap="round"
42
+ strokeLinejoin="round"
43
+ />
44
+ </svg>
45
+ );
46
+ }
@@ -0,0 +1,35 @@
1
+ import React, {type ReactNode} from 'react';
2
+ import type {Props} from '@theme/Icon/SeqeraCloud';
3
+
4
+ export default function IconSeqeraCloud({
5
+ lightFill = '#160F26',
6
+ darkFill = '#FFFFFF',
7
+ ...props
8
+ }: Props): ReactNode {
9
+ return (
10
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
11
+ <path
12
+ d="M21 11.5H18L15.5 5.5H10.5L8 9.5H4L0.5 15L4 19.5H20L22.5 16L21 11.5Z"
13
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
14
+ style={{
15
+ '--icon-stroke': lightFill,
16
+ '--icon-stroke-dark': darkFill,
17
+ } as React.CSSProperties}
18
+ strokeMiterlimit="10"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ <path
23
+ d="M14.5 11.5H18"
24
+ className="stroke-[var(--icon-stroke)] dark:stroke-[var(--icon-stroke-dark)]"
25
+ style={{
26
+ '--icon-stroke': lightFill,
27
+ '--icon-stroke-dark': darkFill,
28
+ } as React.CSSProperties}
29
+ strokeMiterlimit="10"
30
+ strokeLinecap="round"
31
+ strokeLinejoin="round"
32
+ />
33
+ </svg>
34
+ );
35
+ }