fix: change children type to plain ReactNode
This commit is contained in:
parent
7977ac5038
commit
83b0832a7d
@ -241,7 +241,7 @@ function combinedRef<I>(refs: React.Ref<I | null>[]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
interface SlotProps {
|
interface SlotProps {
|
||||||
children?: Exclude<React.ReactNode, Iterable<React.ReactNode>> | string;
|
children?: React.ReactNode;
|
||||||
}
|
}
|
||||||
export const Slot = React.forwardRef<any, SlotProps>((props, ref) => {
|
export const Slot = React.forwardRef<any, SlotProps>((props, ref) => {
|
||||||
const { children, ...slotProps } = props;
|
const { children, ...slotProps } = props;
|
||||||
@ -254,16 +254,6 @@ export const Slot = React.forwardRef<any, SlotProps>((props, ref) => {
|
|||||||
} as any);
|
} as any);
|
||||||
});
|
});
|
||||||
|
|
||||||
export interface MustAsChild {
|
export interface AsChild {
|
||||||
children: React.ReactElement<
|
asChild?: boolean;
|
||||||
unknown,
|
|
||||||
string | React.JSXElementConstructor<any>
|
|
||||||
>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface OptionalAsChild<T extends boolean> {
|
|
||||||
children?: T extends true
|
|
||||||
? React.ReactElement<unknown, string | React.JSXElementConstructor<any>>
|
|
||||||
: React.ReactNode;
|
|
||||||
asChild?: T;
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user