fix: remove asChild from prop propagation in Slot
This commit is contained in:
parent
de9b27b1c9
commit
37e6733fe7
@ -321,11 +321,13 @@ interface SlotProps {
|
|||||||
export const Slot = React.forwardRef<any, SlotProps & Record<string, any>>(
|
export const Slot = React.forwardRef<any, SlotProps & Record<string, any>>(
|
||||||
(props, ref) => {
|
(props, ref) => {
|
||||||
const { children, ...slotProps } = props;
|
const { children, ...slotProps } = props;
|
||||||
|
const { asChild: _1, ...safeSlotProps } = slotProps;
|
||||||
if (!React.isValidElement(children)) {
|
if (!React.isValidElement(children)) {
|
||||||
|
console.warn(`given children "${children}" is not valid for asChild`);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return React.cloneElement(children, {
|
return React.cloneElement(children, {
|
||||||
...mergeReactProps(slotProps, children.props),
|
...mergeReactProps(safeSlotProps, children.props),
|
||||||
ref: combinedRef([ref, (children as any).ref]),
|
ref: combinedRef([ref, (children as any).ref]),
|
||||||
} as any);
|
} as any);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user