1
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
import warning from "@rc-component/util/es/warning";
|
||||
|
||||
/**
|
||||
* `onClick` event return `info.item` which point to react node directly.
|
||||
* We should warning this since it will not work on FC.
|
||||
*/
|
||||
export function warnItemProp({
|
||||
item,
|
||||
...restInfo
|
||||
}) {
|
||||
Object.defineProperty(restInfo, 'item', {
|
||||
get: () => {
|
||||
warning(false, '`info.item` is deprecated since we will move to function component that not provides React Node instance in future.');
|
||||
return item;
|
||||
}
|
||||
});
|
||||
return restInfo;
|
||||
}
|
||||
Reference in New Issue
Block a user