@fluentui/react-components 9.72.3 → 9.72.4

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 +41 -2
  2. package/README.md +2 -3
  3. package/package.json +59 -59
package/CHANGELOG.md CHANGED
@@ -1,12 +1,51 @@
1
1
  # Change Log - @fluentui/react-components
2
2
 
3
- This log was last generated on Tue, 21 Oct 2025 14:13:08 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 31 Oct 2025 16:17:31 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.72.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.72.4)
8
+
9
+ Fri, 31 Oct 2025 16:17:31 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.72.3..@fluentui/react-components_v9.72.4)
11
+
12
+ ### Minor changes
13
+
14
+ - `@fluentui/react-storybook-addon`
15
+ - feat: add Copy as Markdown button to FluentDocsPage ([PR #35255](https://github.com/microsoft/fluentui/pull/35255) by dmytrokirpa@microsoft.com)
16
+ - `@fluentui/react-dialog`
17
+ - feat: add support to keep Dialog mounter on close ([PR #35211](https://github.com/microsoft/fluentui/pull/35211) by marcosvmmoura@gmail.com)
18
+ - `@fluentui/react-motion-components-preview`
19
+ - feat(motion): standardize from/to parameters ([PR #35419](https://github.com/microsoft/fluentui/pull/35419) by robertpenner@microsoft.com)
20
+
21
+ ### Patches
22
+
23
+ - `@fluentui/react-portal`
24
+ - fix: replace Node.ELEMENT_NODE with hardcoded value for SSR compatibility ([PR #35350](https://github.com/microsoft/fluentui/pull/35350) by dmytrokirpa@microsoft.com)
25
+ - `@fluentui/react-tooltip`
26
+ - fix: Tooltip does not prevent rendering with aria-expanded unless aria-haspopup is also set ([PR #35364](https://github.com/microsoft/fluentui/pull/35364) by sarah.higley@microsoft.com)
27
+ - `@fluentui/react-utilities`
28
+ - fix: use numeric literal for DOCUMENT_FRAGMENT_NODE to make SSR work ([PR #35357](https://github.com/microsoft/fluentui/pull/35357) by 198982749+Copilot@users.noreply.github.com)
29
+ - `@fluentui/eslint-plugin-react-components`
30
+ - chore: update ts-eslint to 8.46.2 ([PR #35378](https://github.com/microsoft/fluentui/pull/35378) by vgenaev@gmail.com)
31
+ - `@fluentui/priority-overflow`
32
+ - fix: use numeric literals for Node constants to make SSR work ([PR #35357](https://github.com/microsoft/fluentui/pull/35357) by 198982749+Copilot@users.noreply.github.com)
33
+ - `@fluentui/react-charts`
34
+ - fix chart crash issue ([PR #35399](https://github.com/microsoft/fluentui/pull/35399) by anushgupta@microsoft.com)
35
+ - update react version to react 19 ([PR #35402](https://github.com/microsoft/fluentui/pull/35402) by anushgupta@microsoft.com)
36
+ - fix dark mode styles of chart table ([PR #35377](https://github.com/microsoft/fluentui/pull/35377) by anushgupta@microsoft.com)
37
+ - fix chart exceptions ([PR #35393](https://github.com/microsoft/fluentui/pull/35393) by anushgupta@microsoft.com)
38
+ - feat: map deprecated plotly create_gantt() scatter traces to gantt chart ([PR #35334](https://github.com/microsoft/fluentui/pull/35334) by kumarkshitij@microsoft.com)
39
+ - `@fluentui/react-checkbox`
40
+ - fix: add fit-content to max-width ([PR #35361](https://github.com/microsoft/fluentui/pull/35361) by vgenaev@gmail.com)
41
+ - `@fluentui/react-context-selector`
42
+ - fix: update scheduler dependency to remove upper version limit ([PR #35343](https://github.com/microsoft/fluentui/pull/35343) by dmytrokirpa@microsoft.com)
43
+ - `@fluentui/react-menu-grid-preview`
44
+ - feat: add styles for MenuGridRow ([PR #34948](https://github.com/microsoft/fluentui/pull/34948) by jukapsia@microsoft.com)
45
+
7
46
  ## [9.72.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.72.3)
8
47
 
9
- Tue, 21 Oct 2025 14:13:08 GMT
48
+ Tue, 21 Oct 2025 14:16:55 GMT
10
49
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.72.2..@fluentui/react-components_v9.72.3)
11
50
 
12
51
  ### Minor changes
package/README.md CHANGED
@@ -16,14 +16,13 @@ To use a component, add a `FluentProvider` with a theme close to the root of you
16
16
 
17
17
  ```js
18
18
  import React from 'react';
19
- import ReactDOM from 'react-dom';
19
+ import ReactDOMClient from 'react-dom/client';
20
20
  import { FluentProvider, teamsLightTheme, Button } from '@fluentui/react-components';
21
21
 
22
- ReactDOM.render(
22
+ ReactDOMClient.createRoot(document.getElementById('root')).render(
23
23
  <FluentProvider theme={teamsLightTheme}>
24
24
  <Button appearance="primary">I am a button.</Button>
25
25
  </FluentProvider>,
26
- document.getElementById('root'),
27
26
  );
28
27
  ```
29
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-components",
3
- "version": "9.72.3",
3
+ "version": "9.72.4",
4
4
  "description": "Suite package for converged React components",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -16,68 +16,68 @@
16
16
  "@fluentui/scripts-api-extractor": "*"
17
17
  },
18
18
  "dependencies": {
19
- "@fluentui/react-accordion": "^9.8.10",
20
- "@fluentui/react-alert": "9.0.0-beta.126",
21
- "@fluentui/react-avatar": "^9.9.9",
22
- "@fluentui/react-badge": "^9.4.8",
23
- "@fluentui/react-button": "^9.6.9",
24
- "@fluentui/react-card": "^9.5.3",
25
- "@fluentui/react-checkbox": "^9.5.8",
26
- "@fluentui/react-combobox": "^9.16.9",
27
- "@fluentui/react-dialog": "^9.15.5",
28
- "@fluentui/react-divider": "^9.4.8",
29
- "@fluentui/react-drawer": "^9.10.5",
30
- "@fluentui/react-field": "^9.4.8",
31
- "@fluentui/react-image": "^9.3.8",
32
- "@fluentui/react-infobutton": "9.0.0-beta.104",
33
- "@fluentui/react-infolabel": "^9.4.9",
34
- "@fluentui/react-input": "^9.7.8",
35
- "@fluentui/react-label": "^9.3.8",
36
- "@fluentui/react-link": "^9.6.8",
37
- "@fluentui/react-list": "^9.6.3",
38
- "@fluentui/react-menu": "^9.20.2",
39
- "@fluentui/react-overflow": "^9.6.2",
40
- "@fluentui/react-persona": "^9.5.9",
41
- "@fluentui/react-portal": "^9.8.5",
42
- "@fluentui/react-popover": "^9.12.9",
43
- "@fluentui/react-positioning": "^9.20.7",
44
- "@fluentui/react-progress": "^9.4.8",
45
- "@fluentui/react-provider": "^9.22.8",
46
- "@fluentui/react-radio": "^9.5.8",
47
- "@fluentui/react-select": "^9.4.8",
19
+ "@fluentui/react-accordion": "^9.8.11",
20
+ "@fluentui/react-alert": "9.0.0-beta.127",
21
+ "@fluentui/react-avatar": "^9.9.10",
22
+ "@fluentui/react-badge": "^9.4.9",
23
+ "@fluentui/react-button": "^9.6.10",
24
+ "@fluentui/react-card": "^9.5.4",
25
+ "@fluentui/react-checkbox": "^9.5.9",
26
+ "@fluentui/react-combobox": "^9.16.10",
27
+ "@fluentui/react-dialog": "^9.16.0",
28
+ "@fluentui/react-divider": "^9.4.9",
29
+ "@fluentui/react-drawer": "^9.10.6",
30
+ "@fluentui/react-field": "^9.4.9",
31
+ "@fluentui/react-image": "^9.3.9",
32
+ "@fluentui/react-infobutton": "9.0.0-beta.105",
33
+ "@fluentui/react-infolabel": "^9.4.10",
34
+ "@fluentui/react-input": "^9.7.9",
35
+ "@fluentui/react-label": "^9.3.9",
36
+ "@fluentui/react-link": "^9.6.9",
37
+ "@fluentui/react-list": "^9.6.4",
38
+ "@fluentui/react-menu": "^9.20.3",
39
+ "@fluentui/react-overflow": "^9.6.3",
40
+ "@fluentui/react-persona": "^9.5.10",
41
+ "@fluentui/react-portal": "^9.8.6",
42
+ "@fluentui/react-popover": "^9.12.10",
43
+ "@fluentui/react-positioning": "^9.20.8",
44
+ "@fluentui/react-progress": "^9.4.9",
45
+ "@fluentui/react-provider": "^9.22.9",
46
+ "@fluentui/react-radio": "^9.5.9",
47
+ "@fluentui/react-select": "^9.4.9",
48
48
  "@fluentui/react-shared-contexts": "^9.25.2",
49
- "@fluentui/react-skeleton": "^9.4.8",
50
- "@fluentui/react-slider": "^9.5.8",
51
- "@fluentui/react-spinbutton": "^9.5.8",
52
- "@fluentui/react-spinner": "^9.7.8",
53
- "@fluentui/react-swatch-picker": "^9.4.8",
54
- "@fluentui/react-switch": "^9.4.8",
55
- "@fluentui/react-table": "^9.19.2",
56
- "@fluentui/react-tabs": "^9.10.4",
57
- "@fluentui/react-tabster": "^9.26.7",
58
- "@fluentui/react-tags": "^9.7.9",
59
- "@fluentui/react-textarea": "^9.6.8",
49
+ "@fluentui/react-skeleton": "^9.4.9",
50
+ "@fluentui/react-slider": "^9.5.9",
51
+ "@fluentui/react-spinbutton": "^9.5.9",
52
+ "@fluentui/react-spinner": "^9.7.9",
53
+ "@fluentui/react-swatch-picker": "^9.4.9",
54
+ "@fluentui/react-switch": "^9.4.9",
55
+ "@fluentui/react-table": "^9.19.3",
56
+ "@fluentui/react-tabs": "^9.10.5",
57
+ "@fluentui/react-tabster": "^9.26.8",
58
+ "@fluentui/react-tags": "^9.7.10",
59
+ "@fluentui/react-textarea": "^9.6.9",
60
60
  "@fluentui/react-theme": "^9.2.0",
61
- "@fluentui/react-toast": "^9.7.5",
62
- "@fluentui/react-toolbar": "^9.6.9",
63
- "@fluentui/react-tooltip": "^9.8.8",
64
- "@fluentui/react-utilities": "^9.25.1",
65
- "@fluentui/react-text": "^9.6.8",
66
- "@fluentui/react-virtualizer": "9.0.0-alpha.104",
67
- "@fluentui/react-tree": "^9.15.2",
61
+ "@fluentui/react-toast": "^9.7.6",
62
+ "@fluentui/react-toolbar": "^9.6.10",
63
+ "@fluentui/react-tooltip": "^9.8.9",
64
+ "@fluentui/react-utilities": "^9.25.2",
65
+ "@fluentui/react-text": "^9.6.9",
66
+ "@fluentui/react-virtualizer": "9.0.0-alpha.105",
67
+ "@fluentui/react-tree": "^9.15.3",
68
68
  "@griffel/react": "^1.5.22",
69
69
  "@swc/helpers": "^0.5.1",
70
- "@fluentui/react-message-bar": "^9.6.10",
71
- "@fluentui/react-breadcrumb": "^9.3.9",
72
- "@fluentui/react-aria": "^9.17.3",
73
- "@fluentui/react-rating": "^9.3.8",
74
- "@fluentui/react-search": "^9.3.8",
75
- "@fluentui/react-teaching-popover": "^9.6.9",
76
- "@fluentui/react-tag-picker": "^9.7.9",
77
- "@fluentui/react-motion": "^9.11.1",
78
- "@fluentui/react-carousel": "^9.8.9",
79
- "@fluentui/react-color-picker": "^9.2.8",
80
- "@fluentui/react-nav": "^9.3.10"
70
+ "@fluentui/react-message-bar": "^9.6.11",
71
+ "@fluentui/react-breadcrumb": "^9.3.10",
72
+ "@fluentui/react-aria": "^9.17.4",
73
+ "@fluentui/react-rating": "^9.3.9",
74
+ "@fluentui/react-search": "^9.3.9",
75
+ "@fluentui/react-teaching-popover": "^9.6.10",
76
+ "@fluentui/react-tag-picker": "^9.7.10",
77
+ "@fluentui/react-motion": "^9.11.2",
78
+ "@fluentui/react-carousel": "^9.8.10",
79
+ "@fluentui/react-color-picker": "^9.2.9",
80
+ "@fluentui/react-nav": "^9.3.11"
81
81
  },
82
82
  "peerDependencies": {
83
83
  "@types/react": ">=16.14.0 <20.0.0",