Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions docs/api/main-config/main-config-features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Type:
legacyDecoratorFileOrder?: boolean;
measure?: boolean;
outline?: boolean;
sidebarOnboardingChecklist?: boolean;
toolbars?: boolean;
viewport?: boolean;
}
Expand All @@ -47,6 +48,7 @@ Type:
legacyDecoratorFileOrder?: boolean;
measure?: boolean;
outline?: boolean;
sidebarOnboardingChecklist?: boolean;
toolbars?: boolean;
viewport?: boolean;
}
Expand All @@ -67,6 +69,7 @@ Type:
legacyDecoratorFileOrder?: boolean;
measure?: boolean;
outline?: boolean;
sidebarOnboardingChecklist?: boolean;
toolbars?: boolean;
viewport?: boolean;
}
Expand All @@ -80,6 +83,8 @@ Enables Storybook's additional features.

Type: `boolean`

Default: `true`

Enable the [Actions](../../essentials/actions.mdx) feature.

<If renderer="angular">
Expand All @@ -98,6 +103,8 @@ Filter non-input controls in Angular.

Type: `boolean`

Default: `true`

Filter args with a "target" on the type from the render function.

{/* prettier-ignore-start */}
Expand All @@ -110,6 +117,8 @@ Filter args with a "target" on the type from the render function.

Type: `boolean`

Default: `true`

Enable the [Backgrounds](../../essentials/backgrounds.mdx) feature.

<If renderer="react">
Expand All @@ -130,6 +139,8 @@ Generate [manifests](../../ai/manifests.mdx), used by the [MCP server](../../ai/

Type: `boolean`

Default: `true`

Enable the [Controls](../../essentials/controls.mdx) feature.

## `developmentModeForBuild`
Expand Down Expand Up @@ -178,12 +189,16 @@ Enable the [experimental `.test` method with the CSF Next format](../csf/csf-nex

Type: `boolean`

Default: `true`

Enable the [Highlight](../../essentials/highlight.mdx) feature.

## `interactions`

Type: `boolean`

Default: `true`

Enable the [Interactions](../../writing-tests/interaction-testing.mdx#debugging-interaction-tests) feature.

## `legacyDecoratorFileOrder`
Expand All @@ -202,22 +217,30 @@ Apply decorators from preview.js before decorators from addons or frameworks. [M

Type: `boolean`

Default: `true`

Enable the [Measure](../../essentials/measure-and-outline.mdx#measure) feature.

## `outline`

Type: `boolean`

Default: `true`

Enable the [Outline](../../essentials/measure-and-outline.mdx#outline) feature.

## `toolbars`
## `sidebarOnboardingChecklist`

Type: `boolean`

Enable the [Toolbars](../../essentials/toolbars.mdx) feature.
Default: `true`

Enable the onboarding checklist sidebar widget.

## `viewport`

Type: `boolean`

Default: `true`

Enable the [Viewport](../../essentials/viewport.mdx) feature.
Loading