John Schulz
John Schulz
Ideally, a Source could supply a key/id for the `remote` fetch to allow more granular loading tracking. For example, a `PostsSource` could differentiate between fetching post X vs post Y...
One common pattern for Data Sources is to only fetch if a request is not already in progress. `shouldFetch` seems like an appropriate place for this logic, but it doesn't...
Show what can be done with the library. A simple, "input color", "choose method" form could do a lot.
The constructor allows float values for percentages (e.g, 0.8 == 204 == CC) and integers (204 == CC). As a result, the value 1 is being interpreted as 100% or...
Chromath is a color-focused library, yet its documentation only "talks" about colors; it doesn't show them.
Cannot reproduce https://github.com/ritz078/transform/issues/259 locally. Wondering if a PR build will show it
This is a common, but often challenging, interaction. It'd be great to see how it should work in nivo.
This is a common, but often challenging, interaction. It'd be great to see how it should work in nivo.
From https://github.com/OneOfOne/struct2ts/issues/13#issuecomment-572788815 A struct with ```golang Vars []map[string]interface{} `config:"vars" json:"vars,omitempty"` ``` is converted to: ```typescript vars?: map[string]interface {}[]; ``` instead of ```typescript vars?: { [key: string]: any }[]; ``` but...
Currently, (as far as I can tell), pages do not receive typed props e.g. [`examples/react/src/pages/Home.jsx`](https://github1s.com/frandiox/vitedge/blob/master/examples/react/src/pages/Home.jsx#L4) Ideally, a page would get the types automatically. Worst case, a page could import a...