Skip to content

Commit 0437828

Browse files
Merge pull request #28497 from storybookjs/version-non-patch-from-8.2.0-beta.3
Release: Minor 8.2.0
2 parents ef343c7 + 7bcafec commit 0437828

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+686
-535
lines changed

Diff for: CHANGELOG.md

+177-95
Large diffs are not rendered by default.

Diff for: MAINTAINERS.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ This document outlines some of the processes that the maintainers should adhere
1010
| label name | purpose |
1111
| ------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
1212
| accessibility | Issue, bug, or pull request related to accessibility |
13-
| addon:(name) | Issue, bug, or pull request related to Storybook addons (e.g., [Controls](/docs/essentials/controls.md)) |
13+
| addon:(name) | Issue, bug, or pull request related to Storybook addons (e.g., [Controls](/docs/essentials/controls.mdx)) |
1414
| app:(name) | Issue, bug, or pull request related to Storybook's supported frameworks (e.g., React) |
15-
| api:(name) | Issue, bug, or pull request related to Storybook's API (e.g.,[makeDecorator](/docs/addons/addons-api.md#makeDecorator-API)) |
16-
| args | Issue, bug, or pull request related to Storybook's [args](/docs/writing-stories/args.md) |
15+
| api:(name) | Issue, bug, or pull request related to Storybook's API (e.g.,[makeDecorator](/docs/addons/addons-api.mdx#makeDecorator-API)) |
16+
| args | Issue, bug, or pull request related to Storybook's [args](/docs/writing-stories/args.mdx) |
1717
| babel/webpack | Issue, bug, or pull request related to Storybook's build system (e.g., Webpack or Babel), for Webpack 5 issues see below |
18-
| block:(name) | Issue or bug within a certain surface are of Storybook (e.g., [argsTable](/docs/writing-docs/doc-block-argstable.md)) |
18+
| block:(name) | Issue or bug within a certain surface are of Storybook (e.g., [argTypes](/docs/api/doc-blocks/doc-block-argtypes.mdx)) |
1919
| BREAKING CHANGE | Issue or pull request that introduces a breaking change within Storybook's ecosystem. |
2020
| BREAKING PRERELASE | Breaking, but only for prerelease users (not relative to the stable release) |
2121
| build-storybook | Issue, bug, or pull request related to Storybook's production build |
@@ -24,12 +24,12 @@ This document outlines some of the processes that the maintainers should adhere
2424
| cli | Issue, bug, or pull request that affects the Storybook's CLI |
2525
| compatibility with other tools | Issue, bug, or pull request between Storybook and other tools (e.g., [Nuxt](https://nuxtjs.org/)) |
2626
| components | Issue, bug, or pull request related to Storybook's internal components |
27-
| composition | Issue, bug, or pull request related to Storybook [Composition](/docs/sharing/storybook-composition.md) |
28-
| configuration | Issue, bug, or pull request related to Storybook [configuration](/docs/configure/index.md) |
27+
| composition | Issue, bug, or pull request related to Storybook [Composition](/docs/sharing/storybook-composition.mdx) |
28+
| configuration | Issue, bug, or pull request related to Storybook [configuration](/docs/configure/index.mdx) |
2929
| core | Issue, bug, or pull request related to Storybook's Core |
3030
| cra | Issue, bug, or pull request that affects Storybook's compatibility with Create React APP ([CRA](https://create-react-app.dev/docs/getting-started/)) |
31-
| CSF | Issue, bug, or pull request related to Storybook's [Component Story Format (CSF)](/docs/api/csf.md) |
32-
| decorators | Issue, bug, or pull related to Storybook's [Decorators](/docs/writing-stories/decorators.md) |
31+
| CSF | Issue, bug, or pull request related to Storybook's [Component Story Format (CSF)](/docs/api/csf.mdx) |
32+
| decorators | Issue, bug, or pull related to Storybook's [Decorators](/docs/writing-stories/decorators.mdx) |
3333
| dependencies | Issue, bug, or pull request that related to upstream dependencies |
3434
| discussion | Issue currently being discussed between the maintainers and community |
3535
| do not merge | Pull request that will introduce regressions and will not be merged |
@@ -68,7 +68,7 @@ This document outlines some of the processes that the maintainers should adhere
6868
| security | Issue, bug, or pull request that addresses security with Storybook |
6969
| small | Issue or pull request that requires a small amount of work to be done |
7070
| source-loader | Issue, bug, or pull request related to code display within Storybook's stories |
71-
| theming | Issue, bug, or pull request related to Storybook customization (e.g., [theming](/docs/configure/theming.md)) |
71+
| theming | Issue, bug, or pull request related to Storybook customization (e.g., [theming](/docs/configure/user-interface/theming.mdx)) |
7272
| todo | Issue or pull request currently being worked on |
7373
| typescript | Issue, bug, or pull request related to TypeScript |
7474
| ui | Issue, bug, or pull request related to Storybook's UI |

Diff for: code/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -278,5 +278,6 @@
278278
"Dependency Upgrades"
279279
]
280280
]
281-
}
281+
},
282+
"deferredNextVersion": "8.2.0"
282283
}

Diff for: docs/addons/addons-api.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ The following table details how to use the API values:
189189
| **selectedPanel** | String | Id to select an addon panel | `storybook/actions/panel` |
190190
| **initialActive** | String | Select the default active tab on Mobile | `sidebar` or `canvas` or `addons` |
191191
| **sidebar** | Object | Sidebar options, see below | `{ showRoots: false }` |
192-
| **toolbar** | Object | Modify the tools in the toolbar using the addon id | `{ fullscreen: { hidden: false } } }` |
192+
| **toolbar** | Object | Modify the tools in the toolbar using the addon id | `{ fullscreen: { hidden: false } }` |
193193

194194
The following options are configurable under the `sidebar` namespace:
195195

Diff for: docs/addons/integration-catalog.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Storybook addons are distributed via npm. The catalog is populated by querying n
1313

1414
Add your addon to the catalog by publishing a npm package that follows these requirements:
1515

16-
* `package.json` with [module information](./writing-addons.mdx#get-started) and [addon metadata](#addon-metadata)
16+
* `package.json` with [module information](./writing-addons.mdx#setup) and [addon metadata](#addon-metadata)
1717
* `README.md` file with installation and configuration instructions
1818
* `/dist` directory containing transpiled ES5 code
1919
* `preset.js` file written as an ES5 module at the root level

Diff for: docs/api/arg-types.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ Default: [Inferred](#automatic-argtype-inference); `'select'`, if [`options`](#o
124124

125125
Specifies the type of control used to change the arg value with the [controls addon](../essentials/controls.mdx). Here are the available types, `ControlType`, grouped by the type of data they handle:
126126

127-
| Data type | ControlType | Description |
128-
| -------------- | ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
127+
| Data type | ControlType | Description |
128+
| -------------- | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
129129
| **array** | `'object'` | Provides a JSON-based editor to handle the values of the array. Also allows editing in raw mode.<br /> `{ control: 'object' }` |
130130
| **boolean** | `'boolean'` | Provides a toggle for switching between possible states.<br /> `{ control: 'boolean' }` |
131131
| **enum** | `'check'` | Provides a set of stacked checkboxes for selecting multiple options.<br /> `{ control: 'check', options: ['email', 'phone', 'mail'] }` |
@@ -139,7 +139,7 @@ Specifies the type of control used to change the arg value with the [controls ad
139139
| **object** | `'file'` | Provides a file input that returns an array of URLs. Can be further customized to accept specific file types.<br /> `{ control: { type: 'file', accept: '.png' } }` |
140140
| | `'object'` | Provides a JSON-based editor to handle the object's values. Also allows editing in raw mode.<br /> `{ control: 'object' }` |
141141
| **string** | `'color'` | Provides a color picker to choose color values. Can be additionally configured to include a set of color presets.<br /> `{ control: { type: 'color', presetColors: ['red', 'green']} }` |
142-
| | `'date'` | Provides a datepicker to choose a date.<br /> `{ control: 'date' }` |
142+
| | `'date'` | Provides a datepicker to choose a date.<br /> `{ control: 'date' }` |
143143
| | `'text'` | Provides a freeform text input.<br /> `{ control: 'text' }` |
144144

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

0 commit comments

Comments
 (0)