Lee Powell
Lee Powell
Just an update on this... been doing a bit of experimentation. It seems the order that mediaQueries are created has an impact on which gets fired first. After a bit...
I only tried it on Chrome. Will have a look how the other browsers handle it. > On 10 Feb 2015, at 17:04, Thomas Deinhamer [email protected] wrote: > > But...
Continuing to play with this - running unmatcher's before any match handlers is really important for me when transitioning between breakpoints to avoid DOM manipulation conflicts. At the moment I've...
Happy to merge, but I wonder if this jump should bump this package to a new major version - as I’m unsure if there’s any breaking changes between 10 and...
Updates in master - will aim to release this evening
Sorry, for the delay in responding - no, there are currently no typescript definitions for this. If you'd like to provide some via a PR I'd happily add them.
Hi. Sorry, this module was written really very quickly for a personal project (that never even made it to production). After that I kind of forgot about it - and...
Update: detox is installed globally and while `detox test` does not work, the `npx detox test` does.
I have found a workaround: ``` interface Props extends HTMLAttributes { children: ReactNode; title: string; } ```
Another oddity, when `children` is set to something other than `ReactNode` and a intersection is used I seem to get an intersection type returned: ``` type Props = { children:...