Skip to content

Commit

Permalink
Merge pull request #25507 from storybookjs/version-patch-from-7.6.7
Browse files Browse the repository at this point in the history
Release: Patch 7.6.8
  • Loading branch information
shilman committed Jan 12, 2024
2 parents 571e38c + 1aa2443 commit 846f7f5
Show file tree
Hide file tree
Showing 59 changed files with 902 additions and 507 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 7.6.8

- Addon-actions: Fix module resolution for react-native - [#25296](https://github.com/storybookjs/storybook/pull/25296), thanks [@dannyhw](https://github.com/dannyhw)!
- Storysource: Fix import error - [#25391](https://github.com/storybookjs/storybook/pull/25391), thanks [@unional](https://github.com/unional)!

## 7.6.7

- Core: Skip no-framework error when ignorePreview=true - [#25286](https://github.com/storybookjs/storybook/pull/25286), thanks [@ndelangen](https://github.com/ndelangen)!
Expand Down
1 change: 1 addition & 0 deletions code/addons/actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"react-native": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
Expand Down
2 changes: 1 addition & 1 deletion code/addons/storysource/preset.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import './dist/preset';
require('./dist/preset');
3 changes: 2 additions & 1 deletion code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -328,5 +328,6 @@
"Dependency Upgrades"
]
]
}
},
"deferredNextVersion": "7.6.8"
}
8 changes: 4 additions & 4 deletions docs/api/doc-block-canvas.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,14 @@ Provides HTML class(es) to the preview element, for custom styling.

### `layout`

Type: `'padded' | 'centered' | 'fullscreen'`
Type: `'centered' | 'fullscreen' | 'padded'`

Default: `parameters.layout` or `parameters.docs.canvas.layout` or `'padded'`

Specifies how the canvas should layout the story.

- **padded**: Add padding to the story
- **centered**: Center the story within the canvas
- **padded**: (default) Add padding to the story
- **fullscreen**: Show the story as-is, without padding

In addition to the `parameters.docs.canvas.layout` property or the `layout` prop, the `Canvas` block will respect the `parameters.layout` value that defines [how a story is laid out](../configure/story-layout.md) in the regular story view.
Expand Down Expand Up @@ -170,7 +170,7 @@ Specifies which story's source is displayed.

Type: `SourceProps['code'] | SourceProps['format'] | SourceProps['language'] | SourceProps['type']`

Specifies props passed to the inner `Source` block. See [SourceProps](./doc-block-source.md#sourceprops).
Specifies the props passed to the inner `Source` block. For more information, see the `Source` Doc Block [documentation](./doc-block-source.md).

<Callout variant="info" icon="💡">

Expand All @@ -194,7 +194,7 @@ Specifies the initial state of the source panel.

Type: `StoryProps['inline'] | StoryProps['height'] | StoryProps['autoplay']`

Specifies props passed to the inner `Story` block. See [StoryProps](./doc-block-story.md#storyprops).
Specifies the props passed to the inner `Story` block. For more information, see the `Story` Doc Block [documentation](./doc-block-story.md).

### `withToolbar`

Expand Down
6 changes: 6 additions & 0 deletions docs/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ An overview of all available API references for Storybook.
about args that are not explicitly set.
</td>
</tr>
<tr>
<td><a href="../api/parameters">Parameters</a></td>
<td>
Parameters are static metadata used to configure your <a href="../get-started/whats-a-story.md">stories</a> <a href="../addons/introduction.md">addons</a> in Storybook. They are specified at the story, meta (component), project (global) levels.
</td>
</tr>
</tbody>
</table>

Expand Down
247 changes: 247 additions & 0 deletions docs/api/parameters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,247 @@
---
title: 'Parameters'
---

Parameters are static metadata used to configure your [stories](../get-started/whats-a-story.md) and [addons](../addons/introduction.md) in Storybook. They are specified at the story, meta (component), project (global) levels.

## Story parameters

<div class="aside">

ℹ️ Parameters specified at the story level will [override](#parameter-inheritance) those specified at the project level and meta (component) level.

</div>

Parameters specified at the story level apply to that story only. They are defined in the `parameters` property of the story (named export):

<!-- prettier-ignore-start -->

<CodeSnippets
paths={[
'angular/parameters-in-story.ts.mdx',
'web-components/parameters-in-story.js.mdx',
'web-components/parameters-in-story.ts.mdx',
'common/parameters-in-story.js.mdx',
'common/parameters-in-story.ts.mdx',
]}
/>

<!-- prettier-ignore-end -->

## Meta parameters

<div class="aside">

ℹ️ Parameters specified at the meta (component) level will [override](#parameter-inheritance) those specified at the project level.

</div>

Parameter's specified in a [CSF](../writing-stories/introduction.md#component-story-format-csf) file's meta configuration apply to all stories in that file. They are defined in the `parameters` property of the `meta` (default export):

<!-- prettier-ignore-start -->

<CodeSnippets
paths={[
'angular/parameters-in-meta.ts.mdx',
'web-components/parameters-in-meta.js.mdx',
'web-components/parameters-in-meta.ts.mdx',
'common/parameters-in-meta.js.mdx',
'common/parameters-in-meta.ts.mdx',
]}
/>

<!-- prettier-ignore-end -->

## Project parameters

Parameters specified at the project (global) level apply to **all stories** in your Storybook. They are defined in the `parameters` property of the default export in your `.storybook/preview.js|ts` file:

<!-- prettier-ignore-start -->

<CodeSnippets
paths={[
'common/parameters-in-preview.js.mdx',
'common/parameters-in-preview.ts.mdx',
]}
/>

<!-- prettier-ignore-end -->

## Available parameters

Storybook only accepts a few parameters directly.

### `layout`

Type: `'centered' | 'fullscreen' | 'padded'`

Default: `'padded'`

Specifies how the canvas should [lay out the story](../configure/story-layout.md).

- **centered**: Center the story within the canvas
- **padded**: (default) Add padding to the story
- **fullscreen**: Show the story as-is, without padding

### `options`

Type:

```ts
{
storySort?: StorySortConfig | StorySortFn;
}
```

<Callout variant="warning">

The `options` parameter can _only_ be applied at the [project level](#project-parameters).

</Callout>

#### `options.storySort`

Type: `StorySortConfig | StorySortFn`

```ts
type StorySortConfig = {
includeNames?: boolean;
locales?: string;
method?: 'alphabetical' | 'alphabetical-by-kind' | 'custom';
order?: string[];
};

type Story = {
id: string;
importPath: string;
name: string;
title: string;
};

type StorySortFn = (a: Story, b: Story) => number;
```

Specifies the order in which stories are displayed in the Storybook UI.

When specifying a configuration object, the following options are available:

- **includeNames**: Whether to include the story name in the sorting algorithm. Defaults to `false`.
- **locales**: The locale to use when sorting stories. Defaults to your system locale.
- **method**: The sorting method to use. Defaults to `alphabetical`.
- **alphabetical**: Sort stories alphabetically by name.
- **alphabetical-by-kind**: Sort stories alphabetically by kind, then by name.
- **custom**: Use a custom sorting function.
- **order**: Stories in the specified order will be displayed first, in the order specified. All other stories will be displayed after, in alphabetical order. The order array can accept a nested array to sort 2nd-level story kinds, e.g. `['Intro', 'Pages', ['Home', 'Login', 'Admin'], 'Components']`.

When specifying a custom sorting function, the function behaves like a typical JavaScript sorting function. It accepts two stories to compare and returns a number. For example:

```js
(a, b) => (a.id === b.id ? 0 : a.id.localeCompare(b.id, undefined, { numeric: true }));
```

See [the guide](../writing-stories/naming-components-and-hierarchy/#sorting-stories) for usage examples.

---

### Essential addons

All other parameters are contributed by addons. The [essential addon's](../addons/essentials.md) parameters are documented on their individual pages:

- [Actions](../essentials/actions.md#parameters)
- [Backgrounds](../essentials/backgrounds.md#parameters)
- [Controls](../essentials/controls.md#parameters)
- [Highlight](../essentials/highlight.md#parameters)
- [Interactions](../essentials/interactions.md#parameters)
- [Measure & Outline](../essentials/measure-and-outline.md#parameters)
- [Viewport](../essentials/viewport.md#parameters)

## Parameter inheritance

No matter where they're specified, parameters are ultimately applied to a single story. Parameters specified at the project (global) level are applied to every story in that project. Those specified at the meta (component) level are applied to every story associated with that meta. And parameters specified for a story only apply to that story.

When specifying parameters, they are merged together in order of increasing specificity:

1. Project (global) parameters
2. Meta (component) parameters
3. Story parameters

<div class="aside">

ℹ️ Parameters are **merged**, so objects are deep-merged, but arrays and other properties are overwritten.

</div>

In other words, the following specifications of parameters:

```js
// .storybook/preview.js|ts

const preview = {
// 👇 Project-level parameters
parameters: {
layout: 'centered',
demo: {
demoProperty: 'a',
demoArray: [1, 2],
},
},
// ...
};
export default preview;
```

```js
// Dialog.stories.js|ts

const meta = {
component: Dialog,
// 👇 Meta-level parameters
parameters: {
layout: 'fullscreen',
demo: {
demoProperty: 'b',
anotherDemoProperty: 'b',
},
},
};
export default meta;

// (no additional parameters specified)
export const Basic = {};

export const LargeScreen = {
// 👇 Story-level parameters
parameters: {
layout: 'padded',
demo: {
demoArray: [3, 4],
},
},
};
```

Will result in the following parameter values applied to each story:

```js
// Applied story parameters

// For the Basic story:
{
layout: 'fullscreen',
demo: {
demoProperty: 'b',
anotherDemoProperty: 'b',
demoArray: [1, 2],
},
}

// For the LargeScreen story:
{
layout: 'padded',
demo: {
demoProperty: 'b',
anotherDemoProperty: 'b',
demoArray: [3, 4],
},
}
```
56 changes: 56 additions & 0 deletions docs/essentials/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,62 @@ It is also possible to detect if your component is emitting the correct HTML eve

This will bind a standard HTML event handler to the outermost HTML element rendered by your component and trigger an action when the event is called for a given selector. The format is `<eventname> <selector>`. The selector is optional; it defaults to all elements.

## API

### Parameters

This addon contributes the following [parameters](../writing-stories/parameters.md) to Storybook, under the `actions` namespace:

#### `argTypesRegex`

Type: `string`

Create actions for each arg that matches the regex. Please note the significant [limitations of this approach](#automatically-matching-args), as described above.

#### `disable`

Type: `boolean`

Disable this addon's behavior. If you wish to disable this addon for the entire Storybook, you should do so when registering `addon-essentials`. See the [essential addon's docs](../essentials/index.md#disabling-addons) for more information.

This parameter is most useful to allow overriding at more specific levels. For example, if this parameter is set to `true` at the project level, it could then be re-enabled by setting it to `false` at the meta (component) or story level.

#### `handles`

Type: `string[]`

Binds a standard HTML event handler to the outermost HTML element rendered by your component and triggers an action when the event is called for a given selector. The format is `<eventname> <selector>`. The selector is optional; it defaults to all elements.

See the [action event handlers](#action-event-handlers) section, above, for more information.

### Exports

This addon contributes the following exports to Storybook:

```js
import { action } from '@storybook/addon-actions';
```

#### `action`

Type: `(name?: string) => void`

Allows you to create an action that appears in the actions panel of the Storybook UI when clicked. The action function takes an optional name parameter, which is used to identify the action in the UI.

<!-- prettier-ignore-start -->

<CodeSnippets
paths={[
'angular/addon-actions-action-function.ts.mdx',
'web-components/addon-actions-action-function.js.mdx',
'web-components/addon-actions-action-function.ts.mdx',
'common/addon-actions-action-function.js.mdx',
'common/addon-actions-action-function.ts.mdx',
]}
/>

<!-- prettier-ignore-end -->

## Advanced / legacy usage

There are also some older ways to use actions as documented in the [advanced README](../../addons/actions/ADVANCED.md).
Loading

0 comments on commit 846f7f5

Please sign in to comment.