@fluentui/react-jsx-runtime 9.3.1 → 9.3.3
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,31 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-jsx-runtime
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 11 Nov 2025 19:13:37 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-jsx-runtime_v9.3.3)
|
|
8
|
+
|
|
9
|
+
Tue, 11 Nov 2025 19:13:37 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-jsx-runtime_v9.3.2..@fluentui/react-jsx-runtime_v9.3.3)
|
|
11
|
+
|
|
12
|
+
### Patches
|
|
13
|
+
|
|
14
|
+
- Bump @fluentui/react-utilities to v9.25.4 ([PR #35462](https://github.com/microsoft/fluentui/pull/35462) by beachball)
|
|
15
|
+
|
|
16
|
+
## [9.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-jsx-runtime_v9.3.2)
|
|
17
|
+
|
|
18
|
+
Thu, 06 Nov 2025 15:01:21 GMT
|
|
19
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-jsx-runtime_v9.3.1..@fluentui/react-jsx-runtime_v9.3.2)
|
|
20
|
+
|
|
21
|
+
### Patches
|
|
22
|
+
|
|
23
|
+
- chore: migrate source to react 19 ([PR #35434](https://github.com/microsoft/fluentui/pull/35434) by martinhochel@microsoft.com)
|
|
24
|
+
- Bump @fluentui/react-utilities to v9.25.3 ([PR #35466](https://github.com/microsoft/fluentui/pull/35466) by beachball)
|
|
25
|
+
|
|
7
26
|
## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-jsx-runtime_v9.3.1)
|
|
8
27
|
|
|
9
|
-
Fri, 31 Oct 2025 16:
|
|
28
|
+
Fri, 31 Oct 2025 16:22:06 GMT
|
|
10
29
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-jsx-runtime_v9.3.0..@fluentui/react-jsx-runtime_v9.3.1)
|
|
11
30
|
|
|
12
31
|
### Patches
|
|
@@ -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.
|
|
3
|
+
"version": "9.3.3",
|
|
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.
|
|
21
|
+
"@fluentui/react-utilities": "^9.25.4",
|
|
22
22
|
"react-is": "^17.0.2",
|
|
23
23
|
"@swc/helpers": "^0.5.1"
|
|
24
24
|
},
|