@fluentui/react-field 9.4.3 → 9.4.4
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 +16 -2
- package/dist/index.d.ts +8 -10
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,26 @@
|
|
1
1
|
# Change Log - @fluentui/react-field
|
2
2
|
|
3
|
-
This log was last generated on Thu,
|
3
|
+
This log was last generated on Thu, 21 Aug 2025 12:20:40 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.4.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.4.4)
|
8
|
+
|
9
|
+
Thu, 21 Aug 2025 12:20:40 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.4.3..@fluentui/react-field_v9.4.4)
|
11
|
+
|
12
|
+
### Patches
|
13
|
+
|
14
|
+
- indirect ts emit change with exactOptionalPropertyTypes ([PR #33498](https://github.com/microsoft/fluentui/pull/33498) by vgenaev@gmail.com)
|
15
|
+
- Bump @fluentui/react-context-selector to v9.2.6 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
16
|
+
- Bump @fluentui/react-jsx-runtime to v9.1.6 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
17
|
+
- Bump @fluentui/react-label to v9.3.4 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
18
|
+
- Bump @fluentui/react-shared-contexts to v9.25.0 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
19
|
+
- Bump @fluentui/react-utilities to v9.24.0 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
20
|
+
|
7
21
|
## [9.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-field_v9.4.3)
|
8
22
|
|
9
|
-
Thu, 07 Aug 2025
|
23
|
+
Thu, 07 Aug 2025 10:03:33 GMT
|
10
24
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-field_v9.4.2..@fluentui/react-field_v9.4.3)
|
11
25
|
|
12
26
|
### Patches
|
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
|
-
|
3
1
|
import type { ComponentProps } from '@fluentui/react-utilities';
|
4
2
|
import type { ComponentState } from '@fluentui/react-utilities';
|
5
3
|
import type { ForwardRefComponent } from '@fluentui/react-utilities';
|
@@ -13,10 +11,10 @@ export declare const Field: ForwardRefComponent<FieldProps>;
|
|
13
11
|
export declare const fieldClassNames: SlotClassNames<FieldSlots>;
|
14
12
|
|
15
13
|
export declare const FieldContextProvider: React_2.Provider<Readonly<Pick<FieldState, "required" | "size" | "orientation" | "validationState" | "generatedControlId"> & {
|
16
|
-
labelFor?: string
|
17
|
-
labelId?: string
|
18
|
-
validationMessageId?: string
|
19
|
-
hintId?: string
|
14
|
+
labelFor?: string;
|
15
|
+
labelId?: string;
|
16
|
+
validationMessageId?: string;
|
17
|
+
hintId?: string;
|
20
18
|
}> | undefined>;
|
21
19
|
|
22
20
|
export declare type FieldContextValue = Readonly<Pick<FieldState, 'generatedControlId' | 'orientation' | 'required' | 'size' | 'validationState'> & {
|
@@ -173,10 +171,10 @@ export declare const renderField_unstable: (state: FieldState, contextValues: Fi
|
|
173
171
|
export declare const useField_unstable: (props: FieldProps, ref: React_2.Ref<HTMLDivElement>) => FieldState;
|
174
172
|
|
175
173
|
export declare const useFieldContext_unstable: () => Readonly<Pick<FieldState, "required" | "size" | "orientation" | "validationState" | "generatedControlId"> & {
|
176
|
-
labelFor?: string
|
177
|
-
labelId?: string
|
178
|
-
validationMessageId?: string
|
179
|
-
hintId?: string
|
174
|
+
labelFor?: string;
|
175
|
+
labelId?: string;
|
176
|
+
validationMessageId?: string;
|
177
|
+
hintId?: string;
|
180
178
|
}> | undefined;
|
181
179
|
|
182
180
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-field",
|
3
|
-
"version": "9.4.
|
3
|
+
"version": "9.4.4",
|
4
4
|
"description": "Fluent UI Field components",
|
5
5
|
"main": "lib-commonjs/index.js",
|
6
6
|
"module": "lib/index.js",
|
@@ -19,13 +19,13 @@
|
|
19
19
|
"@fluentui/scripts-api-extractor": "*"
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"@fluentui/react-context-selector": "^9.2.
|
22
|
+
"@fluentui/react-context-selector": "^9.2.6",
|
23
23
|
"@fluentui/react-icons": "^2.0.245",
|
24
|
-
"@fluentui/react-jsx-runtime": "^9.1.
|
25
|
-
"@fluentui/react-label": "^9.3.
|
26
|
-
"@fluentui/react-shared-contexts": "^9.
|
24
|
+
"@fluentui/react-jsx-runtime": "^9.1.6",
|
25
|
+
"@fluentui/react-label": "^9.3.4",
|
26
|
+
"@fluentui/react-shared-contexts": "^9.25.0",
|
27
27
|
"@fluentui/react-theme": "^9.2.0",
|
28
|
-
"@fluentui/react-utilities": "^9.
|
28
|
+
"@fluentui/react-utilities": "^9.24.0",
|
29
29
|
"@griffel/react": "^1.5.22",
|
30
30
|
"@swc/helpers": "^0.5.1"
|
31
31
|
},
|