evbo

Results 68 issues of evbo

Hi, I am very short on time and had to "throw this over the wall" but here are 3 very important React features I'm using for my own needs: 1....

Hi, some very reputable JS libraries rely on forwardRef being able to take an optional ref, for instance here: https://react-table.tanstack.com/docs/examples/row-selection So is it possible to support `Option[ReactRef[_]]` types? The only...

bug

There is a hidden optional 3rd argument to createPortal Slinky forgot to include: https://github.com/facebook/react/issues/12247#issuecomment-376840625 Totally undocumented and doesn't matter until you hit the edge case discussed in there :) Should...

bug

Hi, So far, my naive understanding of react scala.js frameworks has led me to choose slinky for it's simple syntax. [scalajs-react](https://github.com/japgolly/scalajs-react) is a bit harder for me to follow with...

question

This compiles and probably shouldn't in case someone accidentally adds a style tag and forgets a value for it, causing runtime failure: ```scala div()( div(style := /*what if this is...

enhancement

In order to [call this function](https://github.com/react-component/slider/blob/master/src/createSliderWithTooltip.jsx#L6), how can I render the `ReactComponent` it returns?: ```scala @JSImport("rc-slider", JSImport.Default) @js.native object Slider extends js.Object { def createSliderWithTooltip: js.Function1[ReactComponentClass[TooltipSliderProps], ReactComponentClass[TooltipSliderProps]] = js.native }...

docs

I use a graphql client (Apollo-scalajs) which supplies the `Variables` of the Graphql `Query` in the form of a case class Scala object, e.g.: `case class Variables(someArg: String)` So it...

Is there a way to set envVars for revolver? [Here's my interpretation of the readme](https://github.com/spray/sbt-revolver#configuration) applied to a scenario where I want my dev server to run locally with dev...

I'm new to Docker, so forgive my ignorance, but I'm struggling to understand what these directions are telling me to do: https://github.com/whisklabs/docker-it-scala#configuration According to this https://github.com/whisklabs/docker-it-scala/issues/7 you simply need to...

If I define a custom JSON decoder, is it possible to pass this to `query` in such a way that it creates the scala objects using that decoder?