@fluentui/react-provider 9.10.4 → 9.10.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 +40 -1
- package/CHANGELOG.md +15 -2
- package/dist/index.d.ts +5 -0
- package/package.json +5 -5
package/CHANGELOG.json
CHANGED
@@ -2,7 +2,46 @@
|
|
2
2
|
"name": "@fluentui/react-provider",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
5
|
+
"date": "Mon, 09 Oct 2023 20:41:57 GMT",
|
6
|
+
"tag": "@fluentui/react-provider_v9.10.5",
|
7
|
+
"version": "9.10.5",
|
8
|
+
"comments": {
|
9
|
+
"patch": [
|
10
|
+
{
|
11
|
+
"author": "lingfangao@hotmail.com",
|
12
|
+
"package": "@fluentui/react-provider",
|
13
|
+
"commit": "dbc18f02facdc420ec4baf7c125ddab22271facf",
|
14
|
+
"comment": "patch: update types for custom styles hook context"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"author": "beachball",
|
18
|
+
"package": "@fluentui/react-provider",
|
19
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.10.0",
|
20
|
+
"commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"author": "beachball",
|
24
|
+
"package": "@fluentui/react-provider",
|
25
|
+
"comment": "Bump @fluentui/react-tabster to v9.13.5",
|
26
|
+
"commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"author": "beachball",
|
30
|
+
"package": "@fluentui/react-provider",
|
31
|
+
"comment": "Bump @fluentui/react-utilities to v9.14.2",
|
32
|
+
"commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"author": "beachball",
|
36
|
+
"package": "@fluentui/react-provider",
|
37
|
+
"comment": "Bump @fluentui/react-jsx-runtime to v9.0.15",
|
38
|
+
"commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4"
|
39
|
+
}
|
40
|
+
]
|
41
|
+
}
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"date": "Thu, 05 Oct 2023 15:25:32 GMT",
|
6
45
|
"tag": "@fluentui/react-provider_v9.10.4",
|
7
46
|
"version": "9.10.4",
|
8
47
|
"comments": {
|
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,25 @@
|
|
1
1
|
# Change Log - @fluentui/react-provider
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Mon, 09 Oct 2023 20:41:57 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.10.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-provider_v9.10.5)
|
8
|
+
|
9
|
+
Mon, 09 Oct 2023 20:41:57 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-provider_v9.10.4..@fluentui/react-provider_v9.10.5)
|
11
|
+
|
12
|
+
### Patches
|
13
|
+
|
14
|
+
- patch: update types for custom styles hook context ([PR #29431](https://github.com/microsoft/fluentui/pull/29431) by lingfangao@hotmail.com)
|
15
|
+
- Bump @fluentui/react-shared-contexts to v9.10.0 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
16
|
+
- Bump @fluentui/react-tabster to v9.13.5 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
17
|
+
- Bump @fluentui/react-utilities to v9.14.2 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
18
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.15 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
19
|
+
|
7
20
|
## [9.10.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-provider_v9.10.4)
|
8
21
|
|
9
|
-
Thu, 05 Oct 2023 15:
|
22
|
+
Thu, 05 Oct 2023 15:25:32 GMT
|
10
23
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-provider_v9.10.3..@fluentui/react-provider_v9.10.4)
|
11
24
|
|
12
25
|
### Patches
|
package/dist/index.d.ts
CHANGED
@@ -125,6 +125,11 @@ export declare const FluentProvider: React_2.ForwardRefExoticComponent<Omit<Comp
|
|
125
125
|
useBreadcrumbButtonStyles_unstable: (state: unknown) => void;
|
126
126
|
useBreadcrumbItemStyles_unstable: (state: unknown) => void;
|
127
127
|
useBreadcrumbDividerStyles_unstable: (state: unknown) => void;
|
128
|
+
useMessageBarStyles_unstable: (state: unknown) => void;
|
129
|
+
useMessageBarBodyStyles_unstable: (state: unknown) => void;
|
130
|
+
useMessageBarTitleStyles_unstable: (state: unknown) => void;
|
131
|
+
useMessageBarActionsStyles_unstable: (state: unknown) => void;
|
132
|
+
useMessageBarGroupStyles_unstable: (state: unknown) => void;
|
128
133
|
}> | undefined;
|
129
134
|
dir?: "ltr" | "rtl" | undefined;
|
130
135
|
targetDocument?: Document | undefined;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-provider",
|
3
|
-
"version": "9.10.
|
3
|
+
"version": "9.10.5",
|
4
4
|
"description": "Fluent UI React provider component",
|
5
5
|
"main": "lib-commonjs/index.js",
|
6
6
|
"module": "lib/index.js",
|
@@ -34,11 +34,11 @@
|
|
34
34
|
},
|
35
35
|
"dependencies": {
|
36
36
|
"@fluentui/react-icons": "^2.0.217",
|
37
|
-
"@fluentui/react-shared-contexts": "^9.
|
38
|
-
"@fluentui/react-tabster": "^9.13.
|
37
|
+
"@fluentui/react-shared-contexts": "^9.10.0",
|
38
|
+
"@fluentui/react-tabster": "^9.13.5",
|
39
39
|
"@fluentui/react-theme": "^9.1.14",
|
40
|
-
"@fluentui/react-utilities": "^9.14.
|
41
|
-
"@fluentui/react-jsx-runtime": "^9.0.
|
40
|
+
"@fluentui/react-utilities": "^9.14.2",
|
41
|
+
"@fluentui/react-jsx-runtime": "^9.0.15",
|
42
42
|
"@griffel/core": "^1.14.1",
|
43
43
|
"@griffel/react": "^1.5.14",
|
44
44
|
"@swc/helpers": "^0.5.1"
|