@seqera/docusaurus-theme-seqera 1.0.19-next.65 → 1.0.20-next.67
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.
|
@@ -16,7 +16,6 @@ import NavbarMobileSidebarToggle from '@theme/Navbar/MobileSidebar/Toggle';
|
|
|
16
16
|
import NavbarLogo from '@theme/Navbar/Logo';
|
|
17
17
|
import Submenu from '../Submenu';
|
|
18
18
|
import styles from './styles.module.css';
|
|
19
|
-
import Link from '@docusaurus/Link';
|
|
20
19
|
function useNavbarItems() {
|
|
21
20
|
// TODO temporary casting until ThemeConfig type is improved
|
|
22
21
|
return useThemeConfig().navbar.items;
|
|
@@ -110,18 +109,18 @@ export default function NavbarContent() {
|
|
|
110
109
|
<NavbarItems items={leftItems} />
|
|
111
110
|
</div>
|
|
112
111
|
<div className="mr-2">
|
|
113
|
-
<
|
|
112
|
+
<a
|
|
114
113
|
className="navbar__link ml-8 font-normal"
|
|
115
|
-
href=
|
|
114
|
+
href="/platform-api/"
|
|
116
115
|
aria-label="Platform API">
|
|
117
116
|
Platform API
|
|
118
|
-
</
|
|
119
|
-
<
|
|
117
|
+
</a>
|
|
118
|
+
<a
|
|
120
119
|
className="navbar__link ml-8 font-normal"
|
|
121
|
-
href=
|
|
120
|
+
href="/changelog/"
|
|
122
121
|
aria-label="Changelog">
|
|
123
122
|
Changelog
|
|
124
|
-
</
|
|
123
|
+
</a>
|
|
125
124
|
</div>
|
|
126
125
|
</div>
|
|
127
126
|
</div>
|
package/package.json
CHANGED
|
@@ -17,7 +17,6 @@ import NavbarLogo from '@theme/Navbar/Logo';
|
|
|
17
17
|
import NavbarSearch from '@theme/Navbar/Search';
|
|
18
18
|
import Submenu from '../Submenu';
|
|
19
19
|
import styles from './styles.module.css';
|
|
20
|
-
import Link from '@docusaurus/Link';
|
|
21
20
|
|
|
22
21
|
function useNavbarItems() {
|
|
23
22
|
// TODO temporary casting until ThemeConfig type is improved
|
|
@@ -126,18 +125,18 @@ export default function NavbarContent(): ReactNode {
|
|
|
126
125
|
<NavbarItems items={leftItems} />
|
|
127
126
|
</div>
|
|
128
127
|
<div className="mr-2">
|
|
129
|
-
<
|
|
128
|
+
<a
|
|
130
129
|
className="navbar__link ml-8 font-normal"
|
|
131
|
-
href=
|
|
130
|
+
href="/platform-api/"
|
|
132
131
|
aria-label="Platform API">
|
|
133
132
|
Platform API
|
|
134
|
-
</
|
|
135
|
-
<
|
|
133
|
+
</a>
|
|
134
|
+
<a
|
|
136
135
|
className="navbar__link ml-8 font-normal"
|
|
137
|
-
href=
|
|
136
|
+
href="/changelog/"
|
|
138
137
|
aria-label="Changelog">
|
|
139
138
|
Changelog
|
|
140
|
-
</
|
|
139
|
+
</a>
|
|
141
140
|
</div>
|
|
142
141
|
</div>
|
|
143
142
|
</div>
|