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
Add documentation for the new beta frontmatter property that displays a yellow warning banner on pages to indicate beta/work-in-progress content.
Co-Authored-By: Deep Singhvi <[email protected]>
Displays a yellow warning banner at the top of the page to indicate that the content is in beta or still being worked on. Set to `true` for a default message, or provide a custom message string.
219
+
</ParamField>
220
+
221
+
<CodeBlock title="Example beta banner with default message">
222
+
```mdx
223
+
---
224
+
title: New Feature Documentation
225
+
beta: true
226
+
---
227
+
```
228
+
</CodeBlock>
229
+
230
+
<CodeBlock title="Example beta banner with custom message">
231
+
```mdx
232
+
---
233
+
title: Experimental API
234
+
beta: This API is experimental and may change without notice.
0 commit comments