Skip to content

Releases: michaeldzjap/react-signature-pad-wrapper

Version 1.2.3 of react-signature-pad-wrapper

29 Sep 07:24
Compare
Choose a tag to compare

Version 1.2.2 of react-signature-pad-wrapper

27 Jun 06:55
Compare
Choose a tag to compare
  • The jsnext:main property is removed from package.json
  • Dependencies are updated

Version 1.2.1 of react-signature-pad-wrapper

12 Jun 16:57
Compare
Choose a tag to compare

No major changes. Just a maintenance update.

Version 1.2.0 of react-signature-pad-wrapper

28 Apr 06:33
Compare
Choose a tag to compare

New Features

  • You can pass any wanted properties to the canvas element now (solves #7):
...
render() {
    return <SignaturePad
        ref={ref => this.signaturePad = ref}
        canvasProps={{className: 'signature-pad-canvas'}} />;
}
...

Breaking Changes

  • Previously it was possible to define a className property on the signature pad component, which was passed down to the canvas element. This option has been removed, since now you can accomplish the same thing by defining a className property on your canvasProps object.

Version 1.1.1 of react-signature-pad-wrapper

25 Apr 11:24
Compare
Choose a tag to compare

Avoid needlessly updating the canvas dimensions (and hence, clearing the canvas content) when a resize event is fired that does not cause the canvas dimensions to change (thanks @lifzgreat)

Version 1.0.0 of react-signature-pad-wrapper

10 Dec 17:15
Compare
Choose a tag to compare

Replaced webpack in favor of rollup for bundling.

Note: the prop-types package needs to be installed explicitly now.