Jason Pickens
Jason Pickens
In antd 4.22.3 DatePicker changed from: ``` declare const DatePicker: import("react").ComponentClass & { // ... RangePicker: import("react").ComponentClass; // ... }; export default DatePicker; ``` to: ``` declare const DatePicker: import("./generatePicker/interface").PickerComponentClass...
Version 4.22.3 of antd has: ``` declare const Select: ((props: SelectProps & { children?: React.ReactNode; } & { ref?: React.Ref | undefined; }) => React.ReactElement) & { SECRET_COMBOBOX_MODE_DO_NOT_USE: string; Option:...
Reproduction: https://github.com/steinybot/bug-reports/tree/scalablytyped/rc-tree `project/plugins.sbt`: ```sbt addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") addSbtPlugin("org.scalablytyped.converter" % "sbt-converter" % "1.0.0-beta39") ``` `build.sbt`: ``` scalaVersion := "2.13.8" enablePlugins(ScalaJSPlugin, ScalablyTypedConverterPlugin) scalaJSUseMainModuleInitializer := true Compile / npmDependencies ++= Seq(...
The naming of nested components is mostly correct but sometimes (for reasons that are not obvious) it is a bit off. One such example is `Form.Item` from `antd`: https://unpkg.com/browse/[email protected]/es/form/index.d.ts It...
`Hooks.useState` is returning a new `SetStateHookCallback` instance each time which causes comparison problems. In vanilla React ([sandbox](https://codesandbox.io/s/upbeat-stallman-74gq8?file=/src/App.js:0-532)): ```js import "./styles.css"; import React, { useEffect, useState } from 'react'; export default...
Was there a particular reason behind the RFCs that were chosen in https://github.com/fthomas/refined/pull/356? I found that `PrivateNetwork` did not match what I expected it to. The addresses in [rfc5737](https://tools.ietf.org/html/rfc5737#section-4) seem...
It would be cool if this worked: ```scala type NonEmptySeq[A] = immutable.Seq[A] Refined NonEmpty object NonEmptySeq { def apply[A]: RefinedTypeOps[NonEmptySeq[A], immutable.Seq[A]] = { new RefinedTypeOps[NonEmptySeq[A], immutable.Seq[A]] } } val a...
I'm using https://github.com/fthomas/refined and I was pretty sure it had been working fine but today I got a `ClassCastException` when shrinking a case class that contained a field which was...
I went to https://getquill.io/#docs and clicked the link where it says "see [this](https://scastie.scala-lang.org/QwOewNEiR3mFlKIM7v900A) snippet as an example". I clicked Run and failed with: ``` import io.getquill._ java.io.IOError: java.lang.RuntimeException: /packages cannot...
Scala 2.12 Scalacheck 1.14.0 **Expected** When a property fails then each argument would only be shrunk and new arguments would not be generated. **Actual** The last argument is shrunk first....