Jack Moore

Results 9 comments of Jack Moore

@yaacovCR I ended up running into this issue and tried a couple of solutions to no avail. Like the original poster I'm also trying to hoist a field into an...

Looks like it has to do with the implementation of iterlib. You can see in `map.js` where the bug occurs ``` javascript // ... const {done, value} = iterator.next() //...

After looking over `Grid`, I do think that it's going to be the best base for a calendar. It seems that is implementation would be similar to Rover, but I'm...

@diegohaz I recently had a use for this project and I forgot that I still had this PR open. I applied your suggestions and cleaned a few things up if...

@diegohaz already on a PR! In order to be consistent, I think that any function that resolves a prop-getter should deeply resolve the value. As of now, I'm working on...

I thought more about the "deep function values" test case as it may not be needed with styled-components. Assuming the result of `ifProp` is interpolated into a style block, styled-components...

I think it makes sense that `ifProp(prop: string, ...)`does not try try to resolve `prop` deeply as `ifProp` is only trying to determine the type of the prop and not...

That might be more clear. As `theme` and `palette` only take keys, should a `deepTheme` and `deepPalette` be provided, or should the existing functions internally use `deepProp`? Additionally would it...

Okay I can create a PR for that.