@fluentui/react-jsx-runtime 9.3.1 → 9.3.2

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.
package/CHANGELOG.md CHANGED
@@ -1,12 +1,22 @@
1
1
  # Change Log - @fluentui/react-jsx-runtime
2
2
 
3
- This log was last generated on Fri, 31 Oct 2025 16:17:38 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 06 Nov 2025 14:56:57 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-jsx-runtime_v9.3.2)
8
+
9
+ Thu, 06 Nov 2025 14:56:57 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-jsx-runtime_v9.3.1..@fluentui/react-jsx-runtime_v9.3.2)
11
+
12
+ ### Patches
13
+
14
+ - chore: migrate source to react 19 ([PR #35434](https://github.com/microsoft/fluentui/pull/35434) by martinhochel@microsoft.com)
15
+ - Bump @fluentui/react-utilities to v9.25.3 ([PR #35466](https://github.com/microsoft/fluentui/pull/35466) by beachball)
16
+
7
17
  ## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-jsx-runtime_v9.3.1)
8
18
 
9
- Fri, 31 Oct 2025 16:17:38 GMT
19
+ Fri, 31 Oct 2025 16:22:06 GMT
10
20
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-jsx-runtime_v9.3.0..@fluentui/react-jsx-runtime_v9.3.1)
11
21
 
12
22
  ### Patches
@@ -0,0 +1,3 @@
1
+ // needed to augment the JSX namespace for test where directly `createElement` from './createElement' is used, as we are not importing from @fluentui/react-jsx-runtime
2
+ // NOTE: this will augment all test files !
3
+ export { };
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/jsx-namespace.test.d.ts"],"sourcesContent":["// needed to augment the JSX namespace for test where directly `createElement` from './createElement' is used, as we are not importing from @fluentui/react-jsx-runtime\n// NOTE: this will augment all test files !\nimport type * as React from 'react';\n\n/**\n * Cross React Major Version compatible Intrinsic Element Keys\n */\ntype JSXIntrinsicElementKeys = Exclude<React.ElementType, React.ComponentType>;\n/**\n * Cross React Major Version compatible IntrinsicElement Dictionary\n */\ntype JSXIntrinsicElements = { [K in JSXIntrinsicElementKeys]: React.ComponentProps<K> };\n\ndeclare global {\n namespace JSX {\n interface IntrinsicElements extends JSXIntrinsicElements {}\n }\n}\n"],"names":[],"mappings":"AAAA,uKAAuK;AACvK,2CAA2C;AAC3C,WAAoC"}
@@ -0,0 +1,6 @@
1
+ // needed to augment the JSX namespace for test where directly `createElement` from './createElement' is used, as we are not importing from @fluentui/react-jsx-runtime
2
+ // NOTE: this will augment all test files !
3
+ "use strict";
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/jsx-namespace.test.d.ts"],"sourcesContent":["// needed to augment the JSX namespace for test where directly `createElement` from './createElement' is used, as we are not importing from @fluentui/react-jsx-runtime\n// NOTE: this will augment all test files !\nimport type * as React from 'react';\n\n/**\n * Cross React Major Version compatible Intrinsic Element Keys\n */\ntype JSXIntrinsicElementKeys = Exclude<React.ElementType, React.ComponentType>;\n/**\n * Cross React Major Version compatible IntrinsicElement Dictionary\n */\ntype JSXIntrinsicElements = { [K in JSXIntrinsicElementKeys]: React.ComponentProps<K> };\n\ndeclare global {\n namespace JSX {\n interface IntrinsicElements extends JSXIntrinsicElements {}\n }\n}\n"],"names":[],"mappings":"AAAA,uKAAuK;AACvK,2CAA2C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-jsx-runtime",
3
- "version": "9.3.1",
3
+ "version": "9.3.2",
4
4
  "description": "Custom JSX runtime for @fluentui/react-components",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -18,7 +18,7 @@
18
18
  "@fluentui/scripts-api-extractor": "*"
19
19
  },
20
20
  "dependencies": {
21
- "@fluentui/react-utilities": "^9.25.2",
21
+ "@fluentui/react-utilities": "^9.25.3",
22
22
  "react-is": "^17.0.2",
23
23
  "@swc/helpers": "^0.5.1"
24
24
  },