@fluentui/react-storybook-addon 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +34 -2
  2. package/README.md +11 -0
  3. package/package.json +14 -3
package/CHANGELOG.md CHANGED
@@ -1,12 +1,44 @@
1
1
  # Change Log - @fluentui/react-storybook-addon
2
2
 
3
- This log was last generated on Wed, 30 Jul 2025 08:41:06 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 07 Aug 2025 09:59:07 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook-addon_v0.4.0)
8
+
9
+ Thu, 07 Aug 2025 09:59:07 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook-addon_v0.3.1..@fluentui/react-storybook-addon_v0.4.0)
11
+
12
+ ### Minor changes
13
+
14
+ - feat!: make docs enhancements configurable and opt in. BREAKING CHANGE: turned off by default ([PR #34950](https://github.com/microsoft/fluentui/pull/34950) by martinhochel@microsoft.com)
15
+ - Bump @fluentui/react-aria to v9.16.3 ([PR #34980](https://github.com/microsoft/fluentui/pull/34980) by beachball)
16
+ - Bump @fluentui/react-button to v9.6.4 ([PR #34980](https://github.com/microsoft/fluentui/pull/34980) by beachball)
17
+ - Bump @fluentui/react-menu to v9.19.4 ([PR #34980](https://github.com/microsoft/fluentui/pull/34980) by beachball)
18
+ - Bump @fluentui/react-label to v9.3.3 ([PR #34980](https://github.com/microsoft/fluentui/pull/34980) by beachball)
19
+ - Bump @fluentui/react-switch to v9.4.3 ([PR #34980](https://github.com/microsoft/fluentui/pull/34980) by beachball)
20
+ - Bump @fluentui/react-text to v9.6.3 ([PR #34980](https://github.com/microsoft/fluentui/pull/34980) by beachball)
21
+ - Bump @fluentui/react-link to v9.6.3 ([PR #34980](https://github.com/microsoft/fluentui/pull/34980) by beachball)
22
+ - Bump @fluentui/react-provider to v9.22.3 ([PR #34980](https://github.com/microsoft/fluentui/pull/34980) by beachball)
23
+ - Bump @fluentui/react-utilities to v9.23.2 ([PR #34980](https://github.com/microsoft/fluentui/pull/34980) by beachball)
24
+
25
+ ### Patches
26
+
27
+ - feat: add custom addon-docs containers to preset ([PR #34938](https://github.com/microsoft/fluentui/pull/34938) by martinhochel@microsoft.com)
28
+ - fix: migrate to R19 compatible JSX.* namespace types ([PR #34923](https://github.com/microsoft/fluentui/pull/34923) by martinhochel@microsoft.com)
29
+
30
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook-addon_v0.3.1)
31
+
32
+ Wed, 30 Jul 2025 16:55:34 GMT
33
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook-addon_v0.3.0..@fluentui/react-storybook-addon_v0.3.1)
34
+
35
+ ### Patches
36
+
37
+ - Bump @fluentui/react-aria to v9.16.2 ([PR #34945](https://github.com/microsoft/fluentui/pull/34945) by beachball)
38
+
7
39
  ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-storybook-addon_v0.3.0)
8
40
 
9
- Wed, 30 Jul 2025 08:41:06 GMT
41
+ Wed, 30 Jul 2025 13:10:55 GMT
10
42
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-storybook-addon_v0.2.5..@fluentui/react-storybook-addon_v0.3.0)
11
43
 
12
44
  ### Minor changes
package/README.md CHANGED
@@ -38,6 +38,17 @@ export const ThemePicker: React.FC<{ context: FluentStoryContext }> = ({ context
38
38
  };
39
39
  ```
40
40
 
41
+ ### Augmented Docs Blocks
42
+
43
+ This presets uses [custom docs container and page](https://storybook.js.org/docs/7/writing-docs/autodocs#customize-the-docs-container) for unified FluentUI experience including:
44
+
45
+ - table of contents
46
+ - theme switcher
47
+ - dir switcher
48
+ - custom ArgsTable
49
+ - `Slot` api rendering
50
+ - native props support
51
+
41
52
  ## Getting Started
42
53
 
43
54
  ### Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-storybook-addon",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "fluentui react storybook addon",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -16,13 +16,24 @@
16
16
  "@fluentui/scripts-api-extractor": "*"
17
17
  },
18
18
  "dependencies": {
19
- "@fluentui/react-aria": "^9.16.1",
20
- "@fluentui/react-provider": "^9.22.2",
19
+ "@fluentui/react-aria": "^9.16.3",
20
+ "@fluentui/react-button": "^9.6.4",
21
+ "@fluentui/react-menu": "^9.19.4",
22
+ "@fluentui/react-label": "^9.3.3",
23
+ "@fluentui/react-switch": "^9.4.3",
24
+ "@fluentui/react-text": "^9.6.3",
25
+ "@fluentui/react-link": "^9.6.3",
26
+ "@fluentui/react-provider": "^9.22.3",
27
+ "@fluentui/react-utilities": "^9.23.2",
21
28
  "@fluentui/react-theme": "^9.2.0",
29
+ "@griffel/react": "^1.5.22",
22
30
  "@swc/helpers": "^0.5.1"
23
31
  },
24
32
  "peerDependencies": {
33
+ "@storybook/addon-docs": "^7.6.20",
25
34
  "@storybook/components": "^7.6.20",
35
+ "@storybook/core-events": "^7.6.20",
36
+ "@storybook/preview-api": "^7.6.20",
26
37
  "@storybook/manager-api": "^7.6.20",
27
38
  "@storybook/react": "^7.6.20",
28
39
  "@storybook/theming": "^7.6.20",