@fluentui/react-components 9.0.0-rc.5 → 9.0.0-rc.6
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 +16 -1
- package/CHANGELOG.md +12 -2
- package/package.json +6 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@fluentui/react-components",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Fri, 04 Mar 2022
|
|
5
|
+
"date": "Fri, 04 Mar 2022 19:49:27 GMT",
|
|
6
|
+
"tag": "@fluentui/react-components_v9.0.0-rc.6",
|
|
7
|
+
"version": "9.0.0-rc.6",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "dzearing@microsoft.com",
|
|
12
|
+
"package": "@fluentui/react-components",
|
|
13
|
+
"commit": "e7a18d284e0050a34ff1aa3783856c73873adf78",
|
|
14
|
+
"comment": "Adding /unstable export to exports map."
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Fri, 04 Mar 2022 05:17:28 GMT",
|
|
6
21
|
"tag": "@fluentui/react-components_v9.0.0-rc.5",
|
|
7
22
|
"version": "9.0.0-rc.5",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-components
|
|
2
2
|
|
|
3
|
-
This log was last generated on Fri, 04 Mar 2022
|
|
3
|
+
This log was last generated on Fri, 04 Mar 2022 19:49:27 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.6)
|
|
8
|
+
|
|
9
|
+
Fri, 04 Mar 2022 19:49:27 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.5..@fluentui/react-components_v9.0.0-rc.6)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- `@fluentui/react-components`
|
|
15
|
+
- Adding /unstable export to exports map. ([PR #21962](https://github.com/microsoft/fluentui/pull/21962) by dzearing@microsoft.com)
|
|
16
|
+
|
|
7
17
|
## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-components_v9.0.0-rc.5)
|
|
8
18
|
|
|
9
|
-
Fri, 04 Mar 2022 05:
|
|
19
|
+
Fri, 04 Mar 2022 05:17:28 GMT
|
|
10
20
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.0.0-rc.4..@fluentui/react-components_v9.0.0-rc.5)
|
|
11
21
|
|
|
12
22
|
### Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui/react-components",
|
|
3
|
-
"version": "9.0.0-rc.
|
|
3
|
+
"version": "9.0.0-rc.6",
|
|
4
4
|
"description": "Suite package for converged React components",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -82,6 +82,11 @@
|
|
|
82
82
|
"import": "./lib/index.js",
|
|
83
83
|
"require": "./lib-commonjs/index.js"
|
|
84
84
|
},
|
|
85
|
+
"./unstable": {
|
|
86
|
+
"types": "./lib/unstable/index.d.ts",
|
|
87
|
+
"import": "./lib/unstable/index.js",
|
|
88
|
+
"require": "./lib-commonjs/unstable/index.js"
|
|
89
|
+
},
|
|
85
90
|
"./package.json": "./package.json"
|
|
86
91
|
}
|
|
87
92
|
}
|