Haz

Results 315 comments of Haz

Currently, no. You need to put it flatly like `fontTiny`, `fontSmall` etc. But a PR would be welcome to support it.

If you don't mind, I will make a self promotion here. I have a library that should fit the needs of most who uses mongoose-paginate. This: https://github.com/diegohaz/querymen

@niftylettuce I see. I just wrote that library to have more control over query strings besides pagination, like filtering. The goal is to use the same schema that you already...

By the way, the Reakit Combobox stories can be found here: https://next.reakit.io/storybook/?path=/story/examples--accessible-combobox I'll create a tags example there. It's going to be fun! :D

@ItsJonQ Built this: https://codesandbox.io/s/reakit-combobox-with-tags-smfgu The code is a mess and it has probably a lot of bugs, but, yeah, it was fun! 😆

My solution for this was to create nested portals in the DOM: ```jsx import * as React from "react"; import * as ReactDOM from "react-dom"; const PortalContext = React.createContext( typeof...

@Andarist There you go: https://codesandbox.io/s/o9086wk8j5 It doesn't close nested portals when closing the parent ones though. But I think it's doable. I just made it really fast.

My use case is that I'm shipping a bunch of hooks. They return props like `ref` and event handlers. I can't use this library right now because (1) it's a...

I ended up using [this imperative library](https://github.com/willmcpo/body-scroll-lock) within `React.useEffect`. It seems to work well.

I wanted `reakit/Arrow`. This is how my `es` folder looks like after using rollup with `experimentalCodeSplitting`: ``` /Users/diegohaz/Projects/reakit/es ├── Arrow.js ├── Backdrop.js ├── Base.js ├── Block.js ├── Blockquote.js ├── Box.js...