Derrick Beining
Derrick Beining
I noticed that `index.js` is using `module.exports = SpinKit` rather than `export default SpinKit`. Is there a reason for this? Or can we switch it to using the ES modules...
RE: > Connect function argument #1 should be named mapDispatchToProps I found this error message misleading since normally one does not refer to argument numbers as though they were zero-indexed....
For example, in Clojure, `swap!` takes an optional `validatorFn`. See Clojure docs: https://clojuredocs.org/clojure.core/atom. This could potentially make `swap` and `set` more type-safe for JS.
The example given for the knob plugin only shows wiring up a single story. I'm trying to figure out how to wire it up for many categories, UIs, and stories...
**Is your feature request related to a problem? Please describe.** I need to be able to customize the size of the center hole in `Sunburst`. I noticed that the `Pie`...
I'm having trouble figuring out how to resolve a compiler error I'm getting at the call site of `runSelect` after I attempted to wrap a nullable foreign key column in...
Because `Newtype` is defined like this ```typescript export interface Newtype { readonly _URI: URI readonly _A: A } ``` and the convention generally used for defining a `URI` is to...
This signature for `withOnSubmit` looks like this: ```elm withOnSubmit : ({ fields : List ( String, String ), method : Method, action : String, parsed : Validated error parsed }...
## Problem This resolves https://github.com/elm-land/elm-land/issues/182. There is currently no way to customize how `onUrlRequest` is implemented for `Browser.application`. ## Solution This PR changes the code-gen for `.elm-land/src/Main.elm` so that `Main`...
It is currently not possible to customize how `onUrlRequest` is implemented because the `Main.elm` module generated by `elm-land` handles it by calling `pushUrl` on `Internal` UrlRequests and `load` on `External`...