We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug I want to use the DragHandleMenu component with my own custom subcomponents. It seems that can be done using specific children (
BlockNote/packages/react/src/components/SideMenu/DragHandleMenu/DragHandleMenu.tsx
Line 42 in 8bb9bc6
BlockNote/packages/react/src/components/SideMenu/DefaultButtons/DragHandleButton.tsx
Line 48 in 8bb9bc6
I tried also to provide my own custom component using the 'dragHandleMenu' prop
Line 26 in 8bb9bc6
To Reproduce Try to configure a custom SideMenu, and provide custom components to be used on https://github.com/TypeCellOS/BlockNote/blob/main/packages/react/src/components/SideMenu/DragHandleMenu/DragHandleMenu.tsx#L42 You are not going to able to use you custom components unless you create own custom components
The text was updated successfully, but these errors were encountered:
I don't understand what the problem is here:
but you have to provide a component class not an instance with my custom component
shouldn't it be something like this:
const MyDragHandleMenu = () => { return (<DragHandleMenu><button>my button</buton></DragHandleMenu>) } <DragHandleButton dragHandleMenu={MyDragHandleMenu} /*other props*/></DragHandleButton>
Maybe you want it to be more like this?
<DragHandleButton dragHandleMenu={MyDragHandleMenu}><button>my button</button></DragHandleButton>
Sorry, something went wrong.
fix: better expose setting a draghandlemenu's items #1525
8d9c083
Opened a PR for the latter option as that sort of makes more sense to me to expose easier.
I guess that it's more clear with this new option. Thanks for the support.
fix: better expose setting a draghandlemenu's items #1525 (#1526)
69e3fa5
No branches or pull requests
Describe the bug
I want to use the DragHandleMenu component with my own custom subcomponents. It seems that can be done using specific children (
BlockNote/packages/react/src/components/SideMenu/DragHandleMenu/DragHandleMenu.tsx
Line 42 in 8bb9bc6
BlockNote/packages/react/src/components/SideMenu/DefaultButtons/DragHandleButton.tsx
Line 48 in 8bb9bc6
I tried also to provide my own custom component using the 'dragHandleMenu' prop
BlockNote/packages/react/src/components/SideMenu/DefaultButtons/DragHandleButton.tsx
Line 26 in 8bb9bc6
but you have to provide a component class not an instance with my custom component
To Reproduce
Try to configure a custom SideMenu, and provide custom components to be used on
https://github.com/TypeCellOS/BlockNote/blob/main/packages/react/src/components/SideMenu/DragHandleMenu/DragHandleMenu.tsx#L42
You are not going to able to use you custom components unless you create own custom components
The text was updated successfully, but these errors were encountered: