phoenix_live_view
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -1,2 +0,1 @@ | ||
/* | ||
@@ -3,0 +2,0 @@ ================================================================================ |
{ | ||
"name": "phoenix_live_view", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "The Phoenix LiveView JavaScript client.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -0,1 +1,8 @@ | ||
## 0.2.1 (2019-09-17) | ||
### Bug Fixes | ||
- [LiveView.Router] Fix module concat failing to build correct layout module when using custom namespace | ||
- [LiveViewTest] Fix phx-update append/prepend containers not building proper DOM content | ||
- [LiveViewTest] Fix phx-update append/prepend containers not updating existing child containers with matching IDs | ||
## 0.2.0 (2019-09-12) | ||
@@ -7,6 +14,2 @@ | ||
## Bug Fixes | ||
- Fix phx-update=append/prepend failing to join new nested live views or wire up new phx-hooks | ||
- Fix number input handling causing some browsers to reset form fields on invalid inputs | ||
### Backwards incompatible changes | ||
@@ -26,2 +29,4 @@ - Replace `configure_temporary_assigns/2` with 3-tuple mount return, supporting a `:temporary_assigns` key | ||
### Bug Fixes | ||
- Fix phx-update=append/prepend failing to join new nested live views or wire up new phx-hooks | ||
- Fix number input handling causing some browsers to reset form fields on invalid inputs | ||
- Fix multi-select decoding causing server error | ||
@@ -28,0 +33,0 @@ - Fix multi-select change tracking failing to submit an event when a value is deselected |
{ | ||
"name": "phoenix_live_view", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "The Phoenix LiveView JavaScript client.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -25,3 +25,3 @@ # Phoenix LiveView | ||
[ | ||
{:phoenix_live_view, "~> 0.1.0"} | ||
{:phoenix_live_view, "~> 0.2.0"} | ||
] | ||
@@ -164,3 +164,3 @@ end | ||
// assets/js/app.js | ||
import "mdn-polyfills/Array.prototype.from" | ||
import "mdn-polyfills/Array.from" | ||
import "mdn-polyfills/NodeList.prototype.forEach" | ||
@@ -167,0 +167,0 @@ import "mdn-polyfills/Element.prototype.closest" |
76301