Skip to content

Releases: FormidableLabs/react-live

v2.2.1

01 Oct 12:26
Compare
Choose a tag to compare
  • Update react-simple-code-editor 19ceaa4

v2.2.0...v2.2.1

v.2.2.0

20 Aug 14:04
Compare
Choose a tag to compare
  • Fix noInline default behaviour #159
  • Update Editor types #156 (Thanks @deini!)
  • Update documentation (Thanks @featherart!)
  • Safely catch inline calls with empty render. Fixes #151 (Thanks @ztanner!)
  • Add README note about bundlesize
  • Remove Prism from bundle

2.1.2...v2.2.0

v.2.1.2

22 May 09:34
72b00ca
Compare
Choose a tag to compare

Changes

  • Small patch to pin create-react-context to a version which uses an MIT license. #147

v2.1.1

16 May 11:48
Compare
Choose a tag to compare

Small patch to fix some a bug that surfaced after v.2.1.0

Changes

  • #145 Fixes ReferenceError caused by no theme prop being passed in

v2.1.0

15 May 14:03
Compare
Choose a tag to compare

This release fixes a number of bugs that arose since v2.0.1 as well as documentation and a CI.

Changes

  1. Merged in patches #134 @mxschmitt.
  2. Merge in patches #135 & #136 by @hasparus.
  3. Fix for #139 implemented by @VirtualDOMinic.
  4. Added CONTRIBUTION.MD by @kiraarghy.
  5. Added CI including prettier, eslint, and tests using sail.ci.

Thanks to everyone who contributed

v.2.0.1

07 Apr 18:18
Compare
Choose a tag to compare

Small patch to fix some bugs that surfaced after v.2.0.0

Changes

  • #132 That fixes couple bugs all loosely related to onChange events (#130 #127 #126)

v.2.0.0

20 Mar 21:42
Compare
Choose a tag to compare

New major release 🎉

Changes

  • Remove our custom Editor in favour of react-simple-code-editor
  • Code highlighting is now done with prism-react-renderer so styling the Editor changes from adding css classes to creating a theme (see more here).
  • Editing can be disabled with disabled prop
  • language prop in case you want to have different language syntax highlighting.
  • Added some more storybook stories for better examples
  • Improved documentation around transformCode and babel

v1.12.0

15 Oct 15:21
Compare
Choose a tag to compare

Changes

  • Update Typescript version and typings #85
  • Add workaround to stop tests from failing due to Jest bug #85
  • Update from legacy context to React 16.x context and add polyfill for v15 compatibility #98

Special thanks to @probablyup & @thielium for your great contributions 🎉

v1.10.0 & v1.10.1

28 Feb 14:50
Compare
Choose a tag to compare

Changes

  • Use React v16 Error boundaries instead of simple try-catch wrapper
  • Switch bundling to output flat bundles
  • Wrap prop-types in NODE_ENV check
  • Upgrade buble to fix build issue due to changed bundling on their end
  • Externalise buble from all bundles (The UMD bundle expects the Buble UMD with global.Buble to be available)

v1.6.0

13 Jun 12:01
Compare
Choose a tag to compare
  • Added an ignoreTabKey prop to LiveEditor to ignore tab key presses where the default behaviour is more desirable for accessibility reasons (See #14)
  • Proxy onChange prop in LiveEditor to allow listening for code changes (See e5bc31)