Skip to content

Commit 628be69

Browse files
committed
consolidate tab and tab variant content
2 parents 1e967d0 + 3a88225 commit 628be69

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2023
-1944
lines changed

.vale.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Microsoft.Ellipses = NO # Mostly just picks up code
2626
Microsoft.Dashes = NO
2727
Microsoft.Foreign = NO
2828
Microsoft.Plurals = NO
29+
Microsoft.Quotes = NO # Mostly just picks up code
2930

3031
# Not relevant for Fern audience
3132
Microsoft.GeneralURL = NO

.vale/styles/FernStyles/Acronyms.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,8 @@ exceptions:
8484
- RBAC
8585
- SAML
8686
- OIDC
87+
- RGB
88+
- JPEG
89+
- RPG
90+
- MIME
91+
- PNG

.vale/styles/FernStyles/Headings.yml

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -44,42 +44,6 @@ exceptions:
4444
- RPC
4545
- SDK
4646
- SDKs
47-
- Accordion
48-
- Accordions
49-
- Accordion Groups
50-
- Aside
51-
- Badge
52-
- Badges
53-
- Button
54-
- Callout
55-
- Callouts
56-
- Card
57-
- Cards
58-
- Card Groups
59-
- Code Blocks
60-
- CodeBlock
61-
- CodeBlocks
62-
- CodeGroup
63-
- Embed
64-
- Endpoint Request Snippet
65-
- Endpoint Response Snippet
66-
- Endpoint Schema Snippet
67-
- Frame
68-
- Frames
69-
- Icon
70-
- Icons
71-
- Param Field
72-
- Param Fields
73-
- ParamField
74-
- Runnable Endpoint
75-
- Step
76-
- Steps
77-
- Sticky Table
78-
- StickyTable
79-
- Tab
80-
- Tabs
81-
- Tooltip
82-
- Tooltips
8347
- PDF
8448
- CSS
8549
- HTML
@@ -114,3 +78,4 @@ exceptions:
11478
- RBAC
11579
- YAML
11680
- fern.config.json
81+
- Font Awesome

fern/assets/styles.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,3 +1107,24 @@ h1, h2, h3 {
11071107
.fern-sidebar-link[href$="changelog"] > svg {
11081108
display: none;
11091109
}
1110+
1111+
/*** START -- HIGHLIGHTED FRAME STYLING ***/
1112+
.highlight-frame {
1113+
background-color: var(--accent-a2);
1114+
border-radius: 0.75rem;
1115+
padding: 1.5rem;
1116+
margin: 1rem 0;
1117+
}
1118+
1119+
.highlight-frame > *:first-child {
1120+
margin-top: 0;
1121+
}
1122+
1123+
.highlight-frame > *:last-child {
1124+
margin-bottom: 0;
1125+
}
1126+
1127+
:is(.dark) .highlight-frame {
1128+
background-color: var(--accent-a3);
1129+
}
1130+
/*** END -- HIGHLIGHTED FRAME STYLING ***/

fern/docs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,10 @@ redirects:
304304
destination: /learn/docs/preview-publish/publishing-your-docs
305305

306306
# Building and Customizing Your Docs redirects - specific cases first
307+
- source: /learn/docs/writing-content/components/accordion-groups
308+
destination: /learn/docs/writing-content/components/accordions
309+
- source: /learn/docs/writing-content/components/card-groups
310+
destination: /learn/docs/writing-content/components/cards
307311
- source: /learn/docs/building-and-customizing-your-docs/navigation
308312
destination: /learn/docs/configuration/navigation
309313
- source: /learn/docs/navigation/overview

fern/products/api-def/ferndef-pages/websockets.mdx

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,8 @@ A `channel` is defined by the following fields:
8181
8282
Fern renders a unique reference page for WebSockets. The **Handshake** section outlines the protocol for connecting with the server, while the **Send** and **Receive** sections outline the message schemas that can be sent between the client and server.
8383
84-
<Frame caption="Cartesia's WebSocket Reference page">
84+
Users can connect to and use WebSockets from right within the API Reference (check one of Hume's WebSockets [here](https://dev.hume.ai/reference/text-to-speech-tts/stream-input)).
85+
86+
<Frame caption="Hume's WebSocket Reference Page">
8587
<img src="./wss-reference.png" alt="The WebSocket Reference" />
8688
</Frame>
87-
88-
### WebSocket Playground
89-
90-
<Markdown src="/snippets/pro-plan.mdx" />
91-
92-
Users can connect to and use WebSockets from right within the API Reference (check one of Hume's WebSockets [here](https://dev.hume.ai/reference/empathic-voice-interface-evi/chat/chat)).
93-
94-
<Frame caption="Click 'Play' to open the WebSocket Playground">
95-
<img src="./websocket.png" alt="WebSocket Playground"/>
96-
</Frame>
216 KB
Loading

fern/products/cli-api-reference/cli-changelog/2025-11-03.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 0.107.3
2+
**`(chore):`** Revert the change in 0.107.0 which didn't deduplicate types as expected
3+
4+
5+
## 0.107.2
6+
**`(fix):`** Fix fern docs dev on windows
7+
8+
9+
## 0.107.1
10+
**`(fix):`** Allow unknown types in query parameters
11+
12+
13+
## 0.107.0
14+
**`(fix):`** Fixes fern definition creating duplicate types in separate files
15+
16+
117
## 0.106.0
218
**`(feat):`** Add support for external product links.
319

fern/products/docs/docs.yml

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -37,75 +37,81 @@ navigation:
3737
- page: Overview
3838
path: ./pages/component-library/default-components/overview.mdx
3939
icon: fa-duotone fa-book
40-
- page: Accordions
40+
- page: Accordion
4141
path: ./pages/component-library/default-components/accordions.mdx
4242
icon: fa-duotone fa-chevron-down
43-
- page: Accordion Groups
44-
path: ./pages/component-library/default-components/accordion-groups.mdx
45-
icon: fa-duotone fa-chevrons-down
43+
slug: accordions
4644
- page: Anchor
4745
path: ./pages/component-library/default-components/anchor.mdx
4846
icon: fa-duotone fa-link
4947
- page: Aside
5048
path: ./pages/component-library/default-components/aside.mdx
5149
icon: fa-regular fa-comment-dots
52-
- page: Badges
50+
- page: Badge
5351
path: ./pages/component-library/default-components/badges.mdx
5452
icon: fa-regular fa-ribbon
53+
slug: badges
5554
- page: Button
5655
path: ./pages/component-library/default-components/button.mdx
5756
icon: fa-duotone fa-arrow-pointer
58-
- page: Callouts
57+
- page: Callout
5958
path: ./pages/component-library/default-components/callouts.mdx
6059
icon: fa-duotone fa-exclamation-triangle
61-
- page: Cards
60+
slug: callouts
61+
- page: Card
6262
path: ./pages/component-library/default-components/cards.mdx
6363
icon: fa-duotone fa-id-card
64-
- page: Card Groups
65-
path: ./pages/component-library/default-components/card-groups.mdx
66-
icon: fa-duotone fa-grid-2
67-
- page: Code Blocks
64+
slug: cards
65+
- page: Code block
6866
path: ./pages/component-library/default-components/code-blocks.mdx
6967
icon: fa-duotone fa-code
68+
slug: code-blocks
7069
- page: Embed
7170
path: ./pages/component-library/default-components/embed.mdx
7271
icon: fa-duotone fa-window-restore
73-
- page: Endpoint Request Snippet
72+
- page: Endpoint request snippet
7473
path: ./pages/component-library/default-components/endpoint-request-snippet.mdx
7574
icon: fa-duotone fa-arrow-up
7675
slug: request-snippet
77-
- page: Endpoint Response Snippet
76+
- page: Endpoint response snippet
7877
path: ./pages/component-library/default-components/endpoint-response-snippet.mdx
7978
icon: fa-duotone fa-arrow-down
8079
slug: response-snippet
81-
- page: Endpoint Schema Snippet
80+
- page: Endpoint schema snippet
8281
path: ./pages/component-library/default-components/endpoint-schema-snippet.mdx
8382
icon: fa-duotone fa-sitemap
8483
slug: schema-snippet
85-
- page: Runnable Endpoint
86-
path: ./pages/component-library/default-components/runnable-endpoint.mdx
87-
icon: fa-duotone fa-play-circle
88-
- page: Frames
84+
- page: Frame
8985
path: ./pages/component-library/default-components/frames.mdx
9086
icon: fa-duotone fa-window-maximize
91-
- page: Icons
87+
slug: frames
88+
- page: Icon
9289
path: ./pages/component-library/default-components/icons.mdx
9390
icon: fa-duotone fa-icons
94-
- page: Parameter Fields
91+
slug: icons
92+
- page: Parameter field
9593
path: ./pages/component-library/default-components/parameter-fields.mdx
9694
icon: fa-duotone fa-list
97-
- page: Steps
95+
slug: parameter-fields
96+
- page: Runnable endpoint
97+
path: ./pages/component-library/default-components/runnable-endpoint.mdx
98+
icon: fa-duotone fa-play-circle
99+
- page: Step
98100
path: ./pages/component-library/default-components/steps.mdx
99101
icon: fa-duotone fa-list-ol
100-
- page: Sticky tables
102+
slug: steps
103+
- page: Sticky table
101104
path: ./pages/component-library/default-components/sticky-tables.mdx
102105
icon: fa-duotone fa-table
103-
- page: Tabs
106+
slug: sticky-tables
107+
- page: Tab
104108
path: ./pages/component-library/default-components/tabs.mdx
105109
icon: fa-duotone fa-folder-open
106-
- page: Tooltips
110+
slug: tabs
111+
- page: Tooltip
107112
path: ./pages/component-library/default-components/tooltips.mdx
108113
icon: fa-duotone fa-comment
114+
slug: tooltips
109115
- page: Fern Editor
110116
path: ./pages/component-library/writing-content/visual-editor.mdx
111117
slug: fern-editor

fern/products/docs/pages/api-references/http-snippets.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ HTTP snippets automatically include:
8181
- If no SDK snippets exist, HTTP snippets will display automatically
8282
- User language preferences are saved client-side
8383

84-
To see HTTP snippets in action, check out [Cartesia's API documentation](https://docs.cartesia.ai/api-reference/tts/bytes) for a live example of how they appear in production documentation.
84+
Check out [Hume's API Reference](https://dev.hume.ai/reference/voices/create) to see HTTP snippets in action.

0 commit comments

Comments
 (0)