You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename feature flag `experimentalComponentsManifest` → `componentsManifest`
7
+
8
+
The Storybook feature flag has been renamed from `experimentalComponentsManifest` to `componentsManifest` and now defaults to `true` in Storybook core.
9
+
10
+
The addon is backwards compatible with older Storybook versions that still use the old flag name — it checks `features.componentsManifest` first and falls back to `features.experimentalComponentsManifest`.
11
+
12
+
**Migration:** Update your `.storybook/main.js` if you had the flag explicitly set:
13
+
14
+
```js
15
+
// Before
16
+
features: { experimentalComponentsManifest:true }
17
+
18
+
// After
19
+
features: { componentsManifest:true }
20
+
// Or omit entirely — it defaults to true in recent Storybook versions
Disabling the Dev Tools is useful when you want to try out the same experience that your external component consumers will get, because they only get the Component Documentation Tools.
These additional tools are available when the **experimental**component manifest feature is enabled. They provide agents with detailed documentation about your UI components.
177
+
These additional tools are available when the component manifest feature is enabled. They provide agents with detailed documentation about your UI components.
178
178
179
179
**Requirements:**
180
180
181
181
- Storybook version 10.1.0 or higher (currently only available as prereleases, `storybook@next`)
0 commit comments