You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -418,7 +418,7 @@ noindex: true
418
418
## Other improvements
419
419
420
420
-[Guide to Technical Writing:](https://mintlify.com/guides/introduction)Best practices for writing technical documentation, including audience research, content types, and writing tips.
421
-
-[Dropdown component](navigation#dropdowns): Organize navigation with a dropdown, in addition to tabs and anchors.
421
+
-[Tab component](navigation#tabs): Organize navigation with tabs and anchors for better user experience.
422
422
-[AI syntax fixer](https://x.com/ricardonunez_io/status/1892334887644123192): The web editor will catch if there’s a parsing error and use AI to suggest fixes.
Copy file name to clipboardExpand all lines: navigation.mdx
+3-49Lines changed: 3 additions & 49 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -157,7 +157,7 @@ In the `navigation` object, `tabs` is an array where each entry is an object tha
157
157
158
158
### Menus
159
159
160
-
Menus add dropdown navigation items to a tab. Use menus to help users go directly to specific pages within a tab.
160
+
Menus add sub-navigation items to a tab. Use menus to help users go directly to specific pages within a tab.
161
161
162
162
In the `navigation` object, `menu` is an array where each entry is an object that requires an `item` field and can contain other navigation fields such as groups, pages, icons, or links to external pages.
163
163
@@ -274,52 +274,6 @@ Global anchors are particularly useful for linking to resources that are not par
274
274
}
275
275
```
276
276
277
-
## Dropdowns
278
-
279
-
Dropdowns are contained in an expandable menu at the top of your sidebar navigation. Each item in a dropdown directs to a section of your documentation.
280
-
281
-
<img
282
-
className="block dark:hidden pointer-events-none"
283
-
src="/images/navigation/dropdowns-light.png"
284
-
/>
285
-
286
-
<img
287
-
className="hidden dark:block pointer-events-none"
288
-
src="/images/navigation/dropdowns-dark.png"
289
-
/>
290
-
291
-
In the `navigation` object, `dropdowns` is an array where each entry is an object that requires a `dropdown` field and can contain other navigation fields such as groups, pages, icons, or links to external pages.
292
-
293
-
```json
294
-
{
295
-
"navigation": {
296
-
"dropdowns": [
297
-
{
298
-
"dropdown": "Documentation",
299
-
"icon": "book-open",
300
-
"pages": [
301
-
"quickstart",
302
-
"development",
303
-
"navigation"
304
-
]
305
-
},
306
-
{
307
-
"dropdown": "API reference",
308
-
"icon": "square-terminal",
309
-
"pages": [
310
-
"api-reference/get",
311
-
"api-reference/post",
312
-
"api-reference/delete"
313
-
]
314
-
},
315
-
{
316
-
"dropdown": "Blog",
317
-
"href": "https://external-link.com/blog"
318
-
}
319
-
]
320
-
}
321
-
}
322
-
```
323
277
324
278
## OpenAPI
325
279
@@ -465,7 +419,7 @@ For automated translations, [contact our sales team](mailto:[email protected]) to
465
419
466
420
## Nesting
467
421
468
-
You can use any combination of anchors, tabs, and dropdowns. The components can be nested within each other interchangeably to create your desired navigation structure.
422
+
You can use any combination of anchorsand tabs. The components can be nested within each other interchangeably to create your desired navigation structure.
469
423
470
424
<CodeGroup>
471
425
@@ -616,7 +570,7 @@ When a user expands a navigation group, some themes will automatically navigate
616
570
```json
617
571
{
618
572
"interaction": {
619
-
"drilldown": true// Force navigation to first page when a user expands a dropdown
573
+
"drilldown": true// Force navigation to first page when a user expands a navigation group
0 commit comments