Skip to content

Releases: michaeldzjap/react-signature-pad-wrapper

Version 1.2.4 of react-signature-pad-wrapper

30 Jan 16:13

Choose a tag to compare

Features

None of the changes should affect usage with respect to the previous version. Nonetheless, if there are, please report.

  • rollup builds have been altered slightly. A minimised es version now also is available.
  • A couple of test cases have been added. Remains a bit difficult to test properly due to the heave canvas involvement. Hence, code coverage looks rather poor...
  • It should no longer be necessary to explicitly install the prop-types package.
  • The tests folder has been moved to the root directory

Version 1.2.3 of react-signature-pad-wrapper

29 Sep 07:24

Choose a tag to compare

Version 1.2.2 of react-signature-pad-wrapper

27 Jun 06:55

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

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

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

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

Choose a tag to compare

Replaced webpack in favor of rollup for bundling.

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