Ray Knight

Results 23 comments of Ray Knight
trafficstars

Also, I have my own `calidation.d.ts` Typescript definition file in my project, but it would be good to get it officially merged into https://github.com/DefinitelyTyped/DefinitelyTyped. Mine would probably need some tweaking...

It would be good to add contribution guidelines. One of the things that I missed was to use `yarn commit` to enforce using https://www.conventionalcommits.org/en/v1.0.0-beta.2/#summary

> Introducing lodash & babel-plugin-lodash for certain utility functionality > To be honest, I don't see why we'd need to. Less dependencies are better. Especially stuff we could easily write...

Turns out that the UMD output wasn't quite enough due to `invariant` not being published in a browser compatible format. This means that we'd need to also build a secondary...

PR for the first iteration of Typescript types: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/37009

@meehaws You're correct, the config object is only utilized once at registration. But as @serenata-keith-mifsud suggested, a key to force a unregister/register to occur will reset those fields. We could...

If you add `isSignedIn` or `isSignedIn={true}` then the onSuccess/onFailure callbacks are called on load which is helpful for redirect and for when a user is already signed in

```ts export function callRenderProps( value: R | ((renderProps: T) => R), values: T ) { if (typeof value === 'function') { return (value as (renderProps: T) => R)(values); } return...

What I've got going on is my own custom implementation of Tag(Group), which utilizes the RAC Tag[Group,List]. The RAC Tag supports a slot of "remove" on the ButtonContext to enable...

It also makes it so that if you want to add in additional slots in the same context, you can do so without wiping out the slots from a higher...