diff --git a/fern/products/docs/pages/component-library/default-components/accordion-groups.mdx b/fern/products/docs/pages/component-library/default-components/accordion-groups.mdx index 1a837853..407fe37f 100644 --- a/fern/products/docs/pages/component-library/default-components/accordion-groups.mdx +++ b/fern/products/docs/pages/component-library/default-components/accordion-groups.mdx @@ -7,19 +7,18 @@ Accordion Groups allow you to organize content into collapsible sections, making - Accordion Groups can contain multiple Accordion items. Each Accordion has a title and content that can be expanded or collapsed. + Accordion Groups can contain multiple Accordion items. Each Accordion has a title and content that can be expanded or collapsed. You can use the `defaultOpen` prop to expand specific accordions by default when the page loads. - ``` + ```jsx - - Content for section 1 + + Content for section 1, expanded by default Content for section 2 ``` - @@ -38,8 +37,8 @@ Accordion Groups allow you to organize content into collapsible sections, making - - This is a basic example with text content. + + This is a basic example with text content. It's open by default when the page loads. You can embed images, videos, and other media within accordions for rich interactive content. @@ -69,8 +68,8 @@ Accordion Groups allow you to organize content into collapsible sections, making ````jsx - - This is a basic example with text content. + + This is a basic example with text content. It's open by default when the page loads. You can embed images, videos, and other media within accordions for rich interactive content. diff --git a/fern/products/docs/pages/component-library/default-components/accordions.mdx b/fern/products/docs/pages/component-library/default-components/accordions.mdx index f4e58e41..f41afd63 100644 --- a/fern/products/docs/pages/component-library/default-components/accordions.mdx +++ b/fern/products/docs/pages/component-library/default-components/accordions.mdx @@ -6,16 +6,23 @@ description: 'Expand or collapse to reveal more information' The Accordion component allows you to create expandable sections in your documentation. Content within accordions is searchable using browser search (cmd+f) even when collapsed. The component is optimized for SEO with server-side HTML generation, ensuring search engines can properly index all content within accordions. - + This is an example of an accordion component. When clicked, it expands to reveal this additional content. + + You can use the `defaultOpen` property to have specific accordions expanded by default when the page loads. This is useful for highlighting important information or frequently accessed content. + ```jsx This is an example of an accordion component. When clicked, it expands to reveal this additional content. + + + You can use the `defaultOpen` property to have specific accordions expanded by default when the page loads. This is useful for highlighting important information or frequently accessed content. + ``` @@ -30,4 +37,8 @@ The Accordion component allows you to create expandable sections in your documen The content to be displayed when the accordion is expanded. Can include text, markdown, and components. + + Whether the accordion should be open when the page loads. If not specified, the accordion will be collapsed by default. + + diff --git a/fern/products/sdks/overview/java/changelog/2025-10-23.mdx b/fern/products/sdks/overview/java/changelog/2025-10-23.mdx index b2110807..826e8cc0 100644 --- a/fern/products/sdks/overview/java/changelog/2025-10-23.mdx +++ b/fern/products/sdks/overview/java/changelog/2025-10-23.mdx @@ -1,7 +1,7 @@ ## 3.9.2 **`(fix):`** Fix nullable field serialization in PATCH requests with wrapped request bodies. Explicit null values -(Nullable.ofNull()) are now correctly serialized as `{"field": null}` instead of being omitted like -Nullable.empty(). +`(Nullable.ofNull())` are now correctly serialized as `{"field": null}` instead of being omitted like +`Nullable.empty()`. ## 3.9.1