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
with @federicare
function togglePopover() { this.setState({ isOpen: !this.state.isOpen; }); }
<button onClick={ this.togglePopover }> Toggle </button> <Popover isOpen={ this.state.isOpen }> Hello Alex <button>Donate!</button><p>Screw alex</p> </Popover>
const popover = ( <Popover><strong>Holy guacamole!</strong> Check this info.</Popover> ); <OverlayTrigger placement='bottom' overlay={popover}> <button>Holy guacamole!</button> </OverlayTrigger>
<Popover> <Trigger><button>Press Me!</button></Trigger> <Content> Hello Alex <button>Donate!</button><p>Screw alex</p> </Content> </Popover>
<button data-trigger={ "abc" }>Hello</button> <Popover id="abc"> Hello Alex <button>Donate!</button><p>Screw alex</p> </Popover>
The text was updated successfully, but these errors were encountered:
This might be related: #151, though not same.
Sorry, something went wrong.
@jpuri for sure
btw I added a first skeleton commit in here: https://github.com/nikgraf/belle/tree/popover
👍
No branches or pull requests
Initial Component API research
with @federicare
State handling
Bootstrap (React)way
Dedicated subcomponents
Data Trigger
The text was updated successfully, but these errors were encountered: