@fluentui/react-migration-v0-v9 9.6.3 → 9.6.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 +18 -2
- package/dist/index.d.ts +11 -16
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-migration-v0-v9
|
|
2
2
|
|
|
3
|
-
This log was last generated on Thu,
|
|
3
|
+
This log was last generated on Thu, 21 Aug 2025 12:20:42 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v0-v9_v9.6.4)
|
|
8
|
+
|
|
9
|
+
Thu, 21 Aug 2025 12:20:42 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v0-v9_v9.6.3..@fluentui/react-migration-v0-v9_v9.6.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-aria to v9.16.4 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
|
16
|
+
- Bump @fluentui/react-components to v9.68.4 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
|
17
|
+
- Bump @fluentui/react-context-selector to v9.2.6 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
|
18
|
+
- Bump @fluentui/react-jsx-runtime to v9.1.6 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
|
19
|
+
- Bump @fluentui/react-shared-contexts to v9.25.0 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
|
20
|
+
- Bump @fluentui/react-tabster to v9.26.4 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
|
21
|
+
- Bump @fluentui/react-utilities to v9.24.0 ([PR #35055](https://github.com/microsoft/fluentui/pull/35055) by beachball)
|
|
22
|
+
|
|
7
23
|
## [9.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-migration-v0-v9_v9.6.3)
|
|
8
24
|
|
|
9
|
-
Thu, 07 Aug 2025
|
|
25
|
+
Thu, 07 Aug 2025 10:03:33 GMT
|
|
10
26
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-migration-v0-v9_v9.6.2..@fluentui/react-migration-v0-v9_v9.6.3)
|
|
11
27
|
|
|
12
28
|
### Patches
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
|
|
3
1
|
import { ButtonProps } from '@fluentui/react-components';
|
|
4
2
|
import { ComponentProps } from '@fluentui/react-components';
|
|
5
3
|
import type { ComponentProps as ComponentProps_2 } from '@fluentui/react-utilities';
|
|
@@ -8,7 +6,6 @@ import type { ForwardRefComponent } from '@fluentui/react-utilities';
|
|
|
8
6
|
import { GriffelStyle } from '@fluentui/react-components';
|
|
9
7
|
import type { JSXIntrinsicElement } from '@fluentui/react-utilities';
|
|
10
8
|
import type { JSXIntrinsicElementKeys } from '@fluentui/react-utilities';
|
|
11
|
-
import { ObjectOf } from '@fluentui/react-northstar';
|
|
12
9
|
import type { ObjectShorthandValue } from '@fluentui/react-northstar';
|
|
13
10
|
import * as React_2 from 'react';
|
|
14
11
|
import { SelectionHookParams } from '@fluentui/react-utilities';
|
|
@@ -72,8 +69,8 @@ export declare const Flex: React_2.ForwardRefExoticComponent<React_2.HTMLAttribu
|
|
|
72
69
|
export declare const flexClassName = "fui-Flex";
|
|
73
70
|
|
|
74
71
|
export declare const flexItem: {
|
|
75
|
-
align: (value:
|
|
76
|
-
size: (value:
|
|
72
|
+
align: (value: "auto" | "start" | "end" | "center" | "baseline" | "stretch") => GriffelStyle;
|
|
73
|
+
size: (value: "half" | "quarter" | "small" | "medium" | "large") => GriffelStyle;
|
|
77
74
|
grow: (flexGrow: boolean | number) => GriffelStyle | undefined;
|
|
78
75
|
shrink: (flexShrink: boolean | number) => GriffelStyle | undefined;
|
|
79
76
|
pushRow: () => GriffelStyle;
|
|
@@ -105,33 +102,31 @@ export declare const FormFieldShim: React_2.ForwardRefExoticComponent<{
|
|
|
105
102
|
/**
|
|
106
103
|
* Message to be shown when error state is true
|
|
107
104
|
*/
|
|
108
|
-
errorMessage?: WithContent
|
|
105
|
+
errorMessage?: WithContent;
|
|
109
106
|
/**
|
|
110
107
|
* Whether the field label should be marked as required.
|
|
111
108
|
*/
|
|
112
|
-
required?: boolean
|
|
109
|
+
required?: boolean;
|
|
113
110
|
/**
|
|
114
111
|
* Control to be rendered
|
|
115
112
|
*/
|
|
116
|
-
control?:
|
|
113
|
+
control?: ObjectShorthandValue<{
|
|
117
114
|
/**
|
|
118
115
|
* Control content
|
|
119
116
|
*/
|
|
120
117
|
content?: React_2.ReactNode;
|
|
121
|
-
}
|
|
122
|
-
children?: unknown;
|
|
123
|
-
} & {
|
|
118
|
+
}> & {
|
|
124
119
|
/**
|
|
125
120
|
* Error state
|
|
126
121
|
*/
|
|
127
|
-
error?: "true" | "false"
|
|
128
|
-
}
|
|
122
|
+
error?: "true" | "false";
|
|
123
|
+
};
|
|
129
124
|
/**
|
|
130
125
|
* Label to be rendered
|
|
131
126
|
*/
|
|
132
|
-
label?: WithContent
|
|
127
|
+
label?: WithContent;
|
|
133
128
|
} & {
|
|
134
|
-
children?: React_2.ReactNode;
|
|
129
|
+
children?: React_2.ReactNode | undefined;
|
|
135
130
|
} & React_2.RefAttributes<HTMLInputElement>>;
|
|
136
131
|
|
|
137
132
|
export declare const grid: {
|
|
@@ -166,7 +161,7 @@ export declare const input: {
|
|
|
166
161
|
export declare const ItemLayout: React_2.ForwardRefExoticComponent<Omit<ItemLayoutSlots, "root"> & Omit<{
|
|
167
162
|
as?: "div" | undefined;
|
|
168
163
|
} & Omit<Omit<React_2.DetailedHTMLProps<React_2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
169
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React_2.RefObject<HTMLDivElement> | null | undefined;
|
|
164
|
+
ref?: ((instance: HTMLDivElement | null) => void | React_2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React_2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React_2.RefObject<HTMLDivElement> | null | undefined;
|
|
170
165
|
}, "children"> & {
|
|
171
166
|
children?: any;
|
|
172
167
|
}, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui/react-migration-v0-v9",
|
|
3
|
-
"version": "9.6.
|
|
3
|
+
"version": "9.6.4",
|
|
4
4
|
"description": "Migration shim components and methods for hybrid v0/v9 applications building on Fluent UI React.",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
"@fluentui/scripts-storybook": "*"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@fluentui/react-aria": "^9.16.
|
|
24
|
-
"@fluentui/react-components": "^9.68.
|
|
25
|
-
"@fluentui/react-context-selector": "^9.2.
|
|
23
|
+
"@fluentui/react-aria": "^9.16.4",
|
|
24
|
+
"@fluentui/react-components": "^9.68.4",
|
|
25
|
+
"@fluentui/react-context-selector": "^9.2.6",
|
|
26
26
|
"@fluentui/react-icons": "^2.0.245",
|
|
27
|
-
"@fluentui/react-jsx-runtime": "^9.1.
|
|
28
|
-
"@fluentui/react-shared-contexts": "^9.
|
|
29
|
-
"@fluentui/react-tabster": "^9.26.
|
|
27
|
+
"@fluentui/react-jsx-runtime": "^9.1.6",
|
|
28
|
+
"@fluentui/react-shared-contexts": "^9.25.0",
|
|
29
|
+
"@fluentui/react-tabster": "^9.26.4",
|
|
30
30
|
"@fluentui/react-theme": "^9.2.0",
|
|
31
|
-
"@fluentui/react-utilities": "^9.
|
|
31
|
+
"@fluentui/react-utilities": "^9.24.0",
|
|
32
32
|
"@griffel/react": "^1.5.22",
|
|
33
33
|
"@swc/helpers": "^0.5.1"
|
|
34
34
|
},
|