Thomas Clark
Thomas Clark
Allow the control components to accept a `Fields` type argument, similarly to the how the `Formik` component does in base Formik. The `Fields` generic would be a `Record` that would...
I think it would be helpful if the API documentation would give clarification on whether or not functions such as `F.equals` or `D.merge` are shallow or deep. We can work...
An idea for a new package: An "upsert" function for arrays. This would be based on the "upsert" operation commonly used in databases, which is a combination of "update" and...
- **Flow:** A left-to-right version of `compose` - **Pipe:** A version of `flow`, except instead of returning a new function, the first parameter is passed through the composed function and...
Responsive prefixes are not applying to the classes used to position toast. I was able to recreate the bug in the tailwind playground ([link](https://play.tailwindcss.com/GOXC9sTVHx)). You can see that the button...
NOTE: I did not add the rollup config because I wasn't sure how I should configure it
Updates `just-pipe` to bring it in line with how most of the other packages are structured. I assume the version number in `package.json` will need to be updated, but I...
The current typing of the `take` function is this: ```ts export function take(n: number): { (xs: string): string; (xs: readonly T[]): T[]; }; export function take(n: number, xs: string): string;...