Skip to content

Releases: geolessel/react-phoenix

v1.3.1

19 Oct 01:16
23728aa
Compare
Choose a tag to compare

Changed

  • Security: bumped several versions of dependencies

Included PRs

Full Changelog: v1.3.0...v1.3.1

v1.3.0

19 Nov 21:24
3f336ba
Compare
Choose a tag to compare

Changed

  • Support phoenix_html 3.0
  • Better documentation for yarn users

PR's included

New Contributors

Full Changelog: v1.2.0...v1.3.0

v1.2.0

21 Jan 23:25
5d9a0cf
Compare
Choose a tag to compare

Version 1.2.0

Changes

  • Replace eval call in javascript (#46)

Chores

  • Update dev dependencies (#47)

v1.1.0

25 Nov 17:36
fbbbf5f
Compare
Choose a tag to compare

v1.1.0

Added

  • react_component/3 accepts html_element

    By default, react_component renders the react component inside a div container. If you pass a value for html_element as an option to react_component/3, it will render the component inside the specified HTML element. For example, to render the component in a span instead of a div, you can run

    react_component("MyComponent", %{}, html_element: "span")
  • react_component/3 passes all other options to the HTML element

    Anything else passed into react_component/3 will be passed through directly to the component's HTML output. This could be a class name, styles, or anything else.

    react_component("MyComponent", %{aProp: "hello"}, style: "border-bottom: 1px solid #888")

v1.0.1

19 Nov 19:00
47f7890
Compare
Choose a tag to compare

Simple security updates on dependency

v1.0.0

03 Jan 18:26
6a8780f
Compare
Choose a tag to compare

This release corresponds to changes in Phoenix 1.4.

  • Uses Webpack as default instead of Brunch
  • Uses Jason as json parser instead of Poison

v0.6.0

30 May 23:36
61a710e
Compare
Choose a tag to compare
  • made React a peer dependency to allow projects to define their own React versions as required

v0.5.2

14 Mar 22:05
91d6bf0
Compare
Choose a tag to compare
  • Add typespecs for all functions
  • Add @deprecated attribute to ReactPhoenix.react_component

v0.5.1

31 Jan 17:42
f4b86f3
Compare
Choose a tag to compare
  • Remove mod from mix file
  • Format code via Elixir 1.6's mix format

v0.5.0

27 Nov 06:47
05bfd15
Compare
Choose a tag to compare

BREAKING CHANGE!

This release removes all code that was available to support server-side rendering. It was causing more trouble than it was worth in the end. More experiments on my end will continue but for a public release, it needed to be gone.

More info can be seen in this thread in Issue #10 (#10 (comment)).