diff --git a/code/addons/a11y/src/types.ts b/code/addons/a11y/src/types.ts index f13d913c150..b05b75ca183 100644 --- a/code/addons/a11y/src/types.ts +++ b/code/addons/a11y/src/types.ts @@ -15,7 +15,7 @@ export interface A11yParameters { /** * Configuration for the accessibility rules * - * @see https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#options-parameter + * @see https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#api-name-axeconfigure */ config?: Spec; @@ -26,7 +26,7 @@ export interface A11yParameters { */ options?: RunOptions; - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; }; } @@ -39,8 +39,10 @@ export interface A11yGlobals { */ a11y: { /** - * Prevent the addon to execute automatic accessibility checks upon visiting a story. You can - * still trigger the checks from the addon panel. + * Prevent the addon from executing automated accessibility checks upon visiting a story. You + * can still trigger the checks from the addon panel. + * + * @see https://storybook.js.org/docs/writing-tests/accessibility-testing#turn-off-automated-a11y-tests */ manual?: boolean; }; diff --git a/code/addons/actions/src/types.ts b/code/addons/actions/src/types.ts index 2e2f249eb40..47b3bb9ddd8 100644 --- a/code/addons/actions/src/types.ts +++ b/code/addons/actions/src/types.ts @@ -6,7 +6,7 @@ export interface ActionsParameters { */ actions: { /** - * Create actions for each arg that matches the regex. + * Create actions for each arg that matches the regex. (**NOT recommended, see below**) * * This is quite useful when your component has dozens (or hundreds) of methods and you do not * want to manually apply the fn utility for each of those methods. However, this is not the @@ -15,11 +15,11 @@ export interface ActionsParameters { * functions, you will need to also define args with the fn utility to test them in your play * function. * - * @example ArgTypesRegex: '^on.*' + * @example `argTypesRegex: '^on.*'` */ argTypesRegex?: string; - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; /** @@ -27,7 +27,11 @@ export interface ActionsParameters { * and triggers an action when the event is called for a given selector. The format is * ` `. The selector is optional; it defaults to all elements. * - * @example Handles: ['mouseover', 'click .btn'] + * **To enable this feature, you must use the `withActions` decorator.** + * + * @example `handles: ['mouseover', 'click .btn']` + * + * @see https://storybook.js.org/docs/essentials/actions#action-event-handlers */ handles?: string[]; }; diff --git a/code/addons/backgrounds/src/types.ts b/code/addons/backgrounds/src/types.ts index 067d5b83720..e9d4fd84608 100644 --- a/code/addons/backgrounds/src/types.ts +++ b/code/addons/backgrounds/src/types.ts @@ -32,7 +32,7 @@ export interface BackgroundsParameters { /** Default background color */ default?: string; - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; /** Configuration for the background grid */ diff --git a/code/addons/controls/src/types.ts b/code/addons/controls/src/types.ts index 65743ed269b..d12dc06ad80 100644 --- a/code/addons/controls/src/types.ts +++ b/code/addons/controls/src/types.ts @@ -5,17 +5,13 @@ export interface ControlsParameters { * @see https://storybook.js.org/docs/essentials/controls#parameters-1 */ controls: { - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; /** Disable the ability to create or edit stories from the Controls panel */ disableSaveFromUI?: boolean; - /** - * Exclude specific properties from the Controls panel - * - * @see https://storybook.js.org/docs/essentials/controls#filtering-controls - */ + /** Exclude specific properties from the Controls panel */ exclude?: string[] | RegExp; /** @@ -24,11 +20,7 @@ export interface ControlsParameters { */ expanded?: boolean; - /** - * Exclude only specific properties in the Controls panel - * - * @see https://storybook.js.org/docs/essentials/controls#filtering-controls - */ + /** Exclude only specific properties in the Controls panel */ include?: string[] | RegExp; /** @@ -36,16 +28,10 @@ export interface ControlsParameters { * * @example PresetColors: [{ color: '#ff4785', title: 'Coral' }, 'rgba(0, 159, 183, 1)', * '#fe4a49'] - * - * @see https://storybook.js.org/docs/essentials/controls#specify-initial-preset-color-swatches */ presetColors?: Array; - /** - * Controls sorting order - * - * @see https://storybook.js.org/docs/essentials/controls#sorting-controls - */ + /** Controls sorting order */ sort?: 'none' | 'alpha' | 'requiredFirst'; }; } diff --git a/code/addons/docs/src/types.ts b/code/addons/docs/src/types.ts index 563f30328fd..88004484157 100644 --- a/code/addons/docs/src/types.ts +++ b/code/addons/docs/src/types.ts @@ -5,7 +5,7 @@ type StoryBlockParameters = { autoplay?: boolean; /** * Set a minimum height (note for an iframe this is the actual height) when rendering a story in - * an iframe or inline. This overrides parameters.docs.story.iframeHeight for iframes. + * an iframe or inline. This overrides `parameters.docs.story.iframeHeight` for iframes. */ height?: string; /** IFrame configuration */ @@ -18,7 +18,7 @@ type StoryBlockParameters = { /** Specifies the CSF file to which the story is associated */ meta: ModuleExports; /** - * Specifies which story is rendered by the Story block. If no of is defined and the MDX file is + * Specifies which story is rendered by the Story block. If no `of` is defined and the MDX file is * attached, the primary (first) story will be rendered. */ of: ModuleExport; @@ -31,11 +31,7 @@ type ControlsBlockParameters = { /** Exclude only specific properties in the Controls panel */ include?: string[] | RegExp; - /** - * Controls sorting order - * - * @see https://storybook.js.org/docs/api/doc-blocks/doc-block-controls#sort - */ + /** Controls sorting order */ sort?: 'none' | 'alpha' | 'requiredFirst'; }; @@ -182,7 +178,7 @@ export interface DocsParameters { */ description?: DescriptionBlockParameters; - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; /** diff --git a/code/addons/highlight/src/types.ts b/code/addons/highlight/src/types.ts index 98a801d923e..3613b23fb9b 100644 --- a/code/addons/highlight/src/types.ts +++ b/code/addons/highlight/src/types.ts @@ -5,7 +5,7 @@ export interface HighlightParameters { * @see https://storybook.js.org/docs/essentials/highlight#parameters */ highlight: { - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; }; } diff --git a/code/addons/interactions/src/preview.ts b/code/addons/interactions/src/preview.ts index 8239442bf91..42c41939023 100644 --- a/code/addons/interactions/src/preview.ts +++ b/code/addons/interactions/src/preview.ts @@ -20,6 +20,6 @@ export const runStep = instrument( // perhaps csf types need to be updated? StepRunner expects Promise and not Promise | void ).step as StepRunner; -export const parameters: InteractionsParameters['interactions'] = { +export const parameters: InteractionsParameters['test'] = { throwPlayFunctionExceptions: false, }; diff --git a/code/addons/interactions/src/types.ts b/code/addons/interactions/src/types.ts index c21a192b713..9e21dc4e152 100644 --- a/code/addons/interactions/src/types.ts +++ b/code/addons/interactions/src/types.ts @@ -4,10 +4,7 @@ export interface InteractionsParameters { * * @see https://storybook.js.org/docs/essentials/interactions */ - interactions: { - /** Turn off this addon's behavior */ - disable?: boolean; - + test: { /** Ignore unhandled errors during test execution */ dangerouslyIgnoreUnhandledErrors?: boolean; diff --git a/code/addons/measure/src/types.ts b/code/addons/measure/src/types.ts index 8aaf6ecf0d7..e51cf69775b 100644 --- a/code/addons/measure/src/types.ts +++ b/code/addons/measure/src/types.ts @@ -5,7 +5,7 @@ export interface MeasureParameters { * @see https://storybook.js.org/docs/essentials/measure-and-outline#parameters */ measure: { - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; }; } diff --git a/code/addons/outline/src/types.ts b/code/addons/outline/src/types.ts index b4eacf61a79..b5b3d4b3d66 100644 --- a/code/addons/outline/src/types.ts +++ b/code/addons/outline/src/types.ts @@ -5,7 +5,7 @@ export interface OutlineParameters { * @see https://storybook.js.org/docs/essentials/measure-and-outline#parameters */ outline: { - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; }; } diff --git a/code/addons/storysource/src/types.ts b/code/addons/storysource/src/types.ts index 83ee083c3e5..1a350264c6d 100644 --- a/code/addons/storysource/src/types.ts +++ b/code/addons/storysource/src/types.ts @@ -8,7 +8,7 @@ export interface StorySourceParameters { /** Dark mode for source code */ dark?: boolean; - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; /** Source code formatting options */ diff --git a/code/addons/test/src/types.ts b/code/addons/test/src/types.ts index 6b9dd033a3b..1e36b89e08f 100644 --- a/code/addons/test/src/types.ts +++ b/code/addons/test/src/types.ts @@ -1,13 +1,10 @@ export interface TestParameters { /** - * Interactions configuration + * Test addon configuration * * @see https://storybook.js.org/docs/writing-tests/test-addon */ test: { - /** Turn off this addon's behavior */ - disable?: boolean; - /** Ignore unhandled errors during test execution */ dangerouslyIgnoreUnhandledErrors?: boolean; diff --git a/code/addons/themes/src/types.ts b/code/addons/themes/src/types.ts index 018c38e916e..3a825e37983 100644 --- a/code/addons/themes/src/types.ts +++ b/code/addons/themes/src/types.ts @@ -10,7 +10,7 @@ export interface ThemesParameters { * @see https://github.com/storybookjs/storybook/blob/next/code/addons/themes/README.md */ themes: { - /** Turn off this addon's behavior */ + /** Remove the addon panel and disable the addon's behavior */ disable?: boolean; /** Which theme to override for the story */ themeOverride?: string; diff --git a/code/addons/viewport/src/types.ts b/code/addons/viewport/src/types.ts index fff8216d13b..0a99d209f64 100644 --- a/code/addons/viewport/src/types.ts +++ b/code/addons/viewport/src/types.ts @@ -59,8 +59,8 @@ export interface ViewportParameters { defaultViewport?: string; /** - * Turn off this addon's behavior. If you wish to turn off this addon for the entire Storybook, - * you should do so when registering addon-essentials + * Remove the addon panel and disable the addon's behavior . If you wish to turn off this addon + * for the entire Storybook, you should do so when registering addon-essentials * * @see https://storybook.js.org/docs/essentials/index#disabling-addons */ diff --git a/code/renderers/react/src/types.ts b/code/renderers/react/src/types.ts index ef8154b89f5..269e5897f52 100644 --- a/code/renderers/react/src/types.ts +++ b/code/renderers/react/src/types.ts @@ -18,7 +18,11 @@ export interface ShowErrorArgs { export interface ReactParameters { /** React renderer configuration */ react?: { - /** Whether to enable React Server Components */ + /** + * Whether to enable React Server Components + * + * @see https://storybook.js.org/docs/get-started/frameworks/nextjs#react-server-components-rsc + */ rsc?: boolean; /** Options passed to React root creation */ rootOptions?: {