rauno
rauno
Would be cool to add a dark mode for those night owls out there! I've got something like this atm, but I'm open to ideas here! ✌️
I started using the definition "play" instead of "component" with the intention of possibly not only covering UI components but primitives (techniques? I really can't think of a suitable noun...
# Popover Popover is an overlay that appears on top of the page. ### Functionality TODO ### Best practices TODO ### Implementation TODO ### Examples TODO ### Accessibility TODO ###...
There's probably room for improvement, but my current structure is something like this: 1. Component name, with visual, and concise description which could be reused throughout design systems, so it...
I've recently been writing a lot of "stringified JSX", which can become quite hard to maintain. Would it be possible to provide `props.value` or `initialCode` as JSX? For example: ```...
I assume that the Copy URL button should work the same as it does in [baseweb.design](https://baseweb.design/components/checkbox/?code=import%20*%20as%20React%20from%20%22react%22%3B%0Aimport%20%7B%20Checkbox%20%7D%20from%20%22baseui%2Fcheckbox%22%3B%0A%0Aexport%20default%20()%20%3D%3E%20%7B%0A%20%20const%20%5Bchecked%2C%20setChecked%5D%20%3D%20React.useState(true)%3B%0A%20%20return%20(%0A%20%20%20%20%3CCheckbox%0A%20%20%20%20%20%20checked%3D%7Bchecked%7D%0A%20%20%20%20%20%20onChange%3D%7Be%20%3D%3E%20setChecked(e.target.checked)%7D%0A%20%20%20%20%3E%0A%20%20%20%20%20%20Sign%20up%20for%20the%20newsletter%0A%20%20%20%20%3C%2FCheckbox%3E%0A%20%20)%3B%0A%7D). Although, out of the box, the code does not seem to be added as...
Loving this library and it's simplicity so far. I'm just wondering why have you decided to expose `dispatch` directly instead of adding some trivial mapping of dispatch. What I would...