@fluentui/react-provider 9.14.1 → 9.15.0
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 +15 -2
- package/dist/index.d.ts +7 -0
- package/package.json +5 -5
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, 06 May 2024 12:48:52 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.15.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-provider_v9.15.0)
|
8
|
+
|
9
|
+
Mon, 06 May 2024 12:48:52 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-provider_v9.14.1..@fluentui/react-provider_v9.15.0)
|
11
|
+
|
12
|
+
### Minor changes
|
13
|
+
|
14
|
+
- feat: adds TagPicker to custom style hooks ([PR #31272](https://github.com/microsoft/fluentui/pull/31272) by bernardo.sunderhus@gmail.com)
|
15
|
+
- Bump @fluentui/react-shared-contexts to v9.18.0 ([PR #31271](https://github.com/microsoft/fluentui/pull/31271) by beachball)
|
16
|
+
- Bump @fluentui/react-tabster to v9.21.1 ([PR #31271](https://github.com/microsoft/fluentui/pull/31271) by beachball)
|
17
|
+
- Bump @fluentui/react-utilities to v9.18.8 ([PR #31271](https://github.com/microsoft/fluentui/pull/31271) by beachball)
|
18
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.37 ([PR #31271](https://github.com/microsoft/fluentui/pull/31271) by beachball)
|
19
|
+
|
7
20
|
## [9.14.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-provider_v9.14.1)
|
8
21
|
|
9
|
-
Thu, 02 May 2024 11:
|
22
|
+
Thu, 02 May 2024 11:36:36 GMT
|
10
23
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-provider_v9.14.0..@fluentui/react-provider_v9.14.1)
|
11
24
|
|
12
25
|
### Patches
|
package/dist/index.d.ts
CHANGED
@@ -147,6 +147,13 @@ export declare const FluentProvider: React_2.ForwardRefExoticComponent<Omit<Comp
|
|
147
147
|
useTeachingPopoverSurfaceStyles_unstable: (state: unknown) => void;
|
148
148
|
useTeachingPopoverTitleStyles_unstable: (state: unknown) => void;
|
149
149
|
useTimePickerCompatStyles_unstable: (state: unknown) => void;
|
150
|
+
useTagPickerInputStyles_unstable: (state: unknown) => void;
|
151
|
+
useTagPickerButtonStyles_unstable: (state: unknown) => void;
|
152
|
+
useTagPickerControlStyles_unstable: (state: unknown) => void;
|
153
|
+
useTagPickerGroupStyles_unstable: (state: unknown) => void;
|
154
|
+
useTagPickerListStyles_unstable: (state: unknown) => void;
|
155
|
+
useTagPickerOptionStyles_unstable: (state: unknown) => void;
|
156
|
+
useTagPickerOptionGroupStyles_unstable: (state: unknown) => void;
|
150
157
|
}> | undefined;
|
151
158
|
dir?: "ltr" | "rtl" | undefined;
|
152
159
|
targetDocument?: Document | undefined;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-provider",
|
3
|
-
"version": "9.
|
3
|
+
"version": "9.15.0",
|
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.237",
|
37
|
-
"@fluentui/react-shared-contexts": "^9.
|
38
|
-
"@fluentui/react-tabster": "^9.21.
|
37
|
+
"@fluentui/react-shared-contexts": "^9.18.0",
|
38
|
+
"@fluentui/react-tabster": "^9.21.1",
|
39
39
|
"@fluentui/react-theme": "^9.1.19",
|
40
|
-
"@fluentui/react-utilities": "^9.18.
|
41
|
-
"@fluentui/react-jsx-runtime": "^9.0.
|
40
|
+
"@fluentui/react-utilities": "^9.18.8",
|
41
|
+
"@fluentui/react-jsx-runtime": "^9.0.37",
|
42
42
|
"@griffel/core": "^1.14.1",
|
43
43
|
"@griffel/react": "^1.5.14",
|
44
44
|
"@swc/helpers": "^0.5.1"
|