@fluentui/react-carousel 9.9.12 → 9.9.14

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 (2) hide show
  1. package/CHANGELOG.md +28 -2
  2. package/package.json +15 -12
package/CHANGELOG.md CHANGED
@@ -1,12 +1,38 @@
1
1
  # Change Log - @fluentui/react-carousel
2
2
 
3
- <!-- This log was last generated on Tue, 11 Aug 2026 17:16:03 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Wed, 23 Sep 2026 09:03:16 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.9.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-carousel_v9.9.14)
8
+
9
+ Wed, 23 Sep 2026 09:03:16 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-carousel_v9.9.13..@fluentui/react-carousel_v9.9.14)
11
+
12
+ ### Patches
13
+
14
+ - Bump @fluentui/react-tooltip to v9.10.7 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
15
+
16
+ ## [9.9.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-carousel_v9.9.13)
17
+
18
+ Tue, 22 Sep 2026 11:25:39 GMT
19
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-carousel_v9.9.12..@fluentui/react-carousel_v9.9.13)
20
+
21
+ ### Patches
22
+
23
+ - fix: remove unused react-dom and @types/react-dom peer dependencies, mark @types/react as optional ([PR #36559](https://github.com/microsoft/fluentui/pull/36559) by martinhochel@microsoft.com)
24
+ - Bump @fluentui/react-aria to v9.17.15 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
25
+ - Bump @fluentui/react-button to v9.11.1 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
26
+ - Bump @fluentui/react-context-selector to v9.2.20 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
27
+ - Bump @fluentui/react-jsx-runtime to v9.4.6 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
28
+ - Bump @fluentui/react-shared-contexts to v9.26.4 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
29
+ - Bump @fluentui/react-tabster to v9.26.18 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
30
+ - Bump @fluentui/react-tooltip to v9.10.6 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
31
+ - Bump @fluentui/react-utilities to v9.26.7 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
32
+
7
33
  ## [9.9.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-carousel_v9.9.12)
8
34
 
9
- Tue, 11 Aug 2026 17:16:03 GMT
35
+ Tue, 11 Aug 2026 17:20:14 GMT
10
36
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-carousel_v9.9.11..@fluentui/react-carousel_v9.9.12)
11
37
 
12
38
  ### Patches
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-carousel",
3
- "version": "9.9.12",
3
+ "version": "9.9.14",
4
4
  "description": "A composable carousel component that enables pagination with minimal rerenders",
5
5
  "main": "lib-commonjs/index.cjs",
6
6
  "module": "lib/index.js",
@@ -19,16 +19,16 @@
19
19
  },
20
20
  "license": "MIT",
21
21
  "dependencies": {
22
- "@fluentui/react-aria": "^9.17.14",
23
- "@fluentui/react-button": "^9.11.0",
24
- "@fluentui/react-context-selector": "^9.2.19",
22
+ "@fluentui/react-aria": "^9.17.15",
23
+ "@fluentui/react-button": "^9.11.1",
24
+ "@fluentui/react-context-selector": "^9.2.20",
25
25
  "@fluentui/react-icons": "^2.0.245",
26
- "@fluentui/react-jsx-runtime": "^9.4.5",
27
- "@fluentui/react-shared-contexts": "^9.26.3",
28
- "@fluentui/react-tabster": "^9.26.17",
26
+ "@fluentui/react-jsx-runtime": "^9.4.6",
27
+ "@fluentui/react-shared-contexts": "^9.26.4",
28
+ "@fluentui/react-tabster": "^9.26.18",
29
29
  "@fluentui/react-theme": "^9.2.2",
30
- "@fluentui/react-tooltip": "^9.10.5",
31
- "@fluentui/react-utilities": "^9.26.6",
30
+ "@fluentui/react-tooltip": "^9.10.7",
31
+ "@fluentui/react-utilities": "^9.26.7",
32
32
  "@griffel/react": "^1.5.32",
33
33
  "@swc/helpers": "^0.5.1",
34
34
  "embla-carousel": "^8.5.1",
@@ -37,9 +37,12 @@
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@types/react": ">=16.14.0 <20.0.0",
40
- "@types/react-dom": ">=16.9.0 <20.0.0",
41
- "react": ">=16.14.0 <20.0.0",
42
- "react-dom": ">=16.14.0 <20.0.0"
40
+ "react": ">=16.14.0 <20.0.0"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "@types/react": {
44
+ "optional": true
45
+ }
43
46
  },
44
47
  "exports": {
45
48
  ".": {