Skip to content

v4.0.0

Compare
Choose a tag to compare
@moroshko moroshko released this 20 Jul 09:29
· 79 commits to master since this release

The input element is available now on the Autowhatever instance rather than refs.

storeInputReference(autowhatever) {
  if (autowhatever !== null) {
-    this.input = autowhatever.refs.input;
+    this.input = autowhatever.input;
  }
}

<Autowhatever ref={this.storeInputReference} />