@fluentui/react-jsx-runtime 9.0.6 → 9.0.7

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.json CHANGED
@@ -2,7 +2,28 @@
2
2
  "name": "@fluentui/react-jsx-runtime",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 06 Sep 2023 13:27:23 GMT",
5
+ "date": "Tue, 12 Sep 2023 08:48:15 GMT",
6
+ "tag": "@fluentui/react-jsx-runtime_v9.0.7",
7
+ "version": "9.0.7",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "olfedias@microsoft.com",
12
+ "package": "@fluentui/react-jsx-runtime",
13
+ "commit": "6fa505d282299778ee9c160ab91f2f510e2d4335",
14
+ "comment": "fix: make /jsx-runtime compatible with Webpack 4"
15
+ },
16
+ {
17
+ "author": "bernardo.sunderhus@gmail.com",
18
+ "package": "@fluentui/react-jsx-runtime",
19
+ "commit": "cbcc41cab55eb19e12faf363d0c96adb45ee2cb0",
20
+ "comment": "bugfix: fix missing .d.ts types on build"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Wed, 06 Sep 2023 13:31:31 GMT",
6
27
  "tag": "@fluentui/react-jsx-runtime_v9.0.6",
7
28
  "version": "9.0.6",
8
29
  "comments": {
@@ -11,7 +32,7 @@
11
32
  "author": "beachball",
12
33
  "package": "@fluentui/react-jsx-runtime",
13
34
  "comment": "Bump @fluentui/react-utilities to v9.13.3",
14
- "commit": "8582884f9000d15185fe7b074c6fde00d84e961c"
35
+ "commit": "52532950407fd4d3664ec6aa337855214233813b"
15
36
  }
16
37
  ]
17
38
  }
package/CHANGELOG.md CHANGED
@@ -1,17 +1,27 @@
1
1
  # Change Log - @fluentui/react-jsx-runtime
2
2
 
3
- This log was last generated on Wed, 06 Sep 2023 13:27:23 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 12 Sep 2023 08:48:15 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-jsx-runtime_v9.0.7)
8
+
9
+ Tue, 12 Sep 2023 08:48:15 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-jsx-runtime_v9.0.6..@fluentui/react-jsx-runtime_v9.0.7)
11
+
12
+ ### Patches
13
+
14
+ - fix: make /jsx-runtime compatible with Webpack 4 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by olfedias@microsoft.com)
15
+ - bugfix: fix missing .d.ts types on build ([PR #29092](https://github.com/microsoft/fluentui/pull/29092) by bernardo.sunderhus@gmail.com)
16
+
7
17
  ## [9.0.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-jsx-runtime_v9.0.6)
8
18
 
9
- Wed, 06 Sep 2023 13:27:23 GMT
19
+ Wed, 06 Sep 2023 13:31:31 GMT
10
20
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-jsx-runtime_v9.0.5..@fluentui/react-jsx-runtime_v9.0.6)
11
21
 
12
22
  ### Patches
13
23
 
14
- - Bump @fluentui/react-utilities to v9.13.3 ([PR #28988](https://github.com/microsoft/fluentui/pull/28988) by beachball)
24
+ - Bump @fluentui/react-utilities to v9.13.3 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
15
25
 
16
26
  ## [9.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-jsx-runtime_v9.0.5)
17
27
 
@@ -0,0 +1 @@
1
+ import 'react/jsx-dev-runtime';
@@ -0,0 +1 @@
1
+ import 'react/jsx-runtime';
@@ -0,0 +1,7 @@
1
+ {
2
+ "description": "Separate entrypoint for /jsx-dev-runtime",
3
+ "main": "../lib-commonjs/jsx-dev-runtime.js",
4
+ "module": "../lib/jsx-dev-runtime.js",
5
+ "typings": "../dist/jsx-dev-runtime.d.ts",
6
+ "sideEffects": false
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "description": "Separate entrypoint for /jsx-runtime",
3
+ "main": "../lib-commonjs/jsx-runtime.js",
4
+ "module": "../lib/jsx-runtime.js",
5
+ "typings": "../dist/jsx-runtime.d.ts",
6
+ "sideEffects": false
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-jsx-runtime",
3
- "version": "9.0.6",
3
+ "version": "9.0.7",
4
4
  "description": "Custom JSX runtime for @fluentui/react-components",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",