@fluentui/react-components 9.0.0-beta.1 → 9.0.0-beta.5
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 +1446 -1
- package/CHANGELOG.md +307 -124
- package/README.md +1 -8
- package/dist/react-components.d.ts +1195 -16
- package/lib/AccessibilityScenarios/utils.d.ts +13 -0
- package/lib/AccessibilityScenarios/utils.js +18 -0
- package/lib/AccessibilityScenarios/utils.js.map +1 -0
- package/lib/index.d.ts +32 -16
- package/lib/index.js +16 -16
- package/lib/index.js.map +1 -1
- package/lib/unstable/index.d.ts +2 -1
- package/lib/unstable/index.js +1 -1
- package/lib/unstable/index.js.map +1 -1
- package/lib-commonjs/AccessibilityScenarios/utils.d.ts +13 -0
- package/lib-commonjs/AccessibilityScenarios/utils.js +25 -0
- package/lib-commonjs/AccessibilityScenarios/utils.js.map +1 -0
- package/lib-commonjs/index.d.ts +32 -16
- package/lib-commonjs/index.js +256 -18
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/unstable/index.d.ts +2 -1
- package/lib-commonjs/unstable/index.js +25 -2
- package/lib-commonjs/unstable/index.js.map +1 -1
- package/package.json +22 -21
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
This is a suite package for converged components and related utilities. It is a result of a dedupe effort for `@fluentui/react` and `@fluentui/react-northstar`.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
The components are available for limited production use, please contact us if you intend to use them in your product. The APIs might change before final release.
|
|
8
8
|
|
|
9
9
|
### Usage
|
|
10
10
|
|
|
@@ -32,10 +32,3 @@ ReactDOM.render(
|
|
|
32
32
|
### Docs
|
|
33
33
|
|
|
34
34
|
Docs are hosted at https://aka.ms/fluentui-storybook.
|
|
35
|
-
|
|
36
|
-
Publishing docs:
|
|
37
|
-
|
|
38
|
-
1. Set `CHROMATIC_PROJECT_TOKEN` in your shell
|
|
39
|
-
1. Run `yarn chromatic`
|
|
40
|
-
|
|
41
|
-
> @levithomason and @miroslavstastny currently have the token for alpha stage publishing.
|