diff --git a/packages/react-components/react-migration-v0-v9/library/etc/react-migration-v0-v9.api.md b/packages/react-components/react-migration-v0-v9/library/etc/react-migration-v0-v9.api.md index 017e2f23c47c7e..3fb8e01afe53ab 100644 --- a/packages/react-components/react-migration-v0-v9/library/etc/react-migration-v0-v9.api.md +++ b/packages/react-components/react-migration-v0-v9/library/etc/react-migration-v0-v9.api.md @@ -155,7 +155,7 @@ export const input: { }; // @public (undocumented) -export const ItemLayout: React_2.ForwardRefExoticComponent & Omit & Omit<{ as?: "div" | undefined; } & Omit, HTMLDivElement>, "key" | keyof React_2.HTMLAttributes> & { ref?: ((instance: HTMLDivElement | null) => void) | React_2.RefObject | null | undefined; @@ -163,8 +163,6 @@ export const ItemLayout: React_2.ForwardRefExoticComponent, HTMLDivElement>, "key" | keyof React_2.HTMLAttributes> & { ref?: ((instance: HTMLDivElement | null) => void) | React_2.RefObject | null | undefined; }>; -}, "children"> & { - children?: React_2.ReactNode; }, "ref"> & React_2.RefAttributes>; // @public (undocumented) diff --git a/packages/react-components/react-utilities/etc/react-utilities.api.md b/packages/react-components/react-utilities/etc/react-utilities.api.md index abbd3fc547e14b..b2979a8175d4f3 100644 --- a/packages/react-components/react-utilities/etc/react-utilities.api.md +++ b/packages/react-components/react-utilities/etc/react-utilities.api.md @@ -23,7 +23,7 @@ export function canUseDOM(): boolean; export const clamp: (value: number, min: number, max: number) => number; // @public -export type ComponentProps = Omit & PropsWithoutRef>>; +export type ComponentProps = Omit & PropsWithoutRef>; // @public export type ComponentState = { diff --git a/packages/react-components/react-utilities/src/compose/types.ts b/packages/react-components/react-utilities/src/compose/types.ts index cde206ea4a5127..cbcf1660e81715 100644 --- a/packages/react-components/react-utilities/src/compose/types.ts +++ b/packages/react-components/react-utilities/src/compose/types.ts @@ -184,7 +184,7 @@ export type ComponentProps & // Include all of the props of the primary slot inline in the component's props - PropsWithoutRef>>; + PropsWithoutRef>; /** * Defines the State object of a component given its slots.